forked from microsoft/semantic-kernel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSqliteVec.csproj
More file actions
48 lines (39 loc) · 2.02 KB
/
SqliteVec.csproj
File metadata and controls
48 lines (39 loc) · 2.02 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- THIS PROPERTY GROUP MUST COME FIRST -->
<AssemblyName>Microsoft.SemanticKernel.Connectors.SqliteVec</AssemblyName>
<RootNamespace>$(AssemblyName)</RootNamespace>
<TargetFrameworks>net10.0;net8.0;netstandard2.0;net462</TargetFrameworks>
<IsAotCompatible Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net8.0'))">true</IsAotCompatible>
<VersionSuffix>preview</VersionSuffix>
</PropertyGroup>
<!-- IMPORT NUGET PACKAGE SHARED PROPERTIES -->
<Import Project="$(RepoRoot)/dotnet/nuget/nuget-package.props" />
<Import Project="$(RepoRoot)/dotnet/src/InternalUtilities/src/RestrictedInternalUtilities.props" />
<PropertyGroup>
<!-- NuGet Package Settings -->
<Title>SQLite provider for Microsoft.Extensions.VectorData</Title>
<Description>SQLite (sqlitevec) provider for Microsoft.Extensions.VectorData by Semantic Kernel</Description>
<PackageReadmeFile>VECTORDATA-CONNECTORS-NUGET.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include="$(RepoRoot)/dotnet/nuget/VECTORDATA-CONNECTORS-NUGET.md" Link="VECTORDATA-CONNECTORS-NUGET.md" Pack="true" PackagePath="." />
</ItemGroup>
<ItemGroup>
<Compile Include="..\Common\SqlFilterTranslator.cs" Link="SqlFilterTranslator.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Linq.AsyncEnumerable" />
<PackageReference Include="System.Numerics.Tensors" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
<PackageReference Include="Microsoft.Extensions.AI.Abstractions" />
<PackageReference Include="Microsoft.Data.Sqlite" />
<PackageReference Include="sqlite-vec" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' Or '$(TargetFramework)' == 'net462' ">
<PackageReference Include="Microsoft.Bcl.Memory" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="SemanticKernel.Connectors.SqliteVec.UnitTests" />
</ItemGroup>
</Project>