This repository was archived by the owner on Jul 12, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/Microsoft.DotNet.CodeFormatting Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ namespace Microsoft.DotNet.CodeFormatting
13
13
{
14
14
[ MetadataAttribute ]
15
15
[ AttributeUsage ( AttributeTargets . Class , AllowMultiple = false ) ]
16
- public sealed class SyntaxRuleOrderAttribute : ExportAttribute
16
+ internal sealed class SyntaxRuleOrderAttribute : ExportAttribute
17
17
{
18
18
public SyntaxRuleOrderAttribute ( int order )
19
19
: base ( typeof ( ISyntaxFormattingRule ) )
@@ -27,7 +27,7 @@ public SyntaxRuleOrderAttribute(int order)
27
27
28
28
[ MetadataAttribute ]
29
29
[ AttributeUsage ( AttributeTargets . Class , AllowMultiple = false ) ]
30
- public sealed class LocalSemanticRuleOrderAttribute : ExportAttribute
30
+ internal sealed class LocalSemanticRuleOrderAttribute : ExportAttribute
31
31
{
32
32
public LocalSemanticRuleOrderAttribute ( int order )
33
33
: base ( typeof ( ILocalSemanticFormattingRule ) )
@@ -41,7 +41,7 @@ public LocalSemanticRuleOrderAttribute(int order)
41
41
42
42
[ MetadataAttribute ]
43
43
[ AttributeUsage ( AttributeTargets . Class , AllowMultiple = false ) ]
44
- public sealed class GlobalSemanticRuleOrderAttribute : ExportAttribute
44
+ internal sealed class GlobalSemanticRuleOrderAttribute : ExportAttribute
45
45
{
46
46
public GlobalSemanticRuleOrderAttribute ( int order )
47
47
: base ( typeof ( IGlobalSemanticFormattingRule ) )
Original file line number Diff line number Diff line change 12
12
namespace Microsoft . DotNet . CodeFormatting . Rules
13
13
{
14
14
[ LocalSemanticRuleOrder ( LocalSemanticRuleOrder . RemoveExplicitThisRule ) ]
15
- public sealed class ExplicitThisRule : ILocalSemanticFormattingRule
15
+ internal sealed class ExplicitThisRule : ILocalSemanticFormattingRule
16
16
{
17
17
private sealed class ExplicitThisRewriter : CSharpSyntaxRewriter
18
18
{
You can’t perform that action at this time.
0 commit comments