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

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


当前回答

VS 2012已经映射了Shift + F6。得知这一点我很惊讶。

其他回答

对于c#开发:

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

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

有时我必须使用不同于英语的语言来使用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作为标准快捷方式。

在Visual Studio 2017和2019中,Shift + F6适合我。

将快捷方式分配给“Build.”“BuildOnlyProject”命令在VS2008中似乎不起作用。

指定快捷方式为“Build.BuildSelection”。如果您有一个解决方案,从各个项目中打开了多个项目和文件,那么无论您当前编辑的是什么文件,当您使用“Build.BuildSelection”指定的快捷方式时,都将定义将要构建的项目。

当您单击Build菜单选项并在菜单本身上看到键盘快捷键时,您将知道键盘快捷键正在工作。

BTW -分配键盘快捷键时不需要重新启动/重启。