Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions src/MinimalCli.SourceGenerator/AnalyzerReleases.Shipped.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
; Shipped diagnostics

## Release 2.0.0

### New Rules

Rule ID | Category | Severity | Notes
--------|----------|----------|------
MIN0001 | Command Name | Error | Command name conflict
MIN0002 | Command Name | Error | Command name empty
MIN0003 | Root Handler | Error | Too many RootHandlers
4 changes: 4 additions & 0 deletions src/MinimalCli.SourceGenerator/AnalyzerReleases.Unshipped.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
### New Rules

Rule ID | Category | Severity | Notes
--------|----------|----------|------
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@
<ItemGroup>
<ProjectReference Include="..\MinimalCli.Core\MinimalCli.Core.csproj" />
</ItemGroup>

<ItemGroup>
<!-- These are for the analyzer to auto-detect breaking changes between versions - this helps it remove warning or error ignore rules if the rule has been changed -->
<None Include="AnalyzerReleases.Shipped.md" Pack="true" PackagePath="analyzers/dotnet/cs" />
<None Include="AnalyzerReleases.Unshipped.md" Pack="true" PackagePath="analyzers/dotnet/cs" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.12.0" PrivateAssets="all" />
Expand Down