-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInMemoryVectorStore.csproj
More file actions
33 lines (28 loc) · 1.18 KB
/
InMemoryVectorStore.csproj
File metadata and controls
33 lines (28 loc) · 1.18 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
33
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Ater.DeepSeek.Core" Version="1.1.4" />
<PackageReference Include="Azure.AI.OpenAI" Version="2.1.0" />
<PackageReference Include="Build5Nines.SharpVector" Version="2.0.1" />
<PackageReference Include="Build5Nines.SharpVector.OpenAI" Version="2.0.0" />
<PackageReference Include="DocumentFormat.OpenXml" Version="3.3.0" />
<PackageReference Include="OpenAI" Version="2.1.0" />
<PackageReference Include="PdfPig" Version="0.1.10" />
<PackageReference Include="DotNetEnv" Version="3.1.1" />
<PackageReference Include="xunit.assert" Version="2.9.3" />
<PackageReference Include="xunit.extensibility.core" Version="2.9.3" />
</ItemGroup>
<ItemGroup>
<Folder Include="OutputHandlers\" />
</ItemGroup>
<ItemGroup>
<None Include=".env" Condition="Exists('.env')">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>