-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathComanda.Profiles.WebApi.csproj
More file actions
30 lines (26 loc) · 1.21 KB
/
Copy pathComanda.Profiles.WebApi.csproj
File metadata and controls
30 lines (26 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<!--
Disabled CS8509 to allow switch expressions without a default case,
assuming exhaustiveness is guaranteed by controlled types
-->
<NoWarn>CS8509</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FluentValidation.AspNetCore" Version="11.3.1" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.9" />
<PackageReference Include="Scalar.AspNetCore" Version="2.12.7" />
<PackageReference Include="Scalar.AspNetCore.Microsoft" Version="2.12.7" />
<PackageReference Include="Sentry.AspNetCore" Version="6.0.0" />
<PackageReference Include="Sentry.Serilog" Version="6.0.0" />
<PackageReference Include="Serilog.AspNetCore" Version="10.0.0" />
<PackageReference Include="Serilog.Sinks.Seq" Version="9.0.0" />
<PackageReference Include="HttpsRichardy.Federation.Sdk" Version="4.2.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Comanda.Profiles.Infrastructure.IoC\Comanda.Profiles.Infrastructure.IoC.csproj" />
</ItemGroup>
</Project>