forked from microsoft/kernel-memory
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAzureAIDocIntel.csproj
41 lines (32 loc) · 1.73 KB
/
AzureAIDocIntel.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<RollForward>LatestMajor</RollForward>
<AssemblyName>Microsoft.KernelMemory.DataFormats.AzureAIDocIntel</AssemblyName>
<RootNamespace>Microsoft.KernelMemory.DataFormats.AzureAIDocIntel</RootNamespace>
<NoWarn>$(NoWarn);CA1724;CS1591;CA1308;</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.KernelMemory.Abstractions" Condition="'$(SolutionName)' != 'KernelMemoryDev'" />
<ProjectReference Include="..\..\service\Abstractions\Abstractions.csproj" Condition="'$(SolutionName)' == 'KernelMemoryDev'"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity"/>
<PackageReference Include="Azure.AI.FormRecognizer"/>
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="Microsoft.UnitTests"/>
</ItemGroup>
<Import Project="../../code-analysis.props"/>
<Import Project="../../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>