Change MSI ProductVersion variable name

This commit is contained in:
Tiago Conceição
2022-10-15 17:53:17 +01:00
parent 7768862f78
commit 4be6597e37
3 changed files with 18 additions and 17 deletions
+1 -1
View File
@@ -231,7 +231,7 @@ $msbuild = $null
foreach($path in $msbuildPaths) {
if (Test-Path -Path $path -PathType Leaf)
{
$msbuild = "`"$path`" /t:Build /p:Configuration=`"$buildWith`" /p:MSIProductVersion=`"$version`" /p:HarvestPath=`"$msiSourceFiles`""
$msbuild = "`"$path`" /t:Build /p:Configuration=`"$buildWith`" /p:ProductVersion=`"$version`" /p:HarvestPath=`"$msiSourceFiles`""
break;
}
}