29 lines
1012 B
XML
29 lines
1012 B
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<TargetFramework>net9.0</TargetFramework>
|
||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
|
<Nullable>enable</Nullable>
|
||
|
|
<IsPackable>true</IsPackable>
|
||
|
|
<PackageId>BackOffice.BFF.Health.Protobuf</PackageId>
|
||
|
|
<Version>1.0.0</Version>
|
||
|
|
<Authors>FourSat</Authors>
|
||
|
|
<Company>FourSat</Company>
|
||
|
|
<Product>BackOffice.BFF.Health.Protobuf</Product>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="Google.Protobuf" Version="3.23.3" />
|
||
|
|
<PackageReference Include="Grpc.Core.Api" Version="2.54.0" />
|
||
|
|
<PackageReference Include="Grpc.Tools" Version="2.72.0">
|
||
|
|
<PrivateAssets>all</PrivateAssets>
|
||
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||
|
|
</PackageReference>
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<Protobuf Include="Protos\health.proto" GrpcServices="Both" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
</Project>
|