| 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 | <TargetFramework>netstandard2.0</TargetFramework> |
| 7 | <RootNamespace>WixToolset.BootstrapperApplications</RootNamespace> |
| 8 | <Description>WiX Toolset BootstrapperApplications extension</Description> |
| 9 | <Title>WiX Toolset BootstrapperApplications extension</Title> |
| 10 | <PackageReadmeFile>README.md</PackageReadmeFile> |
| 11 | <DebugType>embedded</DebugType> |
| 12 | </PropertyGroup> |
| 13 | |
| 14 | <Import Project="..\..\WixExt.props" /> |
| 15 | |
| 16 | <ItemGroup> |
| 17 | <EmbeddedResource Include="$(OutputPath)..\bas.wixlib" /> |
| 18 | </ItemGroup> |
| 19 | |
| 20 | <ItemGroup> |
| 21 | <None Include="README.md" Pack="true" PackagePath="\" /> |
| 22 | </ItemGroup> |
| 23 | |
| 24 | <ItemGroup Condition=" '$(NCrunch)'=='' "> |
| 25 | <ProjectReference Include="..\wixlib\bas.wixproj" ReferenceOutputAssembly="false" SkipGetTargetFrameworkProperties="true" /> |
| 26 | </ItemGroup> |
| 27 | </Project> |