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:
authorJan Kotas <jkotas@microsoft.com>2016-04-12 18:50:46 +0300
committerJan Kotas <jkotas@microsoft.com>2016-04-12 18:50:46 +0300
commit941a6c7ea1662526d5912a7ac836862b5d0ff231 (patch)
tree4603aac773138dfc05467ddfc99d174b65616669 /dir.props
parent604480c8475ab05189c358039e070f15980d5fe7 (diff)
parent7514acf8e9df485e2dfb5d19fa884670ca6fd547 (diff)
Merge pull request #1119 from manu-silicon/invalid_defines
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 c4e459f6d..da7ad1360 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 -->