forked from shinjiDev/petgraphqlsample
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDemoChoco.csproj
22 lines (19 loc) · 1.05 KB
/
DemoChoco.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<DisableImplicitNamespaceImports>true</DisableImplicitNamespaceImports>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="HotChocolate" Version="12.7.0" />
<PackageReference Include="HotChocolate.AspNetCore" Version="12.7.0" />
<PackageReference Include="HotChocolate.Diagnostics" Version="12.7.0" />
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.20.0" />
<PackageReference Include="Microsoft.ApplicationInsights.Web" Version="2.20.0" />
<PackageReference Include="OpenTelemetry.Exporter.Jaeger" Version="1.2.0" />
<PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.0.0-rc9.3" />
<PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.0.0-rc9.3" />
<PackageReference Include="OpenTelemetry.Instrumentation.Http" Version="1.0.0-rc9.3" />
</ItemGroup>
</Project>