-
Notifications
You must be signed in to change notification settings - Fork 1
/
NuGet.config
41 lines (37 loc) · 1.53 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageRestore>
<add key="enabled" value="True" />
<add key="automatic" value="True" />
</packageRestore>
<packageSources>
<clear />
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="EvilBaschdi MyGet" value="https://www.myget.org/F/evilbaschdi/api/v3/index.json" />
<!--<add key="evilfeed" value="https://pkgs.dev.azure.com/evilbaschdi/_packaging/evilfeed/nuget/v3/index.json" />-->
<!--<add key="EvilArtifacts" value="https://pkgs.dev.azure.com/evilbaschdi/Public/_packaging/EvilArtifacts/nuget/v3/index.json" />-->
</packageSources>
<!-- Define mappings by adding package patterns beneath the target source. -->
<!-- EvilBaschdi.* packages will be restored from EvilBaschdi MyGet, everything else from nuget.org. -->
<packageSourceMapping>
<!-- key value for <packageSource> should match key values from <packageSources> element -->
<packageSource key="nuget.org">
<package pattern="*" />
</packageSource>
<packageSource key="EvilBaschdi MyGet">
<package pattern="EvilBaschdi.*" />
</packageSource>
<!--<packageSource key="evilfeed">
<package pattern="EvilBaschdi.*" />
</packageSource>
<packageSource key="feed-evilfeed">
<package pattern="EvilBaschdi.*" />
</packageSource>-->
<!--<packageSource key="EvilArtifacts">
<package pattern="EvilBaschdi.*" />
</packageSource>
<packageSource key="feed-EvilArtifacts">
<package pattern="EvilBaschdi.*" />
</packageSource>-->
</packageSourceMapping>
</configuration>