We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 09f54c4 + df4e43d commit b3373c0Copy full SHA for b3373c0
1 file changed
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
- SymbolSource = "https://www.nuget.org/api/v2/symbolpackage"
+ ApiKey = apiKey
+ });
+ 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