Skip to content

Instantly share code, notes, and snippets.

@dubmun
dubmun / package.bat
Last active December 18, 2015 13:29 — forked from joshuaflanagan/package.bat
@ECHO OFF
SETLOCAL
SET VERSION=%1
SET NUGET=buildsupport\nuget.exe
FOR %%G IN (packaging\nuget\*.nuspec) DO (
%NUGET% pack %%G -Version %VERSION% -Symbols -o artifacts
)