mirror of https://github.com/SixLabors/ImageSharp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
3.0 KiB
70 lines
3.0 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<Description>Low level primitives for use across Six Labors projects.</Description>
|
|
<VersionPrefix Condition="$(packageversion) != ''">$(packageversion)</VersionPrefix>
|
|
<VersionPrefix Condition="$(packageversion) == ''">0.1.0-alpha2</VersionPrefix>
|
|
<Authors>Six Labors</Authors>
|
|
<TargetFrameworks>netstandard1.3;netstandard2.0;netcoreapp2.0;netcoreapp2.1;</TargetFrameworks>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<AssemblyName>SixLabors.Core</AssemblyName>
|
|
<PackageId>SixLabors.Core</PackageId>
|
|
<PackageTags>rectangle;point;size,primitives</PackageTags>
|
|
<PackageIconUrl>https://raw.githubusercontent.com/SixLabors/Branding/master/icons/core/sixlabors.core.128.png</PackageIconUrl>
|
|
<PackageProjectUrl>https://github.com/SixLabors/Core</PackageProjectUrl>
|
|
<PackageLicenseUrl>http://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<RepositoryUrl>https://github.com/SixLabors/Core</RepositoryUrl>
|
|
<Copyright>Copyright (c) Six Labors and contributors.</Copyright>
|
|
<DebugType Condition="$(codecov) == 'true'">full</DebugType>
|
|
<RootNamespace>SixLabors</RootNamespace>
|
|
<LangVersion>7.3</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<CodeAnalysisRuleSet>..\SixLabors.ruleset</CodeAnalysisRuleSet>
|
|
</PropertyGroup>
|
|
|
|
<!-- TODO: Include .NETSTANDARD2.1 when released-->
|
|
<PropertyGroup Condition=" $(TargetFramework.StartsWith('netcoreapp2')) ">
|
|
<DefineConstants>$(DefineConstants);SUPPORTS_MATHF</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition=" $(TargetFramework.StartsWith('netcoreapp2.1')) ">
|
|
<DefineConstants>$(DefineConstants);SUPPORTS_HASHCODE</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="..\..\shared-infrastructure\**\*.cs" />
|
|
<AdditionalFiles Include="..\..\shared-infrastructure\stylecop.json" />
|
|
</ItemGroup>
|
|
<PropertyGroup>
|
|
<CodeAnalysisRuleSet>..\..\shared-infrastructure\SixLabors.ruleset</CodeAnalysisRuleSet>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
|
|
<PrivateAssets>All</PrivateAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.5.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' != 'netcoreapp2.1' ">
|
|
<PackageReference Include="System.Buffers" Version="4.4.0" />
|
|
<PackageReference Include="System.Memory" Version="4.5.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition=" $(TargetFramework.StartsWith('netstandard')) ">
|
|
<PackageReference Include="System.Numerics.Vectors" Version="4.5.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Helpers" />
|
|
</ItemGroup>
|
|
</Project>
|
|
|