2

我有一个从服务引用生成的接口。该界面缺少 XML 注释,因此我收到警告(在我的 VS 配置中作为错误处理)。如何从警告中排除此接口?

4

1 回答 1

1

看看这个 MS 论坛对这个问题的讨论:

http://social.msdn.microsoft.com/Forums/en-US/9bbad4cc-e229-49da-a6f7-3cdf470ac53a/compiler-warning-for-missing-xml-comment-when-i-have-generated-code?论坛=开发文档

总结(阅读:复制-n-粘贴)线程中的一些可能的解决方案:

如果您不打算经常或根本不打算重新生成此文件,您可以随时打开 reference.cs 文件并自己将#pragma 添加到文件的顶部和底部:...edit the Reference.cs file itself and add "#pragma warning disable 1591" at the top and "#pragma warning restore 1591" at the bottom.

于 2013-10-31T12:54:48.840 回答