Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManu <manu-silicon@users.noreply.github.com>2016-04-12 05:31:46 +0300
committerManu <manu-silicon@users.noreply.github.com>2016-04-12 05:31:46 +0300
commit7514acf8e9df485e2dfb5d19fa884670ca6fd547 (patch)
treee4337541ad670619e93b0f8e85b7cae2593fa58e /dir.props
parent51dd25b6c7c2cb2a8e1db773f1825d3e4c9ca23c (diff)
Fix invalid declaration of DefineConstants
Diffstat (limited to 'dir.props')
-rw-r--r--dir.props4
1 files changed, 2 insertions, 2 deletions
diff --git a/dir.props b/dir.props
index 9c0766eab..4164901ef 100644
--- a/dir.props
+++ b/dir.props
@@ -212,13 +212,13 @@
<DebugSymbols Condition="'$(DebugSymbols)' == ''">true</DebugSymbols>
<Optimize Condition="'$(Optimize)' == ''">false</Optimize>
<DebugType Condition="'$(DebugType)' == ''">full</DebugType>
- <DefineConstants>$(DefineConstants),DEBUG,TRACE</DefineConstants>
+ <DefineConstants>DEBUG;TRACE;$(DefineConstants)</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(ConfigurationGroup)' == 'Release'">
<DebugSymbols Condition="'$(DebugSymbols)' == ''">true</DebugSymbols>
<Optimize Condition="'$(Optimize)' == ''">true</Optimize>
<DebugType Condition="'$(DebugType)' == ''">pdbonly</DebugType>
- <DefineConstants>$(DefineConstants),TRACE</DefineConstants>
+ <DefineConstants>TRACE;$(DefineConstants)</DefineConstants>
</PropertyGroup>
<!-- Disable some standard properties for building our projects -->