-
Notifications
You must be signed in to change notification settings - Fork 185
/
NuGet.Config
30 lines (30 loc) · 1.31 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
<?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="design-packages" value="tools/design-packages" />
<add key="sunnycase" value="https://nuget.sunnycase.moe/v3/index.json" />
</packageSources>
<activePackageSource>
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
<add key="Nncase.Libs" value="https://www.myget.org/F/magicallibs/api/v3/index.json" protocolVersion="3" />
<add key="myget-xunit" value="https://www.myget.org/F/xunit/api/v3/index.json" />
<add key="design-packages" value="tools/design-packages" />
</activePackageSource>
<packageSourceMapping>
<!-- key value for <packageSource> should match key values from <packageSources> element -->
<packageSource key="nuget.org">
<package pattern="*" />
</packageSource>
<packageSource key="sunnycase">
<package pattern="libortki*" />
<package pattern="OrtKISharp" />
<package pattern="AnyTensorFlow.NET" />
<package pattern="xunit.v3.assert" />
</packageSource>
<packageSource key="design-packages">
<package pattern="Nncase.SourceGenerator" />
</packageSource>
</packageSourceMapping>
</configuration>