All checks were successful
DCO / DCO (pull_request) Successful in 41s
Signed-off-by: Pavel Gross <p.gross@yadro.com>
36 lines
1.4 KiB
XML
36 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<LangVersion>12.0</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<EnableNETAnalyzers>true</EnableNETAnalyzers>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Google.Protobuf" Version="3.26.1" />
|
|
<PackageReference Include="Grpc.Net.Client" Version="2.62.0" />
|
|
<PackageReference Include="Grpc.Tools" Version="2.64.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Protobuf Include="accounting\*.proto" GrpcServices="Client" />
|
|
<Protobuf Include="acl\*.proto" GrpcServices="Client" />
|
|
<Protobuf Include="apemanager\*.proto" GrpcServices="Client" />
|
|
<Protobuf Include="container\*.proto" GrpcServices="Client" />
|
|
<Protobuf Include="lock\*.proto" GrpcServices="Client" />
|
|
<Protobuf Include="netmap\*.proto" GrpcServices="Client" />
|
|
<Protobuf Include="object\*.proto" GrpcServices="Client" />
|
|
<Protobuf Include="refs\*.proto" GrpcServices="Client" />
|
|
<Protobuf Include="session\*.proto" GrpcServices="Client" />
|
|
<Protobuf Include="status\*.proto" GrpcServices="Client" />
|
|
<Protobuf Include="tombstone\*.proto" GrpcServices="Client" />
|
|
</ItemGroup>
|
|
</Project>
|