2

我遇到了一个问题,我需要为生成的代码禁用某个规则(在本例中为 CA1819:PropertiesShouldNotReturnArrays)。如果是我自己的代码,我会SuppressMessage在给定的函数中添加一个属性,就是这样。显然,我不能在生成的代码中这样做,因为它会在下一次构建时丢失。

自动生成的代码:

[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.0.30319.1")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true)]
[System.Xml.Serialization.XmlRootAttribute(Namespace="", IsNullable=false)]
public partial class ListViewTable {

    private ListViewTableRow[] itemsField;

    /// <remarks/>
    [System.Xml.Serialization.XmlElementAttribute("Row", Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
    public ListViewTableRow[] Items {
        get {
            return this.itemsField;
        }
        set {
            this.itemsField = value;
        }
    }
}

Items属性生成

 <Message TypeName="PropertiesShouldNotReturnArrays" Category="Microsoft.Performance" CheckId="CA1819" Status="Active" Created="2013-10-29 14:47:04Z" FixCategory="Breaking">
         <Issue Certainty="50" Level="Warning" Path="D:\Projects\FlightPlanning\src\Core\FpesCustomControls" File="AoiSchema.cs" Line="32">Change 'ListViewTable.Items' to return a collection or make it a method.</Issue>
        </Message>
4

1 回答 1

4

为了解决这个问题,可以使用模块级抑制。在项目的任何其他源文件中,可以使用以下语句(必须紧跟在 using 指令之后):

[module: SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays", Justification = "Generated code",
Scope = "member", Target = "FlightPlanning.AoiSchema.ListViewTable.#Items")]

困难在于为目标找到正确的名称,因为它必须是完全限定的字符串。幸运的是,FxCop gui 提供了生成正确消息的帮助:只需右键单击错误,选择“Copy-As”并选择“Module level Suppression”

于 2013-10-29T15:13:35.603 回答