C# Express 2010 を使用して独自の stylecop カスタム ルールを作成しましたが、.dll ファイルを stylecop フォルダーに配置すると、stylecop 設定リストにカスタム ルールが表示されません。私のコーディングの問題なのか、それともファイルを置き忘れたのでしょうか? 以下は私のxmlコードです
<?xml version="1.0" encoding="utf-8" ?>
<SourceAnalyzer Name="My Custom Rule3">
<Description>
Custom rule for demo purposes.
</Description>
<Rules>
<Rule Name="AvoidUsingAInClassNames" CheckId="CR0001">
<Context>Do not use 'M' letter in {0} names.</Context>
<Description>Fires when 'a' letter is used in class name.</Description>
</Rule>
</Rules>
</SourceAnalyzer>