feat(historian-gateway): scaffold Gateway driver project + consume client package

Claude-Session: https://claude.ai/code/session_012SDSQ3AcaXqPcBtDESBRii
This commit is contained in:
Joseph Doherty
2026-06-26 16:18:50 -04:00
parent 369e832e5a
commit a98fc46d26
8 changed files with 347 additions and 0 deletions
@@ -0,0 +1,13 @@
using Xunit;
namespace ZB.MOM.WW.OtOpcUa.Driver.Historian.Gateway.Tests;
public sealed class ProjectSmokeTests
{
[Fact]
public void GatewayClientSeam_IsReferenceable()
{
var t = typeof(IHistorianGatewayClient);
Assert.Equal("IHistorianGatewayClient", t.Name);
}
}