-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jeremy Tammik
committed
Aug 21, 2015
1 parent
0047808
commit c41c235
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
@echo off | ||
set "D=C:\Users\%USERNAME%\Documents\Visual Studio 2012\Templates\ProjectTemplates" | ||
set "F=%TEMP%\Revit2016AddinWizardCs2.zip" | ||
echo Creating C# wizard archive %F%... | ||
cd cs | ||
zip -r "%F%" * | ||
cd .. | ||
echo Copying C# wizard archive to %D%\Visual C#... | ||
copy "%F%" "%D%\Visual C#" | ||
set "F=%TEMP%\Revit2016AddinWizardVb2.zip" | ||
echo Creating VB wizard archive %F%... | ||
cd vb | ||
zip -r "%F%" * | ||
cd .. | ||
echo Copying VB wizard archive to %D%\Visual Basic... | ||
copy "%F%" "%D%\Visual Basic" |