发布于 2016-01-28 00:32:08 | 205 次阅读 | 评论: 0 | 来源: 网友投递
Microsoft Visual Studio Windows平台集成开发环境
Microsoft Visual Studio(简称VS)是美国微软公司的开发工具包系列产品。VS是一个基本完整的开发工具集,它包括了整个软件生命周期中所需要的大部分工具,如UML工具、代码管控工具、集成开发环境(IDE)等等。所写的目标代码适用于微软支持的所有平台,包括Microsoft Windows、Windows Mobile、Windows CE、.NET Framework、.NET Compact Framework和Microsoft Silverlight 及Windows Phone。
SonarLint for Visual Studio 1.7 发布,更新如下:
Overriding members should do more than simply call the same member in the base class
“string.Format()” should not be called without placeholders
Example from project Akka:
“ToString()” calls should not be redundant
Example from project Akka:
Unused private types or members should be removed
Example from project Nancy:
Moreover, the two following rules have been highly tuned:
“IDisposables” should be disposed
This rule has been totally reworked, and now only supports a fixed set of “IDisposable” types and factory methods. Such as this issue, when the local variable “face” is not disposed in project Nancy:
Unused method parameters should be removed
This rule has been fixed to not report on methods that are assigned to delegates. And a code fix is also provided.
Example of unused parameter from project Akka:
更多内容请看: release note 或访问 SonarLint for Visual Studio web site.