forked from cecilphillip/temporal-dotnet-agents
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDurableChat.csproj
More file actions
27 lines (22 loc) · 882 Bytes
/
DurableChat.csproj
File metadata and controls
27 lines (22 loc) · 882 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<!-- Samples don't need strict warning enforcement -->
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<IsPackable>false</IsPackable>
<UserSecretsId>2ae3e907-262a-4fc4-b010-67c21606dc17</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" />
</ItemGroup>
<ItemGroup>
<Content Include="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>