Working calculator

This commit is contained in:
2024-02-08 17:18:38 +01:00
commit 719444c06e
15 changed files with 1476 additions and 0 deletions

12
Server/Server.csproj Normal file
View File

@@ -0,0 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>GrpcCalculator.Server</RootNamespace>
<AssemblyName>GrpcCalculator.Server</AssemblyName>
</PropertyGroup>
</Project>