Browse Source

Fixed SA1633, SA1636, SA1638.

af/merge-core
dirk 10 years ago
parent
commit
81cacd0874
  1. 7
      src/ImageSharp/Filters/Processors/IImageFilter.cs
  2. 2
      src/ImageSharp/Image/ImageIOExtensions.cs
  3. 2
      src/ImageSharp/Image/ImageProcessingExtensions.cs
  4. 2
      src/ImageSharp/Profiles/Exif/ExifTagDescriptionAttribute.cs
  5. 9
      src/ImageSharp/Properties/AssemblyInfo.cs
  6. 2
      src/ImageSharp/Quantizers/Wu/WuQuantizer.cs
  7. 2
      src/ImageSharp/Samplers/AutoOrient.cs
  8. 2
      src/ImageSharp/Samplers/Options/Orientation.cs

7
src/ImageSharp/Filters/Processors/IImageFilter.cs

@ -1,4 +1,9 @@
namespace ImageSharp.Processors
// <copyright file="IImageFilter.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>
namespace ImageSharp.Processors
{
/// <summary>
/// Encapsulates methods to alter the pixels of an image. The processor operates on the original source pixels.

2
src/ImageSharp/Image/ImageIOExtensions.cs

@ -1,4 +1,4 @@
// <copyright file="ImageExtensions.cs" company="James Jackson-South">
// <copyright file="ImageIOExtensions.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

2
src/ImageSharp/Image/ImageProcessingExtensions.cs

@ -1,4 +1,4 @@
// <copyright file="ImageExtensions.cs" company="James Jackson-South">
// <copyright file="ImageProcessingExtensions.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

2
src/ImageSharp/Profiles/Exif/ExifTagDescriptionAttribute.cs

@ -1,4 +1,4 @@
// <copyright file="ExifTag.cs" company="James Jackson-South">
// <copyright file="ExifTagDescriptionAttribute.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

9
src/ImageSharp/Properties/AssemblyInfo.cs

@ -1,7 +1,11 @@
using System.Resources;
// <copyright file="AssemblyInfo.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>
using System.Resources;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
@ -28,6 +32,7 @@ using System.Runtime.InteropServices;
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0.0")]
// Ensure the internals can be tested.
[assembly: InternalsVisibleTo("ImageSharp.Benchmarks")]

2
src/ImageSharp/Quantizers/Wu/WuQuantizer.cs

@ -1,5 +1,5 @@
// <copyright file="WuQuantizer.cs" company="James Jackson-South">
// Copyright © James Jackson-South and contributors.
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

2
src/ImageSharp/Samplers/AutoOrient.cs

@ -1,4 +1,4 @@
// <copyright file="EntropyCrop.cs" company="James Jackson-South">
// <copyright file="AutoOrient.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

2
src/ImageSharp/Samplers/Options/Orientation.cs

@ -1,4 +1,4 @@
// <copyright file="AnchorPosition.cs" company="James Jackson-South">
// <copyright file="Orientation.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
// </copyright>

Loading…
Cancel
Save