aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/SingleExeBundle
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-01-08 15:32:36 -0800
committerRob Mensching <rob@firegiant.com>2021-01-08 15:47:31 -0800
commit4de24fe6e542391a9cdd55b00df9a1664273c5e2 (patch)
tree4de6ecff59d9e3a2372c933dc2230e176a76b541 /src/test/WixToolsetTest.CoreIntegration/TestData/SingleExeBundle
parent4362960feec4a770f665419eaebd7b4ed14ecb9e (diff)
downloadwix-4de24fe6e542391a9cdd55b00df9a1664273c5e2.tar.gz
wix-4de24fe6e542391a9cdd55b00df9a1664273c5e2.tar.bz2
wix-4de24fe6e542391a9cdd55b00df9a1664273c5e2.zip
Rename ExePackage/@XxxCommand attributes to @XxxArguments
Fixes wixtoolset/issues#6245
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/TestData/SingleExeBundle')
-rw-r--r--src/test/WixToolsetTest.CoreIntegration/TestData/SingleExeBundle/SingleExeRemotePayload.wxs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/SingleExeBundle/SingleExeRemotePayload.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/SingleExeBundle/SingleExeRemotePayload.wxs
index 709dc9e7..6c6903b1 100644
--- a/src/test/WixToolsetTest.CoreIntegration/TestData/SingleExeBundle/SingleExeRemotePayload.wxs
+++ b/src/test/WixToolsetTest.CoreIntegration/TestData/SingleExeBundle/SingleExeRemotePayload.wxs
@@ -3,9 +3,9 @@
3 <Fragment> 3 <Fragment>
4 <PackageGroup Id="BundlePackages"> 4 <PackageGroup Id="BundlePackages">
5 <ExePackage 5 <ExePackage
6 InstallCommand="/q /norestart /ChainingPackage &quot;[WixBundleName]&quot; /log &quot;[NetFx462FullLog].html&quot;" 6 InstallArguments="/q /norestart /ChainingPackage &quot;[WixBundleName]&quot; /log &quot;[NetFx462FullLog].html&quot;"
7 RepairCommand="/q /norestart /repair /ChainingPackage &quot;[WixBundleName]&quot; /log &quot;[NetFx462FullLog].html&quot;" 7 RepairArguments="/q /norestart /repair /ChainingPackage &quot;[WixBundleName]&quot; /log &quot;[NetFx462FullLog].html&quot;"
8 UninstallCommand="/uninstall /q /norestart /ChainingPackage &quot;[WixBundleName]&quot; /log &quot;[NetFx462FullLog].html&quot;" 8 UninstallArguments="/uninstall /q /norestart /ChainingPackage &quot;[WixBundleName]&quot; /log &quot;[NetFx462FullLog].html&quot;"
9 PerMachine="yes" 9 PerMachine="yes"
10 DetectCondition="A" 10 DetectCondition="A"
11 InstallCondition="B" 11 InstallCondition="B"