diff options
| author | Bob Arnson <bob@firegiant.com> | 2025-07-19 22:25:25 -0400 |
|---|---|---|
| committer | Bob Arnson <github@bobs.org> | 2025-07-21 13:38:30 -0400 |
| commit | 65e68bcfaf4b0ef9796cad4d5a470b3b3e72032f (patch) | |
| tree | b4a39ab7bcbb1f66ce0dee41dc567b66c85e83ad /src/ext/PowerShell/powershell_t.proj | |
| parent | baf02e973f152ddb7d74d90f505cafc0be17c4fd (diff) | |
| download | wix-65e68bcfaf4b0ef9796cad4d5a470b3b3e72032f.tar.gz wix-65e68bcfaf4b0ef9796cad4d5a470b3b3e72032f.tar.bz2 wix-65e68bcfaf4b0ef9796cad4d5a470b3b3e72032f.zip | |
Embiggen build perf.
- Move ext tests to targets for better MSBuild scheduling.
- Parallelize long-running tests.
- Disable Firewall ICEs for dev builds; they're redundant with
round-tripping and ICEs are mutex'd to make them painfully serial.
Diffstat (limited to '')
| -rw-r--r-- | src/ext/PowerShell/powershell_t.proj | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/ext/PowerShell/powershell_t.proj b/src/ext/PowerShell/powershell_t.proj index a1d88013..8c12bdef 100644 --- a/src/ext/PowerShell/powershell_t.proj +++ b/src/ext/PowerShell/powershell_t.proj | |||
| @@ -3,7 +3,7 @@ | |||
| 3 | 3 | ||
| 4 | <Project Sdk="Microsoft.Build.Traversal"> | 4 | <Project Sdk="Microsoft.Build.Traversal"> |
| 5 | <ItemGroup> | 5 | <ItemGroup> |
| 6 | <ProjectReference Include="test\WixToolsetTest.PowerShell\WixToolsetTest.Powershell.csproj" Targets="Test" /> | 6 | <ProjectReference Include="test\WixToolsetTest.PowerShell\WixToolsetTest.Powershell.csproj" /> |
| 7 | <ProjectReference Include="wixext\WixToolset.PowerShell.wixext.csproj" Targets="Pack" Properties="NoBuild=true" /> | 7 | <ProjectReference Include="wixext\WixToolset.PowerShell.wixext.csproj" Targets="Pack" Properties="NoBuild=true" /> |
| 8 | </ItemGroup> | 8 | </ItemGroup> |
| 9 | 9 | ||
| @@ -14,4 +14,8 @@ | |||
| 14 | 14 | ||
| 15 | <Delete Files="$(ArtifactsFolder)WixToolset.PowerShell.wixext.*.nupkg" /> | 15 | <Delete Files="$(ArtifactsFolder)WixToolset.PowerShell.wixext.*.nupkg" /> |
| 16 | </Target> | 16 | </Target> |
| 17 | |||
| 18 | <Target Name="WixTest"> | ||
| 19 | <MSBuild Projects="test\WixToolsetTest.PowerShell\WixToolsetTest.Powershell.csproj" Targets="Test" /> | ||
| 20 | </Target> | ||
| 17 | </Project> | 21 | </Project> |
