Skip to content
This repository was archived by the owner on Jan 18, 2020. It is now read-only.

Commit 5dee898

Browse files
Merge pull request #57 from carbon/master
Cleanup project properties
2 parents 1139285 + 8c02d84 commit 5dee898

File tree

3 files changed

+10
-54
lines changed

3 files changed

+10
-54
lines changed

src/Shared/AssemblyInfo.Common.cs

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,8 @@
11
// Copyright (c) Six Labors and contributors.
22
// Licensed under the Apache License, Version 2.0.
33

4-
using System.Reflection;
5-
using System.Resources;
64
using System.Runtime.CompilerServices;
75

8-
// General Information about an assembly is controlled through the following
9-
// set of attributes. Change these attribute values to modify the information
10-
// associated with an assembly.
11-
[assembly: AssemblyDescription("A Net Standard geometry/shape manipulation library, can be used to merge/split shapes")]
12-
[assembly: AssemblyConfiguration("")]
13-
[assembly: AssemblyCompany("Scott Williams")]
14-
[assembly: AssemblyProduct("SixLabors.Shapes")]
15-
[assembly: AssemblyCopyright("Copyright (c) Six Labors and contributors.")]
16-
[assembly: AssemblyTrademark("")]
17-
[assembly: AssemblyCulture("")]
18-
[assembly: NeutralResourcesLanguage("en")]
19-
20-
// Version information for an assembly consists of the following four values:
21-
//
22-
// Major Version
23-
// Minor Version
24-
// Build Number
25-
// Revision
26-
//
27-
// You can specify all the values or you can default the Build and Revision Numbers
28-
// by using the '*' as shown below:
29-
// [assembly: AssemblyVersion("1.0.*")]
30-
[assembly: AssemblyVersion("1.0.0.0")]
31-
[assembly: AssemblyFileVersion("1.0.0.0")]
32-
[assembly: AssemblyInformationalVersion("1.0.0.0")]
33-
346
// Ensure the internals can be tested.
357
[assembly: InternalsVisibleTo("SixLabors.Shapes.Tests")]
368
[assembly: InternalsVisibleTo("SixLabors.Shapes.Benchmarks")]

src/SixLabors.Shapes.Text/SixLabors.Shapes.Text.csproj

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
32
<PropertyGroup>
3+
<Authors>Six Labors and contributors</Authors>
4+
<Company>Six Labors</Company>
5+
<Copyright>Copyright (c) Six Labors and contributors.</Copyright>
46
<Description>Allows generating glyphs for text and a font for manipulation using SixLabors.Shapes</Description>
7+
<NeutralLanguage>en</NeutralLanguage>
58
<AssemblyTitle>SixLabors.Shapes.Text</AssemblyTitle>
69
<VersionPrefix Condition="$(packageversion) != ''">$(packageversion)</VersionPrefix>
710
<VersionPrefix Condition="$(packageversion) == ''">0.1.0-alpha1</VersionPrefix>
@@ -17,15 +20,6 @@
1720
<PackageLicenseUrl>http://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl>
1821
<RepositoryType>git</RepositoryType>
1922
<RepositoryUrl>https://github.com/SixLabors/Shapes</RepositoryUrl>
20-
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute>
21-
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
22-
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
23-
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
24-
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute>
25-
<GenerateNeutralResourcesLanguageAttribute>false</GenerateNeutralResourcesLanguageAttribute>
26-
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
27-
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
28-
<GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute>
2923
<DebugType Condition="$(codecov) == 'true'">full</DebugType>
3024
</PropertyGroup>
3125
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
Lines changed: 6 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<Description>
4-
Polygon manipulation/merging and interrogation library.
5-
6-
It's a fully managed netstandard library so should work everywhere.
7-
</Description>
3+
<Authors>Six Labors and contributors</Authors>
4+
<Company>Six Labors</Company>
5+
<Copyright>Copyright (c) Six Labors and contributors.</Copyright>
6+
<Description>Fully managed polygon manipulation/merging and interrogation library targeting netstandard.</Description>
7+
<NeutralLanguage>en</NeutralLanguage>
88
<AssemblyTitle>SixLabors.Shapes</AssemblyTitle>
99
<VersionPrefix Condition="$(packageversion) != ''">$(packageversion)</VersionPrefix>
1010
<VersionPrefix Condition="$(packageversion) == ''">0.1.0-alpha1</VersionPrefix>
11-
<Authors>Six Labors and contributors</Authors>
1211
<TargetFrameworks>netstandard1.3;netstandard2.0</TargetFrameworks>
1312
<LangVersion>7.3</LangVersion>
1413
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
@@ -21,15 +20,6 @@
2120
<PackageLicenseUrl>http://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl>
2221
<RepositoryType>git</RepositoryType>
2322
<RepositoryUrl>https://github.com/SixLabors/Shapes</RepositoryUrl>
24-
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute>
25-
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
26-
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
27-
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
28-
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute>
29-
<GenerateNeutralResourcesLanguageAttribute>false</GenerateNeutralResourcesLanguageAttribute>
30-
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
31-
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
32-
<GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute>
3323
<DebugType Condition="$(codecov) == 'true'">full</DebugType>
3424
</PropertyGroup>
3525
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
@@ -48,6 +38,6 @@
4838
<PackageReference Include="StyleCop.Analyzers" Version="1.1.0-beta004">
4939
<PrivateAssets>All</PrivateAssets>
5040
</PackageReference>
51-
<PackageReference Include="SixLabors.Core" Version="1.0.0-dev000089" />
41+
<PackageReference Include="SixLabors.Core" Version="1.0.0-dev000094" />
5242
</ItemGroup>
5343
</Project>

0 commit comments

Comments
 (0)