| 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 | |
| 6 | <PropertyGroup> |
| 7 | <TargetFrameworks>netstandard2.0;net472</TargetFrameworks> |
| 8 | <Description>Symbolizer</Description> |
| 9 | <Title>WiX Toolset Converters Tuplizer</Title> |
| 10 | <DebugType>embedded</DebugType> |
| 11 | <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 12 | <CreateDocumentationFile>true</CreateDocumentationFile> |
| 13 | </PropertyGroup> |
| 14 | |
| 15 | <ItemGroup> |
| 16 | <Reference Include="wix" HintPath="..\deps\wix.dll" /> |
| 17 | <None Condition=" '$(Configuration)'=='Release' " Include="..\deps\wix.dll" Pack="true" PackagePath="lib\net472" /> |
| 18 | <None Include="..\deps\wix.dll" Pack="true" PackagePath="lib\netstandard2.0" /> |
| 19 | </ItemGroup> |
| 20 | |
| 21 | <ItemGroup> |
| 22 | <ProjectReference Include="..\WixToolset.Core\WixToolset.Core.csproj" IncludeAssets="true" /> |
| 23 | <ProjectReference Include="..\WixToolset.Core.WindowsInstaller\WixToolset.Core.WindowsInstaller.csproj" IncludeAssets="true" /> |
| 24 | </ItemGroup> |
| 25 | |
| 26 | <ItemGroup> |
| 27 | <PackageReference Include="WixToolset.Data" /> |
| 28 | </ItemGroup> |
| 29 | </Project> |