22 lines
		
	
	
		
			No EOL
		
	
	
		
			986 B
			
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			No EOL
		
	
	
		
			986 B
			
		
	
	
	
		
			XML
		
	
	
	
	
	
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 | 
						|
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
 | 
						|
 | 
						|
  <PropertyGroup>
 | 
						|
    <OutputType>Exe</OutputType>
 | 
						|
    <TargetFrameworks>net46;netcoreapp2.0</TargetFrameworks>
 | 
						|
  </PropertyGroup>
 | 
						|
 | 
						|
  <PropertyGroup Condition="'$(TargetFramework)' == 'net46'">
 | 
						|
    <DefineConstants>DESKTOP;$(DefineConstants)</DefineConstants>
 | 
						|
  </PropertyGroup>
 | 
						|
 | 
						|
  <PropertyGroup Condition="'$(TargetFramework)' == 'netcoreapp2.0'">
 | 
						|
    <RuntimeFrameworkVersion>$(CLI_SharedFrameworkVersion)</RuntimeFrameworkVersion>
 | 
						|
  </ItemGroup>
 | 
						|
 | 
						|
  <ItemGroup>
 | 
						|
    <PackageReference Include="MSTest.TestFramework" Version="1.0.6-preview" />
 | 
						|
    <PackageReference Include="MSTest.TestAdapter" Version="1.1.5-preview" />
 | 
						|
    <PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(CLI_TestPlatform_Version)" />
 | 
						|
  </ItemGroup>
 | 
						|
</Project> |