-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNuGet.config
30 lines (30 loc) · 1.17 KB
/
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
28
29
30
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
<add key="duende" value="https://www.myget.org/F/duende_identityserver/api/v3/index.json" />
<add key="melodic" value="https://pkgs.dev.azure.com/melodic-software/melodic-main/_packaging/main-nuget/nuget/v3/index.json" />
</packageSources>
<packageSourceMapping>
<packageSource key="nuget.org">
<package pattern="*" />
</packageSource>
<packageSource key="duende">
<package pattern="Duende.*" />
</packageSource>
<packageSource key="melodic">
<package pattern="Melodic.*" />
</packageSource>
<!--This one is a workaround for an ADO issue with package source mapping-->
<!--https://github.com/NuGet/Home/issues/11406-->
<packageSource key="feed-melodic">
<package pattern="Melodic.*" />
</packageSource>
</packageSourceMapping>
<!--https://learn.microsoft.com/en-us/nuget/concepts/auditing-packages-->
<auditSources>
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
</auditSources>
</configuration>