forked from boogie-org/boogie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
29 lines (24 loc) · 1.06 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
<Project>
<!-- Target framework and package configuration -->
<PropertyGroup>
<Version>2.8.29</Version>
<TargetFramework>netcoreapp3.1</TargetFramework>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<Authors>Boogie</Authors>
<RepositoryUrl>https://github.com/boogie-org/boogie</RepositoryUrl>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
</PropertyGroup>
<!-- Include license file -->
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)..\LICENSE.txt" Pack="true" PackagePath="LICENSE.txt" />
</ItemGroup>
<!-- Use StyleCop to check for consistent code formatting -->
<ItemGroup Condition="'$(Configuration)' != 'Release'">
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" />
<AdditionalFiles Include="$(MSBuildThisFileDirectory)stylecop.json" />
</ItemGroup>
<!-- Configure StyleCop analysis rules -->
<PropertyGroup Condition="'$(Configuration)' != 'Release'">
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)StyleCop.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
</Project>