Why: align BFF runtime packaging and remove cross-repo proto coupling in container builds. What: add Docker assets and runbook, map /health, and vendor grpc proto locally. Rule: keep technical intent only and avoid orchestration references.
26 lines
1.1 KiB
XML
26 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Google.Protobuf" Version="3.31.1" />
|
|
<PackageReference Include="Grpc.Core.Api" Version="2.71.0" />
|
|
<PackageReference Include="Grpc.Net.Client" Version="2.71.0" />
|
|
<PackageReference Include="Grpc.Net.ClientFactory" Version="2.71.0" />
|
|
<PackageReference Include="Grpc.Tools" Version="2.71.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Protobuf Include="Protos\identity_runtime.proto" GrpcServices="Client" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Thalos.Bff.Application\Thalos.Bff.Application.csproj" />
|
|
<ProjectReference Include="..\Thalos.Bff.Contracts\Thalos.Bff.Contracts.csproj" />
|
|
<PackageReference Include="Core.Blueprint.Common" Version="0.2.0" />
|
|
</ItemGroup>
|
|
</Project>
|