File tree Expand file tree Collapse file tree 6 files changed +12
-10
lines changed Expand file tree Collapse file tree 6 files changed +12
-10
lines changed Original file line number Diff line number Diff line change 11; Shipped analyzer releases
22; https://github.com/dotnet/roslyn-analyzers/blob/main/src/Microsoft.CodeAnalysis.Analyzers/ReleaseTrackingAnalyzers.Help.md
33
4+ ## Release 0.1.0
5+ ### New Rules
6+ Rule ID | Category | Severity | Notes
7+ --------|----------|----------|-------
8+ MESSERLI001 | Access Modifiers | Warning | RuleConstants
Original file line number Diff line number Diff line change 11; Unshipped analyzer release
22; https://github.com/dotnet/roslyn-analyzers/blob/main/src/Microsoft.CodeAnalysis.Analyzers/ReleaseTrackingAnalyzers.Help.md
3-
4- ### New Rules
5-
6- Rule ID | Category | Severity | Notes
7- --------|----------|----------|-------
8- MESSERLI001 | Access Modifiers | Warning | RuleConstants
Original file line number Diff line number Diff line change 66 <LangVersion >9.0</LangVersion >
77 </PropertyGroup >
88 <PropertyGroup >
9- <Version >1.0 .0</Version >
9+ <Version >0.1 .0</Version >
1010 <PackageTags >analyzers</PackageTags >
1111 <Description >Various analyzers bundled with opinionated configuration</Description >
1212 </PropertyGroup >
Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" utf-8" ?>
22<Project Sdk =" Microsoft.Build.NoTargets" >
33 <PropertyGroup >
4- <Version >2.0.1 </Version >
4+ <Version >2.1.0 </Version >
55 <PackageId >Messerli.CodeStyle</PackageId >
66 <PackageTags >analyzers</PackageTags >
77 <Description >Various analyzers bundled with opinionated configuration</Description >
Original file line number Diff line number Diff line change @@ -92,3 +92,6 @@ Initial release
9292* Update StyleCop.Analyzers to 1.2.0-beta.333 ([ diff] ( https://github.com/DotNetAnalyzers/StyleCopAnalyzers/compare/1.2.0-beta.321...1.2.0-beta.333 ) ) \
9393 Notable changes/fixes:
9494 * [ 23db6c0: Avoid reporting SA1141 (Use tuple syntax) in expression trees] ( https://github.com/DotNetAnalyzers/StyleCopAnalyzers/commit/af356f9b36dc4849a678c0b8c918123fa567913b )
95+
96+ ## 2.1.0
97+ * Warn when interface method has ` public ` accessibility modifier (` MESSERLI001 ` )
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ Add the following package reference to your project or to your `Directory.Build.
1414 <?xml version="1.0" encoding="utf-8"?>
1515 <Project>
1616 <ItemGroup>
17- + <PackageReference Include="Messerli.CodeStyle" Version="2.0.1 " PrivateAssets="all" />
17+ + <PackageReference Include="Messerli.CodeStyle" Version="2.1.0 " PrivateAssets="all" />
1818 </ItemGroup>
1919 </Project>
2020```
@@ -26,7 +26,7 @@ Add `Messerli.CodeStyle` to your `Packages.props`:
2626 <?xml version="1.0" encoding="utf-8"?>
2727 <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2828 <ItemGroup Label="Build dependencies">
29- + <PackageReference Update="Messerli.CodeStyle" Version="2.0.1 " />
29+ + <PackageReference Update="Messerli.CodeStyle" Version="2.1.0 " />
3030 </ItemGroup>
3131 </Project>
3232```
You can’t perform that action at this time.
0 commit comments