We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b925dc6 commit 9595b33Copy full SHA for 9595b33
1 file changed
System.IO.Abstractions.Analyzers/CodeFixes/FileCodeFix.cs
@@ -23,6 +23,7 @@ public sealed override async Task RegisterCodeFixesAsync(CodeFixContext context)
23
var root = await context.Document.GetSyntaxRootAsync(context.CancellationToken).ConfigureAwait(false);
24
var invocation = root.FindNode(context.Span).FirstAncestorOrSelf<InvocationExpressionSyntax>();
25
26
+ // TODO: Add check contains private property with Type IFileSystem
27
context.RegisterCodeFix(new FileSystemInvokeCodeAction(Title,
28
context.Document,
29
invocation),
0 commit comments