Skip to content

Commit 4d7c385

Browse files
authored
feature: analyzer release tracking (#388)
* feature: analyzer release tracking
1 parent 4893a34 commit 4d7c385

File tree

3 files changed

+29
-3
lines changed

3 files changed

+29
-3
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
; Shipped analyzer releases
2+
; https://github.com/dotnet/roslyn-analyzers/blob/main/src/Microsoft.CodeAnalysis.Analyzers/ReleaseTrackingAnalyzers.Help.md
3+
4+
## Release 0.28.0
5+
6+
### New Rules
7+
8+
Rule ID | Category | Severity | Notes
9+
--------|----------|----------|-------
10+
FAA0001 | FluentAssertionTips | Info | Using FluentAssertions assertions better
11+
FAA0002 | FluentAssertionTips | Info | Migrate from xunit to FluentAssertions.
12+
FAA0003 | FluentAssertionTips | Info | Migration from MSTest to FluentAssertions.
13+
FAA0004 | FluentAssertionTips | Info | Migration from NUnit to FluentAssertions.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
; Unshipped analyzer release
2+
; 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+
FluentAssertions0801 | FluentAssertionCodeSmell | Warning | AsyncVoidAnalyzer

src/FluentAssertions.Analyzers/FluentAssertions.Analyzers.csproj

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<Version>0.17.3</Version>
1818
<Authors>Meir Blachman</Authors>
1919
<Copyright>Copyright Meir Blachman 2017-2023</Copyright>
20-
20+
2121
<Description>Analyzers to help writing fluentassertions the right way.</Description>
2222
<PackageTags>FluentAssertions Analyzers</PackageTags>
2323
<PackageReleaseNotes>See https://github.com/fluentassertions/fluentassertions.analyzers/releases/</PackageReleaseNotes>
@@ -31,8 +31,13 @@
3131
</PropertyGroup>
3232

3333
<ItemGroup>
34-
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" />
35-
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" />
34+
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" />
35+
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" />
36+
</ItemGroup>
37+
38+
<ItemGroup>
39+
<AdditionalFiles Include="AnalyzerReleases.Shipped.md" />
40+
<AdditionalFiles Include="AnalyzerReleases.Unshipped.md" />
3641
</ItemGroup>
3742

3843
<ItemGroup>

0 commit comments

Comments
 (0)