-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDirectory.Build.props
27 lines (24 loc) · 1.43 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
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<VersionPrefix>1.1-beta</VersionPrefix>
<!-- When we bump the minor version, this gets incremented so that the new minor release starts at revision 0. -->
<GitCommitCountOffset>8</GitCommitCountOffset>
<Authors>Marius Volkhart</Authors>
<PackageProjectUrl>https://github.com/MariusVolkhart/Nopen.NET</PackageProjectUrl>
<PackageReleaseNotes>https://github.com/MariusVolkhart/Nopen.NET/blob/master/CHANGELOG.md</PackageReleaseNotes>
<Copyright>Copyright 2019 Marius Volkhart</Copyright>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageTags>analyzer roslyn-analyzer code-quality sealed class classes</PackageTags>
<Description>A Roslyn analyzer which requires that classes be sealed, abstract or attributed with [Open].</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<!-- Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<!-- Build symbol package (.snupkg) to distribute the PDB containing Source Link -->
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<LangVersion>7.3</LangVersion>
<Features>strict</Features>
<Deterministic>true</Deterministic>
<DebugType>portable</DebugType>
</PropertyGroup>
</Project>