-
Notifications
You must be signed in to change notification settings - Fork 323
Expand file tree
/
Copy pathNuGet.config
More file actions
23 lines (20 loc) · 1009 Bytes
/
NuGet.config
File metadata and controls
23 lines (20 loc) · 1009 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<!-- Clear all inherited feeds. -->
<clear />
<!--
We do not use the public nuget.org feed. Instead, we use a governed feed maintained by our
SqlClientDrivers ADO organization. Packages must be individually vetted and added to this
feed manually before they will be available for consumption by our builds.
https://sqlclientdrivers.visualstudio.com/public/_artifacts/feed/sqlclient
-->
<add key="governed" value="https://sqlclientdrivers.pkgs.visualstudio.com/public/_packaging/sqlclient/nuget/v3/index.json" />
<!--
This package source is used by developers and our pipelines builds when we need to reference
packages that are not available on the public nuget.org feed, for example to test MDS that
depends on a version of Abstractions that was just built in the workspace.
-->
<add key="local" value="packages/" />
</packageSources>
</configuration>