aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Minor build improvements and cleanuprobmen/build-cleanupRob Mensching2024-12-314-11/+9
|
* Rename "bundle id" concept to "bundle code"Rob Mensching2024-12-30125-2302/+2452
| | | | | | | The "bundle id" always had more in common with the PackageCode from the Windows Installer. With the introduction of an actual Id attribute on the Bundle element, there is potential for confusion, so there is finally real motivation to rename "bundle id" to "bundle code".
* Add Package/@Id and Bundle/@Id that can replace UpgradeCodesRob Mensching2024-12-3047-69/+104
| | | | Completes 8584
* Use PerUserProgramFilesFolder for default INSTALLFOLDER in a per-user packageRob Mensching2024-12-295-17/+54
| | | | Fixes 8101
* Add "PerUserProgramFilesFolder" as standard directoryRob Mensching2024-12-292-1/+5
| | | | | | Windows Installer uses LocalAppDataFolder\Programs as the replacement for ProgramFilesFolder when installing per-user in a dual-mode package. Add a standard directory in WiX to match it for use by default INSTALLFOLDER.
* Fix WixPackageSymbol Attributes, Scope, UpgradeStrategy fieldsRob Mensching2024-12-292-15/+27
|
* Overridable WixVariables should be treated as virtualRob Mensching2024-12-293-6/+51
| | | | Fixes 8528
* Break out parsing of file naming attributes.Bob Arnson2024-12-281-84/+90
|
* Ensure naked files take Subdirectory into account.Bob Arnson2024-12-2812-22/+99
| | | | | | | | | | | | | | | Naked files generated their ids using the attributes that are common to both naked and clothed files. But naked files also support @Subdirectory to magic up a subdirectory in a specified directory (@Directory) or the default INSTALLFOLDER. That subdirectory needs to factor in to the generated file id (which is then used as the component id too). Without it, generated ids for files with the same name but from different @Subdirectory values would be duplicated. (Authored file ids must also continue to be supported.) Naked files now generate different file and component ids. :( Fixes https://github.com/wixtoolset/issues/issues/8674
* Audit all transitive dependencies and fix latest vulnerabilitiesRob Mensching2024-12-2715-36/+45
| | | | | Also, standardize .NET Core TFMs listed before .NET Framework TFMs for no reason but to be consistent
* Magicked files in modules need complex references.Bob Arnson2024-12-275-10/+64
| | | | | | | | Magic files (naked `File`s and `Files`) that are direct children of a `Module` need complex references from the generated component to that module, to ensure that they're wired up correctly as module components. Fixes https://github.com/wixtoolset/issues/issues/8860
* Use an unnamed bindpath as a default root for...Bob Arnson2024-12-276-6/+55
| | | | | | ...harvesting files (as documented). - Fixes https://github.com/wixtoolset/issues/issues/8585
* Fix messages related to package scope.Bob Arnson2024-12-263-3/+3
|
* Avoid setting null MinValues when removing rows.Bob Arnson2024-12-264-1/+55
| | | | - Fixes https://github.com/wixtoolset/issues/issues/8689
* Also use EnsureTable to schedule standard actions.Bob Arnson2024-12-263-156/+244
| | | | | Fixes https://github.com/wixtoolset/issues/issues/8632 Fixes https://github.com/wixtoolset/issues/issues/8199
* Handle rooted file harvesting.Bob Arnson2024-12-263-52/+56
| | | | | | Also don't fail-fast when directory doesn't exist. Fixes https://github.com/wixtoolset/issues/issues/8740.
* Drop CA path validation in WixUI by default.Bob Arnson2024-12-2612-96/+126
| | | | | | | | Add `WixUI/ExtendedPathValidation="yes"` to opt-in. Removed the WIXUI_DONTVALIDATEPATH runtime opt-out. Fixes https://github.com/wixtoolset/issues/issues/8718 Relies on https://github.com/wixtoolset/wix/pull/563
* Replace EULA printing custom action with MsiPrint.Bob Arnson2024-12-2616-626/+42
| | | | Fixes https://github.com/wixtoolset/issues/issues/8580
* Fix parsing variables' case sensitivity from BootstrapperApplicationDataNir Bar2024-12-261-1/+1
| | | | Fixes 8769
* Exclude detect-only Upgrades from default-feature.Bob Arnson2024-12-263-10/+6
| | | | Fixes https://github.com/wixtoolset/issues/issues/8125
* For fields, "" != null.Bob Arnson2024-12-263-2/+44
| | | | Fixes https://github.com/wixtoolset/issues/issues/8558
* Remove unused const.Bob Arnson2024-12-261-1/+0
|
* Fix loc and wix variables to allow dots in their identifier name againRob Mensching2024-12-262-6/+14
| | | | Fixes 8713
* Use ExePayloadRef for PrimaryPayloadId and SecondaryPayloadIdAndrij Abyzov2024-12-263-5/+57
| | | | Fixes 8673
* Update to non-deprecated actions/upload-artifactRob Mensching2024-12-261-2/+2
|
* Fix Heat Harvesting for x64 DllsNico-Ko2024-12-261-1/+1
| | | | Fixes: wixtoolset/issues#8803
* Fix up COM+ to be back in working order under Wix4+Bevan Weiss2024-12-2631-120/+446
| | | | | | | | | | | | | | | | | | | | | Table names updated for Wix4 prefix. Custom action names similarly updated. Table names Wix4ComPlusUserInApplicationRole, Wix4ComPlusGroupInApplicationRole and Wix4ComPlusApplicationRoleProperty had to be shortened to fit within MSI 31 character table name limit. Migrated from fixed GUID for RegistrationHelper to use CLSIDFromProgID in an attempt to fix behaviour under .NET 4+ DLLs. Added setting of Partition enable if a Partition is configured in authoring, new Windows config has Partitions disabled by default, and they don't work at all under Windows workstation (non-server) versions. Added a new Runtime condition for `RequireWindowsServer` which will skip execution of Runtime test on workstation/desktop OSes, since COM+ Partitions only work correctly under Windows Server. Quite a lot of basic typos fixed also. Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
* Add a few more checks on rollback of Util User.Bevan Weiss2024-12-262-4/+9
| | | | Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
* Introduce early exception for overlength Windows Installer table nameBevan Weiss2024-12-262-0/+20
| | | | Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
* Typos are bad; visible typos are an abomination.Bob Arnson2024-11-1011-12/+12
| | | | At least one person makes the same typo almost-but-not-quite everywhere.
* Update to nonwhingy System.Text.Json.Bob Arnson2024-11-101-1/+1
|
* Log bundle registration scope.Bob Arnson2024-11-105-6/+17
|
* Add overloads to support create-only Wixouts.Bob Arnson2024-10-043-4/+44
| | | | | | This prevents the .NET ZipArchive (and friends) from keeping the whole thing in memory, to support updating when we don't need to update the Wixout when building a binary Wixlib.
* Fix crash when adding file in patch when filteringBob Arnson2024-10-0410-10/+82
|
* Additional (automated) translations for Lithuanian, Russian and ChineseBevan Weiss2024-09-283-0/+3
| | | | | | (Simplified). Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
* Error message for 'logon as service' is not currently localised.Bevan Weiss2024-09-289-1/+15
| | | | | | | | Added translations in line with existing translations. I'm sure they'll suffice for now, Google translate makes sense of them anyway. Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
* Update thumbprints and download links to target latest .NET packagesChaojie2024-09-284-11/+11
|
* Fix crash with use of File/@PatchGroup.Bob Arnson2024-09-032-2/+2
|
* Moved CalculateCabbingThreadCount() to BindDatabaseCommand because we need ↵Martin Broholm Andersen2024-09-023-31/+35
| | | | | | | | the capped value in both CreateCabinetsCommand and UpdateFileFacadesCommand. Fixed bug in capping the thread count between 1 and processor count times 2. The "-ct 1000000" value was wrongly passed thru in the test CabinetFilesSequencedCorrectly Added ThreadCount to UpdateFileFacadesCommand
* Replace UpdateFileFacade loop with Parallel.ForEachMartin Broholm Andersen2024-09-022-219/+331
|
* Fix up small inaccuracy in logged error message.Bevan Weiss2024-09-021-1/+13
| | | | | | | | | | | | When ::GetFileAttributesW returns 0xFFFFFFFF it means 'Invalid File/Folder' So we should return a matching error message. To avoid confusing invalid paths with junctions (in error message) Unfortunately the constant for this is not defined. So just define it here as though it would be. Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
* A basic install / uninstall test for RemoveFoldersExBevan Weiss2024-09-024-1/+111
| | | | | | | | Contains no files etc to verify that Remove action can still occur without other elements bringing in the RemoveFiles Standard Action Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
* Fix bad URL.Bob Arnson2024-08-193-3/+3
| | | | Fixes https://github.com/wixtoolset/issues/issues/8704
* Add verbose messages around harvesting.Bob Arnson2024-08-193-3/+63
|
* Add basic test for Msmq install/uninstall.Bevan Weiss2024-07-188-4/+122
| | | | | | | | | Fix up lack of WIX CUSTOM_ACTION_DECORATION wrappers Add new RuntimeTest skipper for Server Features / Optional Features. Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
* Initialize WOW64 in TouchFile custom actionRob Mensching2024-07-174-0/+100
| | | | Fixes 8638
* Fix egregiously bad comments that were frustratingBob Arnson2024-07-152-29/+29
|
* Fix faulty memory access in Util's User custom actionsRob Mensching2024-07-155-120/+95
| | | | | | | | Generally, clean up the handling of getting the domain from a server name by centralizing and simplifying it behind an improved GetDomainFromServerName() based on the buggy GetServerName(). Fixes 8576
* Scheduling standard actions must override virtual definitions from stdlibRob Mensching2024-07-135-4/+162
| | | | Fixes 8115
* Reset current directory so SFXCA directory can be cleaned upRob Mensching2024-07-131-0/+19
| | | | Fixes 8630