Created
April 11, 2025 19:52
-
-
Save bjoerntx/f241c8d726c386fc97d94608813c4c07 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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