Skip to content

Instantly share code, notes, and snippets.

@takkii
Last active October 29, 2020 06:42
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save takkii/8f25de9577724b77c6454a601e705370 to your computer and use it in GitHub Desktop.
Save takkii/8f25de9577724b77c6454a601e705370 to your computer and use it in GitHub Desktop.
dotnet github package example
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="github" value="https://nuget.pkg.github.com/GitHub_USERNAME/index.json" />
</packageSources>
<packageSourceCredentials>
<github>
<add key="Username" value="GitHub_USERNAME" />
<add key="ClearTextPassword" value="GitHub_TOKEN" />
</github>
</packageSourceCredentials>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment