mirror of https://github.com/SixLabors/ImageSharp
committed by
GitHub
27 changed files with 167 additions and 86 deletions
@ -1,50 +1,53 @@ |
|||||
<Project Sdk="Microsoft.NET.Sdk"> |
<Project Sdk="Microsoft.NET.Sdk"> |
||||
<PropertyGroup> |
<PropertyGroup> |
||||
<AssemblyTitle>SixLabors.ImageSharp.Drawing</AssemblyTitle> |
<AssemblyTitle>SixLabors.ImageSharp.Drawing</AssemblyTitle> |
||||
<Authors>SixLabors and contributors</Authors> |
<Authors>SixLabors and contributors</Authors> |
||||
<Company>Six Labors</Company> |
<Company>Six Labors</Company> |
||||
<Copyright>Copyright (c) Six Labors and contributors.</Copyright> |
<Copyright>Copyright (c) Six Labors and contributors.</Copyright> |
||||
<Product>SixLabors.ImageSharp</Product> |
<Product>SixLabors.ImageSharp</Product> |
||||
<Description>An extension to ImageSharp that allows the drawing of images, paths, and text.</Description> |
<Description>An extension to ImageSharp that allows the drawing of images, paths, and text.</Description> |
||||
<NeutralLanguage>en</NeutralLanguage> |
<NeutralLanguage>en</NeutralLanguage> |
||||
|
|
||||
<VersionPrefix Condition="$(packageversion) != ''">$(packageversion)</VersionPrefix> |
<VersionPrefix Condition="$(packageversion) != ''">$(packageversion)</VersionPrefix> |
||||
<VersionPrefix Condition="$(packageversion) == ''">0.0.1</VersionPrefix> |
<VersionPrefix Condition="$(packageversion) == ''">0.0.1</VersionPrefix> |
||||
<TargetFrameworks>netstandard1.3;netstandard2.0</TargetFrameworks> |
<TargetFrameworks>netstandard1.3;netstandard2.0</TargetFrameworks> |
||||
<LangVersion>7.3</LangVersion> |
<LangVersion>7.3</LangVersion> |
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
||||
<GenerateDocumentationFile>true</GenerateDocumentationFile> |
<GenerateDocumentationFile>true</GenerateDocumentationFile> |
||||
<AssemblyName>SixLabors.ImageSharp.Drawing</AssemblyName> |
<AssemblyName>SixLabors.ImageSharp.Drawing</AssemblyName> |
||||
<PackageId>SixLabors.ImageSharp.Drawing</PackageId> |
<PackageId>SixLabors.ImageSharp.Drawing</PackageId> |
||||
<PackageTags>Image Draw Shape Path Font</PackageTags> |
<PackageTags>Image Draw Shape Path Font</PackageTags> |
||||
<PackageIconUrl>https://raw.githubusercontent.com/SixLabors/Branding/master/icons/imagesharp/sixlabors.imagesharp.128.png</PackageIconUrl> |
<PackageIconUrl>https://raw.githubusercontent.com/SixLabors/Branding/master/icons/imagesharp/sixlabors.imagesharp.128.png</PackageIconUrl> |
||||
<PackageProjectUrl>https://github.com/SixLabors/ImageSharp</PackageProjectUrl> |
<PackageProjectUrl>https://github.com/SixLabors/ImageSharp</PackageProjectUrl> |
||||
<PackageLicenseUrl>http://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl> |
<PackageLicenseUrl>http://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl> |
||||
<RepositoryType>git</RepositoryType> |
<RepositoryType>git</RepositoryType> |
||||
<RepositoryUrl>https://github.com/SixLabors/ImageSharp</RepositoryUrl> |
<RepositoryUrl>https://github.com/SixLabors/ImageSharp</RepositoryUrl> |
||||
<DebugType Condition="$(codecov) != ''">full</DebugType> |
<DebugType Condition="$(codecov) != ''">full</DebugType> |
||||
<DebugType Condition="$(codecov) == ''">portable</DebugType> |
<DebugType Condition="$(codecov) == ''">portable</DebugType> |
||||
<DebugSymbols>True</DebugSymbols> |
<DebugSymbols>True</DebugSymbols> |
||||
</PropertyGroup> |
</PropertyGroup> |
||||
<ItemGroup> |
|
||||
<Compile Include="..\Shared\*.cs" Exclude="bin\**;obj\**;**\*.xproj;packages\**" /> |
<ItemGroup> |
||||
</ItemGroup> |
<Compile Include="..\Shared\*.cs" Exclude="bin\**;obj\**;**\*.xproj;packages\**" /> |
||||
<ItemGroup> |
</ItemGroup> |
||||
<ProjectReference Include="..\ImageSharp\ImageSharp.csproj" /> |
|
||||
</ItemGroup> |
<ItemGroup> |
||||
<ItemGroup> |
<ProjectReference Include="..\ImageSharp\ImageSharp.csproj" /> |
||||
<AdditionalFiles Include="..\..\stylecop.json" /> |
</ItemGroup> |
||||
<PackageReference Include="SixLabors.Fonts" Version="1.0.0-dev000119" /> |
|
||||
<PackageReference Include="SixLabors.Shapes" Version="1.0.0-dev000102" /> |
<ItemGroup> |
||||
<PackageReference Include="StyleCop.Analyzers" Version="1.1.0-beta007"> |
<AdditionalFiles Include="..\..\standards\stylecop.json" /> |
||||
<PrivateAssets>All</PrivateAssets> |
<PackageReference Include="SixLabors.Fonts" Version="1.0.0-beta0008" /> |
||||
</PackageReference> |
<PackageReference Include="SixLabors.Shapes" Version="1.0.0-beta0008" /> |
||||
</ItemGroup> |
<PackageReference Include="StyleCop.Analyzers" Version="1.1.1-beta.61" PrivateAssets="All" /> |
||||
<PropertyGroup> |
</ItemGroup> |
||||
<CodeAnalysisRuleSet>..\..\ImageSharp.ruleset</CodeAnalysisRuleSet> |
|
||||
<RootNamespace>SixLabors.ImageSharp</RootNamespace> |
<PropertyGroup> |
||||
</PropertyGroup> |
<CodeAnalysisRuleSet>..\..\standards\SixLabors.ruleset</CodeAnalysisRuleSet> |
||||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> |
<RootNamespace>SixLabors.ImageSharp</RootNamespace> |
||||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
</PropertyGroup> |
||||
</PropertyGroup> |
|
||||
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> |
||||
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
||||
|
</PropertyGroup> |
||||
</Project> |
</Project> |
||||
Loading…
Reference in new issue