aboutsummaryrefslogtreecommitdiff
path: root/src/api (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Make "decompile" an MSI-only command instead of a backend requirementRob Mensching2022-03-307-47/+133
| | | | | | | | | As much as I'd like decompiling to be global functionality provided by all backends there are only two output types that support decompiling: MSI and MSM. In the future, perhaps we can invest in a generic symbols to source code converter that would reduce the redundant work backends need to do today. Until then, make decompile an MSI specific command
* Simplify BaseWindowsInstallerBackendBinderExtensionRob Mensching2022-03-301-7/+8
| | | | | Move the standard symbol to table row conversion into the Binder so there is less functionality in the extension assembly.
* Remove dead codeRob Mensching2022-03-304-193/+0
|
* Add `ExePackage/@Bundle` to opt-in to v3 behavior.Sean Hall2022-03-221-0/+3
| | | | | | Automatically add '-norestart' for bundle ExePackages. Fixes 6252
* Centralize cache locations in IExtensionManagerRob Mensching2022-03-202-0/+48
| | | | | | | | This removes the duplication of cache location definitions between IExtensionManager and extension cache command. Also, adds an extension cache test. Fixes 6536
* Minor code clean upRob Mensching2022-03-191-10/+37
|
* Make ModuleSignature a standard table and no refs with EnsureTableRob Mensching2022-03-191-0/+1
| | | | | | | | | | ModuleSignature was missing from the standard tables, that part is easy. The breaking change is EnsureTable no longer tries to create refs to custom tables when it doesn't recognize the table name as standard or coming from an extension. Use CustomTableRef to create custom table references. Fixes 6424
* Give BA process id and option to wait for cancelled process to exit.Sean Hall2022-03-1911-0/+168
|
* Warn when an MSI or cabinet installed by an MSI is too largeRob Mensching2022-03-171-0/+11
| | | | Fixes 6408
* Change IParseHelper to not be an IBundleValidator.Sean Hall2022-03-161-1/+1
|
* Enhance bundle backend validation.Sean Hall2022-03-167-24/+105
|
* Make engine skip planning if there are any downgrade related bundles.Sean Hall2022-03-1411-0/+114
| | | | | Fixes 6677, 6722 Reverts 6537
* Allow the BA to override the bundle relation type during plan.Sean Hall2022-03-1411-2/+192
|
* Handle case when invalid icon or splash screen are added to bundleRob Mensching2022-03-141-4/+4
| | | | Fixes 5330
* Remove Unbind as backend functionRob Mensching2022-03-144-47/+19
| | | | Unbinding is not a general purpose function as initially imagined.
* Change ARP property Installed to 0 when registrationType is InProgress.Sean Hall2022-03-058-12/+12
| | | | Being registered in ARP and "installed" were always separate concepts, and some things like fEligibleForCleanup were looking at the wrong thing. This also allows the BA to tell the difference.
* Set ExePackage/@Uninstallable in bundle manifestsRob Mensching2022-03-023-2/+13
|
* Support certs on remote payloads and generate them from burn subcommandRob Mensching2022-02-281-0/+16
| | | | | | Bring back Authenticode certificate validation but only on Exe and Msu remote payloads. Move the generation of remote payload XML to a subcommand of the "burn command".
* Rename WixProductTagSymbol to WixPackageTagSymbolRob Mensching2022-02-233-71/+71
|
* Fix wixlib, msm, msi incremental buildRob Mensching2022-02-233-4/+46
| | | | | | Simplify and improves the tracking of input and intermediate files to fix incremental build issues for wixlibs, merge modules and MSI databases.
* Minor comment fixRob Mensching2022-02-231-1/+1
|
* Add UnsafeUninstall action.Sean Hall2022-02-222-2/+6
| | | | Fixes #6721
* Finish removing native pdbs from .nupkg and removing symbols packages.Sean Hall2022-02-182-4/+0
|
* Create single .zip file for non-embedded pdb filesRob Mensching2022-02-174-2/+3
| | | | | No longer create .snupkg/.symbols.nupkgs since they don't actually support native pdbs, which are all of our non-embedded pdb files.
* When rolling back a bundle failure, reinstall all upgrade related bundles.Sean Hall2022-02-1011-0/+132
| | | | Fixes #3421
* Make validation independent of the build commandRob Mensching2022-02-081-15/+0
| | | | | | | In MSBuild this adds a new WindowsInstallerValidation target that automatically runs validation after a successful build. From the command-line the "wix msi" command gets a "validate" subcommand that will validate an MSI or MSM file.
* Actually elevate warning messages to error when requestedRob Mensching2022-02-081-0/+8
|
* Error on invalid Control/@Type attribute valuesRob Mensching2022-02-031-42/+2
|
* Fix NoWarn being overridden and use PackageReference for TestSupport.Sean Hall2022-01-274-6/+4
|
* Add BOOTSTRAPPER_REQUEST_STATE_FORCE_PRESENT.Sean Hall2022-01-162-0/+6
| | | | | Make BOOTSTRAPPER_REQUEST_STATE_FORCE_ABSENT uninstall even if detected absent. Remove fPseudoBundle.
* Remove orphan compatible MSI packages.Sean Hall2022-01-1611-9/+539
| | | | Reimplements #3190
* Inscribe no longer a global backend conceptRob Mensching2022-01-102-23/+0
| | | | | | The support steps around signing are specialized for each output type. Trying to normalize the process across backends was not a fruitful endeavor.
* Support "inscribing" Burn bundlesRob Mensching2022-01-101-1/+1
|
* Centralize common command-line switches parsingRob Mensching2022-01-101-1/+6
|
* Read WindowsInstallerData at same XML conformance as writingRob Mensching2022-01-042-1/+11
|
* Update some nuspecs to be more standardRob Mensching2022-01-031-3/+3
|
* Move to a single tracking file for all bind inputs and outputsRob Mensching2022-01-022-15/+11
| | | | | | | A single tracking file can be enhanced more easily than continuing to introduce specialized tracking files. In this case, we now include output files that are copied and can differentiate them from the built output files.
* Extract tracking and creating file transfers to ILayoutServicesRob Mensching2022-01-022-18/+31
| | | | | | This refactoring will allow more parts of the pipeline to add files to be transferred during layout and tracked to participate in MSBuild up to date checks and cleaning.
* Upload test results and fail the build if any are missing.Sean Hall2022-01-011-5/+6
| | | | Always zip up the logs from %TEMP%.
* Try to get more helpful test failure messages.Sean Hall2022-01-014-2/+14
|
* Remove warnings and make sure more don't creep in.Sean Hall2022-01-016-13/+20
| | | | Tests are not run inside of traversal projects so that skipped test warnings don't fail the build.
* Don't report related operation in OnDetectRelatedBundle.Sean Hall2021-12-308-29/+4
| | | | #5796
* FilesInUse messages are too different to unify in the Burn engine.Sean Hall2021-12-308-25/+47
| | | | Fixes #6348
* Build simplification and parallelizationRob Mensching2021-12-305-15/+15
|
* Remove BOOTSTRAPPER_RESUME_TYPE_REBOOT_PENDING.Bob Arnson2021-12-272-6/+0
| | | | Thanks to @rseanhall's sharp eyes.
* Use `v143` toolset except `v141` for libs.Bob Arnson2021-12-255-12/+12
|
* Build with VS2022, which is now required.Bob Arnson2021-12-2510-65/+23
| | | | - Use VS2022/v143 libraries exclusively. C++ compatibility works.
* Fix ids for DependencyExtension.Bob Arnson2021-12-171-5/+5
|
* Switch to `net472` as Framework baseline.Bob Arnson2021-12-124-2/+4
|
* Add BA events for setting the update bundle.Sean Hall2021-12-1116-2/+292
| | | | Fixes #6410