2016-12-20 21:29:45 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2016-10-28 01:46:43 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netcoreapp1.0</TargetFramework>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
</PropertyGroup>
|
2017-01-04 22:17:43 +00:00
|
|
|
|
|
2016-10-28 01:46:43 +00:00
|
|
|
|
<ItemGroup>
|
2017-03-03 03:52:26 +00:00
|
|
|
|
<PackageReference Include="Microsoft.NETCore.App" Version="1.0.3" />
|
2016-10-28 01:46:43 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2017-03-03 03:52:26 +00:00
|
|
|
|
<DotNetCliToolReference Include="dotnet-portable" Version="1.0.0</Version>
|
2016-10-28 01:46:43 +00:00
|
|
|
|
</DotNetCliToolReference>
|
2017-03-03 03:52:26 +00:00
|
|
|
|
<DotNetCliToolReference Include="dotnet-PreferCliRuntime" Version="1.0.0</Version>
|
2017-02-15 19:33:59 +00:00
|
|
|
|
</DotNetCliToolReference>
|
2016-10-28 01:46:43 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
|
|
|
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
</Project>
|