forked from dotnet/extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMicrosoft.Extensions.VectorData.Abstractions.csproj
More file actions
31 lines (27 loc) · 1.42 KB
/
Microsoft.Extensions.VectorData.Abstractions.csproj
File metadata and controls
31 lines (27 loc) · 1.42 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>Microsoft.Extensions.VectorData</RootNamespace>
<Description>Abstractions for vector database access.</Description>
<TargetFrameworks>net10.0;net8.0;netstandard2.0;net462</TargetFrameworks>
<StrongNameKeyId>MicrosoftSharedLib</StrongNameKeyId>
<Stage>normal</Stage>
<MinCodeCoverage>75</MinCodeCoverage>
<MinMutationScore>75</MinMutationScore>
<Workstream>AI</Workstream>
<NoWarn>$(NoWarn);S125;S1135;S2302</NoWarn>
<PackageProjectUrl>https://learn.microsoft.com/dotnet/ai/vector-stores/overview</PackageProjectUrl>
<PackageTags>vector, database, similarity, ai, query</PackageTags>
</PropertyGroup>
<PropertyGroup>
<InjectSharedDiagnosticIds>true</InjectSharedDiagnosticIds>
<InjectExperimentalAttributeOnLegacy>true</InjectExperimentalAttributeOnLegacy>
<InjectRequiredMemberOnLegacy>true</InjectRequiredMemberOnLegacy>
<InjectCompilerFeatureRequiredOnLegacy>true</InjectCompilerFeatureRequiredOnLegacy>
<InjectUnreachableExceptionOnLegacy>true</InjectUnreachableExceptionOnLegacy>
<InjectUnreachableExceptionOnLegacy>true</InjectUnreachableExceptionOnLegacy>
<InjectSystemIndexOnLegacy>true</InjectSystemIndexOnLegacy>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Microsoft.Extensions.AI.Abstractions\Microsoft.Extensions.AI.Abstractions.csproj" />
</ItemGroup>
</Project>