-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnuget.config
27 lines (23 loc) · 1.01 KB
/
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
25
26
27
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<!--<add key="Local" value="C:\local_source" />-->
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="intern" value="https://pkgs.dev.azure.com/bertk0374/_packaging/intern/nuget/v3/index.json" />
<!--<add key="coverlet-nightly" value="https://pkgs.dev.azure.com/tonerdo/coverlet/_packaging/coverlet-nightly/nuget/v3/index.json" />-->
</packageSources>
<!-- Define mappings by adding package patterns beneath the target source. -->
<packageSourceMapping>
<!-- key value for <packageSource> should match key values from <packageSources> element -->
<packageSource key="nuget.org">
<package pattern="*" />
</packageSource>
<packageSource key="intern">
<package pattern="DotNetDev.ArcadeLight.Sdk" />
</packageSource>
<packageSource key="Local">
<package pattern="DotNetDev.ArcadeLight.Sdk" />
</packageSource>
</packageSourceMapping>
</configuration>