Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordotnet-bot <dotnet-bot@microsoft.com>2019-11-14 03:26:19 +0300
committerdotnet-bot <dotnet-bot@microsoft.com>2019-11-14 03:26:19 +0300
commit381372f6f12884caee5bb90f52649040827e19cc (patch)
treeb8566ffcc1c4c2daa3cdbf1eebbfb8ac14a7718c /NuGet.config
Initial runtime repository structure
Diffstat (limited to 'NuGet.config')
-rw-r--r--NuGet.config23
1 files changed, 23 insertions, 0 deletions
diff --git a/NuGet.config b/NuGet.config
new file mode 100644
index 00000000000..6b6e54b554f
--- /dev/null
+++ b/NuGet.config
@@ -0,0 +1,23 @@
+<configuration>
+ <!-- Don't use any higher level config files.
+ Our builds need to be isolated from user/machine state -->
+ <fallbackPackageFolders>
+ <clear />
+ </fallbackPackageFolders>
+ <packageSources>
+ <clear />
+ <!--
+ 'src/test/PrepareTestAssets/PrepareTestAssets.proj' generates a NuGet.config file using this
+ one as a template. The following line is a marker to insert the test restore sources.
+ -->
+ <!-- TEST_RESTORE_SOURCES_INSERTION_LINE -->
+ <add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
+ <add key="dotnet-eng" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json" />
+ <add key="dotnet5-transport" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet5-transport/nuget/v3/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" />
+ </packageSources>
+ <disabledPackageSources>
+ <clear />
+ </disabledPackageSources>
+</configuration>