How to Publish a Nuget package in NuGet Gallery?
Step 1 – Create an account at NuGet.org
Head over to http://nuget.org/ and register for an account. Once you do that, click on “My Account” to see an API Key that was generated for you.
Step 2 – In a command console, run the command:
$ nuget setApiKey Your-API-Key
This will store your API key so that you never need to do this step again on this machine.
Push your package to NuGet Gallery using the command:
$ nuget push YourPackage.nupkg
Reference
https://docs.nuget.org/consume/command-line-reference
Latest posts by Rajesh Kumar (see all)
- Best AI tools for Software Engineers - November 4, 2024
- Installing Jupyter: Get up and running on your computer - November 2, 2024
- An Introduction of SymOps by SymOps.com - October 30, 2024