mirror of https://github.com/SixLabors/ImageSharp
292 changed files with 24 additions and 837 deletions
@ -1,7 +1,8 @@ |
|||||
{ |
{ |
||||
"profiles": { |
"profiles": { |
||||
"build": { |
"build": { |
||||
"commandName": "Project" |
"commandName": "Project", |
||||
|
"commandLineArgs": "reset" |
||||
} |
} |
||||
} |
} |
||||
} |
} |
||||
@ -1,84 +0,0 @@ |
|||||
<Project Sdk="Microsoft.NET.Sdk"> |
|
||||
|
|
||||
<PropertyGroup> |
|
||||
<Description>A cross-platform library for the processing of image files; written in C#</Description> |
|
||||
<AssemblyTitle>ImageSharp.Drawing.Paths</AssemblyTitle> |
|
||||
<VersionPrefix>1.0.0-alpha2</VersionPrefix> |
|
||||
<Authors>James Jackson-South and contributors</Authors> |
|
||||
<TargetFrameworks>netstandard1.1;net45;net461</TargetFrameworks> |
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
|
||||
<GenerateDocumentationFile>true</GenerateDocumentationFile> |
|
||||
<AssemblyName>ImageSharp.Drawing.Paths</AssemblyName> |
|
||||
<PackageId>ImageSharp.Drawing.Paths</PackageId> |
|
||||
<PackageTags>Image Resize Crop Gif Jpg Jpeg Bitmap Png Core</PackageTags> |
|
||||
<PackageIconUrl>https://raw.githubusercontent.com/JimBobSquarePants/ImageSharp/master/build/icons/imagesharp-logo-128.png</PackageIconUrl> |
|
||||
<PackageProjectUrl>https://github.com/JimBobSquarePants/ImageSharp</PackageProjectUrl> |
|
||||
<PackageLicenseUrl>http://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl> |
|
||||
<RepositoryType>git</RepositoryType> |
|
||||
<RepositoryUrl>https://github.com/JimBobSquarePants/ImageSharp</RepositoryUrl> |
|
||||
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute> |
|
||||
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute> |
|
||||
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute> |
|
||||
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> |
|
||||
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute> |
|
||||
<GenerateNeutralResourcesLanguageAttribute>false</GenerateNeutralResourcesLanguageAttribute> |
|
||||
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute> |
|
||||
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute> |
|
||||
<GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute> |
|
||||
</PropertyGroup> |
|
||||
|
|
||||
<ItemGroup> |
|
||||
<Compile Include="..\Shared\*.cs" Exclude="bin\**;obj\**;**\*.xproj;packages\**" /> |
|
||||
</ItemGroup> |
|
||||
|
|
||||
<ItemGroup> |
|
||||
<ProjectReference Include="..\ImageSharp\ImageSharp.csproj" /> |
|
||||
<ProjectReference Include="..\ImageSharp.Drawing\ImageSharp.Drawing.csproj" /> |
|
||||
</ItemGroup> |
|
||||
|
|
||||
<ItemGroup> |
|
||||
<PackageReference Include="SixLabors.Shapes" Version="0.1.0-alpha0007" /> |
|
||||
<PackageReference Include="System.Buffers" Version="4.0.0" /> |
|
||||
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.3.0" /> |
|
||||
</ItemGroup> |
|
||||
|
|
||||
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.1' "> |
|
||||
<PackageReference Include="System.Collections" Version="4.0.11" /> |
|
||||
<PackageReference Include="System.Diagnostics.Debug" Version="4.0.11" /> |
|
||||
<PackageReference Include="System.Diagnostics.Tools" Version="4.0.1" /> |
|
||||
<PackageReference Include="System.IO" Version="4.1.0" /> |
|
||||
<PackageReference Include="System.IO.Compression" Version="4.1.0" /> |
|
||||
<PackageReference Include="System.Linq" Version="4.1.0" /> |
|
||||
<PackageReference Include="System.Numerics.Vectors" Version="4.1.1" /> |
|
||||
<PackageReference Include="System.ObjectModel" Version="4.0.12" /> |
|
||||
<PackageReference Include="System.Resources.ResourceManager" Version="4.0.1" /> |
|
||||
<PackageReference Include="System.Runtime.Extensions" Version="4.1.0" /> |
|
||||
<PackageReference Include="System.Runtime.InteropServices" Version="4.1.0" /> |
|
||||
<PackageReference Include="System.Runtime.Numerics" Version="4.0.1" /> |
|
||||
<PackageReference Include="System.Text.Encoding.Extensions" Version="4.0.11" /> |
|
||||
<PackageReference Include="System.Threading" Version="4.0.11" /> |
|
||||
<PackageReference Include="System.Threading.Tasks" Version="4.0.11" /> |
|
||||
<PackageReference Include="System.Threading.Tasks.Parallel" Version="4.0.1" /> |
|
||||
</ItemGroup> |
|
||||
|
|
||||
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' "> |
|
||||
<PackageReference Include="System.Numerics.Vectors" Version="4.1.1" /> |
|
||||
<PackageReference Include="System.Threading.Tasks.Parallel" Version="4.0.1" /> |
|
||||
<Reference Include="System.Runtime" /> |
|
||||
<Reference Include="System" /> |
|
||||
<Reference Include="Microsoft.CSharp" /> |
|
||||
</ItemGroup> |
|
||||
|
|
||||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> |
|
||||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
|
||||
</PropertyGroup> |
|
||||
|
|
||||
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' "> |
|
||||
<PackageReference Include="System.Threading.Tasks.Parallel" Version="4.0.1" /> |
|
||||
<Reference Include="System.Runtime" /> |
|
||||
<Reference Include="System.Numerics" /> |
|
||||
<Reference Include="System" /> |
|
||||
<Reference Include="Microsoft.CSharp" /> |
|
||||
</ItemGroup> |
|
||||
|
|
||||
</Project> |
|
||||
@ -1,6 +0,0 @@ |
|||||
// <copyright file="AssemblyInfo.cs" company="James Jackson-South">
|
|
||||
// Copyright (c) James Jackson-South and contributors.
|
|
||||
// Licensed under the Apache License, Version 2.0.
|
|
||||
// </copyright>
|
|
||||
|
|
||||
// Common values read from `AssemblyInfo.Common.cs`
|
|
||||
@ -1,84 +0,0 @@ |
|||||
<Project Sdk="Microsoft.NET.Sdk"> |
|
||||
|
|
||||
<PropertyGroup> |
|
||||
<Description>A cross-platform library for the processing of image files; written in C#</Description> |
|
||||
<AssemblyTitle>ImageSharp.Drawing.Text</AssemblyTitle> |
|
||||
<VersionPrefix>1.0.0-alpha2</VersionPrefix> |
|
||||
<Authors>James Jackson-South and contributors</Authors> |
|
||||
<TargetFrameworks>netstandard1.1;net45;net461</TargetFrameworks> |
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
|
||||
<GenerateDocumentationFile>true</GenerateDocumentationFile> |
|
||||
<AssemblyName>ImageSharp.Drawing.Text</AssemblyName> |
|
||||
<PackageId>ImageSharp.Drawing.Text</PackageId> |
|
||||
<PackageTags>Image Resize Crop Gif Jpg Jpeg Bitmap Png Core</PackageTags> |
|
||||
<PackageIconUrl>https://raw.githubusercontent.com/JimBobSquarePants/ImageSharp/master/build/icons/imagesharp-logo-128.png</PackageIconUrl> |
|
||||
<PackageProjectUrl>https://github.com/JimBobSquarePants/ImageSharp</PackageProjectUrl> |
|
||||
<PackageLicenseUrl>http://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl> |
|
||||
<RepositoryType>git</RepositoryType> |
|
||||
<RepositoryUrl>https://github.com/JimBobSquarePants/ImageSharp</RepositoryUrl> |
|
||||
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute> |
|
||||
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute> |
|
||||
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute> |
|
||||
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> |
|
||||
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute> |
|
||||
<GenerateNeutralResourcesLanguageAttribute>false</GenerateNeutralResourcesLanguageAttribute> |
|
||||
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute> |
|
||||
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute> |
|
||||
<GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute> |
|
||||
</PropertyGroup> |
|
||||
|
|
||||
<ItemGroup> |
|
||||
<Compile Include="..\Shared\*.cs" Exclude="bin\**;obj\**;**\*.xproj;packages\**" /> |
|
||||
</ItemGroup> |
|
||||
|
|
||||
<ItemGroup> |
|
||||
<ProjectReference Include="..\ImageSharp\ImageSharp.csproj" /> |
|
||||
<ProjectReference Include="..\ImageSharp.Drawing.Paths\ImageSharp.Drawing.Paths.csproj" /> |
|
||||
</ItemGroup> |
|
||||
|
|
||||
<ItemGroup> |
|
||||
<PackageReference Include="SixLabors.Fonts" Version="0.1.0-alpha0001" /> |
|
||||
<PackageReference Include="System.Buffers" Version="4.0.0" /> |
|
||||
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.3.0" /> |
|
||||
</ItemGroup> |
|
||||
|
|
||||
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.1' "> |
|
||||
<PackageReference Include="System.Collections" Version="4.0.11" /> |
|
||||
<PackageReference Include="System.Diagnostics.Debug" Version="4.0.11" /> |
|
||||
<PackageReference Include="System.Diagnostics.Tools" Version="4.0.1" /> |
|
||||
<PackageReference Include="System.IO" Version="4.1.0" /> |
|
||||
<PackageReference Include="System.IO.Compression" Version="4.1.0" /> |
|
||||
<PackageReference Include="System.Linq" Version="4.1.0" /> |
|
||||
<PackageReference Include="System.Numerics.Vectors" Version="4.1.1" /> |
|
||||
<PackageReference Include="System.ObjectModel" Version="4.0.12" /> |
|
||||
<PackageReference Include="System.Resources.ResourceManager" Version="4.0.1" /> |
|
||||
<PackageReference Include="System.Runtime.Extensions" Version="4.1.0" /> |
|
||||
<PackageReference Include="System.Runtime.InteropServices" Version="4.1.0" /> |
|
||||
<PackageReference Include="System.Runtime.Numerics" Version="4.0.1" /> |
|
||||
<PackageReference Include="System.Text.Encoding.Extensions" Version="4.0.11" /> |
|
||||
<PackageReference Include="System.Threading" Version="4.0.11" /> |
|
||||
<PackageReference Include="System.Threading.Tasks" Version="4.0.11" /> |
|
||||
<PackageReference Include="System.Threading.Tasks.Parallel" Version="4.0.1" /> |
|
||||
</ItemGroup> |
|
||||
|
|
||||
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' "> |
|
||||
<PackageReference Include="System.Numerics.Vectors" Version="4.1.1" /> |
|
||||
<PackageReference Include="System.Threading.Tasks.Parallel" Version="4.0.1" /> |
|
||||
<Reference Include="System.Runtime" /> |
|
||||
<Reference Include="System" /> |
|
||||
<Reference Include="Microsoft.CSharp" /> |
|
||||
</ItemGroup> |
|
||||
|
|
||||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> |
|
||||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
|
||||
</PropertyGroup> |
|
||||
|
|
||||
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' "> |
|
||||
<PackageReference Include="System.Threading.Tasks.Parallel" Version="4.0.1" /> |
|
||||
<Reference Include="System.Runtime" /> |
|
||||
<Reference Include="System.Numerics" /> |
|
||||
<Reference Include="System" /> |
|
||||
<Reference Include="Microsoft.CSharp" /> |
|
||||
</ItemGroup> |
|
||||
|
|
||||
</Project> |
|
||||
@ -1,6 +0,0 @@ |
|||||
// <copyright file="AssemblyInfo.cs" company="James Jackson-South">
|
|
||||
// Copyright (c) James Jackson-South and contributors.
|
|
||||
// Licensed under the Apache License, Version 2.0.
|
|
||||
// </copyright>
|
|
||||
|
|
||||
// Common values read from `AssemblyInfo.Common.cs`
|
|
||||
@ -1,61 +0,0 @@ |
|||||
<Project Sdk="Microsoft.NET.Sdk"> |
|
||||
<PropertyGroup> |
|
||||
<Description>A cross-platform library for the processing of image files; written in C#</Description> |
|
||||
<AssemblyTitle>ImageSharp.Formats.Bmp</AssemblyTitle> |
|
||||
<VersionPrefix>1.0.0-alpha2</VersionPrefix> |
|
||||
<Authors>James Jackson-South and contributors</Authors> |
|
||||
<TargetFrameworks>netstandard1.1;net45;net461</TargetFrameworks> |
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
|
||||
<GenerateDocumentationFile>true</GenerateDocumentationFile> |
|
||||
<AssemblyName>ImageSharp.Formats.Bmp</AssemblyName> |
|
||||
<PackageId>ImageSharp.Formats.Bmp</PackageId> |
|
||||
<PackageTags>Image Resize Crop Gif Jpg Jpeg Bitmap Png Core</PackageTags> |
|
||||
<PackageIconUrl>https://raw.githubusercontent.com/JimBobSquarePants/ImageSharp/master/build/icons/imagesharp-logo-128.png</PackageIconUrl> |
|
||||
<PackageProjectUrl>https://github.com/JimBobSquarePants/ImageSharp</PackageProjectUrl> |
|
||||
<PackageLicenseUrl>http://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl> |
|
||||
<RepositoryType>git</RepositoryType> |
|
||||
<RepositoryUrl>https://github.com/JimBobSquarePants/ImageSharp</RepositoryUrl> |
|
||||
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute> |
|
||||
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute> |
|
||||
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute> |
|
||||
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> |
|
||||
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute> |
|
||||
<GenerateNeutralResourcesLanguageAttribute>false</GenerateNeutralResourcesLanguageAttribute> |
|
||||
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute> |
|
||||
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute> |
|
||||
<GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute> |
|
||||
</PropertyGroup> |
|
||||
<ItemGroup> |
|
||||
<Compile Include="..\Shared\*.cs" Exclude="bin\**;obj\**;**\*.xproj;packages\**" /> |
|
||||
</ItemGroup> |
|
||||
<ItemGroup> |
|
||||
<ProjectReference Include="..\ImageSharp\ImageSharp.csproj" /> |
|
||||
</ItemGroup> |
|
||||
<ItemGroup> |
|
||||
<PackageReference Include="System.Buffers" Version="4.3.0" /> |
|
||||
<PackageReference Include="System.Threading.Tasks.Parallel" Version="4.3.0" /> |
|
||||
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.3.0" /> |
|
||||
</ItemGroup> |
|
||||
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.1' "> |
|
||||
<PackageReference Include="System.Numerics.Vectors" Version="4.3.0" /> |
|
||||
</ItemGroup> |
|
||||
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' "> |
|
||||
<PackageReference Include="System.Numerics.Vectors" Version="4.3.0" /> |
|
||||
<Reference Include="System.Runtime" /> |
|
||||
<Reference Include="System" /> |
|
||||
<Reference Include="Microsoft.CSharp" /> |
|
||||
</ItemGroup> |
|
||||
<PropertyGroup> |
|
||||
<CodeAnalysisRuleSet>..\..\ImageSharp.ruleset</CodeAnalysisRuleSet> |
|
||||
</PropertyGroup> |
|
||||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> |
|
||||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
|
||||
</PropertyGroup> |
|
||||
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' "> |
|
||||
<Reference Include="System.Runtime" /> |
|
||||
<Reference Include="System.Numerics" /> |
|
||||
<Reference Include="System.Numerics.Vectors" /> |
|
||||
<Reference Include="System" /> |
|
||||
<Reference Include="Microsoft.CSharp" /> |
|
||||
</ItemGroup> |
|
||||
</Project> |
|
||||
@ -1,6 +0,0 @@ |
|||||
// <copyright file="AssemblyInfo.cs" company="James Jackson-South">
|
|
||||
// Copyright (c) James Jackson-South and contributors.
|
|
||||
// Licensed under the Apache License, Version 2.0.
|
|
||||
// </copyright>
|
|
||||
|
|
||||
// Common values read from `AssemblyInfo.Common.cs`
|
|
||||
@ -1,61 +0,0 @@ |
|||||
<Project Sdk="Microsoft.NET.Sdk"> |
|
||||
<PropertyGroup> |
|
||||
<Description>A cross-platform library for the processing of image files; written in C#</Description> |
|
||||
<AssemblyTitle>ImageSharp.Formats.Gif</AssemblyTitle> |
|
||||
<VersionPrefix>1.0.0-alpha2</VersionPrefix> |
|
||||
<Authors>James Jackson-South and contributors</Authors> |
|
||||
<TargetFrameworks>netstandard1.1;net45;net461</TargetFrameworks> |
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
|
||||
<GenerateDocumentationFile>true</GenerateDocumentationFile> |
|
||||
<AssemblyName>ImageSharp.Formats.Gif</AssemblyName> |
|
||||
<PackageId>ImageSharp.Formats.Gif</PackageId> |
|
||||
<PackageTags>Image Resize Crop Gif Jpg Jpeg Bitmap Png Core</PackageTags> |
|
||||
<PackageIconUrl>https://raw.githubusercontent.com/JimBobSquarePants/ImageSharp/master/build/icons/imagesharp-logo-128.png</PackageIconUrl> |
|
||||
<PackageProjectUrl>https://github.com/JimBobSquarePants/ImageSharp</PackageProjectUrl> |
|
||||
<PackageLicenseUrl>http://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl> |
|
||||
<RepositoryType>git</RepositoryType> |
|
||||
<RepositoryUrl>https://github.com/JimBobSquarePants/ImageSharp</RepositoryUrl> |
|
||||
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute> |
|
||||
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute> |
|
||||
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute> |
|
||||
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> |
|
||||
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute> |
|
||||
<GenerateNeutralResourcesLanguageAttribute>false</GenerateNeutralResourcesLanguageAttribute> |
|
||||
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute> |
|
||||
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute> |
|
||||
<GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute> |
|
||||
</PropertyGroup> |
|
||||
<ItemGroup> |
|
||||
<Compile Include="..\Shared\*.cs" Exclude="bin\**;obj\**;**\*.xproj;packages\**" /> |
|
||||
</ItemGroup> |
|
||||
<ItemGroup> |
|
||||
<ProjectReference Include="..\ImageSharp\ImageSharp.csproj" /> |
|
||||
</ItemGroup> |
|
||||
<ItemGroup> |
|
||||
<PackageReference Include="System.Buffers" Version="4.3.0" /> |
|
||||
<PackageReference Include="System.Threading.Tasks.Parallel" Version="4.3.0" /> |
|
||||
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.3.0" /> |
|
||||
</ItemGroup> |
|
||||
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.1' "> |
|
||||
<PackageReference Include="System.Numerics.Vectors" Version="4.3.0" /> |
|
||||
</ItemGroup> |
|
||||
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' "> |
|
||||
<PackageReference Include="System.Numerics.Vectors" Version="4.3.0" /> |
|
||||
<Reference Include="System.Runtime" /> |
|
||||
<Reference Include="System" /> |
|
||||
<Reference Include="Microsoft.CSharp" /> |
|
||||
</ItemGroup> |
|
||||
<PropertyGroup> |
|
||||
<CodeAnalysisRuleSet>..\..\ImageSharp.ruleset</CodeAnalysisRuleSet> |
|
||||
</PropertyGroup> |
|
||||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> |
|
||||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
|
||||
</PropertyGroup> |
|
||||
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' "> |
|
||||
<Reference Include="System.Runtime" /> |
|
||||
<Reference Include="System.Numerics" /> |
|
||||
<Reference Include="System.Numerics.Vectors" /> |
|
||||
<Reference Include="System" /> |
|
||||
<Reference Include="Microsoft.CSharp" /> |
|
||||
</ItemGroup> |
|
||||
</Project> |
|
||||
@ -1,6 +0,0 @@ |
|||||
// <copyright file="AssemblyInfo.cs" company="James Jackson-South">
|
|
||||
// Copyright (c) James Jackson-South and contributors.
|
|
||||
// Licensed under the Apache License, Version 2.0.
|
|
||||
// </copyright>
|
|
||||
|
|
||||
// Common values read from `AssemblyInfo.Common.cs`
|
|
||||
@ -1,61 +0,0 @@ |
|||||
<Project Sdk="Microsoft.NET.Sdk"> |
|
||||
<PropertyGroup> |
|
||||
<Description>A cross-platform library for the processing of image files; written in C#</Description> |
|
||||
<AssemblyTitle>ImageSharp.Formats.Jpeg</AssemblyTitle> |
|
||||
<VersionPrefix>1.0.0-alpha2</VersionPrefix> |
|
||||
<Authors>James Jackson-South and contributors</Authors> |
|
||||
<TargetFrameworks>netstandard1.1;net45;net461</TargetFrameworks> |
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
|
||||
<GenerateDocumentationFile>true</GenerateDocumentationFile> |
|
||||
<AssemblyName>ImageSharp.Formats.Jpeg</AssemblyName> |
|
||||
<PackageId>ImageSharp.Formats.Jpeg</PackageId> |
|
||||
<PackageTags>Image Resize Crop Gif Jpg Jpeg Bitmap Png Core</PackageTags> |
|
||||
<PackageIconUrl>https://raw.githubusercontent.com/JimBobSquarePants/ImageSharp/master/build/icons/imagesharp-logo-128.png</PackageIconUrl> |
|
||||
<PackageProjectUrl>https://github.com/JimBobSquarePants/ImageSharp</PackageProjectUrl> |
|
||||
<PackageLicenseUrl>http://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl> |
|
||||
<RepositoryType>git</RepositoryType> |
|
||||
<RepositoryUrl>https://github.com/JimBobSquarePants/ImageSharp</RepositoryUrl> |
|
||||
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute> |
|
||||
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute> |
|
||||
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute> |
|
||||
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> |
|
||||
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute> |
|
||||
<GenerateNeutralResourcesLanguageAttribute>false</GenerateNeutralResourcesLanguageAttribute> |
|
||||
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute> |
|
||||
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute> |
|
||||
<GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute> |
|
||||
</PropertyGroup> |
|
||||
<ItemGroup> |
|
||||
<Compile Include="..\Shared\*.cs" Exclude="bin\**;obj\**;**\*.xproj;packages\**" /> |
|
||||
</ItemGroup> |
|
||||
<ItemGroup> |
|
||||
<ProjectReference Include="..\ImageSharp\ImageSharp.csproj" /> |
|
||||
</ItemGroup> |
|
||||
<ItemGroup> |
|
||||
<PackageReference Include="System.Buffers" Version="4.3.0" /> |
|
||||
<PackageReference Include="System.Threading.Tasks.Parallel" Version="4.3.0" /> |
|
||||
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.3.0" /> |
|
||||
</ItemGroup> |
|
||||
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.1' "> |
|
||||
<PackageReference Include="System.Numerics.Vectors" Version="4.3.0" /> |
|
||||
</ItemGroup> |
|
||||
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' "> |
|
||||
<PackageReference Include="System.Numerics.Vectors" Version="4.3.0" /> |
|
||||
<Reference Include="System.Runtime" /> |
|
||||
<Reference Include="System" /> |
|
||||
<Reference Include="Microsoft.CSharp" /> |
|
||||
</ItemGroup> |
|
||||
<PropertyGroup> |
|
||||
<CodeAnalysisRuleSet>..\..\ImageSharp.ruleset</CodeAnalysisRuleSet> |
|
||||
</PropertyGroup> |
|
||||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> |
|
||||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
|
||||
</PropertyGroup> |
|
||||
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' "> |
|
||||
<Reference Include="System.Runtime" /> |
|
||||
<Reference Include="System.Numerics" /> |
|
||||
<Reference Include="System.Numerics.Vectors" /> |
|
||||
<Reference Include="System" /> |
|
||||
<Reference Include="Microsoft.CSharp" /> |
|
||||
</ItemGroup> |
|
||||
</Project> |
|
||||
@ -1,6 +0,0 @@ |
|||||
// <copyright file="AssemblyInfo.cs" company="James Jackson-South">
|
|
||||
// Copyright (c) James Jackson-South and contributors.
|
|
||||
// Licensed under the Apache License, Version 2.0.
|
|
||||
// </copyright>
|
|
||||
|
|
||||
// Common values read from `AssemblyInfo.Common.cs`
|
|
||||
@ -1,61 +0,0 @@ |
|||||
<Project Sdk="Microsoft.NET.Sdk"> |
|
||||
<PropertyGroup> |
|
||||
<Description>A cross-platform library for the processing of image files; written in C#</Description> |
|
||||
<AssemblyTitle>ImageSharp.Formats.Png</AssemblyTitle> |
|
||||
<VersionPrefix>1.0.0-alpha2</VersionPrefix> |
|
||||
<Authors>James Jackson-South and contributors</Authors> |
|
||||
<TargetFrameworks>netstandard1.1;net45;net461</TargetFrameworks> |
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
|
||||
<GenerateDocumentationFile>true</GenerateDocumentationFile> |
|
||||
<AssemblyName>ImageSharp.Formats.Png</AssemblyName> |
|
||||
<PackageId>ImageSharp.Formats.Png</PackageId> |
|
||||
<PackageTags>Image Resize Crop Gif Jpg Jpeg Bitmap Png Core</PackageTags> |
|
||||
<PackageIconUrl>https://raw.githubusercontent.com/JimBobSquarePants/ImageSharp/master/build/icons/imagesharp-logo-128.png</PackageIconUrl> |
|
||||
<PackageProjectUrl>https://github.com/JimBobSquarePants/ImageSharp</PackageProjectUrl> |
|
||||
<PackageLicenseUrl>http://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl> |
|
||||
<RepositoryType>git</RepositoryType> |
|
||||
<RepositoryUrl>https://github.com/JimBobSquarePants/ImageSharp</RepositoryUrl> |
|
||||
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute> |
|
||||
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute> |
|
||||
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute> |
|
||||
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> |
|
||||
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute> |
|
||||
<GenerateNeutralResourcesLanguageAttribute>false</GenerateNeutralResourcesLanguageAttribute> |
|
||||
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute> |
|
||||
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute> |
|
||||
<GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute> |
|
||||
</PropertyGroup> |
|
||||
<ItemGroup> |
|
||||
<Compile Include="..\Shared\*.cs" Exclude="bin\**;obj\**;**\*.xproj;packages\**" /> |
|
||||
</ItemGroup> |
|
||||
<ItemGroup> |
|
||||
<ProjectReference Include="..\ImageSharp\ImageSharp.csproj" /> |
|
||||
</ItemGroup> |
|
||||
<ItemGroup> |
|
||||
<PackageReference Include="System.Buffers" Version="4.3.0" /> |
|
||||
<PackageReference Include="System.Threading.Tasks.Parallel" Version="4.3.0" /> |
|
||||
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.3.0" /> |
|
||||
</ItemGroup> |
|
||||
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.1' "> |
|
||||
<PackageReference Include="System.Numerics.Vectors" Version="4.3.0" /> |
|
||||
</ItemGroup> |
|
||||
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' "> |
|
||||
<PackageReference Include="System.Numerics.Vectors" Version="4.3.0" /> |
|
||||
<Reference Include="System.Runtime" /> |
|
||||
<Reference Include="System" /> |
|
||||
<Reference Include="Microsoft.CSharp" /> |
|
||||
</ItemGroup> |
|
||||
<PropertyGroup> |
|
||||
<CodeAnalysisRuleSet>..\..\ImageSharp.ruleset</CodeAnalysisRuleSet> |
|
||||
</PropertyGroup> |
|
||||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> |
|
||||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
|
||||
</PropertyGroup> |
|
||||
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' "> |
|
||||
<Reference Include="System.Runtime" /> |
|
||||
<Reference Include="System.Numerics" /> |
|
||||
<Reference Include="System.Numerics.Vectors" /> |
|
||||
<Reference Include="System" /> |
|
||||
<Reference Include="Microsoft.CSharp" /> |
|
||||
</ItemGroup> |
|
||||
</Project> |
|
||||
@ -1,6 +0,0 @@ |
|||||
// <copyright file="AssemblyInfo.cs" company="James Jackson-South">
|
|
||||
// Copyright (c) James Jackson-South and contributors.
|
|
||||
// Licensed under the Apache License, Version 2.0.
|
|
||||
// </copyright>
|
|
||||
|
|
||||
// Common values read from `AssemblyInfo.Common.cs`
|
|
||||
@ -1,61 +0,0 @@ |
|||||
<Project Sdk="Microsoft.NET.Sdk"> |
|
||||
<PropertyGroup> |
|
||||
<Description>A cross-platform library for the processing of image files; written in C#</Description> |
|
||||
<AssemblyTitle>ImageSharp.Processing</AssemblyTitle> |
|
||||
<VersionPrefix>1.0.0-alpha2</VersionPrefix> |
|
||||
<Authors>James Jackson-South and contributors</Authors> |
|
||||
<TargetFrameworks>netstandard1.1;net45;net461</TargetFrameworks> |
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
|
||||
<GenerateDocumentationFile>true</GenerateDocumentationFile> |
|
||||
<AssemblyName>ImageSharp.Processing</AssemblyName> |
|
||||
<PackageId>ImageSharp.Processing</PackageId> |
|
||||
<PackageTags>Image Resize Crop Gif Jpg Jpeg Bitmap Png Core</PackageTags> |
|
||||
<PackageIconUrl>https://raw.githubusercontent.com/JimBobSquarePants/ImageSharp/master/build/icons/imagesharp-logo-128.png</PackageIconUrl> |
|
||||
<PackageProjectUrl>https://github.com/JimBobSquarePants/ImageSharp</PackageProjectUrl> |
|
||||
<PackageLicenseUrl>http://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl> |
|
||||
<RepositoryType>git</RepositoryType> |
|
||||
<RepositoryUrl>https://github.com/JimBobSquarePants/ImageSharp</RepositoryUrl> |
|
||||
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute> |
|
||||
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute> |
|
||||
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute> |
|
||||
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute> |
|
||||
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute> |
|
||||
<GenerateNeutralResourcesLanguageAttribute>false</GenerateNeutralResourcesLanguageAttribute> |
|
||||
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute> |
|
||||
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute> |
|
||||
<GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute> |
|
||||
</PropertyGroup> |
|
||||
<ItemGroup> |
|
||||
<Compile Include="..\Shared\*.cs" Exclude="bin\**;obj\**;**\*.xproj;packages\**" /> |
|
||||
</ItemGroup> |
|
||||
<ItemGroup> |
|
||||
<ProjectReference Include="..\ImageSharp\ImageSharp.csproj" /> |
|
||||
</ItemGroup> |
|
||||
<ItemGroup> |
|
||||
<PackageReference Include="System.Buffers" Version="4.3.0" /> |
|
||||
<PackageReference Include="System.Threading.Tasks.Parallel" Version="4.3.0" /> |
|
||||
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.3.0" /> |
|
||||
</ItemGroup> |
|
||||
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.1' "> |
|
||||
<PackageReference Include="System.Numerics.Vectors" Version="4.3.0" /> |
|
||||
</ItemGroup> |
|
||||
<ItemGroup Condition=" '$(TargetFramework)' == 'net45' "> |
|
||||
<PackageReference Include="System.Numerics.Vectors" Version="4.3.0" /> |
|
||||
<Reference Include="System.Runtime" /> |
|
||||
<Reference Include="System" /> |
|
||||
<Reference Include="Microsoft.CSharp" /> |
|
||||
</ItemGroup> |
|
||||
<PropertyGroup> |
|
||||
<CodeAnalysisRuleSet>..\..\ImageSharp.ruleset</CodeAnalysisRuleSet> |
|
||||
</PropertyGroup> |
|
||||
<PropertyGroup Condition=" '$(Configuration)' == 'Release' "> |
|
||||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
|
||||
</PropertyGroup> |
|
||||
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' "> |
|
||||
<Reference Include="System.Runtime" /> |
|
||||
<Reference Include="System.Numerics" /> |
|
||||
<Reference Include="System.Numerics.Vectors" /> |
|
||||
<Reference Include="System" /> |
|
||||
<Reference Include="Microsoft.CSharp" /> |
|
||||
</ItemGroup> |
|
||||
</Project> |
|
||||
@ -1,6 +0,0 @@ |
|||||
// <copyright file="AssemblyInfo.cs" company="James Jackson-South">
|
|
||||
// Copyright (c) James Jackson-South and contributors.
|
|
||||
// Licensed under the Apache License, Version 2.0.
|
|
||||
// </copyright>
|
|
||||
|
|
||||
// Common values read from `AssemblyInfo.Common.cs`
|
|
||||
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue