-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathQueueStorage.csproj
More file actions
20 lines (17 loc) · 813 Bytes
/
QueueStorage.csproj
File metadata and controls
20 lines (17 loc) · 813 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<UserSecretsId>3fe5bfa6-c565-410f-9c3c-8b73961ca918</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.Core" Version="1.25.0" />
<PackageReference Include="Azure.Storage.Common" Version="12.12.0" />
<PackageReference Include="Azure.Storage.Queues" Version="12.11.1" />
<PackageReference Include="joerivanarkel.UserSecrets" Version="1.0.6" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="6.0.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="6.0.1" />
</ItemGroup>
</Project>