mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-06-30 02:31:08 +00:00
22 lines
747 B
XML
22 lines
747 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Protobuf Include="Users\Models.proto" GrpcServices="Both"/>
|
|
<Protobuf Include="Users\UsersApi.proto" GrpcServices="Both"/>
|
|
<Protobuf Include="Tenants\Models.proto" GrpcServices="Both"/>
|
|
<Protobuf Include="Tenants\TenantsApi.proto" GrpcServices="Both"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Google.Protobuf" Version="3.24.2"/>
|
|
<PackageReference Include="Google.Protobuf.Tools" Version="3.24.2"/>
|
|
<PackageReference Include="Grpc.AspNetCore" Version="2.56.0"/>
|
|
</ItemGroup>
|
|
|
|
</Project>
|