2016-12-20 13:29:45 -08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2016-12-20 16:38:04 -08:00
|
|
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
|
|
|
|
|
|
2016-10-28 22:04:20 -10:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<Description>Archive and compression types.</Description>
|
2017-01-10 17:31:43 -06:00
|
|
|
|
<VersionPrefix>$(CliVersionPrefix)</VersionPrefix>
|
2016-10-28 22:04:20 -10:00
|
|
|
|
<TargetFramework>netstandard1.3</TargetFramework>
|
|
|
|
|
<AssemblyOriginatorKeyFile>../../tools/Key.snk</AssemblyOriginatorKeyFile>
|
|
|
|
|
<SignAssembly>true</SignAssembly>
|
|
|
|
|
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="NETStandard.Library">
|
|
|
|
|
<Version>1.6.0</Version>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="System.Linq.Parallel">
|
|
|
|
|
<Version>4.0.1</Version>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
|
|
|
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
</Project>
|