-
Notifications
You must be signed in to change notification settings - Fork 132
/
nuget.config
27 lines (24 loc) · 942 Bytes
/
nuget.config
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
27
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<!--To inherit the global NuGet package sources remove the <clear/> line below -->
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="dotnet7" value="https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet7/nuget/v3/index.json" />
</packageSources>
<packageSourceMapping>
<!-- key value for <packageSource> should match key values from <packageSources> element -->
<packageSource key="nuget.org">
<package pattern="*" />
<package pattern="System.*" />
<package pattern="Microsoft.*" />
</packageSource>
<packageSource key="dotnet7">
<package pattern="System.*" />
<package pattern="Microsoft.*" />
</packageSource>
</packageSourceMapping>
<disabledPackageSources>
<add key="dotnet7" value="true" />
</disabledPackageSources>
</configuration>