This repository has been archived by the owner on Jan 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #59 from SixLabors/beta8
Update dependencies + remove struct copy
- Loading branch information
Showing
11 changed files
with
105 additions
and
113 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "standards"] | ||
path = standards | ||
url = https://github.com/SixLabors/Standards |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,51 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<Authors>Six Labors and contributors</Authors> | ||
<Company>Six Labors</Company> | ||
<Copyright>Copyright (c) Six Labors and contributors.</Copyright> | ||
<Description>Allows generating glyphs for text and a font for manipulation using SixLabors.Shapes</Description> | ||
<NeutralLanguage>en</NeutralLanguage> | ||
<AssemblyTitle>SixLabors.Shapes.Text</AssemblyTitle> | ||
<VersionPrefix Condition="$(packageversion) != ''">$(packageversion)</VersionPrefix> | ||
<VersionPrefix Condition="$(packageversion) == ''">0.1.0-alpha1</VersionPrefix> | ||
<Authors>Six Labors and contributors</Authors> | ||
<TargetFrameworks>netstandard1.3;netstandard2.0</TargetFrameworks> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<AssemblyName>SixLabors.Shapes.Text</AssemblyName> | ||
<PackageId>SixLabors.Shapes.Text</PackageId> | ||
<PackageTags>shapes;text;</PackageTags> | ||
<PackageIconUrl>https://raw.githubusercontent.com/SixLabors/Branding/master/icons/shapes/sixlabors.shapes.128.png</PackageIconUrl> | ||
<PackageProjectUrl>https://github.com/SixLabors/Shapes</PackageProjectUrl> | ||
<PackageLicenseUrl>http://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<RepositoryUrl>https://github.com/SixLabors/Shapes</RepositoryUrl> | ||
<DebugType Condition="$(codecov) == 'true'">full</DebugType> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="..\Shared\*.cs" Exclude="bin\**;obj\**;**\*.xproj;packages\**" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<AdditionalFiles Include="..\..\stylecop.json" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="StyleCop.Analyzers" Version="1.1.0-beta004"> | ||
<PrivateAssets>All</PrivateAssets> | ||
</PackageReference> | ||
<PackageReference Include="SixLabors.Fonts" Version="1.0.0-beta0007" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<Authors>Six Labors and contributors</Authors> | ||
<Company>Six Labors</Company> | ||
<Copyright>Copyright (c) Six Labors and contributors.</Copyright> | ||
<Description>Allows generating glyphs for text and a fonts for manipulation using SixLabors.Shapes</Description> | ||
<NeutralLanguage>en</NeutralLanguage> | ||
<AssemblyTitle>SixLabors.Shapes.Text</AssemblyTitle> | ||
<VersionPrefix Condition="$(packageversion) != ''">$(packageversion)</VersionPrefix> | ||
<VersionPrefix Condition="$(packageversion) == ''">0.1.0-alpha1</VersionPrefix> | ||
<Authors>Six Labors and contributors</Authors> | ||
<TargetFrameworks>netstandard1.3;netstandard2.0</TargetFrameworks> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<AssemblyName>SixLabors.Shapes.Text</AssemblyName> | ||
<PackageId>SixLabors.Shapes.Text</PackageId> | ||
<PackageTags>shapes;text;</PackageTags> | ||
<PackageIconUrl>https://raw.githubusercontent.com/SixLabors/Branding/master/icons/shapes/sixlabors.shapes.128.png</PackageIconUrl> | ||
<PackageProjectUrl>https://github.com/SixLabors/Shapes</PackageProjectUrl> | ||
<PackageLicenseUrl>http://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<RepositoryUrl>https://github.com/SixLabors/Shapes</RepositoryUrl> | ||
<DebugType Condition="$(codecov) == 'true'">full</DebugType> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\SixLabors.Shapes\SixLabors.Shapes.csproj" /> | ||
</ItemGroup> | ||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Compile Include="..\Shared\*.cs" Exclude="bin\**;obj\**;**\*.xproj;packages\**" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup> | ||
<CodeAnalysisRuleSet>..\..\standards\SixLabors.ruleset</CodeAnalysisRuleSet> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<AdditionalFiles Include="..\..\standards\stylecop.json" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="StyleCop.Analyzers" Version="1.1.1-beta.61" PrivateAssets="All"/> | ||
<PackageReference Include="SixLabors.Fonts" Version="1.0.0-beta0008" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\SixLabors.Shapes\SixLabors.Shapes.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,46 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<Authors>Six Labors and contributors</Authors> | ||
<Company>Six Labors</Company> | ||
<Copyright>Copyright (c) Six Labors and contributors.</Copyright> | ||
<Description>Fully managed polygon manipulation/merging and interrogation library targeting netstandard.</Description> | ||
<NeutralLanguage>en</NeutralLanguage> | ||
<AssemblyTitle>SixLabors.Shapes</AssemblyTitle> | ||
<VersionPrefix Condition="$(packageversion) != ''">$(packageversion)</VersionPrefix> | ||
<VersionPrefix Condition="$(packageversion) == ''">0.1.0-alpha1</VersionPrefix> | ||
<TargetFrameworks>netstandard1.3;netstandard2.0</TargetFrameworks> | ||
<LangVersion>7.3</LangVersion> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<AssemblyName>SixLabors.Shapes</AssemblyName> | ||
<PackageId>SixLabors.Shapes</PackageId> | ||
<PackageTags>polygon;rectangle;point in polygon;complex polygons;shape;2D</PackageTags> | ||
<PackageIconUrl>https://raw.githubusercontent.com/SixLabors/Branding/master/icons/shapes/sixlabors.shapes.128.png</PackageIconUrl> | ||
<PackageProjectUrl>https://github.com/SixLabors/Shapes</PackageProjectUrl> | ||
<PackageLicenseUrl>http://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<RepositoryUrl>https://github.com/SixLabors/Shapes</RepositoryUrl> | ||
<DebugType Condition="$(codecov) == 'true'">full</DebugType> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="..\Shared\*.cs" Exclude="bin\**;obj\**;**\*.xproj;packages\**" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<AdditionalFiles Include="..\..\stylecop.json" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<CodeAnalysisRuleSet>..\..\SixLabors.Shapes.ruleset</CodeAnalysisRuleSet> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<PackageReference Include="StyleCop.Analyzers" Version="1.1.0-beta004"> | ||
<PrivateAssets>All</PrivateAssets> | ||
</PackageReference> | ||
<PackageReference Include="SixLabors.Core" Version="1.0.0-dev000094" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<Authors>Six Labors and contributors</Authors> | ||
<Company>Six Labors</Company> | ||
<Copyright>Copyright (c) Six Labors and contributors.</Copyright> | ||
<Description>Fully managed polygon manipulation/merging and interrogation library targeting netstandard.</Description> | ||
<NeutralLanguage>en</NeutralLanguage> | ||
<AssemblyTitle>SixLabors.Shapes</AssemblyTitle> | ||
<VersionPrefix Condition="$(packageversion) != ''">$(packageversion)</VersionPrefix> | ||
<VersionPrefix Condition="$(packageversion) == ''">0.1.0-alpha1</VersionPrefix> | ||
<TargetFrameworks>netstandard1.3;netstandard2.0</TargetFrameworks> | ||
<LangVersion>7.3</LangVersion> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
<GenerateDocumentationFile>true</GenerateDocumentationFile> | ||
<AssemblyName>SixLabors.Shapes</AssemblyName> | ||
<PackageId>SixLabors.Shapes</PackageId> | ||
<PackageTags>polygon;rectangle;point in polygon;complex polygons;shape;2D</PackageTags> | ||
<PackageIconUrl>https://raw.githubusercontent.com/SixLabors/Branding/master/icons/shapes/sixlabors.shapes.128.png</PackageIconUrl> | ||
<PackageProjectUrl>https://github.com/SixLabors/Shapes</PackageProjectUrl> | ||
<PackageLicenseUrl>http://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<RepositoryUrl>https://github.com/SixLabors/Shapes</RepositoryUrl> | ||
<DebugType Condition="$(codecov) == 'true'">full</DebugType> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Compile Include="..\Shared\*.cs" Exclude="bin\**;obj\**;**\*.xproj;packages\**" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<AdditionalFiles Include="..\..\standards\stylecop.json" /> | ||
</ItemGroup> | ||
|
||
<PropertyGroup> | ||
<CodeAnalysisRuleSet>..\..\standards\SixLabors.ruleset</CodeAnalysisRuleSet> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="StyleCop.Analyzers" Version="1.1.1-beta.61" PrivateAssets="All"/> | ||
<PackageReference Include="SixLabors.Core" Version="1.0.0-beta0007" /> | ||
</ItemGroup> | ||
</Project> |
This file was deleted.
Oops, something went wrong.