2016-12-20 13:29:45 -08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2016-11-16 14:35:48 -08:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
<TargetFrameworks>net451;netcoreapp1.0</TargetFrameworks>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">
|
|
|
|
|
<PackageReference Include="Microsoft.NETCore.App">
|
2017-01-04 18:17:25 -06:00
|
|
|
|
<Version>1.0.3</Version>
|
2016-11-16 14:35:48 -08:00
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
2016-11-16 15:49:25 -08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Condition=" '$(TargetFramework)' == 'net451' " Include="..\Lib\Lib.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|