-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Open
Description
Version Used:
Microsoft.CodeAnalysis 5.0.0
Steps to Reproduce:
- Add this code..
[Generator]
public sealed class ControllerGenerator : IIncrementalGenerator {
private static readonly DiagnosticDescriptor NotPartialDescriptor = new(
id: "HW001",
title: "Controller must be partial",
messageFormat: "Class '{0}' must be declared 'partial' to receive the generated HelloWorld() method",
category: "Usage",
defaultSeverity: DiagnosticSeverity.Error,
isEnabledByDefault: true);
}
- a warning RS2008 appears, with the url
https://github.com/dotnet/roslyn-analyzers/blob/main/src/Microsoft.CodeAnalysis.Analyzers/ReleaseTrackingAnalyzers.Help.md - URL => 404
Diagnostic Id:
RS2008: Enable analyzer release tracking for the analyzer project containing rule '..'
Expected Behavior:
A working URL
Actual Behavior:
I get a 404 page