main
csproj 25 lines 1003 Bytes
Raw
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. -->
3
4 <Project Sdk="Microsoft.NET.Sdk">
5 <PropertyGroup>
6 <TargetFrameworks>net6.0-windows;net462</TargetFrameworks>
7 <OutputType>WinExe</OutputType>
8 <AssemblyName>TestBA</AssemblyName>
9 <RootNamespace>WixToolset.Test.BA</RootNamespace>
10 <DebugType>embedded</DebugType>
11 <RuntimeIdentifier>win-x64</RuntimeIdentifier>
12 <EnableDynamicLoading>true</EnableDynamicLoading>
13 <UseWindowsForms>true</UseWindowsForms>
14 <SelfContained>false</SelfContained>
15 <RollForward>Major</RollForward>
16 </PropertyGroup>
17
18 <ItemGroup Condition=" '$(TargetFramework)'=='net462' ">
19 <Reference Include="System.Windows.Forms" />
20 </ItemGroup>
21
22 <ItemGroup>
23 <PackageReference Include="WixToolset.BootstrapperApplicationApi" />
24 </ItemGroup>
25 </Project>