Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorTiago Conceição <Tiago_caza@hotmail.com>2022-10-15 19:53:17 +0300
committerTiago Conceição <Tiago_caza@hotmail.com>2022-10-15 19:53:17 +0300
commit4be6597e37ead7461c45e9a39a028369b4472fea (patch)
tree49ad7489b7f3139b4875cedcca457f1c23847d46 /build
parent7768862f78207dd055698768440192282d37193a (diff)
Change MSI ProductVersion variable name
Diffstat (limited to 'build')
-rw-r--r--build/createRelease.ps12
1 files changed, 1 insertions, 1 deletions
diff --git a/build/createRelease.ps1 b/build/createRelease.ps1
index d36fbc1..dadbcf1 100644
--- a/build/createRelease.ps1
+++ b/build/createRelease.ps1
@@ -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;
}
}