blob: 4371d0d63fdd2cd30e2c5d3e6ab65ba30ff931a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
<?xml version="1.0" encoding="utf-8"?>
<!-- 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. -->
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0-windows;net472</TargetFrameworks>
<OutputType>WinExe</OutputType>
<AssemblyName>WixToolset.WixBA</AssemblyName>
<RootNamespace>WixToolset.WixBA</RootNamespace>
<DebugType>embedded</DebugType>
<RuntimeIdentifier>win-x86</RuntimeIdentifier>
<AssemblyTitle>WixToolset.WixBA</AssemblyTitle>
<Description>WiX Bootstrapper Application</Description>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<EnableDynamicLoading>true</EnableDynamicLoading>
<UseWPF>true</UseWPF>
<SelfContained>false</SelfContained>
<RollForward>Major</RollForward>
<!-- https://stackoverflow.com/questions/58844785/how-to-reference-system-windows-forms-in-net-core-3-0-for-wpf-apps -->
<UseWindowsForms>true</UseWindowsForms>
</PropertyGroup>
<ItemGroup>
<Resource Include="Resources\logo-white-hollow.png" />
<Resource Include="Resources\logo-black-hollow.png" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFrameworkIdentifier)'=='.NETFramework' ">
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xaml" />
<Reference Include="WindowsBase" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="WixToolset.BootstrapperApplicationApi" />
</ItemGroup>
</Project>
|