File tree 5 files changed +11
-11
lines changed
src/DotNetCampus.CommandLine.Analyzer
5 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ Then use different command line styles to populate instances of this type:
70
70
### Linux/GNU Style
71
71
72
72
``` bash
73
- $ demo.exe " C:/Users/lvyi/Desktop/demo.txt" -s --mode Edit --startup-sessions A B C
73
+ $ demo.exe " C:/Users/lvyi/Desktop/demo.txt" -s --mode Edit --startup-sessions A --startup-sessions B --startup-sessions C
74
74
```
75
75
76
76
### .NET CLI Style
Original file line number Diff line number Diff line change 1
1
; Shipped analyzer releases
2
- ; https://github.com/dotnet/roslyn-analyzers/blob/master /src/Microsoft.CodeAnalysis.Analyzers/ReleaseTrackingAnalyzers.Help.md
2
+ ; https://github.com/dotnet/roslyn-analyzers/blob/main /src/Microsoft.CodeAnalysis.Analyzers/ReleaseTrackingAnalyzers.Help.md
3
3
4
4
## Release 4.0
5
5
6
6
### New Rules
7
7
Rule ID | Category | Severity | Notes
8
8
--------|----------|----------|-------
9
- DCL101 | DotNetCampus.AvoidBugs | Warning | < https://github.com/dotnet-campus/DotNetCampus.CommandLine/blob/master /docs/analyzers/DCL101.md >
10
- DCL201 | DotNetCampus.CodeFixOnly | Hidden | < https://github.com/dotnet-campus/DotNetCampus.CommandLine/blob/master /docs/analyzers/DCL201.md >
11
- DCL202 | DotNetCampus.RuntimeException | Error | < https://github.com/dotnet-campus/DotNetCampus.CommandLine/blob/master /docs/analyzers/DCL202.md >
9
+ DCL101 | DotNetCampus.AvoidBugs | Warning | < https://github.com/dotnet-campus/DotNetCampus.CommandLine/blob/main /docs/analyzers/DCL101.md >
10
+ DCL201 | DotNetCampus.CodeFixOnly | Hidden | < https://github.com/dotnet-campus/DotNetCampus.CommandLine/blob/main /docs/analyzers/DCL201.md >
11
+ DCL202 | DotNetCampus.RuntimeException | Error | < https://github.com/dotnet-campus/DotNetCampus.CommandLine/blob/main /docs/analyzers/DCL202.md >
12
12
13
13
## Release 3.2
14
14
15
15
### New Rules
16
16
Rule ID | Category | Severity | Notes
17
17
--------|----------|----------|-------
18
- DCL101 | dotnetCampus.Naming | Error | < https://github.com/dotnet-campus/DotNetCampus.CommandLine/blob/master /docs/analyzers/DCL101.md >
19
- DCL201 | dotnetCampus.Usage | Hidden | < https://github.com/dotnet-campus/DotNetCampus.CommandLine/blob/master /docs/analyzers/DCL201.md >
20
- DCL202 | dotnetCampus.Usage | Error | < https://github.com/dotnet-campus/DotNetCampus.CommandLine/blob/master /docs/analyzers/DCL202.md >
18
+ DCL101 | dotnetCampus.Naming | Error | < https://github.com/dotnet-campus/DotNetCampus.CommandLine/blob/3.3.1 /docs/analyzers/DCL101.md >
19
+ DCL201 | dotnetCampus.Usage | Hidden | < https://github.com/dotnet-campus/DotNetCampus.CommandLine/blob/3.3.1 /docs/analyzers/DCL201.md >
20
+ DCL202 | dotnetCampus.Usage | Error | < https://github.com/dotnet-campus/DotNetCampus.CommandLine/blob/3.3.1 /docs/analyzers/DCL202.md >
Original file line number Diff line number Diff line change 1
1
; Unshipped analyzer release
2
- ; https://github.com/dotnet/roslyn-analyzers/blob/master /src/Microsoft.CodeAnalysis.Analyzers/ReleaseTrackingAnalyzers.Help.md
2
+ ; https://github.com/dotnet/roslyn-analyzers/blob/main /src/Microsoft.CodeAnalysis.Analyzers/ReleaseTrackingAnalyzers.Help.md
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ public abstract class ConvertOptionPropertyTypeCodeFix : CodeFixProvider
9
9
{
10
10
public sealed override FixAllProvider GetFixAllProvider ( )
11
11
{
12
- // See https://github.com/dotnet/roslyn/blob/master /docs/analyzers/FixAllProvider.md for more information on Fix All Providers
12
+ // See https://github.com/dotnet/roslyn/blob/main /docs/analyzers/FixAllProvider.md for more information on Fix All Providers
13
13
return WellKnownFixAllProviders . BatchFixer ;
14
14
}
15
15
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ public class OptionLongNameMustBeKebabCaseCodeFixProvider : CodeFixProvider
21
21
22
22
public sealed override FixAllProvider GetFixAllProvider ( )
23
23
{
24
- // See https://github.com/dotnet/roslyn/blob/master /docs/analyzers/FixAllProvider.md for more information on Fix All Providers
24
+ // See https://github.com/dotnet/roslyn/blob/main /docs/analyzers/FixAllProvider.md for more information on Fix All Providers
25
25
return WellKnownFixAllProviders . BatchFixer ;
26
26
}
27
27
You can’t perform that action at this time.
0 commit comments