| 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.Sql</RootNamespace> |
| 8 | <Description>WiX Toolset Sql Extension</Description> |
| 9 | <Title>WiX Toolset Sql Extension</Title> |
| 10 | <DebugType>embedded</DebugType> |
| 11 | </PropertyGroup> |
| 12 | |
| 13 | <Import Project="..\..\WixExt.props" /> |
| 14 | |
| 15 | <ItemGroup> |
| 16 | <EmbeddedResource Include="$(OutputPath)..\sql.wixlib" /> |
| 17 | </ItemGroup> |
| 18 | |
| 19 | <ItemGroup Condition=" '$(NCrunch)'=='' "> |
| 20 | <ProjectReference Include="..\wixlib\sql.wixproj" ReferenceOutputAssembly="false" SkipGetTargetFrameworkProperties="true" /> |
| 21 | </ItemGroup> |
| 22 | </Project> |