23 lines
936 B
XML
23 lines
936 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<configuration>
|
|
<packageSources>
|
|
<!--To inherit the global NuGet package sources remove the <clear/> line below -->
|
|
<clear />
|
|
<add key="gitea-projects" value="https://git.disi.dev/api/packages/Projects/nuget/index.json" />
|
|
<add key="gitea-homelab" value="https://git.disi.dev/api/packages/Homelab/nuget/index.json" />
|
|
<add key="gitea-artifacts" value="https://git.disi.dev/api/packages/Artifacts/nuget/index.json" />
|
|
<add key="nuget" value="https://api.nuget.org/v3/index.json" />
|
|
</packageSources>
|
|
|
|
<packageSourceMapping>
|
|
<!-- ensure TextParser is pulled from private feed - there are public conflicts-->
|
|
<packageSource key="nuget">
|
|
<package pattern="*" />
|
|
</packageSource>
|
|
<packageSource key="gitea-projects">
|
|
<package pattern="TextParser" />
|
|
<package pattern="*" />
|
|
</packageSource>
|
|
</packageSourceMapping>
|
|
</configuration>
|