826cfbee31
Define the SiteStreamService proto for real-time instance event streaming (attribute value changes, alarm state changes) from site nodes to central. Add pre-generated C# stubs following the existing LmxProxy pattern, gRPC NuGet packages with FrameworkReference for ASP.NET Core server types, and proto roundtrip tests.
30 lines
1.0 KiB
XML
30 lines
1.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<FrameworkReference Include="Microsoft.AspNetCore.App" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Akka" Version="1.5.62" />
|
|
<PackageReference Include="Akka.Remote" Version="1.5.62" />
|
|
<PackageReference Include="Akka.Cluster" Version="1.5.62" />
|
|
<PackageReference Include="Akka.Cluster.Tools" Version="1.5.62" />
|
|
<PackageReference Include="Google.Protobuf" Version="3.29.3" />
|
|
<PackageReference Include="Grpc.Net.Client" Version="2.71.0" />
|
|
<PackageReference Include="Grpc.Tools" Version="2.71.0" PrivateAssets="All" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="../ScadaLink.Commons/ScadaLink.Commons.csproj" />
|
|
<ProjectReference Include="../ScadaLink.HealthMonitoring/ScadaLink.HealthMonitoring.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|