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

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


当前回答

自定义快捷方式取决于您使用的键绑定.....如果你查看你的菜单,它会告诉你是否有一个键绑定。

另一件事我已经习惯了,因为我使用ViEmu,是使用菜单快捷方式。这些操作非常快,并且独立于绑定。

创建项目时,按Alt + B, U

其他回答

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

在Visual Studio选项窗口中,在“键盘”下,寻找“构建”。命令,你可以设置任何你想要的。

有时我必须使用不同于英语的语言来使用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!

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

对于c#开发:

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

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