15 lines
559 B
XML
15 lines
559 B
XML
|
|
<Project Sdk="Microsoft.NET.Sdk.Worker">
|
||
|
|
|
||
|
|
<!-- The worker role. Same image as the web host, selected at the Docker entrypoint by RUN_MODE.
|
||
|
|
Shares all domain modules via Bootstrap; contributes zero HTTP surface. OpenTelemetry flows
|
||
|
|
transitively from Infrastructure; Serilog.AspNetCore provides AddSerilog + config binding. -->
|
||
|
|
<ItemGroup>
|
||
|
|
<ProjectReference Include="..\..\Bootstrap\TeamUp.Bootstrap\TeamUp.Bootstrap.csproj" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="Serilog.AspNetCore" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
</Project>
|