Skip to content

Commit

Permalink
Don't add unnecessary semicolon to DefineConstants property
Browse files Browse the repository at this point in the history
  • Loading branch information
dsplaisted committed Mar 13, 2017
1 parent 24db8f1 commit d747e69
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ Copyright (c) .NET Foundation. All rights reserved.
<NoWarn Condition=" '$(NoWarn)' == '' ">1701;1702;1705</NoWarn>
</PropertyGroup>
<PropertyGroup>
<DefineConstants>$(DefineConstants);TRACE</DefineConstants>
<DefineConstants Condition=" '$(DefineConstants)' != '' ">$(DefineConstants);</DefineConstants>
<DefineConstants>$(DefineConstants)TRACE</DefineConstants>
</PropertyGroup>

</Project>

0 comments on commit d747e69

Please sign in to comment.