Skip to content

Commit 199943f

Browse files
committed
Disable documentation of internal interfaces.
1 parent 734b8a2 commit 199943f

File tree

3 files changed

+1
-13
lines changed

3 files changed

+1
-13
lines changed

src/Magick.NET/Drawing/IDrawingWand.cs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,7 @@
33

44
namespace ImageMagick.Drawing;
55

6-
/// <summary>
7-
/// Interface for drawing on an wand.
8-
/// </summary>
96
internal interface IDrawingWand
107
{
11-
/// <summary>
12-
/// Draws this instance with the drawing wand.
13-
/// </summary>
14-
/// <param name="wand">The wand to draw on.</param>
158
void Draw(DrawingWand wand);
169
}

src/Magick.NET/Native/INativeInstance.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,7 @@
55

66
namespace ImageMagick;
77

8-
/// <summary>
9-
/// Interface for a native instance.
10-
/// </summary>
118
internal interface INativeInstance : IDisposable
129
{
13-
/// <summary>
14-
/// Gets a pointer to the native instance.
15-
/// </summary>
1610
IntPtr Instance { get; }
1711
}

stylecop.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"$schema": "https://raw.githubusercontent.com/DotNetAnalyzers/StyleCopAnalyzers/master/StyleCop.Analyzers/StyleCop.Analyzers/Settings/stylecop.schema.json",
33
"settings": {
44
"documentationRules": {
5+
"documentInterfaces": false,
56
"documentInternalElements": false,
67
"xmlHeader": false,
78
"copyrightText": "Copyright Dirk Lemstra https://github.com/dlemstra/Magick.NET.\nLicensed under the Apache License, Version 2.0."

0 commit comments

Comments
 (0)