-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathnuget.config
More file actions
24 lines (21 loc) · 880 Bytes
/
nuget.config
File metadata and controls
24 lines (21 loc) · 880 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<!-- Define local source using a relative path -->
<add key="local-packages" value="./local-packages" />
<!-- Add the official nuget.org source -->
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
</packageSources>
<packageSourceMapping>
<packageSource key="nuget.org">
<package pattern="*" />
</packageSource>
<packageSource key="local-packages">
<package pattern="LLamaSharp.Backend.Cpu" />
<package pattern="LLamaSharp.Backend.Vulkan" />
<package pattern="LLamaSharp.Backend.Vulkan.Linux" />
<package pattern="LLamaSharp.Backend.Vulkan.Windows" />
</packageSource>
</packageSourceMapping>
</configuration>