feat(secrets): scaffold ZB.MOM.WW.Secrets solution + 4 projects

This commit is contained in:
Joseph Doherty
2026-07-15 16:24:38 -04:00
parent 7ab1c86178
commit 824facab39
15 changed files with 267 additions and 0 deletions
@@ -0,0 +1,9 @@
namespace ZB.MOM.WW.Secrets.Abstractions;
/// <summary>
/// Internal marker giving the assembly a compilable input while the contract
/// surface is scaffolded. Replace with real contracts as they are implemented.
/// </summary>
internal static class AssemblyMarker
{
}
@@ -0,0 +1,22 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<PropertyGroup>
<IsPackable>true</IsPackable>
<PackageId>ZB.MOM.WW.Secrets.Abstractions</PackageId>
<Authors>ZB.MOM.WW</Authors>
<Description>Secrets contracts (envelope-encrypted secret storage) for the ZB.MOM.WW SCADA family.</Description>
<PackageProjectUrl>https://gitea.dohertylan.com/dohertj2/zb-mom-ww-secrets</PackageProjectUrl>
<RepositoryUrl>https://gitea.dohertylan.com/dohertj2/zb-mom-ww-secrets</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<InternalsVisibleTo Include="ZB.MOM.WW.Secrets.Tests" />
</ItemGroup>
</Project>