-
Notifications
You must be signed in to change notification settings - Fork 335
Expand file tree
/
Copy pathNuGet.config
More file actions
47 lines (44 loc) · 2.3 KB
/
Copy pathNuGet.config
File metadata and controls
47 lines (44 loc) · 2.3 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<!-- Clear all inherited feeds. -->
<clear />
<!--
Local contains packages produced by this repository. Developers and pipelines use it to test
packages together before they are published, such as SqlClient with a newly built Abstractions.
-->
<add key="local" value="packages/" />
<!--
Governed is the vetted upstream source for all external dependencies and published SqlClient
packages. We do not use nuget.org directly; packages must be approved and added to this feed.
https://sqlclientdrivers.visualstudio.com/public/_artifacts/feed/sqlclient
-->
<add key="governed" value="https://sqlclientdrivers.pkgs.visualstudio.com/public/_packaging/sqlclient/nuget/v3/index.json" />
</packageSources>
<packageSourceMapping>
<!-- Only packages produced by this repository may be restored from the local feed. -->
<packageSource key="local">
<package pattern="Microsoft.Data.SqlClient" />
<package pattern="Microsoft.Data.SqlClient.AlwaysEncrypted.AzureKeyVaultProvider" />
<package pattern="Microsoft.Data.SqlClient.Extensions.Abstractions" />
<package pattern="Microsoft.Data.SqlClient.Extensions.Azure" />
<package pattern="Microsoft.Data.SqlClient.Internal.Logging" />
<package pattern="Microsoft.SqlServer.Server" />
</packageSource>
<!--
NuGet uses the most specific matching pattern to determine eligible sources. Because local
uses exact package IDs, governed must repeat them; otherwise those packages could only restore
from local and would not fall back to governed when no local artifact is available. The "*"
pattern makes governed eligible for every other dependency.
-->
<packageSource key="governed">
<package pattern="*" />
<package pattern="Microsoft.Data.SqlClient" />
<package pattern="Microsoft.Data.SqlClient.AlwaysEncrypted.AzureKeyVaultProvider" />
<package pattern="Microsoft.Data.SqlClient.Extensions.Abstractions" />
<package pattern="Microsoft.Data.SqlClient.Extensions.Azure" />
<package pattern="Microsoft.Data.SqlClient.Internal.Logging" />
<package pattern="Microsoft.SqlServer.Server" />
</packageSource>
</packageSourceMapping>
</configuration>