mirror of
https://github.com/BillyCool/MariesWonderland.git
synced 2026-02-04 06:35:06 +01:00
18 lines
402 B
XML
18 lines
402 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Protobuf Include="proto\*.proto" GrpcServices="Server" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Grpc.AspNetCore" Version="2.76.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|