diff options
author | sr55 <[email protected]> | 2020-08-30 10:49:04 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2020-08-30 10:49:31 +0100 |
commit | e54796b3fd72d215d4ed3015942dab46c5854215 (patch) | |
tree | 4fb66f00d9271ea2a548cb43515b98131d1bc0fe | |
parent | 662824d6ec479b9ace76a185658963fb2d02c20e (diff) |
WinGui: Fix build
-rw-r--r-- | win/CS/HandBrake.Installer/Product.wxs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/CS/HandBrake.Installer/Product.wxs b/win/CS/HandBrake.Installer/Product.wxs index 6962ecadb..b32c50c04 100644 --- a/win/CS/HandBrake.Installer/Product.wxs +++ b/win/CS/HandBrake.Installer/Product.wxs @@ -9,18 +9,18 @@ <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> - <?define packagePath = "..\HandBrakeWPF\bin\x64\Release" ?> - <?if $(var.Configuration)=Debug ?> <?define msiProductId = "fd19ef0e-77c4-47a6-b1e4-4cea0b3a4c94" ?> <?define productName = "HandBrake Nightly" ?> <?define installDir = "Nightly" ?> <?define ToastActivatorCLSID = "" ?> + <?define packagePath = "..\HandBrakeWPF\bin\x64\Debug" ?> <?else ?> <?define msiProductId = "fd19ef0e-77c4-47a6-b1e4-4cea0b3a4c93" ?> <?define productName = "HandBrake" ?> <?define installDir = "HandBrake" ?> <?define ToastActivatorCLSID = "" ?> + <?define packagePath = "..\HandBrakeWPF\bin\x64\Release" ?> <?endif ?> <Product Id="$(var.msiProductId)" Name="$(var.productName)" Language="1033" Version="1.4.0.0" Manufacturer="HandBrake Team" UpgradeCode="$(var.msiProductId)"> |