forked from microsoft/kernel-memory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AzureBlobs.csproj
41 lines (32 loc) · 1.75 KB
/
AzureBlobs.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.ContentStorage.AzureBlobs</AssemblyName>
<RootNamespace>Microsoft.KernelMemory.ContentStorage.AzureBlobs</RootNamespace>
<NoWarn>$(NoWarn);CA1724;CS1591;</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.Blobs"/>
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="Microsoft.UnitTests"/>
</ItemGroup>
<Import Project="../../code-analysis.props"/>
<Import Project="../../nuget-package.props"/>
<PropertyGroup>
<IsPackable>true</IsPackable>
<PackageId>Microsoft.KernelMemory.ContentStorage.AzureBlobs</PackageId>
<Product>Azure Blob Storage for Kernel Memory content storage</Product>
<Description>Azure Blob Storage adapter allowing Kernel Memory to upload documents and maintain their state in Azure Blobs</Description>
<PackageTags>Copilot, Plugin, Memory, RAG, Kernel Memory, Azure Blob, 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>