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>
|
2017-03-02 20:46:21 +00:00
|
|
|
|
<TargetFrameworks>netcoreapp2.0;net451</TargetFrameworks>
|
2016-10-28 01:46:43 +00:00
|
|
|
|
<OutputType>Exe</OutputType>
|
2017-03-02 20:46:21 +00:00
|
|
|
|
<PackageTargetFallback Condition=" '$(TargetFramework)' == 'netcoreapp2.0' ">$(PackageTargetFallback);portable-net45+win8;dnxcore50</PackageTargetFallback>
|
2017-03-01 21:12:16 +00:00
|
|
|
|
<RuntimeIdentifiers>win7-x64;win7-x86;osx.10.10-x64;osx.10.11-x64;ubuntu.14.04-x64;ubuntu.16.04-x64;centos.7-x64;rhel.7.2-x64;debian.8-x64</RuntimeIdentifiers>
|
2016-10-28 01:46:43 +00:00
|
|
|
|
</PropertyGroup>
|
2017-03-03 03:52:26 +00:00
|
|
|
|
|
2016-10-28 01:46:43 +00:00
|
|
|
|
<ItemGroup>
|
2017-03-03 03:52:26 +00:00
|
|
|
|
<PackageReference Include="dotnet-desktop-and-portable" Version="1.0.0-*" />
|
2016-10-28 01:46:43 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'net451' ">
|
|
|
|
|
<Reference Include="System" />
|
|
|
|
|
<Reference Include="Microsoft.CSharp" />
|
|
|
|
|
</ItemGroup>
|
2017-03-03 04:38:56 +00:00
|
|
|
|
|
2016-10-28 01:46:43 +00:00
|
|
|
|
<ItemGroup>
|
2017-03-03 06:35:24 +00:00
|
|
|
|
<DotNetCliToolReference Include="dotnet-dependency-tool-invoker" Version="1.0.0-*" />
|
2016-10-28 01:46:43 +00:00
|
|
|
|
</ItemGroup>
|
2017-03-03 06:35:24 +00:00
|
|
|
|
</Project>
|