2021-12-10 03:04:48 +03:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Exe</OutputType>
|
2022-08-04 00:36:22 +03:00
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2021-12-10 03:04:48 +03:00
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Grpc.Net.Client" Version="2.41.0" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<Protobuf Include="Protos\greet.proto">
|
|
|
|
<GrpcServices>Both</GrpcServices>
|
|
|
|
<Access>Public</Access>
|
|
|
|
<ProtoCompile>True</ProtoCompile>
|
|
|
|
<CompileOutputs>True</CompileOutputs>
|
2022-08-04 00:36:22 +03:00
|
|
|
<OutputDir>obj\Release\net6.0-windows\</OutputDir>
|
2021-12-10 03:04:48 +03:00
|
|
|
<Generator>MSBuild:Compile</Generator>
|
|
|
|
</Protobuf>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|