File tree Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Expand file tree Collapse file tree 2 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 1
1
@ echo off
2
- for /r %%i in (*.nupkg) do (
2
+
3
+ for /r .\symbols %%i in (*.symbols.nupkg) do (
4
+ ..\..\.nuget\NuGet.exe push %%i -ApiKey %1 -Source https://nuget.smbsrc.net
5
+ )
6
+
7
+ for %%i in (*.nupkg) do (
3
8
..\..\.nuget\NuGet.exe push %%i -ApiKey %1 -Source https://www.nuget.org/api/v2/package
4
9
)
Original file line number Diff line number Diff line change @@ -8,4 +8,11 @@ set projfile=!projfile:nuspec=csproj!
8
8
..\..\.nuget\NuGet.exe pack ..\..\Jabberwocky.Library.nuspec -NoPackageAnalysis -Version 2.0.0-beta -OutputDirectory .
9
9
10
10
..\..\.nuget\NuGet.exe pack ..\..\diagnostics\Jabberwocky.Core.CodeAnalysis/Jabberwocky.Core.CodeAnalysis/Jabberwocky.Core.CodeAnalysis.nuspec -NoPackageAnalysis -Version 2.0.0-beta -OutputDirectory . -Prop Configuration=Release
11
- ..\..\.nuget\NuGet.exe pack ..\..\diagnostics\Jabberwocky.Glass.CodeAnalysis/Jabberwocky.Glass.CodeAnalysis/Jabberwocky.Glass.CodeAnalysis.nuspec -NoPackageAnalysis -Version 2.0.0-beta -OutputDirectory . -Prop Configuration=Release
11
+ ..\..\.nuget\NuGet.exe pack ..\..\diagnostics\Jabberwocky.Glass.CodeAnalysis/Jabberwocky.Glass.CodeAnalysis/Jabberwocky.Glass.CodeAnalysis.nuspec -NoPackageAnalysis -Version 2.0.0-beta -OutputDirectory . -Prop Configuration=Release
12
+
13
+ REM - Copy symbol sources to 'symbols' directory
14
+ mkdir symbols
15
+
16
+ for %%i in (*.symbols.nupkg) do (
17
+ move %%i ./symbols
18
+ )
You can’t perform that action at this time.
0 commit comments