101bb908bd
- Add Serilog.AspNetCore + Sinks.Console + Sinks.Seq to Api - Add Serilog.Extensions.Hosting + Sinks.Console + Sinks.Seq to Worker - Add Microsoft.Extensions.Logging.Abstractions to Services - TransactionBehavior logs handler name, elapsed time, and errors Ref: IT-628 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
22 lines
729 B
XML
22 lines
729 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" />
|
|
<PackageReference Include="Serilog.AspNetCore" />
|
|
<PackageReference Include="Serilog.Sinks.Console" />
|
|
<PackageReference Include="Serilog.Sinks.Seq" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\HrynCo.NotificationService.Services\HrynCo.NotificationService.Services.csproj" />
|
|
<ProjectReference Include="..\HrynCo.NotificationService.DAL.EF\HrynCo.NotificationService.DAL.EF.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|