-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBackgroundQ.csproj
More file actions
23 lines (18 loc) · 839 Bytes
/
Copy pathBackgroundQ.csproj
File metadata and controls
23 lines (18 loc) · 839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Copyright>CodeServicePL</Copyright>
<Company>CodeServicePL</Company>
<Authors>Jaroslaw Danilczuk</Authors>
<NeutralLanguage></NeutralLanguage>
<PackageId>CodeServiceJD.BackgroundQ</PackageId>
<Version>1.0.1</Version>
<Description>Set of helper classes for app queues and background queue processors.</Description>
<RepositoryUrl>https://github.com/grendlerpl/BackgroundQ</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.0" />
</ItemGroup>
</Project>