forked from 2881099/WorkQueue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WorkQueue.csproj
18 lines (18 loc) · 935 Bytes
/
WorkQueue.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net40;net45</TargetFrameworks>
<AssemblyName>WorkQueue</AssemblyName>
<PackageId>WorkQueue</PackageId>
<RootNamespace>WorkQueue</RootNamespace>
<Version>1.0.5</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageProjectUrl>https://github.com/2881099/WorkQueue</PackageProjectUrl>
<Description>非常轻便的线程队列处理器,支持.NETCore、.NetFramework</Description>
<RepositoryUrl>https://github.com/2881099/WorkQueue</RepositoryUrl>
<PackageTags>队列 线程队列 消息队列 消息 任务 任务队列 mq workqueue</PackageTags>
<WarningLevel>3</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>bin\Debug\netstandard2.0\WorkQueue.xml</DocumentationFile>
</PropertyGroup>
</Project>