Skip to content

Commit aeac2b7

Browse files
committed
修复文档,换主分支
1 parent 17bd0f7 commit aeac2b7

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Then use different command line styles to populate instances of this type:
7070
### Linux/GNU Style
7171

7272
```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
7474
```
7575

7676
### .NET CLI Style
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
; 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
33

44
## Release 4.0
55

66
### New Rules
77
Rule ID | Category | Severity | Notes
88
--------|----------|----------|-------
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>
1212

1313
## Release 3.2
1414

1515
### New Rules
1616
Rule ID | Category | Severity | Notes
1717
--------|----------|----------|-------
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>
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
; 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

src/DotNetCampus.CommandLine.Analyzer/Analyzers/ConvertOptionProperty/ConvertOptionPropertyTypeCodeFix.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public abstract class ConvertOptionPropertyTypeCodeFix : CodeFixProvider
99
{
1010
public sealed override FixAllProvider GetFixAllProvider()
1111
{
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
1313
return WellKnownFixAllProviders.BatchFixer;
1414
}
1515

src/DotNetCampus.CommandLine.Analyzer/Analyzers/OptionLongNameMustBeKebabCaseCodeFixProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class OptionLongNameMustBeKebabCaseCodeFixProvider : CodeFixProvider
2121

2222
public sealed override FixAllProvider GetFixAllProvider()
2323
{
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
2525
return WellKnownFixAllProviders.BatchFixer;
2626
}
2727

0 commit comments

Comments
 (0)