File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -81,12 +81,16 @@ Task("PushPackage")
8181 if ( ! string . IsNullOrEmpty ( apiKey ) )
8282 {
8383 var package = "./nuget/ReactiveXComponent.Net." + version + ".nupkg" ;
84- DotNetCoreNuGetPush ( package , new DotNetCoreNuGetPushSettings
84+ DotNetCoreNuGetPush ( package , new DotNetCoreNuGetPushSettings
8585 {
8686 Source = "https://www.nuget.org/api/v2/package" ,
87- ApiKey = apiKey ,
88- SymbolApiKey = apiKey ,
89- SymbolSource = "https://www.nuget.org/api/v2/symbolpackage"
87+ ApiKey = apiKey
88+ } ) ;
89+ var packageSnupkg = "./nuget/ReactiveXComponent.Net." + version + ".snupkg" ;
90+ DotNetCoreNuGetPush ( packageSnupkg , new DotNetCoreNuGetPushSettings
91+ {
92+ SymbolSource = "https://www.nuget.org/api/v2/symbolpackage" ,
93+ SymbolApiKey = apiKey
9094 } ) ;
9195 }
9296 else
You can’t perform that action at this time.
0 commit comments