diff options
author | Rob Mensching <rob@firegiant.com> | 2022-09-03 10:44:33 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2022-09-23 09:50:52 -0700 |
commit | 7a86b33a38f29b315e8f08759eba42e8fe296fd7 (patch) | |
tree | 58a6ac547b25127daa4a4053ef250afb0b2e9d83 /src/test | |
parent | 002dc6077477c6a7762f1fca225c2577913a2c82 (diff) | |
download | wix-7a86b33a38f29b315e8f08759eba42e8fe296fd7.tar.gz wix-7a86b33a38f29b315e8f08759eba42e8fe296fd7.tar.bz2 wix-7a86b33a38f29b315e8f08759eba42e8fe296fd7.zip |
Centralize test project configuration with IsWixTestProject
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/burn/WixToolsetTest.BurnE2E/WixToolsetTest.BurnE2E.csproj | 7 | ||||
-rw-r--r-- | src/test/msi/WixToolsetTest.MsiE2E/WixToolsetTest.MsiE2E.csproj | 7 | ||||
-rw-r--r-- | src/test/wix/WixE2E/WixE2E.csproj | 10 |
3 files changed, 3 insertions, 21 deletions
diff --git a/src/test/burn/WixToolsetTest.BurnE2E/WixToolsetTest.BurnE2E.csproj b/src/test/burn/WixToolsetTest.BurnE2E/WixToolsetTest.BurnE2E.csproj index 88b8dcb0..1bedb34b 100644 --- a/src/test/burn/WixToolsetTest.BurnE2E/WixToolsetTest.BurnE2E.csproj +++ b/src/test/burn/WixToolsetTest.BurnE2E/WixToolsetTest.BurnE2E.csproj | |||
@@ -6,6 +6,7 @@ | |||
6 | <TargetFramework>netcoreapp3.1</TargetFramework> | 6 | <TargetFramework>netcoreapp3.1</TargetFramework> |
7 | <PlatformTarget>x64</PlatformTarget> | 7 | <PlatformTarget>x64</PlatformTarget> |
8 | <RollForward>Major</RollForward> | 8 | <RollForward>Major</RollForward> |
9 | <IsWixTestProject>true</IsWixTestProject> | ||
9 | </PropertyGroup> | 10 | </PropertyGroup> |
10 | 11 | ||
11 | <ItemGroup> | 12 | <ItemGroup> |
@@ -24,10 +25,4 @@ | |||
24 | <PackageReference Include="WixToolset.Data" /> | 25 | <PackageReference Include="WixToolset.Data" /> |
25 | <PackageReference Include="WixToolset.Mba.Core" /> | 26 | <PackageReference Include="WixToolset.Mba.Core" /> |
26 | </ItemGroup> | 27 | </ItemGroup> |
27 | |||
28 | <ItemGroup> | ||
29 | <PackageReference Include="Microsoft.NET.Test.Sdk" /> | ||
30 | <PackageReference Include="xunit" /> | ||
31 | <PackageReference Include="xunit.runner.visualstudio" PrivateAssets="All" /> | ||
32 | </ItemGroup> | ||
33 | </Project> | 28 | </Project> |
diff --git a/src/test/msi/WixToolsetTest.MsiE2E/WixToolsetTest.MsiE2E.csproj b/src/test/msi/WixToolsetTest.MsiE2E/WixToolsetTest.MsiE2E.csproj index ccf98042..348d97ad 100644 --- a/src/test/msi/WixToolsetTest.MsiE2E/WixToolsetTest.MsiE2E.csproj +++ b/src/test/msi/WixToolsetTest.MsiE2E/WixToolsetTest.MsiE2E.csproj | |||
@@ -6,6 +6,7 @@ | |||
6 | <TargetFramework>netcoreapp3.1</TargetFramework> | 6 | <TargetFramework>netcoreapp3.1</TargetFramework> |
7 | <PlatformTarget>x64</PlatformTarget> | 7 | <PlatformTarget>x64</PlatformTarget> |
8 | <RollForward>Major</RollForward> | 8 | <RollForward>Major</RollForward> |
9 | <IsWixTestProject>true</IsWixTestProject> | ||
9 | </PropertyGroup> | 10 | </PropertyGroup> |
10 | 11 | ||
11 | <ItemGroup> | 12 | <ItemGroup> |
@@ -22,10 +23,4 @@ | |||
22 | <PackageReference Include="WixBuildTools.TestSupport" /> | 23 | <PackageReference Include="WixBuildTools.TestSupport" /> |
23 | <PackageReference Include="WixToolset.Data" /> | 24 | <PackageReference Include="WixToolset.Data" /> |
24 | </ItemGroup> | 25 | </ItemGroup> |
25 | |||
26 | <ItemGroup> | ||
27 | <PackageReference Include="Microsoft.NET.Test.Sdk" /> | ||
28 | <PackageReference Include="xunit" /> | ||
29 | <PackageReference Include="xunit.runner.visualstudio" PrivateAssets="All" /> | ||
30 | </ItemGroup> | ||
31 | </Project> | 26 | </Project> |
diff --git a/src/test/wix/WixE2E/WixE2E.csproj b/src/test/wix/WixE2E/WixE2E.csproj index 031979b6..d85cc152 100644 --- a/src/test/wix/WixE2E/WixE2E.csproj +++ b/src/test/wix/WixE2E/WixE2E.csproj | |||
@@ -4,9 +4,7 @@ | |||
4 | <Project Sdk="Microsoft.NET.Sdk"> | 4 | <Project Sdk="Microsoft.NET.Sdk"> |
5 | <PropertyGroup> | 5 | <PropertyGroup> |
6 | <TargetFramework>net472</TargetFramework> | 6 | <TargetFramework>net472</TargetFramework> |
7 | <IsPackable>false</IsPackable> | 7 | <IsWixTestProject>true</IsWixTestProject> |
8 | <DebugType>embedded</DebugType> | ||
9 | <SignOutput>false</SignOutput> | ||
10 | </PropertyGroup> | 8 | </PropertyGroup> |
11 | 9 | ||
12 | <ItemGroup> | 10 | <ItemGroup> |
@@ -16,10 +14,4 @@ | |||
16 | <ItemGroup> | 14 | <ItemGroup> |
17 | <PackageReference Include="WixBuildTools.TestSupport" /> | 15 | <PackageReference Include="WixBuildTools.TestSupport" /> |
18 | </ItemGroup> | 16 | </ItemGroup> |
19 | |||
20 | <ItemGroup> | ||
21 | <PackageReference Include="Microsoft.NET.Test.Sdk" /> | ||
22 | <PackageReference Include="xunit" /> | ||
23 | <PackageReference Include="xunit.runner.visualstudio" PrivateAssets="all" /> | ||
24 | </ItemGroup> | ||
25 | </Project> | 17 | </Project> |