forked from jcoutch/NCrontab-Advanced
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
25 lines (20 loc) · 871 Bytes
/
Directory.Build.props
File metadata and controls
25 lines (20 loc) · 871 Bytes
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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<MinVerTagPrefix>v</MinVerTagPrefix>
<MinVerMinimumMajorMinor>2.0</MinVerMinimumMajorMinor>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<LangVersion>latest</LangVersion>
<FineCodeCoverage>
<Enabled>true</Enabled>
<RunMsCodeCoverage>true</RunMsCodeCoverage>
<!-- and more -->
</FineCodeCoverage>
<RunSettingsFilePath>$(MSBuildThisFileDirectory)/Test.runsettings</RunSettingsFilePath>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MinVer" Version="6.1.0" PrivateAssets="All" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
</ItemGroup>
</Project>