mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-06-29 18:21:08 +00:00
22 lines
750 B
XML
22 lines
750 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.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.28.3" />
|
|
<PackageReference Include="Google.Protobuf.Tools" Version="3.28.3" />
|
|
<PackageReference Include="Grpc.AspNetCore" Version="2.66.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|