Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created April 11, 2025 19:52
Show Gist options
  • Save bjoerntx/f241c8d726c386fc97d94608813c4c07 to your computer and use it in GitHub Desktop.
Save bjoerntx/f241c8d726c386fc97d94608813c4c07 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<!-- Default NuGet.org -->
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<!-- GitHub Packages -->
<add key="github" value="https://nuget.pkg.github.com/YOUR_GITHUB_USERNAME/index.json" />
</packageSources>
<packageSourceCredentials>
<github>
<add key="Username" value="YOUR_GITHUB_USERNAME" />
<add key="ClearTextPassword" value="YOUR_GITHUB_PAT" />
</github>
</packageSourceCredentials>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment