Consuming NuGet packages from my GitHub
This is a short guide on how to consume packages from my GitHub packages feed. The official docs are here. Notes: How to find your NuGet.Config My feed URL: https://nuget.pkg.github.com/LordMike/index.json You must authenticate using a GitHub access token with read:packages permission — create one here. The config file must exist — use dotnet new nugetconfig to create it. Method A: Add source user-wide (CLI) dotnet new nugetconfig dotnet nuget add source \ -n gh-lordmike \ https://nuget.pkg.github.com/LordMike/index.json \ -u MyGithubUser \ -p MyGithubToken This adds a user-wide source, allowing all projects to consume from it. On Windows, the password is encrypted on disk. ...