c#

位置:IT落伍者 >> c# >> 浏览文章

提升C#和Visual Studio生产率的10个提示(2)


发布日期:2024年04月28日
 
提升C#和Visual Studio生产率的10个提示

它会为你生成如下的属性

向VS添加命令

安装PowerCommands for Visual Studio 以添加几个提高生产率的命令例如

Close all documents 关闭所有文档

Copy and paste a class (automatically renames) 拷贝和粘贴一个类(自动重命名)

Remove and sort using statements projectwide

Copy and paste references (including a project reference) 拷贝和粘贴引用(包括项目引用)

安装以添加几个提高TFS生产率的命令例如

Find in source control

Open source folder in Windows Explorer

Work item templates (can be used to set values on multiple work items at once)

添加自定义命令例如添加Reflector它在当前项目中自动打开

Select Tools > External Tools

Click Add

Name it Reflector and browse to the executable

Enter $(TargetPath) for the Arguments

使用项目配置加快编译

在一次编程中你可能编译数十次因此不要使能那些不是必不可少的东西例如代码分析和XML文档在Debug配置下开发只是在checkin之前切换到Release配置以运行代码分析和生成XML文档在一个大的解决方案中这会节省不少时间

下面的代码展示了在Debug配置中禁止代码分析

上一篇:.NET Framework轻松处理XML数据

下一篇:Java与C#相似之处的对比