30 lines
993 B
XML
30 lines
993 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Google.Protobuf" Version="3.28.2" />
|
|
<PackageReference Include="Grpc.Net.Client" Version="2.66.0" />
|
|
<PackageReference Include="Grpc.Tools" Version="2.67.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Protobuf Include="Protos\greet.proto">
|
|
<GrpcServices>Server</GrpcServices>
|
|
<Access>Public</Access>
|
|
<ProtoCompile>True</ProtoCompile>
|
|
<CompileOutputs>True</CompileOutputs>
|
|
<OutputDir>obj\Debug\net8.0\</OutputDir>
|
|
<Generator>MSBuild:Compile</Generator>
|
|
</Protobuf>
|
|
</ItemGroup>
|
|
|
|
</Project>
|