Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@WillSullivan
Created June 27, 2014 14:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WillSullivan/37025f2af4908a74f267 to your computer and use it in GitHub Desktop.
Save WillSullivan/37025f2af4908a74f267 to your computer and use it in GitHub Desktop.
Sample nuget config file
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<solution>
<add key="disableSourceControlIntegration" value="true" />
</solution>
<packageRestore>
<!-- Allow NuGet to download missing packages -->
<add key="enabled" value="True" />
<!-- Automatically check for missing packages during build in Visual Studio -->
<add key="automatic" value="True" />
</packageRestore>
<packageSources>
<add key="NuGet official package source" value="https://nuget.org/api/v2/" />
</packageSources>
<disabledPackageSources />
<activePackageSource>
<add key="All" value="(Aggregate source)" />
</activePackageSource>
</configuration>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment