7370b33186
Task 1 of the Phase 1 adoption plan. Wiring only - no behavior change yet.
- Directory.Packages.props: LocalDb / .Replication / .Contracts @ 0.1.0
- NuGet.config: ZB.MOM.WW.LocalDb + ZB.MOM.WW.LocalDb.* mapped to the
dohertj2-gitea feed (central package management requires explicit mapping)
- SiteRuntime + SiteEventLogging: PackageReference ZB.MOM.WW.LocalDb
- Host: ZB.MOM.WW.LocalDb + ZB.MOM.WW.LocalDb.Replication
Required two prerequisite commits, both landed ahead of this one:
ecf6b628 - AngleSharp pin (pre-existing break; the solution would not build)
4715f2f9 - gRPC 2.71.0 -> 2.76.0 (LocalDb.Replication's nuspec floor)
SQLitePCLRaw stays pinned at 2.1.12 (GHSA-2m69-gcr7-jv3q) - verified intact.
Verified:
dotnet build ZB.MOM.WW.ScadaBridge.slnx -> 0 Error(s), 0 Warning(s)
all three LocalDb packages restored from the Gitea feed
Claude-Session: https://claude.ai/code/session_01BL2Vu1ESDQ9SCN4gVKkdts
41 lines
1.7 KiB
XML
41 lines
1.7 KiB
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>
|
|
<!--
|
|
Central package management requires explicit source mapping when more than
|
|
one feed is defined: nuget.org serves everything; the Gitea feed serves only
|
|
the ZB.MOM.WW.MxGateway.* packages.
|
|
-->
|
|
<packageSourceMapping>
|
|
<packageSource key="nuget.org">
|
|
<package pattern="*" />
|
|
</packageSource>
|
|
<packageSource key="dohertj2-gitea">
|
|
<package pattern="ZB.MOM.WW.MxGateway.*" />
|
|
<package pattern="ZB.MOM.WW.Health" />
|
|
<package pattern="ZB.MOM.WW.Health.*" />
|
|
<package pattern="ZB.MOM.WW.Telemetry" />
|
|
<package pattern="ZB.MOM.WW.Telemetry.*" />
|
|
<package pattern="ZB.MOM.WW.Configuration" />
|
|
<package pattern="ZB.MOM.WW.Auth" />
|
|
<package pattern="ZB.MOM.WW.Auth.*" />
|
|
<package pattern="ZB.MOM.WW.Audit" />
|
|
<package pattern="ZB.MOM.WW.Theme" />
|
|
<package pattern="ZB.MOM.WW.Secrets" />
|
|
<package pattern="ZB.MOM.WW.Secrets.*" />
|
|
<package pattern="ZB.MOM.WW.LocalDb" />
|
|
<package pattern="ZB.MOM.WW.LocalDb.*" />
|
|
</packageSource>
|
|
</packageSourceMapping>
|
|
<!--
|
|
Credentials are NOT committed. Provide them per-developer by running
|
|
`dotnet nuget add source` for the Gitea feed (with username + access token
|
|
and the store-password-in-clear-text flag), or supply NuGet credential
|
|
env vars in CI / the docker build (see docker/deploy.sh wiring in Task 19).
|
|
-->
|
|
</configuration>
|