mirror of https://github.com/SixLabors/ImageSharp
11 changed files with 23 additions and 15 deletions
@ -1,6 +1,14 @@ |
|||||
// Copyright (c) Six Labors and contributors.
|
// Copyright (c) Six Labors and contributors.
|
||||
// Licensed under the Apache License, Version 2.0.
|
// Licensed under the Apache License, Version 2.0.
|
||||
|
|
||||
using System.Runtime.CompilerServices; |
using System.Runtime.CompilerServices; |
||||
|
|
||||
// Ensure the other projects can see the internal helpers
|
// Ensure the other projects can see the internal helpers
|
||||
[assembly: InternalsVisibleTo("SixLabors.ImageSharp.Drawing")] |
[assembly: InternalsVisibleTo("SixLabors.ImageSharp.Drawing")] |
||||
|
|
||||
|
// Redundant suppressing of SA1413 for Rider.
|
||||
|
[assembly: |
||||
|
System.Diagnostics.CodeAnalysis.SuppressMessage( |
||||
|
"StyleCop.CSharp.MaintainabilityRules", |
||||
|
"SA1413:UseTrailingCommasInMultiLineInitializers", |
||||
|
Justification = "Follows SixLabors.ruleset")] |
||||
Loading…
Reference in new issue