生成自定义编译时警告

问题描述 投票:0回答:1

我正在使用 VS2008,并且想根据属性上的自定义属性创建编译时警告/错误(如果可能的话)。

目前我感兴趣的案例有两个:

[MyAttribute (typeof(MyClass)]

其中

MyClass
必须实现一个接口。目前,我在属性的构造函数中断言了这一点,但是由于堆栈跟踪的性质,这并不容易追踪:

public MyAttribute (Type MyClassType)
{
    System.Diagnostics.Debug.Assert(
        typeof(MyInterface).IsAssignableFrom(MyClassType),
        "Editor must implement interface: " + typeof(MyInterface).Name);
}

我感兴趣的第二种情况是我在属性中定义了一个类型,如果该类型实现了一个接口,那么如果另一个属性不存在,则应该显示警告。

if (MyClass.Implements(SomeInterface) && !Exists(SomeAttibute)) {  Generate Warning }

[MyAttribute(typeof(MyClass)] 
// Comment next line to generate warning
[Foo ("Bar")]

谢谢!

c# custom-attributes postsharp
1个回答
4
投票

您可以使用 PostSharp 来做到这一点。

我曾经做过一次,并解释了如何做这里

© www.soinside.com 2019 - 2024. All rights reserved.