-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuget.config
More file actions
20 lines (19 loc) · 734 Bytes
/
nuget.config
File metadata and controls
20 lines (19 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<!-- `clear` ensures no additional sources are inherited from another config file. -->
<packageSources>
<clear />
<!-- `key` can be any identifier for your source. -->
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="Local packages" value="C:\Source\_packages" />
</packageSources>
<!-- key value for <packageSource> should match key values from <packageSources> element -->
<packageSourceMapping>
<packageSource key="nuget.org">
<package pattern="*" />
</packageSource>
<packageSource key="Local packages">
<package pattern="*" />
</packageSource>
</packageSourceMapping>
</configuration>