aboutsummaryrefslogtreecommitdiff
path: root/src/ext/Util (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Don't follow junctions when recursing directories.Rob Mensching2024-03-221-2/+10
| | | | | | | | | | | | | | When deleting directories recursively, an elevated custom action following junctions in a user-writable location could recurse into any directory, including some that you might not want to be deleted. Therefore, avoid recursing into directories that are actually junctions (aka "reparse points"). This applies to: - The RemoveFoldersEx custom action (which doesn't actually do deletions but would instruct elevated MSI to delete on your behalf). - DTF's custom action runner.
* Rename "bundle extension" to "bootstrapper extension" for more consistencyRob Mensching2024-03-0719-146/+146
| | | | Also renames WixToolet.BextUtil nupkg to WixToolset.BootstrapperExtensionApi.
* Better .nupkg namesRob Mensching2024-03-071-5/+0
|
* Move the BootstrapperApplication out of procRob Mensching2024-03-064-8/+4
|
* Switch to `virtual` access modifiers...Bob Arnson2024-02-161-40/+40
| | | | | | ...from `Overridable="yes"`. Fixes https://github.com/wixtoolset/issues/issues/7981 for WiX v5.
* Improve error when virtual action symbols collide.Bob Arnson2024-02-051-5/+9
|
* Clean up TouchFile.Bob Arnson2024-01-192-6/+6
|
* Remove warning for `Wix` bundle variable prefix.Bob Arnson2024-01-012-66/+0
| | | | | | It's a bit overzealous. Fixes https://github.com/wixtoolset/issues/issues/7579.
* Link localizations from WixExtensions the same as sectionsRob Mensching2023-12-162-3/+1
|
* Pretty up build outputRob Mensching2023-12-161-2/+2
|
* add firewall extension decompiler, make msi modifications work, add all ↵chris_bednarski2023-11-191-3/+10
| | | | attributes
* Random typo fix.Bob Arnson2023-10-131-6/+6
|
* Remove legacy permissions support.Bob Arnson2023-08-072-49/+4
| | | | | | | | | | In the long ago, a share could have one user/permissions pair. That's really limited, of course, so support for _n_ user/permissions pairs was added. In the move to WiX v4, support for that single, legacy user was removed from the extension side but not the custom action side. Remove that support. Fixes https://github.com/wixtoolset/issues/issues/7632.
* Add more _NODOMAIN properties to WixQueryOsWellKnownSIDMichael Stoll2023-06-161-0/+6
|
* Fix XmlConfig decompile to produce schema element, Add unitest for XmlDecomilefyodorkor2023-05-022-9/+34
|
* Fix XmlConfig lookup logic.Bob Arnson2023-04-274-16/+36
| | | | | Fixes https://github.com/wixtoolset/issues/issues/7377. Requires fix for https://github.com/wixtoolset/issues/issues/7444.
* Warn on mismatched output times and validate only Windows Installer databasesRob Mensching2023-03-091-1/+1
| | | | Fixes 7250
* Update some extensions to take advantage of multitargeting project referencesRob Mensching2023-02-214-15/+6
|
* Fix RemoveFoldersEx query.Bob Arnson2023-02-217-8/+63
| | | | Fixes https://github.com/wixtoolset/issues/issues/7236.
* Minor cleanup of the obsoleted.Bob Arnson2023-02-091-6/+0
|
* Add keyColumn definition to _User of Wix4FileSharePermissionsfyodorkor2023-02-041-1/+1
|
* Fix CustomActionData names.Bob Arnson2023-02-014-15/+2
| | | | | | | | | Fixes https://github.com/wixtoolset/issues/issues/7189. Also: - Clean up duplicate caDecor.h. - Clean up use of CUSTOM_ACTION_DECORATION.
* Make sizes for XMLConfig and ElementID columns the same s72Fyodor Koryazhkin2023-02-011-1/+1
|
* As promised, remove CAQuietExec*.Bob Arnson2023-01-312-51/+0
|
* Fix wrong DllEntry for WixRegisterRestartResourcesNir Bar2023-01-301-1/+1
|
* Remove extension data after extensions get PreDecompileTables callbackRob Mensching2023-01-164-15/+102
| | | | | | | | | Also update Util.wixext decompiler extension to handle the new elements that compile into CustomActions with no additional table data. These exposed the weakness in the decompiler where extension data was removed before extensions got a chance to pre-decompile. Fixes 7151
* Expose QueryNativeMachine.Bob Arnson2023-01-141-0/+1
| | | | Fixes https://github.com/wixtoolset/issues/issues/7158.
* Fix compiler to handle util:ServiceConfig absent reset period and start delayRob Mensching2023-01-123-2/+46
| | | | Fixes 7150
* Fix RegistrySymbol creation helper for non-string typesRob Mensching2022-12-221-15/+15
| | | | Fixes 7108
* Fix when xmlns placed directly on PermissionExRob Mensching2022-11-152-18/+27
| | | | | | | | This is NOT recommended in v4 and its converter will move namespaces to the root element, but WiX v3 allowed it so we'll continued to do so in v4. Fixes 7010
* Minimize calls into GitInfo by caching results during build_initRob Mensching2022-11-133-3/+0
|
* Separate WixInternal content from official WixToolset namespaceRob Mensching2022-11-082-3/+3
|
* Very minor cleanupRob Mensching2022-11-081-6/+9
|
* Loc files were still using inner text, stop doing thatRob Mensching2022-10-3116-185/+184
| | | | Fixes 6970
* Fix a couple minor bug in when adding/removing user commentsRob Mensching2022-10-212-63/+62
| | | | Plus some code clean up so error reporting is consistent.
* Support add, modify and remove comments on user accountsRon Martin2022-10-2111-133/+520
| | | | Fixes 5371
* Update build dependencies and normalize more projectsRob Mensching2022-10-191-2/+2
|
* Use "wixext4" instead of "tools" as the root folder in ".wixext.nupkg"sRob Mensching2022-10-153-37/+10
| | | | Fixes 6944
* Add Netfx bundle extension and netfx:DotNetCoreSearch.Sean Hall2022-10-107-38/+20
| | | | | | Remove built-in .NET Core packages since they update too quickly. Fixes 6257
* Modernize Util.wixext buildRob Mensching2022-10-043-6/+35
|
* Standardize on .NET 6 as the minimum for .NET Core platform.Rob Mensching2022-10-031-1/+1
| | | | Closes 6942
* Centralize test project configuration with IsWixTestProjectRob Mensching2022-09-231-8/+1
|
* Downgrade error to warning when search refs a reserved prefix variable.Sean Hall2022-08-022-9/+73
| | | | The engine doesn't actually prevent external callers from setting variables that start with 'Wix'.
* Expose and use methods to parse attributes with Burn variable names.Sean Hall2022-07-213-14/+22
| | | | Fixes 6819
* Add tests to validate Variable name validationRob Mensching2022-07-122-0/+96
| | | | Closes #6819
* Add ability to disable file system redirection for File/DirectorySearchSean Hall2022-04-283-12/+31
| | | | Fixes 5476
* Set each native library dependency version to the build version.Sean Hall2022-04-192-3/+0
|
* Try to improve fields of bundle symbols.Sean Hall2022-04-132-55/+53
|
* Implement IWindowsInstallerDecompileExtensionsRob Mensching2022-03-308-846/+516
| | | | | | | Update Util extension to validate extension model and fix some small issues in MSI decompiling. Fixes 6367
* Finish removing native pdbs from .nupkg and removing symbols packages.Sean Hall2022-02-181-1/+0
|