-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathAzureBlobs.csproj
More file actions
26 lines (19 loc) · 814 Bytes
/
AzureBlobs.csproj
File metadata and controls
26 lines (19 loc) · 814 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<RollForward>LatestMajor</RollForward>
<AssemblyName>Microsoft.KernelMemory.ContentStorage.AzureBlobs</AssemblyName>
<RootNamespace>Microsoft.KernelMemory.ContentStorage.AzureBlobs</RootNamespace>
<NoWarn>$(NoWarn);CA1724;CS1591;</NoWarn>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\service\Abstractions\Abstractions.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.16.0" />
<PackageReference Include="Azure.Storage.Blobs" Version="12.19.1" />
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="Microsoft.UnitTests" />
</ItemGroup>
</Project>