|
|
|
@ -1,17 +1,26 @@ |
|
|
|
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<PropertyGroup> |
|
|
|
<TargetFrameworks>netcoreapp2.0;net462;net47;net471</TargetFrameworks> |
|
|
|
<TargetFrameworks>net471;netcoreapp2.0;net462;net47</TargetFrameworks> |
|
|
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks> |
|
|
|
<DebugType Condition="$(codecov) != ''">full</DebugType> |
|
|
|
<DebugType Condition="$(codecov) == ''">portable</DebugType> |
|
|
|
<DebugSymbols>True</DebugSymbols> |
|
|
|
<RootNamespace>SixLabors.ImageSharp.Tests</RootNamespace> |
|
|
|
<AssemblyName>SixLabors.ImageSharp.Tests</AssemblyName> |
|
|
|
<Platforms>AnyCPU;x64;x86</Platforms> |
|
|
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
|
|
|
<WarningsAsErrors /> |
|
|
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'"> |
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
|
|
|
<WarningsAsErrors /> |
|
|
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> |
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
|
|
|
<WarningsAsErrors /> |
|
|
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
|
|
<None Include="PixelFormats\PixelOperationsTests.Blender.cs" /> |
|
|
|
</ItemGroup> |
|
|
|
|