-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathPocketDDD.Server.WebAPI.csproj
More file actions
32 lines (28 loc) · 1.73 KB
/
PocketDDD.Server.WebAPI.csproj
File metadata and controls
32 lines (28 loc) · 1.73 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
31
32
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>94f2b34d-f80b-4de4-ac9c-d0fb8e36fd07</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.8">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" Version="10.0.8"/>
<PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" Version="1.15.3"/>
<PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.15.3"/>
<PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.15.2"/>
<PackageReference Include="OpenTelemetry.Instrumentation.Http" Version="1.15.1"/>
<PackageReference Include="OpenTelemetry.Instrumentation.Runtime" Version="1.15.1"/>
<PackageReference Include="OpenTelemetry.Instrumentation.SqlClient" Version="1.15.2"/>
<PackageReference Include="Swashbuckle.AspNetCore" Version="10.1.7"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\PocketDDD.Shared\PocketDDD.Shared.csproj"/>
<ProjectReference Include="..\PocketDDD.Server.DB\PocketDDD.Server.DB.csproj"/>
<ProjectReference Include="..\PocketDDD.Server.Model\PocketDDD.Server.Model.csproj"/>
<ProjectReference Include="..\PocketDDD.Server.Services\PocketDDD.Server.Services.csproj"/>
</ItemGroup>
</Project>