2017-01-26 22:33:49 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
|
2016-11-15 22:12:28 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<VersionPrefix>1.0.0-rc</VersionPrefix>
|
2017-01-26 09:32:28 +00:00
|
|
|
|
<TargetFrameworks>netcoreapp1.0;net451</TargetFrameworks>
|
2016-11-15 22:12:28 +00:00
|
|
|
|
<AssemblyName>dotnet-desktop-and-portable</AssemblyName>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2017-01-26 22:33:49 +00:00
|
|
|
|
<RuntimeIdentifiers>win7-x64;win7-x86</RuntimeIdentifiers>
|
2016-11-15 22:12:28 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2017-01-26 22:33:49 +00:00
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">
|
2017-01-06 03:44:52 +00:00
|
|
|
|
<BuiltProjectOutputGroupOutput Include="$(ProjectRuntimeConfigFilePath)">
|
|
|
|
|
<FinalOutputPath>$(ProjectRuntimeConfigFilePath)</FinalOutputPath>
|
|
|
|
|
</BuiltProjectOutputGroupOutput>
|
2016-11-15 22:12:28 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2017-01-26 09:32:28 +00:00
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">
|
2017-03-03 03:52:26 +00:00
|
|
|
|
<PackageReference Include="Microsoft.NETCore.App" Version="1.0.4" />
|
2016-11-15 22:12:28 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'net451' ">
|
|
|
|
|
<Reference Include="System" />
|
|
|
|
|
<Reference Include="Microsoft.CSharp" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|