main
csproj 25 lines 1019 Bytes
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</Description>
8 <Title>WiX Toolset Core</Title>
9 <DebugType>embedded</DebugType>
10 <PublishRepositoryUrl>true</PublishRepositoryUrl>
11 <CreateDocumentationFile>true</CreateDocumentationFile>
12 <IncludeSomeVerInfo>true</IncludeSomeVerInfo>
13 </PropertyGroup>
14
15 <ItemGroup>
16 <PackageReference Include="WixToolset.Data" />
17 <PackageReference Include="WixToolset.Extensibility" />
18 <PackageReference Include="WixToolset.Versioning" />
19 </ItemGroup>
20
21 <ItemGroup>
22 <PackageReference Include="System.IO.FileSystem.AccessControl" />
23 <PackageReference Include="System.Text.Encoding.CodePages" />
24 </ItemGroup>
25 </Project>