forked from microsoft/kernel-memory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAzureQueues.csproj
41 lines (32 loc) · 1.7 KB
/
AzureQueues.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.Orchestration.AzureQueues</AssemblyName>
<RootNamespace>Microsoft.KernelMemory.Orchestration.AzureQueues</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.Storage.Queues"/>
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="Microsoft.UnitTests"/>
</ItemGroup>
<Import Project="../../code-analysis.props"/>
<Import Project="../../nuget-package.props"/>
<PropertyGroup>
<IsPackable>true</IsPackable>
<PackageId>Microsoft.KernelMemory.Orchestration.AzureQueues</PackageId>
<Product>Azure Queue Storage connector for Kernel Memory pipelines</Product>
<Description>Azure Queue Storage connector for Microsoft Kernel Memory, to run asynchronous pipelines via Azure Queue Storage queues.</Description>
<PackageTags>Memory, RAG, Kernel Memory, Azure Queue, HNSW, AI, Artificial Intelligence, Embeddings, Vector DB, Vector Search, ETL</PackageTags>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Link="README.md" Pack="true" PackagePath="." Visible="false"/>
</ItemGroup>
</Project>