28 lines
1.0 KiB
XML
28 lines
1.0 KiB
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<TargetFramework>net7.0</TargetFramework>
|
||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
|
<Nullable>enable</Nullable>
|
||
|
|
<Version>1.0.0</Version>
|
||
|
|
<DebugType>None</DebugType>
|
||
|
|
<DebugSymbols>False</DebugSymbols>
|
||
|
|
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
|
||
|
|
</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.55.1">
|
||
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||
|
|
<PrivateAssets>all</PrivateAssets>
|
||
|
|
</PackageReference>
|
||
|
|
<PackageReference Include="FluentValidation.DependencyInjectionExtensions" Version="11.2.2" />
|
||
|
|
<PackageReference Include="Google.Api.CommonProtos" Version="2.10.0" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<Protobuf Include="Protos\package.proto" ProtoRoot="Protos\" GrpcServices="Both" />
|
||
|
|
</ItemGroup>
|
||
|
|
</Project>
|