-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathGenAiLab.Web.csproj
More file actions
25 lines (21 loc) · 1.06 KB
/
GenAiLab.Web.csproj
File metadata and controls
25 lines (21 loc) · 1.06 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>5808fac2-519e-4085-945e-afefbdbff106</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Aspire.Azure.AI.OpenAI" Version="9.3.0-preview.1.25265.20" />
<PackageReference Include="Microsoft.Extensions.AI.OpenAI" Version="9.7.1-preview.1.25365.4" />
<PackageReference Include="Microsoft.Extensions.AI" Version="9.7.1" />
<PackageReference Include="Microsoft.SemanticKernel.Core" Version="1.61.0" />
<PackageReference Include="PdfPig" Version="0.1.11" />
<PackageReference Include="System.Linq.Async" Version="6.0.3" />
<PackageReference Include="Aspire.Qdrant.Client" Version="9.4.0" />
<PackageReference Include="Microsoft.SemanticKernel.Connectors.Qdrant" Version="1.53.0-preview" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\GenAiLab.ServiceDefaults\GenAiLab.ServiceDefaults.csproj" />
</ItemGroup>
</Project>