2016-12-21 00:38:04 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2016-12-02 17:34:03 +00:00
|
|
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
|
|
|
|
|
|
2016-11-16 02:12:19 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netstandard1.5</TargetFramework>
|
|
|
|
|
<WarningsAsErrors>true</WarningsAsErrors>
|
|
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
|
|
|
<AssemblyName>Microsoft.DotNet.Cli.Build.Framework</AssemblyName>
|
|
|
|
|
<PackageTargetFallback Condition=" '$(TargetFramework)' == 'netstandard1.5' ">$(PackageTargetFallback);dnxcore50</PackageTargetFallback>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="**\*.cs" />
|
|
|
|
|
<EmbeddedResource Include="**\*.resx" />
|
|
|
|
|
<EmbeddedResource Include="compiler\resources\**\*" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="NETStandard.Library">
|
|
|
|
|
<Version>1.6.0</Version>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="System.Diagnostics.Process">
|
|
|
|
|
<Version>4.1.0</Version>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="System.Reflection.TypeExtensions">
|
|
|
|
|
<Version>4.1.0</Version>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Microsoft.DotNet.PlatformAbstractions">
|
|
|
|
|
<Version>1.0.1-beta-000933</Version>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
|
|
|
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
</Project>
|