谁能推荐一些好的微软Visual Studio插件吗? 免费赠品是首选,但如果物有所值,那也没关系。


当前回答

PowerCommands是一个微软创建的插件,它提供了许多新特性,人们可能认为这些新特性应该首先出现在Visual Studio中。

这些包括

复制/粘贴项目引用! “打开包含文件夹”直接跳转到文件或项目的硬盘位置 自动重组和排序using语句 “此处打开命令提示符”在任何项目文件夹中打开命令提示符。 崩溃的项目

其他回答

代码风格强制器 允许您定义. net代码样式(具有一定程度的灵活性)并强调违规。具有上下文菜单选项,可以更改代码以匹配样式。需要DXCore,从代码样式执行器页面链接。两者都是免费的。

PowerCommands是一个微软创建的插件,它提供了许多新特性,人们可能认为这些新特性应该首先出现在Visual Studio中。

这些包括

复制/粘贴项目引用! “打开包含文件夹”直接跳转到文件或项目的硬盘位置 自动重组和排序using语句 “此处打开命令提示符”在任何项目文件夹中打开命令提示符。 崩溃的项目

+1视觉辅助 我将添加VLH(可视本地历史),它提供了一种本地源代码控制系统。每次保存一个文件,插件都会在本地存储库中添加一个副本。

对于c#开发,我使用:

ReSharper, heavily customized and with a couple dozen custom actions I wrote (not to mention weird but wonderful Live Templates) GhostDoc - very useful for postprocessing of generated code Source Code Outliner P/factor (a set of internally developed code gen tools for VS) - see example here CodeGenUtils - another internal dev for code generation, available on CodePlex SharpWizard - a VS add-in for rapid prototyping. Supports advanced generation of interface support, operators, patterns, metadata. Dependency Analyser - a really nifty tool (another internal dev.) for identifying dependencies between CLR properties. Useful for autogenerating change notifications based on dependency graphs.

除此之外,我还为特别困难的场景设计了几个DSL图形设计人员——例如,我有一个用于复杂多线程操作的DSL,它是使用Pulse & Wait实现的。

以下是我的清单:

Microsoft StyleCop(代码分析) JetBrains dotTrace(应用程序分析) 类型隔离器(单元测试中的模拟) Roland Weigelt的GhostDoc(代码文档)