File tree 2 files changed +17
-2
lines changed
2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change
1
+ @ echo Off
2
+
3
+ SET config = %1
4
+
5
+ IF [" %1 " ] == [" " ] (
6
+ SET config = Release
7
+ )
8
+
9
+ call " %~dp0 build.cmd" %config%
10
+
11
+ @ echo " %~dp0 src\.nuget\NuGet.exe" pack " %~dp0 src\AutoTest.ArgumentNullException\AutoTest.ArgumentNullException.csproj" -Properties Configuration=%config% -NonInteractive -Symbols -OutputDirectory " %~dp0 src\AutoTest.ArgumentNullException\bin\%config% "
12
+ " %~dp0 src\.nuget\NuGet.exe" pack " %~dp0 src\AutoTest.ArgumentNullException\AutoTest.ArgumentNullException.csproj" -Properties Configuration=%config% -NonInteractive -Symbols -OutputDirectory " %~dp0 src\AutoTest.ArgumentNullException\bin\%config% "
13
+
14
+ @ echo " %~dp0 src\.nuget\NuGet.exe" pack " %~dp0 src\AutoTest.ArgumentNullException.Xunit\AutoTest.ArgumentNullException.Xunit.csproj" -Properties Configuration=%config% -NonInteractive -Symbols -OutputDirectory " %~dp0 src\AutoTest.ArgumentNullException.Xunit\bin\%config% "
15
+ " %~dp0 src\.nuget\NuGet.exe" pack " %~dp0 src\AutoTest.ArgumentNullException.Xunit\AutoTest.ArgumentNullException.Xunit.csproj" -Properties Configuration=%config% -NonInteractive -Symbols -OutputDirectory " %~dp0 src\AutoTest.ArgumentNullException.Xunit\bin\%config% "
Original file line number Diff line number Diff line change 2
2
3
3
SET msbuild = " %windir% \Microsoft.NET\Framework\v4.0.30319\msbuild.exe"
4
4
5
- if " %1 " == " " (
6
- call " %~dp0 build .cmd"
5
+ IF [ " %1 " ] == [ " " ] (
6
+ call " %~dp0 pack .cmd"
7
7
)
8
8
9
9
echo %msbuild% " %~dp0 src\Build\NuGetPush.proj" /nologo /verbosity:m
You can’t perform that action at this time.
0 commit comments