-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnuget.config
21 lines (21 loc) · 863 Bytes
/
nuget.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<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" />
<!-- uncomment to use pre-release builds from GitHub Packages -->
<!--<add key="preview" value="https://nuget.pkg.github.com/tonybaloney/index.json" />-->
<!-- uncomment to use locally built NuGet packages -->
<!--<add key="preview" value="../nuget" />-->
</packageSources>
<packageSourceMapping>
<!-- uncomment to use pre-release builds from GitHub Packages or local -->
<!--<packageSource key="preview">
<package pattern="CSnakes*" />
</packageSource>-->
<packageSource key="nuget">
<package pattern="*" />
</packageSource>
</packageSourceMapping>
</configuration>