diff options
author | Rob Mensching <rob@firegiant.com> | 2022-03-01 20:10:52 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2022-03-01 20:49:18 -0800 |
commit | 89c476396d7ad6ab7c596300ec082dd9c38b9121 (patch) | |
tree | 3f132caeadccc8cb7369eca2bf700991847eadcd /src/ext/Bal/test/examples/FullFramework2Bundle/Bundle.wxs | |
parent | befcd209d62a25020f46a688002b259c59e4dc3b (diff) | |
download | wix-89c476396d7ad6ab7c596300ec082dd9c38b9121.tar.gz wix-89c476396d7ad6ab7c596300ec082dd9c38b9121.tar.bz2 wix-89c476396d7ad6ab7c596300ec082dd9c38b9121.zip |
Improve error reporting wrt ExePackage and MsuPackage attributes
For example, DetectCondition is required when RepairArguments or
UninstallArguments present and always recommended. Also, non-permanent
ExePackages need UninstallArguments. The code was refactored to make
it easier to reason over the different requirements for different
package types.
Diffstat (limited to 'src/ext/Bal/test/examples/FullFramework2Bundle/Bundle.wxs')
-rw-r--r-- | src/ext/Bal/test/examples/FullFramework2Bundle/Bundle.wxs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ext/Bal/test/examples/FullFramework2Bundle/Bundle.wxs b/src/ext/Bal/test/examples/FullFramework2Bundle/Bundle.wxs index f3a2b182..cdb15bb0 100644 --- a/src/ext/Bal/test/examples/FullFramework2Bundle/Bundle.wxs +++ b/src/ext/Bal/test/examples/FullFramework2Bundle/Bundle.wxs | |||
@@ -8,7 +8,7 @@ | |||
8 | <bal:WixManagedBootstrapperApplicationHost /> | 8 | <bal:WixManagedBootstrapperApplicationHost /> |
9 | </BootstrapperApplication> | 9 | </BootstrapperApplication> |
10 | <Chain> | 10 | <Chain> |
11 | <ExePackage DetectCondition="none" SourceFile="..\.data\notanexe.exe" bal:PrereqPackage="yes" /> | 11 | <ExePackage DetectCondition="none" UninstallArguments="-foo" SourceFile="..\.data\notanexe.exe" bal:PrereqPackage="yes" /> |
12 | </Chain> | 12 | </Chain> |
13 | </Bundle> | 13 | </Bundle> |
14 | </Wix> | 14 | </Wix> |