1<Project Sdk="Microsoft.NET.Sdk">
2
3 <PropertyGroup>
4 <TargetFramework>net10.0</TargetFramework>
5 <ImplicitUsings>enable</ImplicitUsings>
6 <Nullable>enable</Nullable>
7 <IsAspireSharedProject>true</IsAspireSharedProject>
8 </PropertyGroup>
9
10 <ItemGroup>
11 <FrameworkReference Include="Microsoft.AspNetCore.App" />
12 <PackageReference Include="Microsoft.AspNetCore.OpenApi" />
13
14 <PackageReference Include="Microsoft.Extensions.Http.Resilience" />
15 <PackageReference Include="Microsoft.Extensions.ServiceDiscovery" />
16 <PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" />
17 <PackageReference Include="OpenTelemetry.Extensions.Hosting" />
18 <PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" />
19 <PackageReference Include="OpenTelemetry.Instrumentation.Http" />
20 <PackageReference Include="OpenTelemetry.Instrumentation.Runtime" />
21 </ItemGroup>
22
23</Project>