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 04:10:42 +00:00
|
|
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
|
|
|
|
|
|
2016-10-29 08:04:20 +00:00
|
|
|
|
<PropertyGroup>
|
2017-01-04 21:27:41 +00:00
|
|
|
|
<TargetFramework>netcoreapp1.1</TargetFramework>
|
2016-10-29 08:04:20 +00:00
|
|
|
|
<DebugType>portable</DebugType>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2017-01-21 02:30:10 +00:00
|
|
|
|
<PackageTargetFallback Condition=" '$(TargetFramework)' == 'netcoreapp1.1' ">$(PackageTargetFallback);dnxcore50;portable-net45+win8</PackageTargetFallback>
|
2016-10-29 08:04:20 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="**\*.cs" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">
|
|
|
|
|
<ProjectReference Include="..\..\src\dotnet\dotnet.csproj" />
|
|
|
|
|
<PackageReference Include="Microsoft.NETCore.App">
|
2017-01-04 21:27:41 +00:00
|
|
|
|
<Version>1.1.0</Version>
|
2016-10-29 08:04:20 +00:00
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Microsoft.Build.Runtime">
|
2016-12-02 04:10:42 +00:00
|
|
|
|
<Version>$(CLI_MSBuild_Version)</Version>
|
2016-10-29 08:04:20 +00:00
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
|
|
|
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
</Project>
|