Last active
August 29, 2015 14:03
-
-
Save HowardvanRooijen/e394fe1a34d2b1e2fc02 to your computer and use it in GitHub Desktop.
Default Nuget.config files configured for automatic package restore. Valid for NuGet 2.8
This file contains hidden or 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> | |
<config> | |
<add key="repositorypath" value=".\..\Packages\" /> | |
<!-- Lowest/HighestPatch/HighestMinor/Highest --> | |
<add key="dependencyversion" value="Highest" /> | |
</config> | |
<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 custom package repositories here --> | |
<add key="nuget.org" value="https://www.nuget.org/api/v2/" /> | |
</packageSources> | |
</configuration> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment