|
22 | 22 | <ErrorReportCondition=" '$(ErrorReport)' == ''">prompt</ErrorReport> |
23 | 23 | <PlatformCondition=" '$(Platform)' == ''">AnyCPU</Platform> |
24 | 24 | <OtherFlags>$(OtherFlags) --no-jit-optimize --jit-tracking</OtherFlags> |
25 | | - <DefineConstantsCondition=" '$(DefineConstants)' == '' and 'ProjectLanguage' != 'VisualBasic'">DEBUG;TRACE;CODE_ANALYSIS;$(DefineConstants)</DefineConstants> |
26 | | - <DefineConstantsCondition=" '$(DefineConstants)' == '' and 'ProjectLanguage' == 'VisualBasic'">DEBUG="true";TRACE="true";CODE_ANALYSIS="true";$(DefineConstants)</DefineConstants> |
| 25 | + <DefineConstantsCondition=" '$(ProjectLanguage)' != 'VisualBasic'">DEBUG;TRACE;CODE_ANALYSIS;$(DefineConstants)</DefineConstants> |
| 26 | + <DefineConstantsCondition=" '$(ProjectLanguage)' == 'VisualBasic'">DEBUG=True,TRACE=True,CODE_ANALYSIS=True,$(DefineConstants)</DefineConstants> |
27 | 27 | <SIGN_WITH_MSFT_KEYCondition=" '$(SIGN_WITH_MSFT_KEY)' == ''">false</SIGN_WITH_MSFT_KEY> |
28 | 28 | </PropertyGroup> |
29 | 29 |
|
30 | 30 | <PropertyGroupCondition=" '$(Configuration)' == 'Release'"> |
31 | 31 | <DebugTypeCondition=" '$(DebugType)' == ''">pdbonly</DebugType> |
32 | 32 | <OptimizeCondition=" '$(Optimize)' == ''">true</Optimize> |
33 | 33 | <ErrorReportCondition=" '$(ErrorReport)' == ''">prompt</ErrorReport> |
34 | | - <DefineConstantsCondition=" '$(DefineConstants)'== '' and 'ProjectLanguage'!= 'VisualBasic'">TRACE</DefineConstants> |
35 | | - <DefineConstantsCondition=" '$(DefineConstants)' == '' and 'ProjectLanguage' == 'VisualBasic'">TRACE="true"</DefineConstants> |
| 34 | + <DefineConstantsCondition=" '$(ProjectLanguage)' != 'VisualBasic'">TRACE;$(DefineConstants)</DefineConstants> |
| 35 | + <DefineConstantsCondition=" '$(ProjectLanguage)' == 'VisualBasic'">TRACE=True,$(DefineConstants)</DefineConstants> |
36 | 36 | <SIGN_WITH_MSFT_KEYCondition=" '$(SIGN_WITH_MSFT_KEY)' == ''">false</SIGN_WITH_MSFT_KEY> |
37 | 37 | </PropertyGroup> |
38 | 38 |
|
|
41 | 41 | <ErrorReportCondition=" '$(ErrorReport)' == ''">prompt</ErrorReport> |
42 | 42 | <PlatformCondition=" '$(Platform)' == ''">AnyCPU</Platform> |
43 | 43 | <OtherFlags>$(OtherFlags) --no-jit-optimize --jit-tracking</OtherFlags> |
44 | | - <DefineConstantsCondition="'$(DefineConstants)' == '' and 'ProjectLanguage' != 'VisualBasic'">DEBUG;TRACE;CODE_ANALYSIS;$(DefineConstants)</DefineConstants> |
45 | | - <DefineConstantsCondition="'$(DefineConstants)' == '' and 'ProjectLanguage' == 'VisualBasic'">DEBUG="true";TRACE="true";CODE_ANALYSIS="true";$(DefineConstants)</DefineConstants> |
| 44 | + <DefineConstantsCondition="'$(ProjectLanguage)' != 'VisualBasic'">DEBUG;TRACE;CODE_ANALYSIS;$(DefineConstants)</DefineConstants> |
| 45 | + <DefineConstantsCondition="'$(ProjectLanguage)' == 'VisualBasic'">DEBUG=True,TRACE=True,CODE_ANALYSIS=True,$(DefineConstants)</DefineConstants> |
46 | 46 | <SIGN_WITH_MSFT_KEYCondition=" '$(SIGN_WITH_MSFT_KEY)' == ''">true</SIGN_WITH_MSFT_KEY> |
47 | 47 | </PropertyGroup> |
48 | 48 |
|
49 | 49 | <PropertyGroupCondition=" '$(Configuration)' == 'VSRelease'"> |
50 | 50 | <DebugTypeCondition=" '$(DebugType)' == ''">pdbonly</DebugType> |
51 | 51 | <OptimizeCondition=" '$(Optimize)' == ''">true</Optimize> |
52 | | - <DefineConstantsCondition=" '$(DefineConstants)' == '' and 'ProjectLanguage' != 'VisualBasic'">TRACE;$(DefineConstants)</DefineConstants> |
53 | | - <DefineConstantsCondition=" '$(DefineConstants)' == '' and 'ProjectLanguage' == 'VisualBasic'">TRACE="true";$(DefineConstants)</DefineConstants> |
| 52 | + <DefineConstantsCondition=" '$(ProjectLanguage)' != 'VisualBasic'">TRACE;$(DefineConstants)</DefineConstants> |
| 53 | + <DefineConstantsCondition=" '$(ProjectLanguage)' == 'VisualBasic'">TRACE=True,$(DefineConstants)</DefineConstants> |
54 | 54 | <ErrorReportCondition=" '$(ErrorReport)' == ''">prompt</ErrorReport> |
55 | 55 | <SIGN_WITH_MSFT_KEYCondition=" '$(SIGN_WITH_MSFT_KEY)' == ''">true</SIGN_WITH_MSFT_KEY> |
56 | 56 | </PropertyGroup> |
|