mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-06-30 02:31:08 +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.22.3" />
|
|
<PackageReference Include="Google.Protobuf.Tools" Version="3.22.3" />
|
|
<PackageReference Include="Grpc.AspNetCore" Version="2.52.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|