mirror of
https://github.com/Brazmann/BrazChat.git
synced 2024-11-24 07:43:10 +00:00
23 lines
780 B
XML
23 lines
780 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Figgle" Version="0.4.0" />
|
|
<PackageReference Include="Google.Protobuf" Version="3.21.5" />
|
|
<PackageReference Include="Grpc" Version="2.46.3" />
|
|
<PackageReference Include="Grpc.Auth" Version="2.48.0" />
|
|
<PackageReference Include="Grpc.Tools" Version="2.48.1">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<Protobuf Include="**/*.proto" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|