2023-05-14 06:09:25 -07:00
|
|
|
<!--
|
2023-05-15 07:50:41 -07:00
|
|
|
This root NuGet.config ensures that a global/default one is not used by accident.
|
|
|
|
The individual repo NuGet.config files are utilized during the actual build.
|
|
|
|
This one is used by the smoke tests to restore packages such as xunit.
|
2023-05-14 06:09:25 -07:00
|
|
|
-->
|
|
|
|
<configuration>
|
|
|
|
<packageSources>
|
|
|
|
<clear />
|
|
|
|
<add key="dotnet-public" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-public/nuget/v3/index.json" />
|
2024-01-11 19:52:26 +01:00
|
|
|
<add key="dotnet-eng" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json" />
|
2023-05-14 06:09:25 -07:00
|
|
|
</packageSources>
|
|
|
|
<disabledPackageSources>
|
|
|
|
<clear />
|
|
|
|
</disabledPackageSources>
|
2024-01-11 19:52:26 +01:00
|
|
|
</configuration>
|