forked from microsoft/kernel-memory
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAzureAIDocIntel.csproj
More file actions
36 lines (28 loc) · 1.51 KB
/
AzureAIDocIntel.csproj
File metadata and controls
36 lines (28 loc) · 1.51 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.DataFormats.AzureAIDocIntel</AssemblyName>
<RootNamespace>Microsoft.KernelMemory.DataFormats.AzureAIDocIntel</RootNamespace>
<NoWarn>$(NoWarn);KMEXP02;CA1724;CS1591;CA1308;</NoWarn>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\service\Abstractions\Abstractions.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity" />
<PackageReference Include="Azure.AI.FormRecognizer" />
</ItemGroup>
<Import Project="../../infra/dotnet/code-analysis.props" />
<Import Project="../../infra/dotnet/nuget-package.props" />
<PropertyGroup>
<IsPackable>true</IsPackable>
<PackageId>Microsoft.KernelMemory.DataFormats.AzureAIDocIntel</PackageId>
<Product>Azure AI Document Intelligence for Kernel Memory</Product>
<Description>Add Azure AI Document Intelligence to Kernel Memory to extract content from images and documentss.</Description>
<PackageTags>OCR, PDF, 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>