-
Notifications
You must be signed in to change notification settings - Fork 3
/
Directory.Build.props
22 lines (17 loc) · 1.03 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
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<!-- Build to a folder outside the source folders, making it easier to clean. -->
<OutDir>$(MSBuildThisFileDirectory)bin\$(Configuration)\$(Platform)\</OutDir>
<OutDir Condition="'$(Platform)'=='Win32'">$(MSBuildThisFileDirectory)bin\$(Configuration)\x86\</OutDir>
<!-- C# Projects require the legagy OutputPath variable. -->
<OutputPath>$(OutDir)</OutputPath>
<!-- C# project files can also be redirected, but this causes rebuilds inside VS2015. -->
<IntDir>$(MSBuildThisFileDirectory)intermediate\$(MSBuildProjectName)\$(Platform)\$(Configuration)\</IntDir>
<!-- Use the latest released C# language version -->
<LangVersion>latest</LangVersion>
<!-- Define treat warnings as errors for C# projects -->
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)mmsf.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
</Project>