diff options
author | Rob Mensching <rob@firegiant.com> | 2024-01-11 18:26:20 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2024-03-06 18:03:38 -0800 |
commit | 0d3d54992104288e9ee0c834d0b96e8502fd2d42 (patch) | |
tree | 9efa49c4983cd2ba1becab64bd1f2faccac88acf /src/test/burn/WixToolset.WixBA/WixToolset.WixBA.csproj | |
parent | 2824298d9dd817a47527c920363556b54ead5d5d (diff) | |
download | wix-0d3d54992104288e9ee0c834d0b96e8502fd2d42.tar.gz wix-0d3d54992104288e9ee0c834d0b96e8502fd2d42.tar.bz2 wix-0d3d54992104288e9ee0c834d0b96e8502fd2d42.zip |
Move the BootstrapperApplication out of proc
Diffstat (limited to 'src/test/burn/WixToolset.WixBA/WixToolset.WixBA.csproj')
-rw-r--r-- | src/test/burn/WixToolset.WixBA/WixToolset.WixBA.csproj | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/test/burn/WixToolset.WixBA/WixToolset.WixBA.csproj b/src/test/burn/WixToolset.WixBA/WixToolset.WixBA.csproj index 9ee714b6..a0b47744 100644 --- a/src/test/burn/WixToolset.WixBA/WixToolset.WixBA.csproj +++ b/src/test/burn/WixToolset.WixBA/WixToolset.WixBA.csproj | |||
@@ -1,8 +1,10 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | 1 | <?xml version="1.0" encoding="utf-8"?> |
2 | <!-- 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 | <!-- 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. --> |
3 | |||
3 | <Project Sdk="Microsoft.NET.Sdk"> | 4 | <Project Sdk="Microsoft.NET.Sdk"> |
4 | <PropertyGroup> | 5 | <PropertyGroup> |
5 | <TargetFrameworks>net472;net6.0-windows</TargetFrameworks> | 6 | <TargetFrameworks>net472;net6.0-windows</TargetFrameworks> |
7 | <OutputType>WinExe</OutputType> | ||
6 | <AssemblyName>WixToolset.WixBA</AssemblyName> | 8 | <AssemblyName>WixToolset.WixBA</AssemblyName> |
7 | <RootNamespace>WixToolset.WixBA</RootNamespace> | 9 | <RootNamespace>WixToolset.WixBA</RootNamespace> |
8 | <DebugType>embedded</DebugType> | 10 | <DebugType>embedded</DebugType> |
@@ -15,17 +17,21 @@ | |||
15 | <GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> | 17 | <GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> |
16 | <EnableDynamicLoading>true</EnableDynamicLoading> | 18 | <EnableDynamicLoading>true</EnableDynamicLoading> |
17 | <UseWPF>true</UseWPF> | 19 | <UseWPF>true</UseWPF> |
20 | <SelfContained>false</SelfContained> | ||
18 | <RollForward>Major</RollForward> | 21 | <RollForward>Major</RollForward> |
19 | <!-- https://stackoverflow.com/questions/58844785/how-to-reference-system-windows-forms-in-net-core-3-0-for-wpf-apps --> | 22 | <!-- https://stackoverflow.com/questions/58844785/how-to-reference-system-windows-forms-in-net-core-3-0-for-wpf-apps --> |
20 | <UseWindowsForms>true</UseWindowsForms> | 23 | <UseWindowsForms>true</UseWindowsForms> |
21 | </PropertyGroup> | 24 | </PropertyGroup> |
25 | |||
22 | <ItemGroup Condition=" '$(TargetFrameworkIdentifier)'=='.NETFramework' "> | 26 | <ItemGroup Condition=" '$(TargetFrameworkIdentifier)'=='.NETFramework' "> |
23 | <Content Include="WixBA.BootstrapperCore.config" CopyToOutputDirectory="PreserveNewest" /> | 27 | <Content Include="WixBA.BootstrapperCore.config" CopyToOutputDirectory="PreserveNewest" /> |
24 | </ItemGroup> | 28 | </ItemGroup> |
29 | |||
25 | <ItemGroup> | 30 | <ItemGroup> |
26 | <Resource Include="Resources\logo-white-hollow.png" /> | 31 | <Resource Include="Resources\logo-white-hollow.png" /> |
27 | <Resource Include="Resources\logo-black-hollow.png" /> | 32 | <Resource Include="Resources\logo-black-hollow.png" /> |
28 | </ItemGroup> | 33 | </ItemGroup> |
34 | |||
29 | <ItemGroup Condition=" '$(TargetFrameworkIdentifier)'=='.NETFramework' "> | 35 | <ItemGroup Condition=" '$(TargetFrameworkIdentifier)'=='.NETFramework' "> |
30 | <Reference Include="PresentationCore" /> | 36 | <Reference Include="PresentationCore" /> |
31 | <Reference Include="PresentationFramework" /> | 37 | <Reference Include="PresentationFramework" /> |
@@ -37,8 +43,4 @@ | |||
37 | <ItemGroup> | 43 | <ItemGroup> |
38 | <PackageReference Include="WixToolset.Mba.Core" /> | 44 | <PackageReference Include="WixToolset.Mba.Core" /> |
39 | </ItemGroup> | 45 | </ItemGroup> |
40 | 46 | </Project> | |
41 | <ItemGroup Condition=" '$(TargetFrameworkIdentifier)'!='.NETFramework' "> | ||
42 | <PackageReference Include="WixToolset.Dnc.HostGenerator" /> | ||
43 | </ItemGroup> | ||
44 | </Project> \ No newline at end of file | ||