forked from cecilphillip/temporal-dotnet-agents
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDurableOpenTelemetry.csproj
More file actions
32 lines (27 loc) · 1.24 KB
/
DurableOpenTelemetry.csproj
File metadata and controls
32 lines (27 loc) · 1.24 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">
<PropertyGroup>
<OutputType>Exe</OutputType>
<!-- Samples don't need strict warning enforcement -->
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<IsPackable>false</IsPackable>
<!-- Avoid namespace collision with the OpenTelemetry NuGet package -->
<RootNamespace>DurableOpenTelemetry</RootNamespace>
<UserSecretsId>9f2e0995-ad0f-4cf0-9e35-f9469b5f9744</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="../../../src/Temporalio.Extensions.AI/Temporalio.Extensions.AI.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.AI.OpenAI" Version="10.5.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.7" />
<PackageReference Include="OpenAI" Version="2.10.0" />
<PackageReference Include="Temporalio.Extensions.OpenTelemetry" Version="1.13.0" />
<PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.15.3" />
<PackageReference Include="OpenTelemetry.Exporter.Console" Version="1.15.3" />
</ItemGroup>
<ItemGroup>
<Content Include="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>