dotnet-installer/NuGet.Config
Eric Erhardt 1dc87d004b Updating NuGet.config to no longer point to myget.org.
We are using our own cli-deps feed in an enterprise myget account in order to ensure we depend on stable nuget repositories.
2016-02-03 15:25:48 -06:00

16 lines
642 B
XML

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<!--To inherit the global NuGet package sources remove the <clear/> line below -->
<clear />
<add key="cli-deps" value="https://dotnet.myget.org/F/cli-deps/api/v3/index.json" />
<add key="api.nuget.org" value="https://api.nuget.org/v3/index.json" />
</packageSources>
<activePackageSource>
<add key="AspNetCIDev" value="https://www.myget.org/F/aspnetcidev/api/v3/index.json" />
</activePackageSource>
<packageRestore>
<add key="enabled" value="False" />
<add key="automatic" value="False" />
</packageRestore>
</configuration>