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,3 @@
// Placeholder entry point for the ZB.MOM.WW.Secrets CLI. Real commands are added
// in a later task; for now it is a no-op that exits successfully.
return 0;
@@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\ZB.MOM.WW.Secrets\ZB.MOM.WW.Secrets.csproj" />
</ItemGroup>
</Project>