forked from arrty/specflow-retry
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Directory.Build.props
29 lines (27 loc) · 1.21 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>
<!-- Add stylecop to all projects and link the stylecop.json file for settings -->
<ItemGroup>
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.261">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<AdditionalFiles Include="$(MSBuildThisFileDirectory)stylecop.json">
<Link>stylecop.json</Link>
</AdditionalFiles>
</ItemGroup>
<!-- All unit tests (.Tests) projects require coverlet.msbuild for coverage. -->
<ItemGroup Condition="$(MSBuildProjectName.IndexOf('.Tests')) != -1 And $(MSBuildProjectName.IndexOf('DockerCompose')) != -1">
<PackageReference Include="coverlet.msbuild" Version="2.9.0">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<!-- Global properties for all projects. -->
<PropertyGroup>
<Authors>Calrom Ltd</Authors>
<InformationalVersion>1.0.0</InformationalVersion>
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)SpeckFlow.RetryCore.ruleset</CodeAnalysisRuleSet>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Nullable>disable</Nullable>
<WarningsAsErrors>CS8600;CS8602;CS8603</WarningsAsErrors>
<LangVersion>8.0</LangVersion>
</PropertyGroup>
</Project>