diff options
author | Bob Arnson <bob@firegiant.com> | 2025-03-20 12:09:02 -0400 |
---|---|---|
committer | Bob Arnson <github@bobs.org> | 2025-03-20 13:02:06 -0400 |
commit | bf13a0b67dd644eb7d74cb0cfb6876840f73d82b (patch) | |
tree | bacd057fa1962aa5f12519991f9cd836d2a0c171 /src/ext/ext_t.proj | |
parent | 45535e659ea8b58101fe9e8adfa6aa273d2bb544 (diff) | |
download | wix-bf13a0b67dd644eb7d74cb0cfb6876840f73d82b.tar.gz wix-bf13a0b67dd644eb7d74cb0cfb6876840f73d82b.tar.bz2 wix-bf13a0b67dd644eb7d74cb0cfb6876840f73d82b.zip |
Switch to MSTest built-in Test target.
Prevents test run during VS build and shows failure details on console
(no need to dig into TRX file).
Diffstat (limited to 'src/ext/ext_t.proj')
-rw-r--r-- | src/ext/ext_t.proj | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/src/ext/ext_t.proj b/src/ext/ext_t.proj index e3301172..b51f3425 100644 --- a/src/ext/ext_t.proj +++ b/src/ext/ext_t.proj | |||
@@ -3,15 +3,9 @@ | |||
3 | 3 | ||
4 | <Project Sdk="Microsoft.Build.Traversal"> | 4 | <Project Sdk="Microsoft.Build.Traversal"> |
5 | <ItemGroup> | 5 | <ItemGroup> |
6 | <!-- These projects are "special." --> | 6 | <!-- These projects are "special" and cannot build in parallel. --> |
7 | <ProjectReference Include="Util\util_t.proj" BuildInParallel="false" Targets="Restore;Build" Properties="SuppressWixTests=true" /> | 7 | <ProjectReference Include="Util\util_t.proj" BuildInParallel="false" Targets="Restore;Build" /> |
8 | <ProjectReference Include="Bal\bal_t.proj" BuildInParallel="false" Targets="Restore;Build" Properties="SuppressWixTests=true" /> | 8 | <ProjectReference Include="Bal\bal_t.proj" BuildInParallel="false" Targets="Restore;Build" /> |
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 | 9 | ||
16 | <ProjectReference Include="NetFx\netfx_t.proj" BuildInParallel="false" Targets="Restore;Build" /> | 10 | <ProjectReference Include="NetFx\netfx_t.proj" BuildInParallel="false" Targets="Restore;Build" /> |
17 | <ProjectReference Include="ComPlus\complus_t.proj" Targets="Restore;Build" /> | 11 | <ProjectReference Include="ComPlus\complus_t.proj" Targets="Restore;Build" /> |