これはコメントでしたが、制限に合わせることができませんでした:
Reference.cs と WebService のインポートだけを無効にしたいと思います。実際、マクロを使用してファイルに対して実行しています。ファイルを開いてこのマクロを実行するだけです(VS2010でテスト済み):
Sub PragmaWarningDisableForOpenFile()
DTE.ActiveDocument.Selection.StartOfDocument()
DTE.ActiveDocument.Selection.NewLine()
DTE.ActiveDocument.Selection.LineUp()
DTE.ActiveDocument.Selection.Insert("#pragma warning disable 1591")
DTE.ActiveDocument.Selection.EndOfDocument()
DTE.ActiveDocument.Selection.NewLine()
DTE.ActiveDocument.Selection.Insert("#pragma warning restore 1591")
DTE.ActiveDocument.Save()
End Sub
これを自動的に行う方法は本当にありませんか?自動生成されたコードがファイルをオーバーライドするたびに、これをやり直す必要があります。