campaign UI working

This commit is contained in:
Mikhail Thompson
2024-06-26 22:02:09 +03:00
parent ce0b5bf040
commit 7c6e57bd63
15 changed files with 306 additions and 9 deletions

View File

@@ -0,0 +1,22 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Grpc.Core" Version="2.46.6" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\nksrv\nksrv.csproj" />
</ItemGroup>
<ItemGroup>
<Protobuf Include="..\nksrv/Protos/allmsgs.proto" />
</ItemGroup>
</Project>