-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
33 lines (25 loc) · 1.13 KB
/
Directory.Build.props
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
<Project>
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<IsPackable>false</IsPackable>
</PropertyGroup>
<PropertyGroup>
<Version>0.0.1-preview-001</Version>
<Description>a scheduler based on multi-level timing wheels. 一个基于多级时间轮的调度器。</Description>
<PackageIdPrefix>TimingWheelScheduler</PackageIdPrefix>
<Authors>Stratos</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/stratosblue/TimingWheelScheduler</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>$(PackageProjectUrl)</RepositoryUrl>
<PackageTags>timingwheel timing-wheel scheduler timeout delay task</PackageTags>
</PropertyGroup>
<ItemGroup Condition="'$(Configuration)' == 'Release'">
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.*" PrivateAssets="All" />
</ItemGroup>
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
</Project>