-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
38 lines (38 loc) · 1.52 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
30
31
32
33
34
35
36
37
38
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<!--
CS0612 - Obsolete warning witout message.
CS0618 - Obsolete warning with message.
CS1030 - #warning
CS1591 - Missing XML comment.
-->
<WarningsNotAsErrors>612,618,1030</WarningsNotAsErrors>
<NoWarn>1591</NoWarn>
<OutputPath>$(MSBuildThisFileDirectory)bin\$(Configuration)\</OutputPath>
<BaseIntermediateOutputPath>$(MSBuildThisFileDirectory)obj\$(MSBuildProjectName)\</BaseIntermediateOutputPath>
<CodeAnalysisRuleSet>$(MSBuildThisFileDirectory)build\CausalityDbg.ruleset</CodeAnalysisRuleSet>
<FileAlignment>512</FileAlignment>
<LangVersion>8.0</LangVersion>
<Authors>Brian Reichle</Authors>
<Version>0.1.0</Version>
<Product>CausalityDbg</Product>
<Copyright>Copyright © Brian Reichle 2012 - 2019</Copyright>
<Mk32BitTargets>$(MSBuildThisFileDirectory)build\mk32bit.targets</Mk32BitTargets>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
</PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
</Project>