mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-07-01 02:52:56 +00:00
25 lines
732 B
XML
25 lines
732 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="Users\Models.proto" />
|
|
<None Remove="Users\UsersApi.proto" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Protobuf Include="Users\Models.proto" GrpcServices="Both" />
|
|
<Protobuf Include="Users\UsersApi.proto" GrpcServices="Both" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Google.Protobuf" Version="3.24.0" />
|
|
<PackageReference Include="Google.Protobuf.Tools" Version="3.24.0" />
|
|
<PackageReference Include="Grpc.AspNetCore" Version="2.55.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|