2017-01-05 20:23:29 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2017-03-07 16:35:13 +00:00
|
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
2016-11-01 20:15:44 +00:00
|
|
|
|
|
|
|
<PropertyGroup>
|
2017-03-02 20:46:21 +00:00
|
|
|
<TargetFrameworks>net46;netcoreapp2.0</TargetFrameworks>
|
2017-01-05 20:23:29 +00:00
|
|
|
<RuntimeIdentifiers>win7-x86</RuntimeIdentifiers>
|
|
|
|
<RuntimeIdentifier Condition=" '$(TargetFramework)' == 'net46' ">win7-x86</RuntimeIdentifier>
|
2016-11-01 20:15:44 +00:00
|
|
|
</PropertyGroup>
|
2016-11-01 20:26:42 +00:00
|
|
|
|
2016-11-01 20:15:44 +00:00
|
|
|
<PropertyGroup Condition="'$(TargetFramework)' == 'net46'">
|
|
|
|
<DefineConstants>DESKTOP;$(DefineConstants)</DefineConstants>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2017-03-02 20:46:21 +00:00
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp2.0'">
|
2017-03-07 05:25:42 +00:00
|
|
|
<PackageReference Include="Microsoft.NETCore.App" Version="$(CLI_SharedFrameworkVersion)" />
|
2016-11-01 20:15:44 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
2017-03-03 03:52:26 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(CLI_TestPlatform_Version)" />
|
|
|
|
<PackageReference Include="xunit" Version="2.2.0-beta4-build3444" />
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.2.0-beta4-build1194" />
|
2016-11-01 20:15:44 +00:00
|
|
|
</ItemGroup>
|
|
|
|
</Project>
|