| 1 | <Project Sdk="Microsoft.NET.Sdk"> |
| 2 | <PropertyGroup> |
| 3 | <TargetFramework>net462</TargetFramework> |
| 4 | <Description>Sample managed embedded external UI</Description> |
| 5 | <UseWPF>true</UseWPF> |
| 6 | </PropertyGroup> |
| 7 | |
| 8 | <ItemGroup> |
| 9 | <Content Include="EmbeddedUI.config" CopyToOutputDirectory="PreserveNewest" /> |
| 10 | </ItemGroup> |
| 11 | |
| 12 | <ItemGroup> |
| 13 | <Reference Include="PresentationCore" /> |
| 14 | <Reference Include="PresentationFramework" /> |
| 15 | <Reference Include="System" /> |
| 16 | <Reference Include="System.Core" /> |
| 17 | <Reference Include="System.Xml" /> |
| 18 | <Reference Include="WindowsBase" /> |
| 19 | </ItemGroup> |
| 20 | |
| 21 | <ItemGroup> |
| 22 | <PackageReference Include="WixToolset.Dtf.CustomAction" /> |
| 23 | </ItemGroup> |
| 24 | </Project> |