Skip to content

Instantly share code, notes, and snippets.

@tuyen-vuduc
Last active January 7, 2019 04:45
Show Gist options
  • Save tuyen-vuduc/82f103540001d54723ca1696e9a19801 to your computer and use it in GitHub Desktop.
Save tuyen-vuduc/82f103540001d54723ca1696e9a19801 to your computer and use it in GitHub Desktop.
Project based nuget.config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="this-project" value="nugets" />
<add key="syncfusion" value="http://nuget.syncfusion.com/nuget_xamarin/nuget/getsyncfusionpackages/xamarin" />
<add key="private-remote-nugets" value="http://my-private-server.com" />
</packageSources>
<activePackageSource>
<add key="All" value="(Aggregate source)" />
</activePackageSource>
<packageSourceCredentials>
<private-remote-nugets>
<add key="Username" value="user@my-private-server.com" />
<add key="Password" value="...my-super-secrete-password..." />
</private-remote-nugets>
</packageSourceCredentials>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment