aboutsummaryrefslogtreecommitdiff
path: root/src/burn
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2024-04-07 03:26:12 -0700
committerRob Mensching <rob@firegiant.com>2024-04-25 13:31:39 -0700
commit4983aeeb2da6e96bc8aad698752b3b962f58e585 (patch)
tree40a5eee15554c599086f12d0d426ba37060b050a /src/burn
parent973a1764223d7313beef03a66f6218905b07870b (diff)
downloadwix-4983aeeb2da6e96bc8aad698752b3b962f58e585.tar.gz
wix-4983aeeb2da6e96bc8aad698752b3b962f58e585.tar.bz2
wix-4983aeeb2da6e96bc8aad698752b3b962f58e585.zip
Move to ReleaseFlow and SomeVer
Diffstat (limited to 'src/burn')
-rw-r--r--src/burn/engine/engine.vcxproj10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/burn/engine/engine.vcxproj b/src/burn/engine/engine.vcxproj
index 7e2e80b6..249f8eef 100644
--- a/src/burn/engine/engine.vcxproj
+++ b/src/burn/engine/engine.vcxproj
@@ -158,12 +158,12 @@ rc.exe -fo "$(OutDir)engine.res" "$(IntDir)engine.messages.rc"</Command>
158 </CustomBuildStep> 158 </CustomBuildStep>
159 </ItemDefinitionGroup> 159 </ItemDefinitionGroup>
160 160
161 <Target Name="SetWixVersion" DependsOnTargets="__SetPropertiesFromGit" BeforeTargets="ClCompile"> 161 <Target Name="SetWixVersion" BeforeTargets="ClCompile">
162 <PropertyGroup> 162 <PropertyGroup>
163 <rmj>$(GitBaseVersionMajor)</rmj> 163 <rmj>$(SomeVerInfoMajor)</rmj>
164 <rmm>$(GitBaseVersionMinor)</rmm> 164 <rmm>$(SomeVerInfoMinor)</rmm>
165 <rup>$(GitBaseVersionPatch)</rup> 165 <rup>$(SomeVerInfoPatch)</rup>
166 <rpr>$(GitCommits)</rpr> 166 <rpr>$(SomeVerInfoHeight)</rpr>
167 <szVerMajorMinorBuild>$(rmj).$(rmm).$(rup).$(rpr)</szVerMajorMinorBuild> 167 <szVerMajorMinorBuild>$(rmj).$(rmm).$(rup).$(rpr)</szVerMajorMinorBuild>
168 <szInformationalVersion>$(InformationalVersion)</szInformationalVersion> 168 <szInformationalVersion>$(InformationalVersion)</szInformationalVersion>
169 </PropertyGroup> 169 </PropertyGroup>