diff options
author | Rob Mensching <rob@firegiant.com> | 2023-12-18 19:44:47 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2023-12-19 11:46:11 -0800 |
commit | f02ef4acf9649badaa3ab78d2499ca5014fa2234 (patch) | |
tree | 78e9cbccc6f11a7a354d73cb6d5df95718799828 /src/test | |
parent | 7b63b092cbc393739d64c371dd89f91891d15102 (diff) | |
download | wix-f02ef4acf9649badaa3ab78d2499ca5014fa2234.tar.gz wix-f02ef4acf9649badaa3ab78d2499ca5014fa2234.tar.bz2 wix-f02ef4acf9649badaa3ab78d2499ca5014fa2234.zip |
Make the minimum supported .NET Framework v4.6.2
Diffstat (limited to 'src/test')
18 files changed, 25 insertions, 25 deletions
diff --git a/src/test/burn/TestBA/TestBA.csproj b/src/test/burn/TestBA/TestBA.csproj index ab3c21cb..77f90ede 100644 --- a/src/test/burn/TestBA/TestBA.csproj +++ b/src/test/burn/TestBA/TestBA.csproj | |||
@@ -3,7 +3,7 @@ | |||
3 | 3 | ||
4 | <Project Sdk="Microsoft.NET.Sdk"> | 4 | <Project Sdk="Microsoft.NET.Sdk"> |
5 | <PropertyGroup> | 5 | <PropertyGroup> |
6 | <TargetFrameworks>net35;net6.0-windows</TargetFrameworks> | 6 | <TargetFrameworks>net462;net6.0-windows</TargetFrameworks> |
7 | <AssemblyName>TestBA</AssemblyName> | 7 | <AssemblyName>TestBA</AssemblyName> |
8 | <RootNamespace>WixToolset.Test.BA</RootNamespace> | 8 | <RootNamespace>WixToolset.Test.BA</RootNamespace> |
9 | <DebugType>embedded</DebugType> | 9 | <DebugType>embedded</DebugType> |
@@ -13,7 +13,7 @@ | |||
13 | <RollForward>Major</RollForward> | 13 | <RollForward>Major</RollForward> |
14 | </PropertyGroup> | 14 | </PropertyGroup> |
15 | 15 | ||
16 | <ItemGroup Condition=" '$(TargetFramework)'=='net35' "> | 16 | <ItemGroup Condition=" '$(TargetFramework)'=='net462' "> |
17 | <Content Include="TestBA.BootstrapperCore.config" CopyToOutputDirectory="PreserveNewest" /> | 17 | <Content Include="TestBA.BootstrapperCore.config" CopyToOutputDirectory="PreserveNewest" /> |
18 | <Reference Include="System.Windows.Forms" /> | 18 | <Reference Include="System.Windows.Forms" /> |
19 | </ItemGroup> | 19 | </ItemGroup> |
diff --git a/src/test/burn/TestBA/TestBA_x64.csproj b/src/test/burn/TestBA/TestBA_x64.csproj index 748d78ab..0669eee1 100644 --- a/src/test/burn/TestBA/TestBA_x64.csproj +++ b/src/test/burn/TestBA/TestBA_x64.csproj | |||
@@ -3,7 +3,7 @@ | |||
3 | 3 | ||
4 | <Project Sdk="Microsoft.NET.Sdk"> | 4 | <Project Sdk="Microsoft.NET.Sdk"> |
5 | <PropertyGroup> | 5 | <PropertyGroup> |
6 | <TargetFrameworks>net35;net6.0-windows</TargetFrameworks> | 6 | <TargetFrameworks>net462;net6.0-windows</TargetFrameworks> |
7 | <AssemblyName>TestBA</AssemblyName> | 7 | <AssemblyName>TestBA</AssemblyName> |
8 | <RootNamespace>WixToolset.Test.BA</RootNamespace> | 8 | <RootNamespace>WixToolset.Test.BA</RootNamespace> |
9 | <DebugType>embedded</DebugType> | 9 | <DebugType>embedded</DebugType> |
@@ -13,7 +13,7 @@ | |||
13 | <RollForward>Major</RollForward> | 13 | <RollForward>Major</RollForward> |
14 | </PropertyGroup> | 14 | </PropertyGroup> |
15 | 15 | ||
16 | <ItemGroup Condition=" '$(TargetFramework)'=='net35' "> | 16 | <ItemGroup Condition=" '$(TargetFramework)'=='net462' "> |
17 | <Content Include="TestBA.BootstrapperCore.config" CopyToOutputDirectory="PreserveNewest" /> | 17 | <Content Include="TestBA.BootstrapperCore.config" CopyToOutputDirectory="PreserveNewest" /> |
18 | <Reference Include="System.Windows.Forms" /> | 18 | <Reference Include="System.Windows.Forms" /> |
19 | </ItemGroup> | 19 | </ItemGroup> |
diff --git a/src/test/burn/TestData/PrereqBaTests/BundleB/BundleB.wixproj b/src/test/burn/TestData/PrereqBaTests/BundleB/BundleB.wixproj index 843b382a..ade73a52 100644 --- a/src/test/burn/TestData/PrereqBaTests/BundleB/BundleB.wixproj +++ b/src/test/burn/TestData/PrereqBaTests/BundleB/BundleB.wixproj | |||
@@ -9,7 +9,7 @@ | |||
9 | <Compile Include="..\..\Templates\Bundle.wxs" Link="Bundle.wxs" /> | 9 | <Compile Include="..\..\Templates\Bundle.wxs" Link="Bundle.wxs" /> |
10 | </ItemGroup> | 10 | </ItemGroup> |
11 | <ItemGroup> | 11 | <ItemGroup> |
12 | <BindInputPaths Include="$(BaseOutputPath)$(Configuration)\net35\win-x86" BindName="net2x86" /> | 12 | <BindInputPaths Include="$(BaseOutputPath)$(Configuration)\net462\win-x86" BindName="net2x86" /> |
13 | </ItemGroup> | 13 | </ItemGroup> |
14 | <ItemGroup> | 14 | <ItemGroup> |
15 | <ProjectReference Include="..\PackageB\PackageB.wixproj" /> | 15 | <ProjectReference Include="..\PackageB\PackageB.wixproj" /> |
diff --git a/src/test/burn/TestData/PrereqBaTests/BundleD/BundleD.wixproj b/src/test/burn/TestData/PrereqBaTests/BundleD/BundleD.wixproj index 314fe2e2..b3ba4987 100644 --- a/src/test/burn/TestData/PrereqBaTests/BundleD/BundleD.wixproj +++ b/src/test/burn/TestData/PrereqBaTests/BundleD/BundleD.wixproj | |||
@@ -9,7 +9,7 @@ | |||
9 | <Compile Include="..\..\Templates\Bundle.wxs" Link="Bundle.wxs" /> | 9 | <Compile Include="..\..\Templates\Bundle.wxs" Link="Bundle.wxs" /> |
10 | </ItemGroup> | 10 | </ItemGroup> |
11 | <ItemGroup> | 11 | <ItemGroup> |
12 | <BindInputPaths Include="$(BaseOutputPath)$(Configuration)\net35\win-x86" BindName="net2x86" /> | 12 | <BindInputPaths Include="$(BaseOutputPath)$(Configuration)\net462\win-x86" BindName="net2x86" /> |
13 | </ItemGroup> | 13 | </ItemGroup> |
14 | <ItemGroup> | 14 | <ItemGroup> |
15 | <ProjectReference Include="..\PackageB\PackageB.wixproj" /> | 15 | <ProjectReference Include="..\PackageB\PackageB.wixproj" /> |
diff --git a/src/test/burn/TestData/TestBA/TestBAWixlib/testbawixlib.wixproj b/src/test/burn/TestData/TestBA/TestBAWixlib/testbawixlib.wixproj index 6ef417d0..788353d6 100644 --- a/src/test/burn/TestData/TestBA/TestBAWixlib/testbawixlib.wixproj +++ b/src/test/burn/TestData/TestBA/TestBAWixlib/testbawixlib.wixproj | |||
@@ -6,7 +6,7 @@ | |||
6 | <Cultures>en-us</Cultures> | 6 | <Cultures>en-us</Cultures> |
7 | </PropertyGroup> | 7 | </PropertyGroup> |
8 | <ItemGroup> | 8 | <ItemGroup> |
9 | <BindInputPaths Include="$(BaseOutputPath)$(Configuration)\net35\win-x86" BindName="net2x86" /> | 9 | <BindInputPaths Include="$(BaseOutputPath)$(Configuration)\net462\win-x86" BindName="net2x86" /> |
10 | <BindInputPaths Include="$(BaseOutputPath)$(Configuration)\net472\win-x86" BindName="net4x86" /> | 10 | <BindInputPaths Include="$(BaseOutputPath)$(Configuration)\net472\win-x86" BindName="net4x86" /> |
11 | <BindInputPaths Include="$(BaseOutputPath)$(Configuration)\net6.0-windows\win-x86" BindName="dncx86" /> | 11 | <BindInputPaths Include="$(BaseOutputPath)$(Configuration)\net6.0-windows\win-x86" BindName="dncx86" /> |
12 | </ItemGroup> | 12 | </ItemGroup> |
diff --git a/src/test/burn/TestData/TestBA/TestBAWixlib_x64/testbawixlib_x64.wixproj b/src/test/burn/TestData/TestBA/TestBAWixlib_x64/testbawixlib_x64.wixproj index 13f66a86..154367e3 100644 --- a/src/test/burn/TestData/TestBA/TestBAWixlib_x64/testbawixlib_x64.wixproj +++ b/src/test/burn/TestData/TestBA/TestBAWixlib_x64/testbawixlib_x64.wixproj | |||
@@ -7,7 +7,7 @@ | |||
7 | <InstallerPlatform>x64</InstallerPlatform> | 7 | <InstallerPlatform>x64</InstallerPlatform> |
8 | </PropertyGroup> | 8 | </PropertyGroup> |
9 | <ItemGroup> | 9 | <ItemGroup> |
10 | <BindInputPaths Include="$(BaseOutputPath)$(Configuration)\net35\win-x64" BindName="net2x64" /> | 10 | <BindInputPaths Include="$(BaseOutputPath)$(Configuration)\net462\win-x64" BindName="net2x64" /> |
11 | <BindInputPaths Include="$(BaseOutputPath)$(Configuration)\net472\win-x64" BindName="net4x64" /> | 11 | <BindInputPaths Include="$(BaseOutputPath)$(Configuration)\net472\win-x64" BindName="net4x64" /> |
12 | <BindInputPaths Include="$(BaseOutputPath)$(Configuration)\net6.0-windows\win-x64" BindName="dncx64" /> | 12 | <BindInputPaths Include="$(BaseOutputPath)$(Configuration)\net6.0-windows\win-x64" BindName="dncx64" /> |
13 | </ItemGroup> | 13 | </ItemGroup> |
@@ -17,7 +17,7 @@ | |||
17 | the required target framework. Since we want all target frameworks built, | 17 | the required target framework. Since we want all target frameworks built, |
18 | the above line is shorter. | 18 | the above line is shorter. |
19 | <ProjectReference Include="..\..\..\TestBA\TestBA_x64.csproj"> | 19 | <ProjectReference Include="..\..\..\TestBA\TestBA_x64.csproj"> |
20 | <SetTargetFramework>TargetFramework=net35</SetTargetFramework> | 20 | <SetTargetFramework>TargetFramework=net462</SetTargetFramework> |
21 | </ProjectReference> | 21 | </ProjectReference> |
22 | <ProjectReference Include="..\..\..\TestBA\TestBA_x64.csproj"> | 22 | <ProjectReference Include="..\..\..\TestBA\TestBA_x64.csproj"> |
23 | <SetTargetFramework>TargetFramework=net5.0-windows</SetTargetFramework> | 23 | <SetTargetFramework>TargetFramework=net5.0-windows</SetTargetFramework> |
diff --git a/src/test/burn/TestData/WixIuiBaTests/EmbeddedUI/EmbeddedUI.csproj b/src/test/burn/TestData/WixIuiBaTests/EmbeddedUI/EmbeddedUI.csproj index a6339220..b183b842 100644 --- a/src/test/burn/TestData/WixIuiBaTests/EmbeddedUI/EmbeddedUI.csproj +++ b/src/test/burn/TestData/WixIuiBaTests/EmbeddedUI/EmbeddedUI.csproj | |||
@@ -1,6 +1,6 @@ | |||
1 | <Project Sdk="Microsoft.NET.Sdk"> | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | <PropertyGroup> | 2 | <PropertyGroup> |
3 | <TargetFramework>net35</TargetFramework> | 3 | <TargetFramework>net462</TargetFramework> |
4 | <Description>Sample managed embedded external UI</Description> | 4 | <Description>Sample managed embedded external UI</Description> |
5 | <UseWPF>true</UseWPF> | 5 | <UseWPF>true</UseWPF> |
6 | </PropertyGroup> | 6 | </PropertyGroup> |
diff --git a/src/test/burn/TestData/WixIuiBaTests/ManagedCA/ManagedCA.csproj b/src/test/burn/TestData/WixIuiBaTests/ManagedCA/ManagedCA.csproj index 866b7575..fd3862d9 100644 --- a/src/test/burn/TestData/WixIuiBaTests/ManagedCA/ManagedCA.csproj +++ b/src/test/burn/TestData/WixIuiBaTests/ManagedCA/ManagedCA.csproj | |||
@@ -1,6 +1,6 @@ | |||
1 | <Project Sdk="Microsoft.NET.Sdk"> | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | <PropertyGroup> | 2 | <PropertyGroup> |
3 | <TargetFramework>net20</TargetFramework> | 3 | <TargetFramework>net462</TargetFramework> |
4 | <Description>Sample managed custom actions</Description> | 4 | <Description>Sample managed custom actions</Description> |
5 | </PropertyGroup> | 5 | </PropertyGroup> |
6 | 6 | ||
diff --git a/src/test/burn/TestExe/NetfxTask.cs b/src/test/burn/TestExe/NetfxTask.cs index 35b1ea95..149df421 100644 --- a/src/test/burn/TestExe/NetfxTask.cs +++ b/src/test/burn/TestExe/NetfxTask.cs | |||
@@ -1,6 +1,6 @@ | |||
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 | 2 | ||
3 | #if NET35 | 3 | #if NETFRAMEWORK |
4 | using System; | 4 | using System; |
5 | using System.Collections.Generic; | 5 | using System.Collections.Generic; |
6 | using System.Diagnostics; | 6 | using System.Diagnostics; |
diff --git a/src/test/burn/TestExe/Task.cs b/src/test/burn/TestExe/Task.cs index 0d283c6c..e6f52b5a 100644 --- a/src/test/burn/TestExe/Task.cs +++ b/src/test/burn/TestExe/Task.cs | |||
@@ -264,7 +264,7 @@ namespace TestExe | |||
264 | t = new DeleteManifestsTask(args[i + 1]); | 264 | t = new DeleteManifestsTask(args[i + 1]); |
265 | tasks.Add(t); | 265 | tasks.Add(t); |
266 | break; | 266 | break; |
267 | #if NET35 | 267 | #if NETFRAMEWORK |
268 | case "/pinfo": | 268 | case "/pinfo": |
269 | t = new ProcessInfoTask(args[i + 1]); | 269 | t = new ProcessInfoTask(args[i + 1]); |
270 | tasks.Add(t); | 270 | tasks.Add(t); |
diff --git a/src/test/burn/TestExe/TestExe.csproj b/src/test/burn/TestExe/TestExe.csproj index 446d0ee3..9209dfd7 100644 --- a/src/test/burn/TestExe/TestExe.csproj +++ b/src/test/burn/TestExe/TestExe.csproj | |||
@@ -3,7 +3,7 @@ | |||
3 | 3 | ||
4 | <Project Sdk="Microsoft.NET.Sdk"> | 4 | <Project Sdk="Microsoft.NET.Sdk"> |
5 | <PropertyGroup> | 5 | <PropertyGroup> |
6 | <TargetFrameworks>net35;net6.0</TargetFrameworks> | 6 | <TargetFrameworks>net462;net6.0</TargetFrameworks> |
7 | <AssemblyName>TestExe</AssemblyName> | 7 | <AssemblyName>TestExe</AssemblyName> |
8 | <RootNamespace>TestExe</RootNamespace> | 8 | <RootNamespace>TestExe</RootNamespace> |
9 | <OutputType>Exe</OutputType> | 9 | <OutputType>Exe</OutputType> |
@@ -14,7 +14,7 @@ | |||
14 | <RollForward>Major</RollForward> | 14 | <RollForward>Major</RollForward> |
15 | </PropertyGroup> | 15 | </PropertyGroup> |
16 | 16 | ||
17 | <ItemGroup Condition="'$(TargetFramework)'=='net35'"> | 17 | <ItemGroup Condition="'$(TargetFramework)'=='net462'"> |
18 | <Reference Include="System.Management" /> | 18 | <Reference Include="System.Management" /> |
19 | </ItemGroup> | 19 | </ItemGroup> |
20 | </Project> | 20 | </Project> |
diff --git a/src/test/burn/TestExe/TestExe_x64.csproj b/src/test/burn/TestExe/TestExe_x64.csproj index ef981d73..2344ad0b 100644 --- a/src/test/burn/TestExe/TestExe_x64.csproj +++ b/src/test/burn/TestExe/TestExe_x64.csproj | |||
@@ -3,7 +3,7 @@ | |||
3 | 3 | ||
4 | <Project Sdk="Microsoft.NET.Sdk"> | 4 | <Project Sdk="Microsoft.NET.Sdk"> |
5 | <PropertyGroup> | 5 | <PropertyGroup> |
6 | <TargetFrameworks>net35</TargetFrameworks> | 6 | <TargetFrameworks>net462</TargetFrameworks> |
7 | <AssemblyName>TestExe</AssemblyName> | 7 | <AssemblyName>TestExe</AssemblyName> |
8 | <RootNamespace>TestExe</RootNamespace> | 8 | <RootNamespace>TestExe</RootNamespace> |
9 | <OutputType>Exe</OutputType> | 9 | <OutputType>Exe</OutputType> |
diff --git a/src/test/burn/test_burn.cmd b/src/test/burn/test_burn.cmd index 7303f736..178ac7e2 100644 --- a/src/test/burn/test_burn.cmd +++ b/src/test/burn/test_burn.cmd | |||
@@ -16,7 +16,7 @@ | |||
16 | msbuild -Restore -p:Configuration=%_C% -tl -nologo -m -warnaserror -bl:%_L%\test_burn_build.binlog || exit /b | 16 | msbuild -Restore -p:Configuration=%_C% -tl -nologo -m -warnaserror -bl:%_L%\test_burn_build.binlog || exit /b |
17 | msbuild -Restore TestData\TestData.proj -p:Configuration=%_C% -tl -nologo -m -warnaserror -bl:%_L%\test_burn_data_build.binlog || exit /b | 17 | msbuild -Restore TestData\TestData.proj -p:Configuration=%_C% -tl -nologo -m -warnaserror -bl:%_L%\test_burn_data_build.binlog || exit /b |
18 | 18 | ||
19 | "%_B%\net35\win-x86\testexe.exe" /dm "%_B%\net6.0-windows\testhost.exe" | 19 | "%_B%\net462\win-x86\testexe.exe" /dm "%_B%\net6.0-windows\testhost.exe" |
20 | mt.exe -manifest "WixToolsetTest.BurnE2E\testhost.longpathaware.manifest" -updateresource:"%_B%\net6.0-windows\testhost.exe" | 20 | mt.exe -manifest "WixToolsetTest.BurnE2E\testhost.longpathaware.manifest" -updateresource:"%_B%\net6.0-windows\testhost.exe" |
21 | 21 | ||
22 | @if not "%RuntimeTestsEnabled%"=="true" goto :LExit | 22 | @if not "%RuntimeTestsEnabled%"=="true" goto :LExit |
diff --git a/src/test/wix/TestData/CsprojClassLibraryMultiFramework/CsprojClassLibraryMultiFramework.csproj b/src/test/wix/TestData/CsprojClassLibraryMultiFramework/CsprojClassLibraryMultiFramework.csproj index ffc34573..bc30bf4b 100644 --- a/src/test/wix/TestData/CsprojClassLibraryMultiFramework/CsprojClassLibraryMultiFramework.csproj +++ b/src/test/wix/TestData/CsprojClassLibraryMultiFramework/CsprojClassLibraryMultiFramework.csproj | |||
@@ -1,7 +1,7 @@ | |||
1 | <Project Sdk="Microsoft.NET.Sdk"> | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 | ||
3 | <PropertyGroup> | 3 | <PropertyGroup> |
4 | <TargetFrameworks>net6.0;net48</TargetFrameworks> | 4 | <TargetFrameworks>net6.0;net472</TargetFrameworks> |
5 | <DebugType>embedded</DebugType> | 5 | <DebugType>embedded</DebugType> |
6 | </PropertyGroup> | 6 | </PropertyGroup> |
7 | 7 | ||
diff --git a/src/test/wix/TestData/CsprojClassLibraryMultiTarget/CsprojClassLibraryMultiTarget.csproj b/src/test/wix/TestData/CsprojClassLibraryMultiTarget/CsprojClassLibraryMultiTarget.csproj index 9920b616..e2fa94f5 100644 --- a/src/test/wix/TestData/CsprojClassLibraryMultiTarget/CsprojClassLibraryMultiTarget.csproj +++ b/src/test/wix/TestData/CsprojClassLibraryMultiTarget/CsprojClassLibraryMultiTarget.csproj | |||
@@ -1,7 +1,7 @@ | |||
1 | <Project Sdk="Microsoft.NET.Sdk"> | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 | ||
3 | <PropertyGroup> | 3 | <PropertyGroup> |
4 | <TargetFrameworks>net48;net5.0</TargetFrameworks> | 4 | <TargetFrameworks>net472;net6.0</TargetFrameworks> |
5 | </PropertyGroup> | 5 | </PropertyGroup> |
6 | 6 | ||
7 | <ItemGroup> | 7 | <ItemGroup> |
diff --git a/src/test/wix/TestData/CsprojConsoleMultiFramework/CsprojConsoleMultiFramework.csproj b/src/test/wix/TestData/CsprojConsoleMultiFramework/CsprojConsoleMultiFramework.csproj index 8b4fac23..bb8a8b3e 100644 --- a/src/test/wix/TestData/CsprojConsoleMultiFramework/CsprojConsoleMultiFramework.csproj +++ b/src/test/wix/TestData/CsprojConsoleMultiFramework/CsprojConsoleMultiFramework.csproj | |||
@@ -2,7 +2,7 @@ | |||
2 | 2 | ||
3 | <PropertyGroup> | 3 | <PropertyGroup> |
4 | <OutputType>Exe</OutputType> | 4 | <OutputType>Exe</OutputType> |
5 | <TargetFrameworks>net6.0;net48</TargetFrameworks> | 5 | <TargetFrameworks>net6.0;net472</TargetFrameworks> |
6 | <RuntimeIdentifiers>win-x86</RuntimeIdentifiers> | 6 | <RuntimeIdentifiers>win-x86</RuntimeIdentifiers> |
7 | </PropertyGroup> | 7 | </PropertyGroup> |
8 | 8 | ||
diff --git a/src/test/wix/TestData/WixprojLibraryMultiFramework/Library.wxs b/src/test/wix/TestData/WixprojLibraryMultiFramework/Library.wxs index 00a2e558..cf3d2d35 100644 --- a/src/test/wix/TestData/WixprojLibraryMultiFramework/Library.wxs +++ b/src/test/wix/TestData/WixprojLibraryMultiFramework/Library.wxs | |||
@@ -13,13 +13,13 @@ | |||
13 | </Fragment> | 13 | </Fragment> |
14 | 14 | ||
15 | <Fragment> | 15 | <Fragment> |
16 | <ComponentGroup Id='CsprojClassLibraryMultiFrameworkNet48' Directory='ApplicationFolder' Subdirectory="net48"> | 16 | <ComponentGroup Id='CsprojClassLibraryMultiFrameworkNet472' Directory='ApplicationFolder' Subdirectory="net472"> |
17 | <Component> | 17 | <Component> |
18 | <File Id="Net48" Source='!(bindpath.CsprojConsoleMultiFramework.net48)CsprojConsoleMultiFramework.exe' /> | 18 | <File Id="Net472" Source='!(bindpath.CsprojConsoleMultiFramework.net472)CsprojConsoleMultiFramework.exe' /> |
19 | <File Source='!(bindpath.CsprojConsoleMultiFramework.net48)CsprojConsoleMultiFramework.exe.config' /> | 19 | <File Source='!(bindpath.CsprojConsoleMultiFramework.net472)CsprojConsoleMultiFramework.exe.config' /> |
20 | </Component> | 20 | </Component> |
21 | <Component> | 21 | <Component> |
22 | <File Source='!(bindpath.CsprojConsoleMultiFramework.net48)CsprojClassLibraryMultiFramework.dll' /> | 22 | <File Source='!(bindpath.CsprojConsoleMultiFramework.net472)CsprojClassLibraryMultiFramework.dll' /> |
23 | </Component> | 23 | </Component> |
24 | </ComponentGroup> | 24 | </ComponentGroup> |
25 | </Fragment> | 25 | </Fragment> |
diff --git a/src/test/wix/TestData/WixprojLibraryMultiFramework/WixprojLibraryMultiFramework.wixproj b/src/test/wix/TestData/WixprojLibraryMultiFramework/WixprojLibraryMultiFramework.wixproj index 6b4dd129..66812ea2 100644 --- a/src/test/wix/TestData/WixprojLibraryMultiFramework/WixprojLibraryMultiFramework.wixproj +++ b/src/test/wix/TestData/WixprojLibraryMultiFramework/WixprojLibraryMultiFramework.wixproj | |||
@@ -7,6 +7,6 @@ | |||
7 | 7 | ||
8 | <ItemGroup> | 8 | <ItemGroup> |
9 | <ProjectReference Include="..\CsprojConsoleMultiFramework\CsprojConsoleMultiFramework.csproj" | 9 | <ProjectReference Include="..\CsprojConsoleMultiFramework\CsprojConsoleMultiFramework.csproj" |
10 | TargetFrameworks="net48;net6.0" Publish="true" /> | 10 | TargetFrameworks="net472;net6.0" Publish="true" /> |
11 | </ItemGroup> | 11 | </ItemGroup> |
12 | </Project> | 12 | </Project> |