1 implementation of IncludeInternalSymbols
Microsoft.DotNet.ApiCompatibility (1)
ApiComparerSettings.cs (1)
30
public bool
IncludeInternalSymbols
{ get; set; }
6 references to IncludeInternalSymbols
Microsoft.DotNet.ApiCompatibility (6)
Rules\CannotAddAbstractMember.cs (1)
34
if (leftContainingType.TypeKind != TypeKind.Interface && !leftContainingType.IsEffectivelySealed(_settings.
IncludeInternalSymbols
))
Rules\CannotAddOrRemoveVirtualKeyword.cs (1)
53
if (leftContainingType.IsEffectivelySealed(_settings.
IncludeInternalSymbols
))
Rules\CannotChangeVisibility.cs (1)
32
if (!_settings.
IncludeInternalSymbols
)
Rules\CannotRemoveBaseTypeOrInterface.cs (1)
81
if (!leftInterface.IsVisibleOutsideOfAssembly(_settings.
IncludeInternalSymbols
) && leftInterface.TypeKind != TypeKind.Error)
Rules\CannotSealType.cs (2)
28
bool isLeftSealed = left.IsEffectivelySealed(_settings.
IncludeInternalSymbols
);
29
bool isRightSealed = right.IsEffectivelySealed(_settings.
IncludeInternalSymbols
);