forked from robinrodricks/FluentStorage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFluentStorage.Azure.Queues.csproj
42 lines (36 loc) · 1.79 KB
/
FluentStorage.Azure.Queues.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
42
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1;net50;net60</TargetFrameworks>
<AssemblyName>FluentStorage.Azure.Queues</AssemblyName>
<Description>Extension to FluentStorage providing Azure Queue Storage as messaging storage.</Description>
<Copyright>Copyright (c) 2023 Robin Rodricks and FluentStorage Contributors</Copyright>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageIcon>logo-nuget.png</PackageIcon>
<Authors>Robin Rodricks, Ivan Gavryliuk, FluentStorage Contributors</Authors>
<Version>5.2.2</Version>
<PackageProjectUrl>https://github.com/robinrodricks/FluentStorage</PackageProjectUrl>
<RepositoryUrl>https://github.com/robinrodricks/FluentStorage</RepositoryUrl>
<RepositoryType>GitHub</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<LangVersion>latest</LangVersion>
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>..\FluentStorage\sn.snk</AssemblyOriginatorKeyFile>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\FluentStorage.Azure.Queues.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\JsonExtensions.cs" Link="JsonExtensions.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\FluentStorage\FluentStorage.csproj" />
<PackageReference Include="Microsoft.Azure.Storage.Queue" Version="11.2.3" />
</ItemGroup>
<ItemGroup>
<None Include="..\.github\logo-nuget.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
</Project>