-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
19 lines (16 loc) · 795 Bytes
/
Directory.Build.props
File metadata and controls
19 lines (16 loc) · 795 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<Project>
<!-- Output paths -->
<PropertyGroup>
<BaseOutputPath>..\..\artifacts\$(Configuration)\</BaseOutputPath>
<OutputPath>$(BaseOutputPath)\$(MSBuildProjectName)\</OutputPath>
<!--<BaseIntermediateOutputPath>..\..\artifacts\intermediates\$(Configuration)\$(MSBuildProjectName)\</BaseIntermediateOutputPath>-->
<IntermediateOutputPath>..\..\artifacts\intermediates\$(MSBuildProjectName)\</IntermediateOutputPath>
<GeneratedFilesDir>..\..\artifacts\intermediates\$(MSBuildProjectName)\Generated Files\</GeneratedFilesDir>
</PropertyGroup>
<!-- Packages needed in every project -->
<ItemGroup>
<!-- Code analyzer -->
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.8">
</PackageReference>
</ItemGroup>
</Project>