forked from microsoft/kernel-memory
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSemanticKernelPlugin.csproj
More file actions
36 lines (28 loc) · 1.61 KB
/
SemanticKernelPlugin.csproj
File metadata and controls
36 lines (28 loc) · 1.61 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<RollForward>LatestMajor</RollForward>
<AssemblyName>Microsoft.KernelMemory.SemanticKernelPlugin</AssemblyName>
<RootNamespace>Microsoft.KernelMemory.SemanticKernelPlugin</RootNamespace>
<NoWarn>$(NoWarn);CS1591;NU5104;</NoWarn>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\service\Abstractions\Abstractions.csproj" />
<ProjectReference Include="..\WebClient\WebClient.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SemanticKernel.Abstractions" />
</ItemGroup>
<Import Project="../../../infra/dotnet/code-analysis.props" />
<Import Project="../../../infra/dotnet/nuget-package.props" />
<PropertyGroup>
<IsPackable>true</IsPackable>
<PackageId>Microsoft.KernelMemory.SemanticKernelPlugin</PackageId>
<Product>Memory Plugin for Semantic Kernel</Product>
<Description>Kernel Memory Plugin allows to use Kernel Memory Service as a Semantic Kernel plugin, to index and query any data and documents, using LLM and natural language, tracking sources and showing citations.</Description>
<PackageTags>Copilot, Plugin, Memory, RAG, Kernel Memory, Semantic Memory, Episodic Memory, Declarative Memory, AI, Artificial Intelligence, Embeddings, Vector DB, Vector Search, Memory DB, ETL</PackageTags>
</PropertyGroup>
<ItemGroup>
<None Include="../../../README.md" Link="README.md" Pack="true" PackagePath="." Visible="false" />
</ItemGroup>
</Project>