2017-01-05 12:23:29 -08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2017-03-07 08:35:13 -08:00
|
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
2016-11-02 01:45:44 +05:30
|
|
|
|
|
|
|
<PropertyGroup>
|
2017-08-17 23:07:28 -07:00
|
|
|
<TargetFrameworks>net46;netcoreapp2.1</TargetFrameworks>
|
2017-01-05 12:23:29 -08:00
|
|
|
<RuntimeIdentifiers>win7-x86</RuntimeIdentifiers>
|
|
|
|
<RuntimeIdentifier Condition=" '$(TargetFramework)' == 'net46' ">win7-x86</RuntimeIdentifier>
|
2016-11-02 01:45:44 +05:30
|
|
|
</PropertyGroup>
|
2016-11-02 01:56:42 +05:30
|
|
|
|
2016-11-02 01:45:44 +05:30
|
|
|
<PropertyGroup Condition="'$(TargetFramework)' == 'net46'">
|
|
|
|
<DefineConstants>DESKTOP;$(DefineConstants)</DefineConstants>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2017-08-17 23:07:28 -07:00
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp2.1'">
|
2017-12-01 20:07:48 -08:00
|
|
|
<PackageReference Include="Microsoft.NETCore.App" Version="$(MicrosoftNETCoreAppPackageVersion)" />
|
2016-11-02 01:45:44 +05:30
|
|
|
</ItemGroup>
|
|
|
|
|
2017-03-02 19:52:26 -08:00
|
|
|
<ItemGroup>
|
2017-12-04 13:20:37 -08:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(MicrosoftNETTestSdkPackageVersion)" />
|
2017-03-02 19:52:26 -08:00
|
|
|
<PackageReference Include="xunit" Version="2.2.0-beta4-build3444" />
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.2.0-beta4-build1194" />
|
2016-11-02 01:45:44 +05:30
|
|
|
</ItemGroup>
|
|
|
|
</Project>
|