summaryrefslogtreecommitdiff
path: root/src/internal/internal_t.proj (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Convert ext\ to MSTest and traversal projects.Bob Arnson2025-03-031-0/+1
| | | | | | | | - Move ext\ unit tests to MSTest. - MSBuildify ext projects with MSTest execution. - Fork test support projects for MSTest: - WixInternal.TestSupport - WixInternal.Core.TestPackage
* Separate WixInternal content from official WixToolset namespaceRob Mensching2022-11-081-4/+4
|
* Normalize ToolsetTask implementation to call wix.exe and heat.exeRob Mensching2022-10-141-0/+1
| | | | | | | Share the ToolsetTask implementation that can find .NET Core and .NET Framework with multiple architectures. Fixes 6951
* Run wix.exe out of procRob Mensching2022-10-141-0/+7
"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