25 lines
681 B
XML
25 lines
681 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<OutputType>Exe</OutputType>
|
||
|
<TargetFramework>net5.0</TargetFramework>
|
||
|
<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>
|
||
|
<OutputDir>obj\Release\net5.0-windows\</OutputDir>
|
||
|
<Generator>MSBuild:Compile</Generator>
|
||
|
</Protobuf>
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|