|
|
|
@ -5,7 +5,7 @@ |
|
|
|
<VersionPrefix Condition="$(packageversion) != ''">$(packageversion)</VersionPrefix> |
|
|
|
<VersionPrefix Condition="$(packageversion) == ''">0.0.1</VersionPrefix> |
|
|
|
<Authors>Six Labors and contributors</Authors> |
|
|
|
<TargetFrameworks>netstandard1.3;netstandard2.0;netcoreapp2.1</TargetFrameworks> |
|
|
|
<TargetFrameworks>netstandard1.3;netstandard2.0;netcoreapp2.1;net472</TargetFrameworks> |
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile> |
|
|
|
<AssemblyName>SixLabors.ImageSharp</AssemblyName> |
|
|
|
@ -31,9 +31,15 @@ |
|
|
|
<Features>IOperation</Features> |
|
|
|
<LangVersion>Latest</LangVersion> |
|
|
|
</PropertyGroup> |
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.1' OR '$(TargetFramework)' == 'net472' "> |
|
|
|
<DefineConstants>$(DefineConstants);SUPPORTS_EXTENDED_INTRINSICS</DefineConstants> |
|
|
|
</PropertyGroup> |
|
|
|
|
|
|
|
<ItemGroup> |
|
|
|
<Compile Include="..\Shared\*.cs" Exclude="bin\**;obj\**;**\*.xproj;packages\**" /> |
|
|
|
</ItemGroup> |
|
|
|
|
|
|
|
<ItemGroup> |
|
|
|
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.5.1" /> |
|
|
|
<PackageReference Include="SixLabors.Core" Version="1.0.0-beta0006" /> |
|
|
|
@ -43,15 +49,14 @@ |
|
|
|
</PackageReference> |
|
|
|
</ItemGroup> |
|
|
|
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' "> |
|
|
|
<PackageReference Include="System.IO.UnmanagedMemoryStream" Version="4.3.0" /> |
|
|
|
</ItemGroup> |
|
|
|
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3'"> |
|
|
|
<PackageReference Include="System.IO.UnmanagedMemoryStream" Version="4.3.0" /> |
|
|
|
<PackageReference Include="System.IO.Compression" Version="4.3.0" /> |
|
|
|
<PackageReference Include="System.Threading.Tasks.Parallel" Version="4.3.0" /> |
|
|
|
<PackageReference Include="System.ValueTuple" Version="4.5.0" /> |
|
|
|
</ItemGroup> |
|
|
|
|
|
|
|
<PropertyGroup> |
|
|
|
<CodeAnalysisRuleSet>..\..\ImageSharp.ruleset</CodeAnalysisRuleSet> |
|
|
|
<RootNamespace>SixLabors.ImageSharp</RootNamespace> |
|
|
|
|