|
|
|
@ -1,6 +1,7 @@ |
|
|
|
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<PropertyGroup> |
|
|
|
<TargetFramework>netcoreapp1.0</TargetFramework> |
|
|
|
<TargetFrameworks>netcoreapp1.0;net45</TargetFrameworks> |
|
|
|
<RuntimeIdentifier>win7-x64</RuntimeIdentifier> |
|
|
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks> |
|
|
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
|
|
@ -17,6 +18,11 @@ |
|
|
|
<ProjectReference Include="..\..\src\ImageSharp.Processing\ImageSharp.Processing.csproj" /> |
|
|
|
<ProjectReference Include="..\..\src\ImageSharp\ImageSharp.csproj" /> |
|
|
|
</ItemGroup> |
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' "> |
|
|
|
<Reference Include="System.Runtime" /> |
|
|
|
<Reference Include="System" /> |
|
|
|
<Reference Include="Microsoft.CSharp" /> |
|
|
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
|
|
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" /> |
|
|
|
</ItemGroup> |
|
|
|
|