Automatically publish a NuGet package built with VS2017
问题 New in Visual Studio 2017 is the ability to generate a NuGet package on build for some target types (namely, .NET Standard 2.0 which is what I'm using). This works great, and the .nupkg file is generated on successful build. However, I'm not able to figure out how to get the built package automatically published to our local repository. I already tried a post-build event of: nuget push -Source https://my.nuget.server/nuget/ "C:\Source\MyProject\bin\Release\MyProject.1.0.0.nupkg" But this