我知道Ctrl + Shift + B启动解决方案构建,但我想要一个快捷方式,只是构建当前项目。自定义快捷方式是我唯一的选择吗?

编辑:看起来自定义快捷键是我唯一的选择,因为Shift + F6不适合我。


当前回答

对于Visual Studio 2017社区,您可以使用Alt+b然后按u来构建当前项目。

详细信息:ALT切换到主菜单-> choose b for build -> u从下拉列表中选择build your_project_name选项。

其他回答

你可以使用主菜单中已经建立的快捷键,用Alt键导航:

至少对于VS2013:

Alt + B, B -> Build Solution
Alt + B, R -> Rebuild Solution
Alt + B, U -> Build current project
Alt + B, E -> Rebuild current project

由于某些原因,安装Resharper后我无法获得全局快捷方式工作(尝试了几次!!),但只要你想做的是在主菜单上,总有一个Alt +“Letter1”,“Letter2”组合来触发任何你想要的动作:-)

对于c#开发:

F6或Shift+Ctrl+B -构建解决方案中的所有项目。

Shift+F6 -生成所选项目及其依赖项。

Visual Studio 2015/17

ALT + B + E

ALT + B =打开构建菜单

E =重建当前项目

有时我必须使用不同于英语的语言来使用Visual Studio,并且使用Alt和组合键的导航也不同。如果有人有同样的情况,我发现创建一个键盘快捷键来保持语言之间的一致性更方便。我按照https://evanjpalmer.wordpress.com/2013/08/20/build-selection-short-cut-for-visual-studio/上的说明创建了键盘快捷键:

To set this up: Tools -> Options -> Environment -> Keyboard (Spanish: Herramientas -> Opciones -> Entorno -> Teclado) Put the cursor in “Press Keyboard Shortcut Keys” and shift CTRL+SHIFT+B In Show Commands Containing, type: Build.BuildSelection (Spanish: Compilar.Compilarselección) Select Build.BuildSelection from the drop down list and hit apply Put the cursor in “Press Keyboard Shortcut Keys” and shift CTRL+ALT+SHIFT+B In Show Commands Containing, type: Build.BuildSolution Select Build.BuildSolutionfrom the drop down list and hit apply ??? PROFIT!

用于c#开发。工具—>选项。选择键盘,选择额外的键盘映射方案到Visual c# 2005。这个映射使用F6作为标准快捷方式。