aboutsummaryrefslogtreecommitdiff
path: root/src/api (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Use "wixext4" instead of "tools" as the root folder in ".wixext.nupkg"sRob Mensching2022-10-151-0/+6
| | | | Fixes 6944
* Fix tracking of detached containersRob Mensching2022-10-041-5/+0
| | | | | | | | Detached containers were being tracked as both a BuiltContentOutput and Temporary file. That caused the detached containers to be cleaned up and unavailable for the bundle after the build. Also removed the unused ITrackedFile.Clean property.
* Use file system abstraction to handle retries automaticallyRob Mensching2022-10-041-0/+10
| | | | Fixes 4791
* Add retries when trying to update bundle resourcesRob Mensching2022-10-041-0/+19
| | | | Fixes 6882 and 6902
* Run tests in bulk to improve performanceRob Mensching2022-10-041-8/+7
| | | | | The fewer executions of "dotnet test" the better so batch up calls by referencing multiple assembly DLLs.
* Small clean up of api segment buildRob Mensching2022-10-044-10/+9
|
* Move WixVersion to new WixToolset.Versioning package in libs segmentRob Mensching2022-10-042-743/+0
| | | | | | | | | | | WixVersion is already used by the Core toolset but could also be useful for bootstrapper applications parsing bundle versions. The WixToolset.Data assembly contains a significant amount of data that bloats its size that bootstrapper applications would never need. Extracting WixVersion to its own assembly makes it much more useable. Fixes 6943
* Make all test roll forwardRob Mensching2022-10-031-1/+0
|
* Standardize on .NET 6 as the minimum for .NET Core platform.Rob Mensching2022-10-033-3/+3
| | | | Closes 6942
* Introduce PatchFilterMap to remove Row.SectionIdRob Mensching2022-09-274-33/+15
| | | | | | | | A Row's SectionId is not set correctly in most scenarios. It was only really needed for the old section-based patch filtering. As section-base patch filtering was replaced in favor of the more logical filter generation, Row.SectionId was archaic and mostly outdated/wrong data.
* Implement transform decompiling and use it in patch filter testsRob Mensching2022-09-271-0/+6
|
* Rename MsiPatchSequenceSymbol to MsiPatchFamilySymbol and fix the IdRob Mensching2022-09-274-72/+72
| | | | | | The symbol now matches the name from the language. Also, fix the MsiPatchFamilySymbol id calculation to fix the linker issue and unblock patch filtering.
* Implement single pass patch buildRob Mensching2022-09-238-78/+70
| | | | | | | | | This new implementation of patching in WiX v4 creates an MSP's transforms and MSP file in a single pass. This single pass allows the build to use MSI as the source of files for diffing purposes. Completes 6401 Fixes 4629
* Centralize test project configuration with IsWixTestProjectRob Mensching2022-09-232-16/+1
|
* Update hashes are now hex strings.Bob Arnson2022-09-126-16/+10
| | | | Fixes https://github.com/wixtoolset/issues/issues/6901.
* Move `Bundle/@CommandLineVariables` into Bal.wixext.Sean Hall2022-09-096-65/+57
| | | | Implements 6858
* Supply hashes to BA if present in update feed.Bob Arnson2022-08-319-6/+31
| | | | Fixes https://github.com/wixtoolset/issues/issues/6353.
* Process and return the failed version of reboot exit codes in Burn.Sean Hall2022-08-261-0/+2
| | | | | | (ERROR_FAIL_REBOOT_REQUIRED and ERROR_FAIL_REBOOT_INITIATED) Fixes 6762
* Fix building `ExePackage/@ExitCode` elements.Sean Hall2022-08-261-1/+1
|
* Allow customization of the .wixpdb output folderRob Mensching2022-08-251-2/+14
| | | | Fixes 6857
* Don't retry 1606 because are they ever transient?!Bob Arnson2022-08-171-1/+0
| | | | Fixes https://github.com/wixtoolset/issues/issues/6856.
* Clean up error message when BA is missing.Bob Arnson2022-08-151-2/+2
| | | | Fixes https://github.com/wixtoolset/issues/issues/6852.
* Improve command line error reporting and remove some unused errorsRob Mensching2022-08-152-198/+146
| | | | Fixes 6468
* Redesign command-line help to meet the needs of WiX v4Rob Mensching2022-08-158-34/+183
|
* Allow wixstdba special controls to have declarative text.Sean Hall2022-08-104-4/+4
| | | | Fixes 6855
* Preprocessor only fails if current document does not parseRob Mensching2022-08-101-0/+6
| | | | | | | Previously, preprocessor would not return successfully processed files if an error was encountered with this file or any previous file. No the preprocessor will only fail if the current processed file generates any errors.
* Simplify and fix incremental/clean in build cmdsRob Mensching2022-08-081-3/+4
| | | | Refining this pattern before spreading more widely.
* Add intermediate folder and output path to all contextsRob Mensching2022-08-077-1/+62
| | | | | | | Extensions sometimes need to generate files and lay them out relative to the final output path. Provide that context to all extensions so they can use the correct intermediate folder and output path.
* Add clean to api.cmd and minor clean-upRob Mensching2022-08-071-4/+30
|
* Implement cabinet spanningRob Mensching2022-08-051-6/+6
| | | | Completes 6368
* Abstract file system to remove Core to Core.Native dependencyRob Mensching2022-08-051-0/+25
| | | | | | | | The only dependency Core had on Core.Native was for FileSystem which would be better served as an extensibility service everywhere anyway. This moves FileSystem to Core and exposes it via IFileSystem from Extensibility for use everywhere. Core now carries no native code dependencies.
* 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.