aboutsummaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Clarify the underlying reason .wxls are loaded.HEADmainBob Arnson2025-07-221-1/+1
|
* Update ErrorMessages.cs to refine duplicate identifiers messagecz-dev-ge2025-07-221-1/+1
| | | | Adds information about necessary neutral language definition.
* Embiggen build perf.Bob Arnson2025-07-2122-20/+120
| | | | | | | - Move ext tests to targets for better MSBuild scheduling. - Parallelize long-running tests. - Disable Firewall ICEs for dev builds; they're redundant with round-tripping and ICEs are mutex'd to make them painfully serial.
* Fix HarvestPayloads field names (kinda).Bob Arnson2025-06-191-4/+4
|
* Support launching rundll32.exe as a safe executable if the dll it loads is ↵Nir Bar2025-06-1810-25/+450
| | | | in a secure location
* Fix MsiLockPermissionsEx decompilation.Bob Arnson2025-06-188-3/+120
| | | | Fixes https://github.com/wixtoolset/issues/issues/9096
* Remove deprecated Heat.Bob Arnson2025-06-18120-89610/+0
| | | | Fixes https://github.com/wixtoolset/issues/issues/9039
* Consistentify unnamed bindpaths doc in `Files`.Bob Arnson2025-06-121-3/+8
|
* Customize TARGETDIR DirectoryRef warning.Bob Arnson2025-06-114-1/+47
| | | | Fixes https://github.com/wixtoolset/issues/issues/9012
* Fix Util decompiler extension crash.Bob Arnson2025-06-111-1/+1
|
* Fix unit tests to account for Actions runners:Bob Arnson2025-06-112-40/+37
| | | | | | | | | | | | | | - Handle extra-long paths being normalized to either \\?\\ and "normal." - Rewrite PathGetTempPathTest test because it's not a good test: - By overwriting `TMP` with an extra-long path, it causes `::GetTempPath[2]W` to fall back to the value of `TEMP` instead. - But that's testing `::GetTempPath[2]W`, not `PathGetTempPath`. - It also assumes `TMP` and `TEMP` are set typically. - It also assumes it's not running as LocalSystem. - Instead, just compare the values you get from `::GetTempPathW` and `PathGetTempPath`. Fixes https://github.com/wixtoolset/issues/issues/9087
* Add `Payloads` element to harvest bundle payloads.Bob Arnson2025-06-1130-198/+342
| | | | Implements https://github.com/wixtoolset/issues/issues/9049
* Send all tables to extension decompilers.Bob Arnson2025-05-286-19/+98
| | | | | | Also fix Firewall decompiler to decompile all possible Firewall tables. Fixes https://github.com/wixtoolset/issues/issues/9070
* Always pass `-quiet` to related bundles.Bob Arnson2025-05-281-1/+1
| | | | | | | | The embedding protocol implies no-UI but if Burn doesn't detect a compatible protocol, it won't use the embedding switch. This provides a backup to keep it silent. Fixes https://github.com/wixtoolset/issues/issues/7969
* Handle having multiple unnamed bind paths.Bob Arnson2025-05-282-6/+9
| | | | Fixes https://github.com/wixtoolset/issues/issues/9028
* Bring back WixBundleSourceProcess* variables.Bob Arnson2025-05-283-0/+20
| | | | Fixes https://github.com/wixtoolset/issues/issues/9029
* Update registration disappears during upgrade.Bob Arnson2025-05-2813-7/+281
| | | | | | | Update registration is stored in a shared registry key that Burn takes care to keep around across upgrades. The approach it used broke between WiX v3 and WiX v5. This change makes it work again by writing update registration when the session ends.
* Retry intermittent LocLoadFromFile() test failuresRob Mensching2025-05-282-2/+20
|
* Update version number in READMEsRob Mensching2025-05-2816-30/+30
|
* Sync IEngine.SetUpdateSource with native side.Bob Arnson2025-04-048-4/+96
| | | | Fixes https://github.com/wixtoolset/issues/issues/9023
* Update READMEs to include OSMFRob Mensching2025-04-0464-60/+1491
| | | | | Fixes 7862 Fixes 8974
* Use "dev build" instead of "private build" to match documentationRob Mensching2025-04-041-3/+3
| | | | Closes 9003
* Clean RTF in OSMFEULA.RTFRob Mensching2025-04-041-0/+0
|
* Issue 8993Christopher Painter2025-04-031-1/+1
| | | | Fix Public Key for NetFx48Redist
* Fix bad copyspaghetti in XSD.Bob Arnson2025-04-031-1/+1
|
* Sync IEngine.SetDownloadSource with native side.Bob Arnson2025-04-037-8/+67
| | | | Fixes https://github.com/wixtoolset/issues/issues/9018
* XSD changes to account for create Group modificationsBevan Weiss2025-03-271-9/+43
| | | | Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
* RelatedBundle/@Id is deprecated.Bob Arnson2025-03-271-1/+8
|
* Iis certstore more xsdBevan Weiss2025-03-272-1/+12
| | | | | | | | Adds XSD for #597 And slight fix up for error message to capture new options --------- Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
* Add actions to BrowseDlg for WixUI_FeatureTree.Bob Arnson2025-03-262-1/+6
| | | | Fixes https://github.com/wixtoolset/issues/issues/9009
* Switch to MSTest built-in Test target.Bob Arnson2025-03-2020-38/+24
| | | | | Prevents test run during VS build and shows failure details on console (no need to dig into TRX file).
* Formalize official WiX build and update tags in nupkgsRob Mensching2025-03-1922-35/+65
|
* Introduce the Open Source Maintenance Fee EULARob Mensching2025-03-1919-30/+312
| | | | | | This adds the EULA to all the binary releases Closes 8974
* Harvesting no longer aborts if any exclusions reference missing foldersRob Mensching2025-03-193-26/+66
| | | | Fixes 8989
* Verify more detail of the harvesting warning messagesRob Mensching2025-03-191-23/+32
|
* add missing CustomTableSetting parameter in ConvertCommandPhilippNaused2025-03-181-1/+1
|
* Include the major version in the Package/@Id to install SxSRob Mensching2025-03-181-1/+1
| | | | Addresses issue raised in 8992
* LocUtil occasionally failed due to XmlInitializationRob Mensching2025-03-183-60/+75
| | | | Split into separate classes to prevent potential parallelism race conditions.
* Fix documentation links in XSDsRob Mensching2025-03-182-12/+12
|
* WiX v6 changes to the core schemaRob Mensching2025-03-181-12/+42
|
* WiX v6 changes to the UI extensionRob Mensching2025-03-181-0/+8
|
* Migrate XSDs from web projectRob Mensching2025-03-1818-0/+24625
| | | | | This is the new home for the XSDs. Closer to the code to hopefully be kept better up to date as changes happen to the language.
* Don't force x64 platform build.Bob Arnson2025-03-111-1/+1
| | | | Fixes https://github.com/wixtoolset/issues/issues/8977
* Set keypath when parsing naked File child elementsBob Arnson2025-03-103-9/+6
| | | | Fixes https://github.com/wixtoolset/issues/issues/8976
* Only referenced components get default feature.v6.0.0-rc.2Bob Arnson2025-03-038-64/+43
| | | | | Fixes https://github.com/wixtoolset/issues/issues/8882 Fixes https://github.com/wixtoolset/issues/issues/8939
* Fix icon cannot show in tsakbar when using WixInternalUIBootstrapperApplicationueuuop85912025-03-031-1/+1
|
* Convert WixToolsetTest.Sdk to MSTest.***Bob Arnson2025-03-0310-136/+138
| | | | | | | ***Does not include a full conversion to traversal projects. The wix segment already uses traversal projects extensively so there isn't a significant per win, especially compared to the effort required...but MSTest's method-level parallelism cuts test run time in half (~60->~30).
* Convert tools\ to MSTest and traversal projects.Bob Arnson2025-03-0310-86/+113
|
* Convert ext\ to MSTest and traversal projects.Bob Arnson2025-03-0396-767/+3204
| | | | | | | | - Move ext\ unit tests to MSTest. - MSBuildify ext projects with MSTest execution. - Fork test support projects for MSTest: - WixInternal.TestSupport - WixInternal.Core.TestPackage
* Support non-SNI SSL certificates in Http extensionBob Arnson2025-03-0319-404/+672
| | | | Implements https://github.com/wixtoolset/issues/issues/7622