Skip to content

Commit 0d7cacb

Browse files
authored
Applying fix for mismatched codefix analyzer - was match for DAPR1001, needs to target DAPR1301 (#1815)
Merging pending fix for Jobs backwards compat Signed-off-by: Whit Waldo <whit.waldo@innovian.net>
1 parent 21fe6b1 commit 0d7cacb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/Dapr.Workflow.Analyzers/WorkflowRegistrationCodeFixProvider.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@
99
namespace Dapr.Workflow.Analyzers;
1010

1111
/// <summary>
12-
/// Provides code fixes for DAPR1001 diagnostic.
12+
/// Provides code fixes for DAPR1301 diagnostic.
1313
/// </summary>
1414
[ExportCodeFixProvider(LanguageNames.CSharp, Name = nameof(WorkflowRegistrationCodeFixProvider))]
1515
public sealed class WorkflowRegistrationCodeFixProvider : CodeFixProvider
1616
{
1717
/// <summary>
1818
/// Gets the diagnostic IDs that this provider can fix.
1919
/// </summary>
20-
public override ImmutableArray<string> FixableDiagnosticIds => ["DAPR1001"];
20+
public override ImmutableArray<string> FixableDiagnosticIds => ["DAPR1301"];
2121

2222
/// <summary>
2323
/// Registers the code fix for the diagnostic.

0 commit comments

Comments
 (0)