aboutsummaryrefslogtreecommitdiff
path: root/src (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-03-20Infrastructure and some starter "dotnet new" templatesRob Mensching13-0/+162
Introduces some basic WixToolset templates for "dotnet new" with the infrastructure for more to be added in the future. Closes 6207
2022-03-20Centralize cache locations in IExtensionManagerRob Mensching11-61/+235
This removes the duplication of cache location definitions between IExtensionManager and extension cache command. Also, adds an extension cache test. Fixes 6536
2022-03-19Automated code clean upRob Mensching1-15/+60
2022-03-19Convert .wxl files namespacesRob Mensching2-2/+125
Fixes 6639
2022-03-19Minor code clean upRob Mensching3-29/+53
2022-03-19Refactor CustomTable parsing into separate partial and add testRob Mensching4-507/+568
Add a test for referencing custom tables and make the gigantic Compiler.cs a bit smaller by extracting all the CustomTable handling to separate partial.
2022-03-19Make ModuleSignature a standard table and no refs with EnsureTableRob Mensching8-27/+60
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
2022-03-19Add checkpoint so Exe and Msu packages rollback after being cancelled.Sean Hall10-57/+171
Fixes 5950
2022-03-19Give BA process id and option to wait for cancelled process to exit.Sean Hall31-124/+716
2022-03-17Warn when an MSI or cabinet installed by an MSI is too largeRob Mensching6-11/+65
Fixes 6408
2022-03-16Change IParseHelper to not be an IBundleValidator.Sean Hall6-32/+16
2022-03-16Enhance bundle backend validation.Sean Hall26-278/+926
2022-03-16Add WixBundleCommandLineAction, don't set dynamic variables at startup.Sean Hall11-58/+78
Fixes 6736
2022-03-16Fix themes to account for UnsafeUninstall action.Sean Hall8-35/+75
2022-03-15Normalize related bundle idsRob Mensching6-36/+103
Fixes 6008
2022-03-15Removal of dead scenarios/codeRob Mensching3-123/+0
The only reason to have "compile" command was to allow different compilation used to build the same code that would be included in the final output. This scenario is now supported by combining multiple compiles into .wixlibs and, optionally, including those .wixlibs into a single .wixlib.
2022-03-15Rework build command line for combining wixlibs and default outputRob Mensching6-125/+277
Changes the command line handling for the "build" command to allow creation of a .wixlib to accept compiled (but not linked) intermediates. This will allow .wixlibs to combine separate build commands (potentially with different "-arch" switches) into a single .wixlib. This change also fixes the issue where by default output was being written to the intermediate folder instead of the current directory. Fixes 6464 Fixes 6473
2022-03-14Don't close handles from MsiBeginTransaction.Sean Hall2-7/+4
Assume that MsiEndTransaction must be called exactly once for each MsiBeginTransaction. Fixes 6695
2022-03-14Add new trx file to list.Sean Hall1-0/+1
2022-03-14Use UTF-8 for Kazakh languageRob Mensching2-1/+21
Fixes 5685
2022-03-14Make engine skip planning if there are any downgrade related bundles.Sean Hall20-41/+373
Fixes 6677, 6722 Reverts 6537
2022-03-14Log rest of plan and add testing of registration actions to PlanTest.Sean Hall5-3/+440
2022-03-14Allow the BA to override the bundle relation type during plan.Sean Hall31-97/+785
2022-03-14Add missing test project to buildRob Mensching1-0/+1
2022-03-14Support containers in relative subfoldersRob Mensching3-1/+45
Fixes 5677
2022-03-14Display warning when extracting bundle from Package CacheRob Mensching3-31/+40
The Package Cache contains stripped bundles which would fail extraction with an exception. Display a warning instead. Plus do a touch of code clean up. Fixes 6315
2022-03-14Always try to normalize the Bundle UpgradeCode in the backendRob Mensching4-0/+59
Fixes 6008
2022-03-14Handle case when invalid icon or splash screen are added to bundleRob Mensching6-17/+94
Fixes 5330
2022-03-14Use min DOS date/time when filetime not supported by cabinetRob Mensching2-3/+56
Cabinets require files use DOS date/time. Since there are limits to DOS date/time, use the minimum date/time when a file's actual DOS date/time are out of bounds. Fixes 5296
2022-03-14Add test to verify 64-bit bundles can be extracted for signingRob Mensching1-0/+41
Closes 6022
2022-03-14Implement "wix burn extract"Rob Mensching4-26/+104
In v3, bundles were extracted by "decompiling" even though the process did not actually result in decompiled source code. In v4, the backends and provide specialized commands so have "extract" join "detach" and "reattach" subcommands on the "burn" command. Completes 6314
2022-03-14Remove Unbind as backend functionRob Mensching13-215/+19
Unbinding is not a general purpose function as initially imagined.
2022-03-14Implement "wix msi transform"Rob Mensching16-201/+653
Brings the functionality of torch into the WindowsInstallerBackend as the "transform" subcommand. Fixes 4602
2022-03-14Remove redundant versions from Sdk style projectsRob Mensching2-2/+2
2022-03-09Update MSBuildRunner to ignore previous VS versionsRon Martin1-58/+2
2022-03-07Configure crash dumps and get them and pdbs in the logs artifactSean Hall5-5/+20
2022-03-07Read Uninstallable from manifest and add test for non-uninstallable exeSean Hall5-5/+187
Last part of 6459
2022-03-05Ensure WixBundleInstalled and RebootPending are set in elevated engine.Sean Hall4-15/+14
2022-03-05Change ARP property Installed to 0 when registrationType is InProgress.Sean Hall22-72/+86
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.
2022-03-05Reduce duplicative messaging in converterRob Mensching2-35/+27
Fixes 6681
2022-03-05Changed the coverter to use Messages rather than ErrorsMark Stega1-86/+127
2022-03-02Evaluate standalone variables for truthiness in the preprocessorRob Mensching2-2/+48
Fixes 4770
2022-03-02Support "==" as equality operator in preprocessorRob Mensching4-3/+133
Fixes 5880
2022-03-02Minor code cleanupRob Mensching1-8/+4
2022-03-02Set ExePackage/@Uninstallable in bundle manifestsRob Mensching7-7/+19
2022-03-02Do NOT publish logs on `master` branch as they may contain secretsRob Mensching1-2/+3
2022-03-02Force Appveyor to checkout using CRLF.Sean Hall1-0/+3
2022-03-02Export event logs to try to diagnose E2E test failures.Sean Hall2-0/+12
2022-03-01Improve error reporting wrt ExePackage and MsuPackage attributesRob Mensching22-54/+112
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.
2022-03-01Refactor related bundle enumeration into butil.Sean Hall10-405/+731
Related to #3693