diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2021-01-01 19:11:00 -0600 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2021-01-03 16:20:18 -0600 |
| commit | 73dc2706d9f151554356aaf3e69bfad5b46a21e9 (patch) | |
| tree | 5a269e528665d8503d7c1c457ede54c60a4095c1 /src/Utilities | |
| parent | 36b1a2ce73b394ca3ed7490a1392320e2f401cbd (diff) | |
| download | wix-73dc2706d9f151554356aaf3e69bfad5b46a21e9.tar.gz wix-73dc2706d9f151554356aaf3e69bfad5b46a21e9.tar.bz2 wix-73dc2706d9f151554356aaf3e69bfad5b46a21e9.zip | |
Add tests for wrong managed BA configuration.
Test out the .NET Core test BA as well.
Diffstat (limited to 'src/Utilities')
| -rw-r--r-- | src/Utilities/TestBA/TestBA.csproj | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/src/Utilities/TestBA/TestBA.csproj b/src/Utilities/TestBA/TestBA.csproj index f23235b9..796a0dfd 100644 --- a/src/Utilities/TestBA/TestBA.csproj +++ b/src/Utilities/TestBA/TestBA.csproj | |||
| @@ -3,22 +3,21 @@ | |||
| 3 | 3 | ||
| 4 | <Project Sdk="Microsoft.NET.Sdk"> | 4 | <Project Sdk="Microsoft.NET.Sdk"> |
| 5 | <PropertyGroup> | 5 | <PropertyGroup> |
| 6 | <TargetFramework>net35</TargetFramework> | 6 | <TargetFrameworks>net35;net5.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> |
| 10 | <RuntimeIdentifier>win-x86</RuntimeIdentifier> | 10 | <RuntimeIdentifier>win-x86</RuntimeIdentifier> |
| 11 | <EnableDynamicLoading>true</EnableDynamicLoading> | ||
| 12 | <UseWindowsForms>true</UseWindowsForms> | ||
| 11 | </PropertyGroup> | 13 | </PropertyGroup> |
| 12 | 14 | ||
| 13 | <ItemGroup> | 15 | <ItemGroup Condition=" '$(TargetFramework)'=='net35' "> |
| 14 | <Content Include="TestBA.BootstrapperCore.config" CopyToOutputDirectory="PreserveNewest" /> | 16 | <Content Include="TestBA.BootstrapperCore.config" CopyToOutputDirectory="PreserveNewest" /> |
| 17 | <Reference Include="System.Windows.Forms" /> | ||
| 15 | </ItemGroup> | 18 | </ItemGroup> |
| 16 | 19 | ||
| 17 | <ItemGroup> | 20 | <ItemGroup> |
| 18 | <PackageReference Include="WixToolset.Mba.Core" Version="4.0.45" /> | 21 | <PackageReference Include="WixToolset.Mba.Core" Version="4.0.45" /> |
| 19 | </ItemGroup> | 22 | </ItemGroup> |
| 20 | |||
| 21 | <ItemGroup> | ||
| 22 | <Reference Include="System.Windows.Forms" /> | ||
| 23 | </ItemGroup> | ||
| 24 | </Project> \ No newline at end of file | 23 | </Project> \ No newline at end of file |
