aboutsummaryrefslogtreecommitdiff
path: root/src/tools/test/WixToolsetTest.HeatTasks (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Convert tools\ to MSTest and traversal projects.Bob Arnson2025-03-032-48/+49
|
* Emit deprecation warning for Heat.Bob Arnson2025-01-231-4/+4
| | | | Fixes https://github.com/wixtoolset/issues/issues/8913
* Audit all transitive dependencies and fix latest vulnerabilitiesRob Mensching2024-12-271-2/+2
| | | | | Also, standardize .NET Core TFMs listed before .NET Framework TFMs for no reason but to be consistent
* Fix harvesting project names with invalid charsMike Wileczka2023-04-195-31/+31
| | | Project names with invalid characters, namely spaces, where not being harvested properly. The sanitized name is requires for the `Source="$(var.PROJECT_NAME` output. Updated harvest project unit test for project names with spaces.
* Handle spaces when finding path to executables in MSBuild taskRob Mensching2022-11-211-1/+1
| | | | Fixes 7035
* Separate WixInternal content from official WixToolset namespaceRob Mensching2022-11-082-4/+4
|
* Name the bind path item group "BindPath" in MSBuildRob Mensching2022-10-152-2/+2
| | | | Closes 6959
* Run wix.exe out of procRob Mensching2022-10-141-4/+4
| | | | | | | | | | | | | | "wix build" will load assemblies to read metadata which can cause the assemblies to get locked in the process. Since MSBuild keeps build processes alive this can cause work done by in-proc MSBuild tasks (like the WixBuild) to get stuck. Moving the "wix build" out of proc avoids any of those issues. Moving out of proc also allows the WiX tasks to be AnyCPU which simplifies the wix.targets (although did need to add code to find the .NET Framework wix.exe). Fixes 6595
* Centralize test project configuration with IsWixTestProjectRob Mensching2022-09-231-9/+1
|
* Create WixToolset.Heat.nupkg to distribute heat.exe and Heat targetsRob Mensching2022-08-0118-0/+664
Moves Heat functionality to the "tools" layer and packages it all up in WixToolset.Heat.nupkg for distribution in WiX v4. Completes 6838