-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuget.config
24 lines (24 loc) · 951 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
<configuration>
<packageSources>
<clear />
<!-- `key` can be any identifier for your source. -->
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="Silk.NET Experimental"
value="https://pkgs.dev.azure.com/UltzOS/Silk.NET/_packaging/Experimental/nuget/v3/index.json" />
</packageSources>
<packageSourceMapping>
<!-- key value for <packageSource> should match key values from <packageSources> element -->
<packageSource key="nuget.org">
<package pattern="*" />
</packageSource>
<packageSource key="Silk.NET Experimental">
<package pattern="Silk.NET.*" />
</packageSource>
</packageSourceMapping>
<config>
<add key="globalPackagesFolder" value="_packages" />
</config>
<solution>
<add key="disableSourceControlIntegration" value="true" />
</solution>
</configuration>