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-10-27 18:46:43 -07:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFrameworks>netstandard1.6;net451</TargetFrameworks>
|
|
|
|
|
<OutputType>Library</OutputType>
|
2017-08-17 23:07:28 -07:00
|
|
|
|
<AssetTargetFallback Condition=" '$(TargetFramework)' == 'netstandard1.6' ">$(AssetTargetFallback);portable-net45+win8;dnxcore50;netcoreapp2.1</AssetTargetFallback>
|
2017-08-09 22:30:20 -07:00
|
|
|
|
<RestoreAdditionalProjectSources Condition="'$(TEST_PACKAGES)' != ''">$(TEST_PACKAGES)</RestoreAdditionalProjectSources>
|
2016-10-27 18:46:43 -07:00
|
|
|
|
</PropertyGroup>
|
2017-01-04 14:17:43 -08:00
|
|
|
|
|
2016-10-27 18:46:43 -07:00
|
|
|
|
<ItemGroup>
|
2017-03-02 19:52:26 -08:00
|
|
|
|
<PackageReference Include="dotnet-desktop-and-portable" Version="1.0.0-*" />
|
2016-10-27 18:46:43 -07:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'net451' ">
|
|
|
|
|
<Reference Include="System" />
|
|
|
|
|
<Reference Include="Microsoft.CSharp" />
|
|
|
|
|
</ItemGroup>
|
2017-03-02 20:38:56 -08:00
|
|
|
|
|
2016-10-27 18:46:43 -07:00
|
|
|
|
<ItemGroup>
|
2017-03-02 22:35:24 -08:00
|
|
|
|
<DotNetCliToolReference Include="dotnet-dependency-tool-invoker" Version="1.0.0-*" />
|
2016-10-27 18:46:43 -07:00
|
|
|
|
</ItemGroup>
|
2017-03-02 22:35:24 -08:00
|
|
|
|
</Project>
|