Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Separate WixInternal content from official WixToolset namespace | Rob Mensching | 2022-11-08 | 1 | -4/+4 |
| | |||||
* | Normalize ToolsetTask implementation to call wix.exe and heat.exe | Rob Mensching | 2022-10-14 | 1 | -0/+1 |
| | | | | | | | Share the ToolsetTask implementation that can find .NET Core and .NET Framework with multiple architectures. Fixes 6951 | ||||
* | Run wix.exe out of proc | Rob Mensching | 2022-10-14 | 1 | -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 |