2017-01-26 22:33:49 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
|
2017-03-09 04:03:46 +00:00
|
|
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
|
|
|
|
|
2016-11-15 22:12:28 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<VersionPrefix>1.0.0-rc</VersionPrefix>
|
2017-03-11 01:11:32 +00:00
|
|
|
|
<TargetFrameworks>netcoreapp1.1;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-03-11 01:11:32 +00:00
|
|
|
|
<PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp1.1' ">
|
|
|
|
|
<RuntimeFrameworkVersion>1.1.1</RuntimeFrameworkVersion>
|
2017-03-09 04:03:46 +00:00
|
|
|
|
</PropertyGroup>
|
2016-11-15 22:12:28 +00:00
|
|
|
|
|
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'net451' ">
|
|
|
|
|
<Reference Include="System" />
|
|
|
|
|
<Reference Include="Microsoft.CSharp" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|