summaryrefslogtreecommitdiff
path: root/NuGet.config
diff options
context:
space:
mode:
authorJeremy Koritzinsky <jkoritzinsky@gmail.com>2019-02-25 23:54:21 -0800
committerJuan Hoyos <juan.hoyos@microsoft.com>2019-02-25 23:54:21 -0800
commitdc6252fa381d370c5feee9820d4cc5884fcbf719 (patch)
tree008eaa2264c96e52c698562db0190076e2b9d0eb /NuGet.config
parent8509bbd72ed937a626fc436715b962d3f86fa380 (diff)
downloadcoreclr-dc6252fa381d370c5feee9820d4cc5884fcbf719.tar.gz
coreclr-dc6252fa381d370c5feee9820d4cc5884fcbf719.tar.bz2
coreclr-dc6252fa381d370c5feee9820d4cc5884fcbf719.zip
Add the coreclr blob feed as a restore source for test builds. (#22839)
* Add the coreclr blob feed as a restore source for test builds. * Use one NuGet.config in the root folder for restore targets.
Diffstat (limited to 'NuGet.config')
-rw-r--r--NuGet.config15
1 files changed, 12 insertions, 3 deletions
diff --git a/NuGet.config b/NuGet.config
index 6c8b2e3bd0..33e9d870a5 100644
--- a/NuGet.config
+++ b/NuGet.config
@@ -1,10 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
+ <packageRestore>
+ <add key="enabled" value="True" />
+ </packageRestore>
<packageSources>
<clear />
- <add key="arcade" value="https://dotnetfeed.blob.core.windows.net/dotnet-tools-internal/index.json" />
- <add key="dotnet-core" value="https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json" />
<add key="dotnet-coreclr" value="https://dotnetfeed.blob.core.windows.net/dotnet-coreclr/index.json" />
+ <add key="dotnet-core" value="https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json" />
+ <add key="myget.org dotnet-core" value="https://dotnet.myget.org/F/dotnet-core/api/v3/index.json" />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
</packageSources>
-</configuration>
+ <disabledPackageSources>
+ <clear />
+ </disabledPackageSources>
+ <activePackageSource>
+ <add key="All" value="(Aggregate source)" />
+ </activePackageSource>
+</configuration> \ No newline at end of file