22 lines
881 B
XML
22 lines
881 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<configuration>
|
|
<packageSources>
|
|
<clear />
|
|
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
|
|
<add key="dohertj2-gitea" value="https://gitea.dohertylan.com/api/packages/dohertj2/nuget/index.json" />
|
|
</packageSources>
|
|
<!-- nuget.org serves everything; the Gitea feed serves only the ZB.MOM.WW.* shared libs.
|
|
Credentials are NOT committed: they are provided per-developer at the user level. -->
|
|
<packageSourceMapping>
|
|
<packageSource key="nuget.org">
|
|
<package pattern="*" />
|
|
</packageSource>
|
|
<packageSource key="dohertj2-gitea">
|
|
<package pattern="ZB.MOM.WW.Health" />
|
|
<package pattern="ZB.MOM.WW.Health.*" />
|
|
<package pattern="ZB.MOM.WW.Telemetry" />
|
|
<package pattern="ZB.MOM.WW.Telemetry.*" />
|
|
</packageSource>
|
|
</packageSourceMapping>
|
|
</configuration>
|