aboutsummaryrefslogtreecommitdiff
path: root/src/internal/internal_t.proj
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2022-10-06 11:59:31 -0700
committerRob Mensching <rob@firegiant.com>2022-10-14 20:13:50 -0700
commit5567239a9411aac769a34f2c65b80a523a577ad7 (patch)
tree158d3689253cdf86f7f346672d1178d1742724ce /src/internal/internal_t.proj
parent8f8999f017c29d1cbe531d0fffbab1174c16596b (diff)
downloadwix-5567239a9411aac769a34f2c65b80a523a577ad7.tar.gz
wix-5567239a9411aac769a34f2c65b80a523a577ad7.tar.bz2
wix-5567239a9411aac769a34f2c65b80a523a577ad7.zip
Run wix.exe out of proc
"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
Diffstat (limited to 'src/internal/internal_t.proj')
-rw-r--r--src/internal/internal_t.proj7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/internal/internal_t.proj b/src/internal/internal_t.proj
new file mode 100644
index 00000000..fda67786
--- /dev/null
+++ b/src/internal/internal_t.proj
@@ -0,0 +1,7 @@
1<Project Sdk="Microsoft.Build.Traversal">
2 <ItemGroup>
3 <ProjectReference Include="WixBuildTools.TestSupport\WixBuildTools.TestSupport.csproj" Targets="Pack" />
4 <ProjectReference Include="WixBuildTools.TestSupport.Native\WixBuildTools.TestSupport.Native.vcxproj" Properties="Platform=x86" />
5 <ProjectReference Include="WixBuildTools.TestSupport.Native\WixBuildTools.TestSupport.Native.vcxproj" Properties="Platform=x64" />
6 </ItemGroup>
7</Project>