Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Xamarin Studio 中,是否可以让编译器将某些警告视为错误?我想提高一些警告的严重性,所以我不得不看到并处理它们。我使用的是 Mac 版本。
如果您的项目是一个普通的 C# 项目,那么您可以在项目属性的 Build/Compiler 页面中选择您希望将哪些警告视为错误。在“附加参数”字段中输入:
-warnaserror:CS0123,CS3210
使警告 CS0123 和 CS3210 被视为错误。