Created
October 14, 2015 18:44
-
-
Save RyannosaurusRex/649860d4969d0b954666 to your computer and use it in GitHub Desktop.
Recursively package all .nuspec files in a directory from a .bat file.
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
@ECHO OFF | |
SETLOCAL | |
SET VERSION=%1 | |
SET NUGET=.\BuildAndPackageSupport\nuget.exe | |
FOR /r %%f IN (*.nuspec) DO ( | |
echo "packing..." | |
%NUGET% pack %%f -Version %VERSION% | |
) | |
PAUSE |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment