We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09f54c4 commit 55907f4Copy full SHA for 55907f4
build.cake
@@ -81,12 +81,16 @@ Task("PushPackage")
81
if (!string.IsNullOrEmpty(apiKey))
82
{
83
var package = "./nuget/ReactiveXComponent.Net." + version + ".nupkg";
84
- DotNetCoreNuGetPush(package, new DotNetCoreNuGetPushSettings
+ DotNetCoreNuGetPush(package, new DotNetCoreNuGetPushSettings
85
86
Source = "https://www.nuget.org/api/v2/package",
87
ApiKey = apiKey,
88
- SymbolApiKey = apiKey,
+ });
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,
94
});
95
}
96
else
0 commit comments