-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathNuGet.config
More file actions
26 lines (26 loc) · 1.11 KB
/
Copy pathNuGet.config
File metadata and controls
26 lines (26 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
<!--
dotnet-eng (public): hosts XHarness test runners + CLI.
Required by Bible.Alarm.Tests.Android (Microsoft.DotNet.XHarness.DefaultAndroidEntryPoint.Xunit)
and Bible.Alarm.Tests.iOS (Microsoft.DotNet.XHarness.TestRunners.Xunit).
Anonymous read access; no auth needed.
-->
<add key="dotnet-eng" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-eng/nuget/v3/index.json" protocolVersion="3" />
</packageSources>
<packageSourceMapping>
<!--
Restrict the XHarness packages to the dotnet-eng feed and everything else to nuget.org so that
a NU1100 here is a deterministic "use the right feed" signal instead of an opaque resolution failure.
-->
<packageSource key="nuget.org">
<package pattern="*" />
</packageSource>
<packageSource key="dotnet-eng">
<package pattern="Microsoft.DotNet.XHarness.*" />
</packageSource>
</packageSourceMapping>
</configuration>