forked from stride3d/stride
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuget.config
More file actions
27 lines (26 loc) · 1.1 KB
/
Copy pathnuget.config
File metadata and controls
27 lines (26 loc) · 1.1 KB
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"?>
<!-- Stride.* engine packages → stride-local only (dev's auto-pack output shadows
public versions). 3rd-party Stride-prefix packages need explicit nuget.org
carve-outs below to outrank the Stride.* mapping.
samples/nuget.config relaxes Stride.* to both feeds for historical versions. -->
<configuration>
<packageSources>
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="stride-local" value="bin/packages" />
</packageSources>
<packageSourceMapping>
<packageSource key="nuget.org">
<package pattern="*" />
<!-- 3rd-party Stride-prefix packages: outrank the Stride.* stride-local mapping. -->
<package pattern="Stride.GNU.*" />
<package pattern="Stride.Mono.*" />
<package pattern="Stride.Dependencies.*" />
<package pattern="Stride.GraphX.*" />
<package pattern="Stride.QuickGraph" />
</packageSource>
<packageSource key="stride-local">
<package pattern="Stride" />
<package pattern="Stride.*" />
</packageSource>
</packageSourceMapping>
</configuration>