summaryrefslogtreecommitdiff
path: root/src/ext/ext_t.proj
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2025-02-14 22:29:39 -0500
committerBob Arnson <github@bobs.org>2025-03-03 14:25:07 -0500
commitca6e44d496b0c589fdaabad69a00643f539c47cd (patch)
treeedf84727cecfc03092a2851b465d97622c5048eb /src/ext/ext_t.proj
parentba7fd5837ea149b2e319cc577fad27ce1162a064 (diff)
downloadwix-ca6e44d496b0c589fdaabad69a00643f539c47cd.tar.gz
wix-ca6e44d496b0c589fdaabad69a00643f539c47cd.tar.bz2
wix-ca6e44d496b0c589fdaabad69a00643f539c47cd.zip
Convert ext\ to MSTest and traversal projects.
- Move ext\ unit tests to MSTest. - MSBuildify ext projects with MSTest execution. - Fork test support projects for MSTest: - WixInternal.TestSupport - WixInternal.Core.TestPackage
Diffstat (limited to 'src/ext/ext_t.proj')
-rw-r--r--src/ext/ext_t.proj30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/ext/ext_t.proj b/src/ext/ext_t.proj
new file mode 100644
index 00000000..e3301172
--- /dev/null
+++ b/src/ext/ext_t.proj
@@ -0,0 +1,30 @@
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. -->
3
4<Project Sdk="Microsoft.Build.Traversal">
5 <ItemGroup>
6 <!-- These projects are "special." -->
7 <ProjectReference Include="Util\util_t.proj" BuildInParallel="false" Targets="Restore;Build" Properties="SuppressWixTests=true" />
8 <ProjectReference Include="Bal\bal_t.proj" BuildInParallel="false" Targets="Restore;Build" Properties="SuppressWixTests=true" />
9 <!-- <ProjectReference Include="NetFx\netfx_t.proj" BuildInParallel="false" Targets="Restore;Build" Properties="SuppressWixTests=true" /> -->
10
11 <!-- Now run tests we skipped earlier along with everything in parallel. -->
12 <ProjectReference Include="Util\util_t.proj" Targets="Build" />
13 <ProjectReference Include="Bal\bal_t.proj" Targets="Build" />
14 <!-- <ProjectReference Include="NetFx\netfx_t.proj" Targets="Build" /> -->
15
16 <ProjectReference Include="NetFx\netfx_t.proj" BuildInParallel="false" Targets="Restore;Build" />
17 <ProjectReference Include="ComPlus\complus_t.proj" Targets="Restore;Build" />
18 <ProjectReference Include="Dependency\dependency_t.proj" Targets="Restore;Build" />
19 <ProjectReference Include="DirectX\directx_t.proj" Targets="Restore;Build" />
20 <ProjectReference Include="Firewall\firewall_t.proj" Targets="Restore;Build" />
21 <ProjectReference Include="Http\http_t.proj" Targets="Restore;Build" />
22 <ProjectReference Include="Iis\iis_t.proj" Targets="Restore;Build" />
23 <ProjectReference Include="Msmq\msmq_t.proj" Targets="Restore;Build" />
24 <ProjectReference Include="NetFx\netfx_t.proj" Targets="Restore;Build" />
25 <ProjectReference Include="PowerShell\powershell_t.proj" Targets="Restore;Build" />
26 <ProjectReference Include="Sql\sql_t.proj" Targets="Restore;Build" />
27 <ProjectReference Include="UI\ui_t.proj" Targets="Restore;Build" />
28 <ProjectReference Include="VisualStudio\visualstudio_t.proj" Targets="Restore;Build" />
29 </ItemGroup>
30</Project>