2016-12-20 21:29:45 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2017-03-07 05:25:42 +00:00
|
|
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), testAsset.props))\testAsset.props" />
|
|
|
|
|
|
2016-11-16 22:35:48 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
<TargetFrameworks>net451;netcoreapp1.0</TargetFrameworks>
|
|
|
|
|
</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-16 22:35:48 +00:00
|
|
|
|
</ItemGroup>
|
2017-03-03 04:38:56 +00:00
|
|
|
|
|
2016-11-16 23:49:25 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<SomeItemCausingThisGroupToNotBeUniform Include="foo" />
|
|
|
|
|
<ProjectReference Include="..\Lib\Lib.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|