aboutsummaryrefslogtreecommitdiff
path: root/src/api (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Downgrade error to warning when search refs a reserved prefix variable.Sean Hall2022-08-023-4/+58
| | | | The engine doesn't actually prevent external callers from setting variables that start with 'Wix'.
* Store list of persisted well-known variables in Burn.Sean Hall2022-08-022-24/+0
| | | | This allows it to reject Variables declared in the manifest that start with the reserved prefix 'Wix'.
* Expose and use methods to parse attributes with Burn variable names.Sean Hall2022-07-214-1/+40
| | | | Fixes 6819
* Add WixInternalUIBootstrapperApplication as a new built-in BA.Sean Hall2022-07-206-3/+90
| | | | Implements 6835
* Support remote PayloadsRob Mensching2022-07-141-1/+1
| | | | | Closes 5601 Closes 6802
* Remove RESX usage in WixToolset.DataRob Mensching2022-07-125-4274/+1
| | | | | Localizing all the messages is not a realistic goal in WiX so no need to manage the overhead related to RESX files.
* Support bind variables in Package and Bundle versionsRob Mensching2022-07-102-7/+19
| | | | Closes 6779
* Enable parsing invalid WixVersionsRob Mensching2022-07-072-29/+214
| | | | Fixes 6775
* Fix NCrunch projectsRob Mensching2022-07-072-6/+0
|
* Remove MsuPackage/@KB and Permanent attributesRob Mensching2022-06-291-9/+1
| | | | | | | | | Windows no longer allows for the silent removal of MSUs which renders the KB and Permanent attributes irrelevant. This removes both. Fixes 6749 Fixes 6801
* Rename a few more cases where Product element should be PackageRob Mensching2022-06-291-8/+8
|
* Use dotnet test on C++/CLI test projects to get trx logs.Sean Hall2022-06-1613-10/+208
|
* Use WixAssert in more places.Sean Hall2022-06-151-1/+2
|
* Add ability for non-vital cache package action.Sean Hall2022-06-1411-14/+159
|
* Implement ArpEntry flavored ExePackage.Sean Hall2022-06-133-10/+90
| | | | 6772
* Update Burn algorithm for picking elevated temp path to use SystemTemp.Sean Hall2022-06-072-0/+4
|
* Keep track of when parts of verutil/WixVersions are missing.Sean Hall2022-05-175-17/+132
| | | | | | Return null when WixVersion.TryParse returns false. 6776
* Store the prefix character in VERUTIL_VERSION.Sean Hall2022-05-173-0/+9
| | | | Fix edge case where version string is all v's.
* Move infinite loop detection into the hosts.Sean Hall2022-05-143-3/+33
| | | | | | | Tell the BA during Destroy whether it will be reloaded, and let the BA decide then whether it's module should be unloaded. Show error when infinite prereq loop detected. Only clip the exit code if they're Win32 errors. Set related bundle type to none to avoid downgrades during preqba.
* Update balutil and Bal.wixext to use more concise Exit* macros.Sean Hall2022-05-145-78/+41
|
* Add support for semver in bundles and dependenciesRob Mensching2022-05-103-12/+26
| | | | | | | Take advantage of WixVersion/verutil functionality to support wider range of version numbers were possible in the WiX Toolset Completes 4666
* Add WixVersion implementation to WixToolset.DataRob Mensching2022-05-103-0/+522
|
* Harvest BundlePackage payloads.Sean Hall2022-05-061-0/+16
| | | | Fixes 6757
* Only block shutdown during Apply.Sean Hall2022-05-0411-153/+0
|
* Add ability to disable file system redirection for File/DirectorySearchSean Hall2022-04-281-0/+17
| | | | Fixes 5476
* Add RepairCondition.Sean Hall2022-04-2313-5/+42
| | | | Fixes 6758
* Set each native library dependency version to the build version.Sean Hall2022-04-192-4/+4
|
* Add support for remote BundlePackagePayload.Sean Hall2022-04-131-1/+2
|
* Write EngineVersion, ProtocolVersion, and Win64 to the Burn manifest.Sean Hall2022-04-132-0/+16
|
* Change harvested symbols to ref the package payload for remote support.Sean Hall2022-04-136-20/+117
|
* Create Harvested*PackageSymbols.Sean Hall2022-04-134-0/+412
|
* Try to improve fields of bundle symbols.Sean Hall2022-04-1320-126/+709
|
* Only allow MsiPackage and MspPackage inside MSI transactions.Sean Hall2022-04-132-3/+27
| | | | Improve 64-bit package detection.
* Detect related bundles for BundlePackages.Sean Hall2022-04-0117-96/+270
|
* Implement BundlePackage.Sean Hall2022-04-016-1/+170
| | | | 3693
* Implement IWindowsInstallerDecompileExtensionsRob Mensching2022-03-307-70/+313
| | | | | | | Update Util extension to validate extension model and fix some small issues in MSI decompiling. Fixes 6367
* 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