19 lines
944 B
XML
19 lines
944 B
XML
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard1.5</TargetFramework>
|
|
<WarningsAsErrors>true</WarningsAsErrors>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<AssemblyName>Microsoft.DotNet.Cli.Build.Framework</AssemblyName>
|
|
<AssetTargetFallback>$(AssetTargetFallback);dnxcore50</AssetTargetFallback>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="NETStandard.Library" Version="1.6.0" />
|
|
<PackageReference Include="System.Diagnostics.Process" Version="4.1.0" />
|
|
<PackageReference Include="System.Reflection.TypeExtensions" Version="4.1.0" />
|
|
<PackageReference Include="Microsoft.DotNet.PlatformAbstractions" Version="1.0.1-beta-000933" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|