aboutsummaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2023-09-05 06:27:10 -0700
committerRob Mensching <rob@firegiant.com>2023-09-05 13:54:26 -0700
commit5fa73084c66505c8274d64cc4bf2b72e416a01a6 (patch)
tree4ad29958115edffb26f12b58797e48d4f618ca1e /src/test
parent70096fc3dbcc32edf311d3c22d713d4b8fbf7baf (diff)
downloadwix-5fa73084c66505c8274d64cc4bf2b72e416a01a6.tar.gz
wix-5fa73084c66505c8274d64cc4bf2b72e416a01a6.tar.bz2
wix-5fa73084c66505c8274d64cc4bf2b72e416a01a6.zip
Correctly process build -outputType switch
Also add a few additional output types to built-in backends. Fixes 7708
Diffstat (limited to 'src/test')
-rw-r--r--src/test/burn/TestData/DependencyTests/PatchA/PatchA.wixproj2
-rw-r--r--src/test/burn/TestData/DependencyTests/PatchB/PatchB.wixproj2
-rw-r--r--src/test/burn/TestData/PatchTests/PatchA2/PatchA2.wixproj4
-rw-r--r--src/test/burn/TestData/SlipstreamTests/PatchA/PatchA.wixproj4
-rw-r--r--src/test/burn/TestData/SlipstreamTests/PatchAB/PatchAB.wixproj4
-rw-r--r--src/test/burn/TestData/SlipstreamTests/PatchAB2/PatchAB2.wixproj4
6 files changed, 10 insertions, 10 deletions
diff --git a/src/test/burn/TestData/DependencyTests/PatchA/PatchA.wixproj b/src/test/burn/TestData/DependencyTests/PatchA/PatchA.wixproj
index 4809934d..bf20b708 100644
--- a/src/test/burn/TestData/DependencyTests/PatchA/PatchA.wixproj
+++ b/src/test/burn/TestData/DependencyTests/PatchA/PatchA.wixproj
@@ -1,7 +1,7 @@
1<!-- 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. --> 1<!-- 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. -->
2<Project Sdk="WixToolset.Sdk"> 2<Project Sdk="WixToolset.Sdk">
3 <PropertyGroup> 3 <PropertyGroup>
4 <OutputType>PatchCreation</OutputType> 4 <OutputType>Patch</OutputType>
5 <TargetExt>.msp</TargetExt> 5 <TargetExt>.msp</TargetExt>
6 <SuppressSpecificWarnings>1079</SuppressSpecificWarnings> 6 <SuppressSpecificWarnings>1079</SuppressSpecificWarnings>
7 </PropertyGroup> 7 </PropertyGroup>
diff --git a/src/test/burn/TestData/DependencyTests/PatchB/PatchB.wixproj b/src/test/burn/TestData/DependencyTests/PatchB/PatchB.wixproj
index c099f008..5fbdd549 100644
--- a/src/test/burn/TestData/DependencyTests/PatchB/PatchB.wixproj
+++ b/src/test/burn/TestData/DependencyTests/PatchB/PatchB.wixproj
@@ -1,7 +1,7 @@
1<!-- 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. --> 1<!-- 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. -->
2<Project Sdk="WixToolset.Sdk"> 2<Project Sdk="WixToolset.Sdk">
3 <PropertyGroup> 3 <PropertyGroup>
4 <OutputType>PatchCreation</OutputType> 4 <OutputType>Patch</OutputType>
5 <TargetExt>.msp</TargetExt> 5 <TargetExt>.msp</TargetExt>
6 <SuppressSpecificWarnings>1079</SuppressSpecificWarnings> 6 <SuppressSpecificWarnings>1079</SuppressSpecificWarnings>
7 </PropertyGroup> 7 </PropertyGroup>
diff --git a/src/test/burn/TestData/PatchTests/PatchA2/PatchA2.wixproj b/src/test/burn/TestData/PatchTests/PatchA2/PatchA2.wixproj
index da9acb5e..3deb2263 100644
--- a/src/test/burn/TestData/PatchTests/PatchA2/PatchA2.wixproj
+++ b/src/test/burn/TestData/PatchTests/PatchA2/PatchA2.wixproj
@@ -1,7 +1,7 @@
1<!-- 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. --> 1<!-- 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. -->
2<Project Sdk="WixToolset.Sdk"> 2<Project Sdk="WixToolset.Sdk">
3 <PropertyGroup> 3 <PropertyGroup>
4 <OutputType>PatchCreation</OutputType> 4 <OutputType>Patch</OutputType>
5 <TargetExt>.msp</TargetExt> 5 <TargetExt>.msp</TargetExt>
6 <SuppressSpecificWarnings>1079</SuppressSpecificWarnings> 6 <SuppressSpecificWarnings>1079</SuppressSpecificWarnings>
7 </PropertyGroup> 7 </PropertyGroup>
@@ -9,4 +9,4 @@
9 <ProjectReference Include="..\PackageAv1\PackageAv1.wixproj" /> 9 <ProjectReference Include="..\PackageAv1\PackageAv1.wixproj" />
10 <ProjectReference Include="..\PackageAv1_0_1\PackageAv1_0_1.wixproj" /> 10 <ProjectReference Include="..\PackageAv1_0_1\PackageAv1_0_1.wixproj" />
11 </ItemGroup> 11 </ItemGroup>
12</Project> \ No newline at end of file 12</Project>
diff --git a/src/test/burn/TestData/SlipstreamTests/PatchA/PatchA.wixproj b/src/test/burn/TestData/SlipstreamTests/PatchA/PatchA.wixproj
index da9acb5e..3deb2263 100644
--- a/src/test/burn/TestData/SlipstreamTests/PatchA/PatchA.wixproj
+++ b/src/test/burn/TestData/SlipstreamTests/PatchA/PatchA.wixproj
@@ -1,7 +1,7 @@
1<!-- 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. --> 1<!-- 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. -->
2<Project Sdk="WixToolset.Sdk"> 2<Project Sdk="WixToolset.Sdk">
3 <PropertyGroup> 3 <PropertyGroup>
4 <OutputType>PatchCreation</OutputType> 4 <OutputType>Patch</OutputType>
5 <TargetExt>.msp</TargetExt> 5 <TargetExt>.msp</TargetExt>
6 <SuppressSpecificWarnings>1079</SuppressSpecificWarnings> 6 <SuppressSpecificWarnings>1079</SuppressSpecificWarnings>
7 </PropertyGroup> 7 </PropertyGroup>
@@ -9,4 +9,4 @@
9 <ProjectReference Include="..\PackageAv1\PackageAv1.wixproj" /> 9 <ProjectReference Include="..\PackageAv1\PackageAv1.wixproj" />
10 <ProjectReference Include="..\PackageAv1_0_1\PackageAv1_0_1.wixproj" /> 10 <ProjectReference Include="..\PackageAv1_0_1\PackageAv1_0_1.wixproj" />
11 </ItemGroup> 11 </ItemGroup>
12</Project> \ No newline at end of file 12</Project>
diff --git a/src/test/burn/TestData/SlipstreamTests/PatchAB/PatchAB.wixproj b/src/test/burn/TestData/SlipstreamTests/PatchAB/PatchAB.wixproj
index 81fa9e12..5f9ee5f6 100644
--- a/src/test/burn/TestData/SlipstreamTests/PatchAB/PatchAB.wixproj
+++ b/src/test/burn/TestData/SlipstreamTests/PatchAB/PatchAB.wixproj
@@ -1,7 +1,7 @@
1<!-- 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. --> 1<!-- 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. -->
2<Project Sdk="WixToolset.Sdk"> 2<Project Sdk="WixToolset.Sdk">
3 <PropertyGroup> 3 <PropertyGroup>
4 <OutputType>PatchCreation</OutputType> 4 <OutputType>Patch</OutputType>
5 <TargetExt>.msp</TargetExt> 5 <TargetExt>.msp</TargetExt>
6 <SuppressSpecificWarnings>1079</SuppressSpecificWarnings> 6 <SuppressSpecificWarnings>1079</SuppressSpecificWarnings>
7 </PropertyGroup> 7 </PropertyGroup>
@@ -11,4 +11,4 @@
11 <ProjectReference Include="..\PackageBv1\PackageBv1.wixproj" /> 11 <ProjectReference Include="..\PackageBv1\PackageBv1.wixproj" />
12 <ProjectReference Include="..\PackageBv1_0_1\PackageBv1_0_1.wixproj" /> 12 <ProjectReference Include="..\PackageBv1_0_1\PackageBv1_0_1.wixproj" />
13 </ItemGroup> 13 </ItemGroup>
14</Project> \ No newline at end of file 14</Project>
diff --git a/src/test/burn/TestData/SlipstreamTests/PatchAB2/PatchAB2.wixproj b/src/test/burn/TestData/SlipstreamTests/PatchAB2/PatchAB2.wixproj
index 81fa9e12..5f9ee5f6 100644
--- a/src/test/burn/TestData/SlipstreamTests/PatchAB2/PatchAB2.wixproj
+++ b/src/test/burn/TestData/SlipstreamTests/PatchAB2/PatchAB2.wixproj
@@ -1,7 +1,7 @@
1<!-- 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. --> 1<!-- 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. -->
2<Project Sdk="WixToolset.Sdk"> 2<Project Sdk="WixToolset.Sdk">
3 <PropertyGroup> 3 <PropertyGroup>
4 <OutputType>PatchCreation</OutputType> 4 <OutputType>Patch</OutputType>
5 <TargetExt>.msp</TargetExt> 5 <TargetExt>.msp</TargetExt>
6 <SuppressSpecificWarnings>1079</SuppressSpecificWarnings> 6 <SuppressSpecificWarnings>1079</SuppressSpecificWarnings>
7 </PropertyGroup> 7 </PropertyGroup>
@@ -11,4 +11,4 @@
11 <ProjectReference Include="..\PackageBv1\PackageBv1.wixproj" /> 11 <ProjectReference Include="..\PackageBv1\PackageBv1.wixproj" />
12 <ProjectReference Include="..\PackageBv1_0_1\PackageBv1_0_1.wixproj" /> 12 <ProjectReference Include="..\PackageBv1_0_1\PackageBv1_0_1.wixproj" />
13 </ItemGroup> 13 </ItemGroup>
14</Project> \ No newline at end of file 14</Project>