-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathnuget.config
More file actions
22 lines (20 loc) · 839 Bytes
/
nuget.config
File metadata and controls
22 lines (20 loc) · 839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
<add key="nuget.local" value="./local-packages" />
</packageSources>
<!-- Define mappings by adding package patterns beneath the target source. -->
<!-- Microsoft.Azure.WebJobs.Extensions.Sql package should be from nuget.local, everything else from
nuget.org. -->
<packageSourceMapping>
<!-- key value for <packageSource> should match key values from <packageSources> element -->
<packageSource key="nuget.local">
<package pattern="Microsoft.Azure.WebJobs.Extensions.Sql" />
</packageSource>
<packageSource key="nuget.org">
<package pattern="*" />
</packageSource>
</packageSourceMapping>
</configuration>