summaryrefslogtreecommitdiff
path: root/src/test/burn/TestData/VariableTests/BundleA
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2024-02-17 17:56:57 -0500
committerBob Arnson <github@bobs.org>2024-02-17 18:39:07 -0500
commita38b07af45eb36cc13fcd2546ac45e6f769e4d6f (patch)
treef3f872f0154bd09a589becc0a45c597445911c50 /src/test/burn/TestData/VariableTests/BundleA
parente98ff251390fe60946576b4dced9565ae3a43e43 (diff)
downloadwix-a38b07af45eb36cc13fcd2546ac45e6f769e4d6f.tar.gz
wix-a38b07af45eb36cc13fcd2546ac45e6f769e4d6f.tar.bz2
wix-a38b07af45eb36cc13fcd2546ac45e6f769e4d6f.zip
Allow MsiProperty/@Value to be an empty string.
Fixes https://github.com/wixtoolset/issues/issues/7798.
Diffstat (limited to 'src/test/burn/TestData/VariableTests/BundleA')
-rw-r--r--src/test/burn/TestData/VariableTests/BundleA/BundleA.wxs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/burn/TestData/VariableTests/BundleA/BundleA.wxs b/src/test/burn/TestData/VariableTests/BundleA/BundleA.wxs
index f243c97d..86772ae9 100644
--- a/src/test/burn/TestData/VariableTests/BundleA/BundleA.wxs
+++ b/src/test/burn/TestData/VariableTests/BundleA/BundleA.wxs
@@ -8,6 +8,7 @@
8 <MsiPackage Id="PackageA" SourceFile="$(var.PackageA.TargetPath)"> 8 <MsiPackage Id="PackageA" SourceFile="$(var.PackageA.TargetPath)">
9 <MsiProperty Name="INSTALLLOCATION" Value="[INSTALLLOCATION]" /> 9 <MsiProperty Name="INSTALLLOCATION" Value="[INSTALLLOCATION]" />
10 <MsiProperty Name="LICENSEKEY" Value="[LICENSEKEY]" /> 10 <MsiProperty Name="LICENSEKEY" Value="[LICENSEKEY]" />
11 <MsiProperty Name="BLANKPROPERTY" Value="" />
11 </MsiPackage> 12 </MsiPackage>
12 </PackageGroup> 13 </PackageGroup>
13 14