@joebigelow / wix-1 / commits / 61ddcf62

Add DetectCondition to ExePackage to fix test.

Sean Hall committed Jan 19, 2021 at 16:17 UTC 61ddcf628b37261f0ef1f3c590915b4906cdcb88
1 file changed +2 -2
src/test/WixToolsetTest.Sdk/TestData/SimpleMsiPackage/SimpleBundle/Bundle.wxs
+2 -2
@@ -1,11 +1,11 @@
1 -<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
1 +<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
2 <Bundle Name="SimpleBundle" Version="1.0.0.0" Manufacturer="Example Corporation" UpgradeCode="6670d5c9-bbec-4828-ab60-4a1c0ffeb97d">
3 <BootstrapperApplication>
4 <BootstrapperApplicationDll SourceFile="test.txt" />
5 </BootstrapperApplication>
6
7 <Chain>
8 - <ExePackage SourceFile="test.txt" />
8 + <ExePackage Permanent="yes" DetectCondition="no" SourceFile="test.txt" />
9 </Chain>
10 </Bundle>
11 </Wix>