-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathnuget.config
More file actions
24 lines (24 loc) · 861 Bytes
/
nuget.config
File metadata and controls
24 lines (24 loc) · 861 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<config>
<add key="repositorypath" value="packages" />
</config>
<packageSources>
<!--To inherit the global NuGet package sources remove the <clear/> line below -->
<clear />
<add key="nuget" value="https://api.nuget.org/v3/index.json" />
<add key="xunit-ci" value="https://f.feedz.io/xunit/xunit/nuget/index.json" protocolVersion="3" />
</packageSources>
<disabledPackageSources>
<!-- Defend against user or machine level disabling of sources that we list in this file. -->
<clear />
</disabledPackageSources>
<packageSourceMapping>
<packageSource key="nuget">
<package pattern="*" />
</packageSource>
<packageSource key="xunit-ci">
<package pattern="xunit.v3.assert.aot" />
</packageSource>
</packageSourceMapping>
</configuration>