diff --git a/ZB.MOM.WW.OtOpcUa.slnx b/ZB.MOM.WW.OtOpcUa.slnx index 49a09fd..d43c521 100644 --- a/ZB.MOM.WW.OtOpcUa.slnx +++ b/ZB.MOM.WW.OtOpcUa.slnx @@ -2,6 +2,8 @@ + + @@ -10,6 +12,12 @@ + + + + + + diff --git a/src/Core/ZB.MOM.WW.OtOpcUa.Cluster/ZB.MOM.WW.OtOpcUa.Cluster.csproj b/src/Core/ZB.MOM.WW.OtOpcUa.Cluster/ZB.MOM.WW.OtOpcUa.Cluster.csproj new file mode 100644 index 0000000..942f1bd --- /dev/null +++ b/src/Core/ZB.MOM.WW.OtOpcUa.Cluster/ZB.MOM.WW.OtOpcUa.Cluster.csproj @@ -0,0 +1,28 @@ + + + + ZB.MOM.WW.OtOpcUa.Cluster + true + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Core/ZB.MOM.WW.OtOpcUa.Commons/Interfaces/.gitkeep b/src/Core/ZB.MOM.WW.OtOpcUa.Commons/Interfaces/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/src/Core/ZB.MOM.WW.OtOpcUa.Commons/Messages/.gitkeep b/src/Core/ZB.MOM.WW.OtOpcUa.Commons/Messages/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/src/Core/ZB.MOM.WW.OtOpcUa.Commons/Types/.gitkeep b/src/Core/ZB.MOM.WW.OtOpcUa.Commons/Types/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/src/Core/ZB.MOM.WW.OtOpcUa.Commons/ZB.MOM.WW.OtOpcUa.Commons.csproj b/src/Core/ZB.MOM.WW.OtOpcUa.Commons/ZB.MOM.WW.OtOpcUa.Commons.csproj new file mode 100644 index 0000000..e92789a --- /dev/null +++ b/src/Core/ZB.MOM.WW.OtOpcUa.Commons/ZB.MOM.WW.OtOpcUa.Commons.csproj @@ -0,0 +1,12 @@ + + + + ZB.MOM.WW.OtOpcUa.Commons + true + + + + + + + diff --git a/src/Server/ZB.MOM.WW.OtOpcUa.AdminUI/ZB.MOM.WW.OtOpcUa.AdminUI.csproj b/src/Server/ZB.MOM.WW.OtOpcUa.AdminUI/ZB.MOM.WW.OtOpcUa.AdminUI.csproj new file mode 100644 index 0000000..d2d8acf --- /dev/null +++ b/src/Server/ZB.MOM.WW.OtOpcUa.AdminUI/ZB.MOM.WW.OtOpcUa.AdminUI.csproj @@ -0,0 +1,25 @@ + + + + ZB.MOM.WW.OtOpcUa.AdminUI + true + true + + + + + + + + + + + + + + + + + + + diff --git a/src/Server/ZB.MOM.WW.OtOpcUa.ControlPlane/ZB.MOM.WW.OtOpcUa.ControlPlane.csproj b/src/Server/ZB.MOM.WW.OtOpcUa.ControlPlane/ZB.MOM.WW.OtOpcUa.ControlPlane.csproj new file mode 100644 index 0000000..2ec6399 --- /dev/null +++ b/src/Server/ZB.MOM.WW.OtOpcUa.ControlPlane/ZB.MOM.WW.OtOpcUa.ControlPlane.csproj @@ -0,0 +1,29 @@ + + + + ZB.MOM.WW.OtOpcUa.ControlPlane + true + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Server/ZB.MOM.WW.OtOpcUa.Host/Program.cs b/src/Server/ZB.MOM.WW.OtOpcUa.Host/Program.cs new file mode 100644 index 0000000..404d207 --- /dev/null +++ b/src/Server/ZB.MOM.WW.OtOpcUa.Host/Program.cs @@ -0,0 +1,4 @@ +var builder = WebApplication.CreateBuilder(args); +var app = builder.Build(); +app.MapGet("/", () => "OtOpcUa.Host scaffold"); +await app.RunAsync(); diff --git a/src/Server/ZB.MOM.WW.OtOpcUa.Host/Properties/launchSettings.json b/src/Server/ZB.MOM.WW.OtOpcUa.Host/Properties/launchSettings.json new file mode 100644 index 0000000..0af0ed7 --- /dev/null +++ b/src/Server/ZB.MOM.WW.OtOpcUa.Host/Properties/launchSettings.json @@ -0,0 +1,13 @@ +{ + "profiles": { + "OtOpcUa.Host": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": false, + "applicationUrl": "http://localhost:9000", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/src/Server/ZB.MOM.WW.OtOpcUa.Host/ZB.MOM.WW.OtOpcUa.Host.csproj b/src/Server/ZB.MOM.WW.OtOpcUa.Host/ZB.MOM.WW.OtOpcUa.Host.csproj new file mode 100644 index 0000000..f251e81 --- /dev/null +++ b/src/Server/ZB.MOM.WW.OtOpcUa.Host/ZB.MOM.WW.OtOpcUa.Host.csproj @@ -0,0 +1,33 @@ + + + + ZB.MOM.WW.OtOpcUa.Host + OtOpcUa.Host + zb-mom-ww-otopcua-host + true + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Server/ZB.MOM.WW.OtOpcUa.Host/appsettings.json b/src/Server/ZB.MOM.WW.OtOpcUa.Host/appsettings.json new file mode 100644 index 0000000..0967ef4 --- /dev/null +++ b/src/Server/ZB.MOM.WW.OtOpcUa.Host/appsettings.json @@ -0,0 +1 @@ +{} diff --git a/src/Server/ZB.MOM.WW.OtOpcUa.OpcUaServer/ZB.MOM.WW.OtOpcUa.OpcUaServer.csproj b/src/Server/ZB.MOM.WW.OtOpcUa.OpcUaServer/ZB.MOM.WW.OtOpcUa.OpcUaServer.csproj new file mode 100644 index 0000000..bece604 --- /dev/null +++ b/src/Server/ZB.MOM.WW.OtOpcUa.OpcUaServer/ZB.MOM.WW.OtOpcUa.OpcUaServer.csproj @@ -0,0 +1,29 @@ + + + + ZB.MOM.WW.OtOpcUa.OpcUaServer + true + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Server/ZB.MOM.WW.OtOpcUa.Runtime/ZB.MOM.WW.OtOpcUa.Runtime.csproj b/src/Server/ZB.MOM.WW.OtOpcUa.Runtime/ZB.MOM.WW.OtOpcUa.Runtime.csproj new file mode 100644 index 0000000..2e4ca60 --- /dev/null +++ b/src/Server/ZB.MOM.WW.OtOpcUa.Runtime/ZB.MOM.WW.OtOpcUa.Runtime.csproj @@ -0,0 +1,36 @@ + + + + ZB.MOM.WW.OtOpcUa.Runtime + true + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/Server/ZB.MOM.WW.OtOpcUa.Security/ZB.MOM.WW.OtOpcUa.Security.csproj b/src/Server/ZB.MOM.WW.OtOpcUa.Security/ZB.MOM.WW.OtOpcUa.Security.csproj new file mode 100644 index 0000000..184e71b --- /dev/null +++ b/src/Server/ZB.MOM.WW.OtOpcUa.Security/ZB.MOM.WW.OtOpcUa.Security.csproj @@ -0,0 +1,24 @@ + + + + ZB.MOM.WW.OtOpcUa.Security + true + + + + + + + + + + + + + + + + + + +