-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.bat
28 lines (23 loc) · 1015 Bytes
/
package.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
@ECHO OFF
SETLOCAL
ECHO starting with:
dir nuget\. /B
ECHO.
del nuget\. /Q
ECHO.
SET NUGET=src\.nuget\nuget.exe
SET OP=src\ObjectPrinter\ObjectPrinter.csproj
SET L4J10=src\ObjectPrinter.Log4Net.v1210\ObjectPrinter.Log4Net.v1210.csproj
SET L4J11=src\ObjectPrinter.Log4Net.v1211\ObjectPrinter.Log4Net.v1211.csproj
SET L4J12=src\ObjectPrinter.Log4Net.v1212\ObjectPrinter.Log4Net.v1212.csproj
SET L4J13=src\ObjectPrinter.Log4Net.v1213\ObjectPrinter.Log4Net.v1213.csproj
SET L4J15=src\ObjectPrinter.Log4Net.v1215\ObjectPrinter.Log4Net.v1215.csproj
%NUGET% pack %OP% -OutputDirectory nuget -Prop Configuration=Release
%NUGET% pack %L4J10% -OutputDirectory nuget -Prop Configuration=Release
%NUGET% pack %L4J11% -OutputDirectory nuget -Prop Configuration=Release
%NUGET% pack %L4J12% -OutputDirectory nuget -Prop Configuration=Release
%NUGET% pack %L4J13% -OutputDirectory nuget -Prop Configuration=Release
%NUGET% pack %L4J15% -OutputDirectory nuget -Prop Configuration=Release
ECHO.
ECHO ending with:
dir nuget\. /B