From Peasy Project Dir:
dotnet build --configuration Release
Update Peasy.nuspec and Peasy.csproj version info, release notes, etc.
From Peasy Project Dir:
dotnet pack -c=Release
NOTE: This seems to cache packages by version number. Be sure to modify the version number in Peasy.nuspec and the VersionPrefix
in Peasy.csproj to see updated changes in the Peasy assembly.
From Testing Project Dir (consuming client dir):
dotnet add package peasy --source=/PathToLocalPeasyProject/bin/Release
nuget SetApiKey Your-API-Key
From bin/release dir:
dotnet nuget push AppLogger.1.0.0.nupkg --api-key KEY_GOES_HERE --source https://api.nuget.org/v3/index.json
(will push both .nupkg and .snupkg)