setup and deploy a nuget package
Of course you will need VS (latest is the best)
Then, install nuget.exe
by
2.1. Download nuget from nuget
2.2. Saving nuget.exe to suitable folder
2.3. Add to PATH environment variable like C:\nuget
Of course you need a library to publish, say MyApp
(then there is a MyApp.csproj
file at root directory)
Open cmd at root dir
Run the command below to create nuspec file
nuget spec MyApp.csproj
nuget pack
A package will be created, say MyApp.1.0.0.nupkg
nuget push <package>.nupkg <apikey> -Source https://api.nuget.org/v3/index.json
with
And done!