Condition for version number was slightly malformed, fixed.

This commit is contained in:
Sebastiaan Janssen
2013-01-17 06:32:00 -01:00
parent 7e460005da
commit 816afe5abc

View File

@@ -27,7 +27,7 @@
<PropertyGroup Condition="'$(BUILD_RELEASE)'!=''">
<DECIMAL_BUILD_NUMBER>.$(BUILD_RELEASE)</DECIMAL_BUILD_NUMBER>
</PropertyGroup>
<PropertyGroup Condition="'$(BUILD_RELEASE) AND $(BUILD_COMMENT)'!=''">
<PropertyGroup Condition="'$(BUILD_RELEASE)'!='' AND '$(BUILD_COMMENT)'!=''">
<DECIMAL_BUILD_NUMBER>.$(BUILD_RELEASE)-$(BUILD_COMMENT)</DECIMAL_BUILD_NUMBER>
</PropertyGroup>