-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChatApp1.csproj
More file actions
21 lines (18 loc) · 932 Bytes
/
ChatApp1.csproj
File metadata and controls
21 lines (18 loc) · 932 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>213be535-bf1c-45ca-b3ba-a1e9ddaeda99</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="OpenAI" Version="2.2.0-beta.1" />
<PackageReference Include="Microsoft.Extensions.AI.OpenAI" Version="9.3.0-preview.1.25161.3" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.3" />
<PackageReference Include="Microsoft.Extensions.AI" Version="9.3.0-preview.1.25161.3" />
<PackageReference Include="Microsoft.SemanticKernel.Core" Version="1.37.0" />
<PackageReference Include="PdfPig" Version="0.1.9" />
<PackageReference Include="System.Linq.Async" Version="6.0.1" />
<PackageReference Include="System.Speech" Version="9.0.5" />
</ItemGroup>
</Project>