gpt4 book ai didi

c# - 通知 Visual Studio 通过反射调用的代码

转载 作者:行者123 更新时间:2023-12-02 11:17:04 31 4
gpt4 key购买 nike

上下文:

我工作的环境有很多“神奇”的方法和字段,它们是通过外部代码的反射来调用或设置的。有些东西可能有一个属性,这意味着它将被设置为非默认值,但 Visual Studio 仍然看不到该方面,并且“有帮助地”提供警告。

由于这些是使用属性和专门命名的方法来处理的,所以理想情况下,我想向 VS 提供附加信息,以便它知道它被调用或设置,而无需我手动抑制每个警告。

我已经考虑编写一个 Roslyn 分析器,但据我所知,我只能添加额外的警告,而不能修改现有的警告/引用计数。

示例:

[MyCmpGet]私有(private)组件comp

“字段永远不会被分配,并且其默认值始终为 null”

但是,由于注释,该字段是通过反射分配的。

[HarmonyPatch]
class Patch
{
static void Postfix() {}
}

“私有(private)成员(member)未使用”
“0 条引用文献”

但是,由于类上的注释以及具有特定名称的方法,该方法是通过反射调用的。

问题:

让 Visual Studio 知道正在设置这些字段以及正在引用这些方法的最佳方式是什么?最好不需要我对每一项执行手动操作,也不需要在示例代码中添加任何其他内容。

最佳答案

您可以实现一个DiagnosticSuppressor分析器。默认分析器模板应生成一个 nuget 包,您可以将其包含在要抑制此警告的所有项目中。

这是诊断抑制器最基本形式的示例:

using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.Diagnostics;
using System.Collections.Immutable;

[DiagnosticAnalyzer(LanguageNames.CSharp)]
public sealed class DiagnosticSuppressorForAssignmentWarnings : DiagnosticSuppressor {
public SuppressionDescriptor SuppressionDescriptor => new SuppressionDescriptor(
id: "SPR0001", // Id for this analyzer suppressor (You should come up with a unique name for yours)
suppressedDiagnosticId: "CS0649", // The warning that we may want to suppress
justification: "This is ok because it is assigned via reflection");

public override ImmutableArray<SuppressionDescriptor> SupportedSuppressions
// You can pass in multiple suppression descriptors to have this suppress multiple types of warnings
=> ImmutableArray.Create(SuppressionDescriptor);

public override void ReportSuppressions(SuppressionAnalysisContext context) {
foreach (var diagnostic in context.ReportedDiagnostics) {
// The parsed syntax tree of the file that this warning comes from
var syntaxTree = diagnostic.Location.SourceTree;
// The syntax Node that the warning was reported for
var nodeWithWarning = syntaxTree.GetRoot().FindNode(diagnostic.Location.SourceSpan);
// A semantic model that can answer questions like 'does this attribute inherit from this type' etc.
var semanticModel = context.GetSemanticModel(syntaxTree);

// You can do additional analysis of the source to ensure this is something
// that is semantically safe to suppress (like check for an attribute)

context.ReportSuppression(Suppression.Create(SuppressionDescriptor, diagnostic));
}
}
}

有关如何编写分析器的更多文档,我将查看 this博客文章或 this文档

关于c# - 通知 Visual Studio 通过反射调用的代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60589959/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com