Nuget: Difference between revisions
Jump to navigation
Jump to search
Line 20: | Line 20: | ||
* [https://garywoodfine.com/creating-nuget-package-net-core/ Create nuget package .net core] | * [https://garywoodfine.com/creating-nuget-package-net-core/ Create nuget package .net core] | ||
* [https://docs.microsoft.com/en-us/nuget/tools/cli-ref-sources Dotnet nuget sources command] | * [https://docs.microsoft.com/en-us/nuget/tools/cli-ref-sources Dotnet nuget sources command] | ||
* [https://docs.microsoft.com/en-us/nuget/tools/cli-ref-setapikey NuGet CLI setapikey command] | |||
* [https://docs.microsoft.com/en-us/nuget/quickstart/create-and-publish-a-package-using-the-dotnet-cli Create and publish a package] | * [https://docs.microsoft.com/en-us/nuget/quickstart/create-and-publish-a-package-using-the-dotnet-cli Create and publish a package] | ||
* [https://docs.microsoft.com/en-us/nuget/install-nuget-client-tools Install NuGet client tools] | * [https://docs.microsoft.com/en-us/nuget/install-nuget-client-tools Install NuGet client tools] | ||
* [https://www.nuget.org/packages/NuGet.Repositories/4.2.0 NuGet Repositories] | * [https://www.nuget.org/packages/NuGet.Repositories/4.2.0 NuGet Repositories] |
Revision as of 05:46, 12 July 2019
Mono Nuget
brew install mono
sudo curl -o /usr/local/bin/nuget.exe https://dist.nuget.org/win-x86-commandline/latest/nuget.exe
'alias nuget="mono /usr/local/bin/nuget.exe"' >> ~/.bash_profile
brew uninstall mono
sudo rm -rf /usr/local/bin/nuget.exe
# vim ~/.bash_profile and delete 'alias nuget="mono /usr/local/bin/nuget.exe"'
References
- Configuring NuGet for use with GitHub Package Registry
- Creating and using a local NuGet package repository
- How to publish ASP.NET Core app over FTP server
- Publish a NuGet package from the command line
- How to publish a dotnet global tool
- Create nuget package .net core
- Dotnet nuget sources command
- NuGet CLI setapikey command
- Create and publish a package
- Install NuGet client tools
- NuGet Repositories