main
csproj 28 lines 1.09 KB
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>netstandard2.0;net472</TargetFrameworks>
7 <Description>Core Windows Installer</Description>
8 <Title>WiX Toolset Core Windows Installer</Title>
9 <DebugType>embedded</DebugType>
10 <PublishRepositoryUrl>true</PublishRepositoryUrl>
11 <CreateDocumentationFile>true</CreateDocumentationFile>
12 </PropertyGroup>
13
14 <ItemGroup>
15 <ProjectReference Include="..\WixToolset.Core.Native\WixToolset.Core.Native.csproj" />
16 </ItemGroup>
17
18 <ItemGroup>
19 <PackageReference Include="WixToolset.Data" />
20 <PackageReference Include="WixToolset.Extensibility" />
21 <PackageReference Include="WixToolset.Versioning" />
22 </ItemGroup>
23
24 <ItemGroup>
25 <PackageReference Include="System.Reflection.Metadata" />
26 <PackageReference Include="System.Text.Encoding.CodePages" />
27 </ItemGroup>
28 </Project>