26 строки
817 B
XML
26 строки
817 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Google.Protobuf" Version="3.21.5" />
|
|
<PackageReference Include="Grpc.Net.Client" Version="2.48.0" />
|
|
<PackageReference Include="Grpc.Net.Client.Web" Version="2.48.0" />
|
|
<PackageReference Include="Grpc.Tools" Version="2.48.1">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Protobuf Include="..\proto\types.proto" />
|
|
<Protobuf Include="..\proto\remoteapp.proto" />
|
|
<Protobuf Include="..\proto\idb.proto" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|