Update NuGet.configto include dotnet5, eng, and tools feeds (#932)
authorJuan Hoyos <juan.hoyos@microsoft.com>
Fri, 20 Mar 2020 01:03:22 +0000 (18:03 -0700)
committerGitHub <noreply@github.com>
Fri, 20 Mar 2020 01:03:22 +0000 (18:03 -0700)
NuGet.config

index ce7270fafd1e2525ea3459616bdbc6cfa02f5d04..fa43230fd78e5352eaeb9537f226931bace4bc5a 100644 (file)
@@ -3,11 +3,17 @@
   <solution>
     <add key="disableSourceControlIntegration" value="true" />
   </solution>
-  <!-- Only specify feed for Arcade SDK (see https://github.com/Microsoft/msbuild/issues/2982) -->
   <packageSources>
     <clear />
+    <!-- Feeds used in Maestro/Arcade publishing -->
+    <add key="dotnet5" value="https://dnceng.pkgs.visualstudio.com/public/_packaging/dotnet5/nuget/v3/index.json" />
+    <add key="dotnet5-transport" value="https://dnceng.pkgs.visualstudio.com/public/_packaging/dotnet5-transport/nuget/v3/index.json" />
+    <add key="dotnet-tools" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json" />
+    <add key="dotnet-eng" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json" />
+    <!-- Legacy feeds -->
     <add key="dotnet-buildtools" value="https://dotnet.myget.org/F/dotnet-buildtools/api/v3/index.json" />
     <add key="dotnet-core" value="https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json" />
+    <!-- Standard feeds -->
     <add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
   </packageSources>
 </configuration>