Skip to content

Publishing to NuGet

Nicholas Sizer edited this page Sep 13, 2018 · 2 revisions

Do normal milestone/up-package-version/create-github-release stuff.

Then:

cd src\AdoNetCore.AseClient
dotnet pack -c Release
dotnet nuget push bin\Release\AdoNetCore.AseClient.x.y.z.nupkg -s https://api.nuget.org/v3/index.json -k <API_KEY>

And do the same for the strong name package:

cd src\AdoNetCore.AseClient.StrongName
dotnet pack -c Release
dotnet nuget push bin\Release\AdoNetCore.AseClient.StrongName.x.y.z.nupkg -s https://api.nuget.org/v3/index.json -k <API_KEY>