diff options
author | Bob Arnson <bob@firegiant.com> | 2025-02-16 23:15:41 -0500 |
---|---|---|
committer | Bob Arnson <github@bobs.org> | 2025-03-03 14:25:07 -0500 |
commit | 3354cdba91ed4e67a00a23c4e556c9672b2b1f45 (patch) | |
tree | 7172a87b53050beb5b8d984305728e81e43df6c2 /src/internal/WixBuildFinalize | |
parent | ae96ff06cadd0141f48d88a7e9983ca81dace613 (diff) | |
download | wix-3354cdba91ed4e67a00a23c4e556c9672b2b1f45.tar.gz wix-3354cdba91ed4e67a00a23c4e556c9672b2b1f45.tar.bz2 wix-3354cdba91ed4e67a00a23c4e556c9672b2b1f45.zip |
Convert WixToolsetTest.Sdk to MSTest.***
***Does not include a full conversion to traversal projects. The wix
segment already uses traversal projects extensively so there isn't a
significant per win, especially compared to the effort required...but
MSTest's method-level parallelism cuts test run time in half (~60->~30).
Diffstat (limited to 'src/internal/WixBuildFinalize')
-rw-r--r-- | src/internal/WixBuildFinalize/WixBuildFinalize.proj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/internal/WixBuildFinalize/WixBuildFinalize.proj b/src/internal/WixBuildFinalize/WixBuildFinalize.proj index bd68a471..1025fad1 100644 --- a/src/internal/WixBuildFinalize/WixBuildFinalize.proj +++ b/src/internal/WixBuildFinalize/WixBuildFinalize.proj | |||
@@ -6,7 +6,7 @@ | |||
6 | <TargetFramework>net472</TargetFramework> | 6 | <TargetFramework>net472</TargetFramework> |
7 | </PropertyGroup> | 7 | </PropertyGroup> |
8 | 8 | ||
9 | <Target Name="ZipPdbs" BeforeTargets="AfterBuild"> | 9 | <Target Name="ZipPdbs" BeforeTargets="AfterBuild" Condition=" '$(Configuration)' == 'Release' "> |
10 | <ZipDirectory | 10 | <ZipDirectory |
11 | SourceDirectory="$(PdbsFolder)" | 11 | SourceDirectory="$(PdbsFolder)" |
12 | DestinationFile="$(ArtifactsFolder)\wix-pdbs.$(Version).zip" | 12 | DestinationFile="$(ArtifactsFolder)\wix-pdbs.$(Version).zip" |