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.
2 parents beb3947 + bc8ca37 commit 09f54c4Copy full SHA for 09f54c4
ReactiveXComponent/ReactiveXComponent.csproj
@@ -35,7 +35,6 @@
35
</PackageReference>
36
<PackageReference Include="System.Reactive.Linq" Version="3.1.1">
37
<PrivateAssets>all</PrivateAssets>
38
- <ExcludeAssets>runtime</ExcludeAssets>
39
40
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
41
<PackageReference Include="RabbitMQ.Client" Version="4.1.3" />
build.cake
@@ -84,7 +84,9 @@ Task("PushPackage")
84
DotNetCoreNuGetPush(package, new DotNetCoreNuGetPushSettings
85
{
86
Source = "https://www.nuget.org/api/v2/package",
87
- ApiKey = apiKey
+ ApiKey = apiKey,
88
+ SymbolApiKey = apiKey,
89
+ SymbolSource = "https://www.nuget.org/api/v2/symbolpackage"
90
});
91
}
92
else
0 commit comments