-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
23 lines (19 loc) · 1003 Bytes
/
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
<Project>
<!-- Output paths -->
<PropertyGroup>
<BaseOutputPath>..\..\artifacts\$(Configuration)\$(Platform)\</BaseOutputPath>
<OutputPath>$(BaseOutputPath)\$(MSBuildProjectName)\</OutputPath>
<IntermediateOutputPath>..\..\artifacts\intermediates\$(Platform)\$(MSBuildProjectName)\</IntermediateOutputPath>
<GeneratedFilesDir>..\..\artifacts\intermediates\$(Platform)\$(MSBuildProjectName)\Generated Files\</GeneratedFilesDir>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
</PropertyGroup>
<!-- Packages needed in every project -->
<ItemGroup>
<!-- Code analyzer -->
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="6.0.0"/>
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="3.3.2"/>
<PackageReference Include="Microsoft.CodeQuality.Analyzers" Version="3.3.2"/>
</ItemGroup>
</Project>