Skip to content

Commit

Permalink
Merge pull request #519 from RaulPerez1/FixDelaySignDefaultValue
Browse files Browse the repository at this point in the history
Fix condition on the DelaySign default value
  • Loading branch information
nguerrera authored Dec 16, 2016
2 parents dcb7546 + 45c88b1 commit 223f3a3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ Copyright (c) .NET Foundation. All rights reserved.
<TreatWarningsAsErrors Condition="'$(TreatWarningsAsErrors)'==''">false</TreatWarningsAsErrors>
<Prefer32Bit Condition="'$(Prefer32Bit)'==''">false</Prefer32Bit>
<SignAssembly Condition="'$(SignAssembly)'==''">false</SignAssembly>
<DelaySign Condition="'$(DelaySign)'!=''">false</DelaySign>
<DelaySign Condition="'$(DelaySign)'==''">false</DelaySign>
</PropertyGroup>

<!-- Temporary workarounds -->
Expand Down

0 comments on commit 223f3a3

Please sign in to comment.