We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcc9f38 commit 650cfa6Copy full SHA for 650cfa6
src/Analyzers/Orchestration/OrchestrationAnalyzer.cs
@@ -333,7 +333,7 @@ void FindInvokedMethods(
333
// We also need to check if the syntax tree is part of the compilation to avoid 'SyntaxTree is not part of the compilation' exception.
334
if (!this.Compilation.ContainsSyntaxTree(calleeSyntax.SyntaxTree))
335
{
336
- // Skip this syntax tree if it's not part of the compilation (e.g., from external assemblies)
+ // Skip this syntax tree if it's not part of the current compilation context (e.g., from referenced projects or source generators)
337
continue;
338
}
339
0 commit comments