forked from microsoft/kernel-memory
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCore.csproj
More file actions
66 lines (58 loc) · 3.73 KB
/
Core.csproj
File metadata and controls
66 lines (58 loc) · 3.73 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<RollForward>LatestMajor</RollForward>
<AssemblyName>Microsoft.KernelMemory.Core</AssemblyName>
<RootNamespace>Microsoft.KernelMemory</RootNamespace>
<NoWarn>$(NoWarn);KMEXP00;KMEXP01;KMEXP02;KMEXP03;KMEXP04;SKEXP0001;SKEXP0011;CA2208;CA1308;CA1724;NU5104;CS8002;</NoWarn>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Abstractions\Abstractions.csproj" />
<ProjectReference Include="..\..\extensions\Anthropic\Anthropic.csproj" />
<ProjectReference Include="..\..\extensions\AWS\S3\S3.csproj" />
<ProjectReference Include="..\..\extensions\AzureAIDocIntel\AzureAIDocIntel.csproj" />
<ProjectReference Include="..\..\extensions\AzureAISearch\AzureAISearch\AzureAISearch.csproj" />
<ProjectReference Include="..\..\extensions\AzureBlobs\AzureBlobs.csproj" />
<ProjectReference Include="..\..\extensions\AzureOpenAI\AzureOpenAI.csproj" />
<ProjectReference Include="..\..\extensions\AzureQueues\AzureQueues.csproj" />
<ProjectReference Include="..\..\extensions\Elasticsearch\Elasticsearch\Elasticsearch.csproj" />
<ProjectReference Include="..\..\extensions\LlamaSharp\LlamaSharp\LlamaSharp.csproj" />
<ProjectReference Include="..\..\extensions\MongoDbAtlas\MongoDbAtlas\MongoDbAtlas.csproj" />
<ProjectReference Include="..\..\extensions\Ollama\Ollama\Ollama.csproj" />
<ProjectReference Include="..\..\extensions\Postgres\Postgres\Postgres.csproj" />
<ProjectReference Include="..\..\extensions\Qdrant\Qdrant\Qdrant.csproj" />
<ProjectReference Include="..\..\extensions\RabbitMQ\RabbitMQ\RabbitMQ.csproj" />
<ProjectReference Include="..\..\extensions\Redis\Redis\Redis.csproj" />
<ProjectReference Include="..\..\extensions\SQLServer\SQLServer\SQLServer.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Core" />
<PackageReference Include="ClosedXML" />
<PackageReference Include="DocumentFormat.OpenXml" />
<PackageReference Include="HtmlAgilityPack" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" />
<PackageReference Include="Microsoft.Extensions.Http" />
<PackageReference Include="PdfPig" />
<PackageReference Include="Polly.Core" />
<PackageReference Include="System.Linq.Async" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Prompts\summarize.txt" />
<EmbeddedResource Include="Prompts\answer-with-facts.txt" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="Microsoft.KM.Core.UnitTests" />
<InternalsVisibleTo Include="Microsoft.KM.Core.FunctionalTests" />
</ItemGroup>
<PropertyGroup>
<IsPackable>true</IsPackable>
<PackageId>Microsoft.KernelMemory.Core</PackageId>
<Product>Kernel Memory library, including extensions and Serverless and Web client</Product>
<Description>The package contains all the core logic and extensions of Kernel Memory, 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>
<DocumentationFile>bin/$(Configuration)/$(TargetFramework)/$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Include="../../README.md" Link="README.md" Pack="true" PackagePath="." Visible="false" />
</ItemGroup>
</Project>