Remove test package that is supposed to be missing
When missing uncompressed payloads in bundles were fixed in the build, the FailureTests.CanInstallWhenMissingNonVitalPackage test failed because a package used to be missing was now present. Now we explicitly delete the package during the test bundle's build to ensure it is missing.
Rob Mensching committed
Jan 2, 2022 at 22:57 UTC
bceff47b867e2bd4086da2013fa2a0b9364b27b2
1 file changed
+3
src/test/burn/TestData/FailureTests/BundleC/BundleC.wixproj
+3
@@ -16,4 +16,7 @@
16
<PackageReference Include="WixToolset.Bal.wixext" />
17
<PackageReference Include="WixToolset.NetFx.wixext" />
18
</ItemGroup>
19
+ <Target Name="RemovePackageThatShouldBeMissing" AfterTargets="AfterBuild">
20
+ <Delete Files="$(OutputPath)MissingNonVital.msi" />
21
+ </Target>
22
</Project>
\ No newline at end of file