Is there a standard keyboard shortcut to build the current project in Visual Studio?

做~自己de王妃 提交于 2019-12-02 13:54:40

Assigning the shortcut to "Build.BuildOnlyProject" command doesn't seem to work in VS2008.

Assign the shortcut to "Build.BuildSelection". If you have a solution with several projects and files open from the various projects, whatever file you are currently editing will define the project that will be built when you use the assigned shortcut for "Build.BuildSelection".

You'll know the keyboard shortcut is working when you click the Build menu option and you see the keyboard shortcut on the menu itself.

btw - a restart/reboot is not required when assigning keyboard shortcuts.

custom shortcut depending on what keybindings you are using.....if you look in your menu it will tell you if you have a keybinding.

The other thing I have got used to, because I make use of ViEmu, is use the menu shortcuts. Which are actually quite quick to do, and are independent of bindings.

  • So to build your project you go Alt + B, U

You can use the shortcuts already established in the main menu that are navigated with the Alt key:

At least for VS2013:

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

For some reason after installing Resharper I couldn't get a global shortcut to work (tried several times!!!), but as long as what you want to do is on the main menu, there is always an Alt + "Letter1", "Letter2" combination to trigger whatever action you'd like :-)

Alexandr

For C# development:

F6 or Shift+Ctrl+B - Builds all the projects in the solution.

Shift+F6 - Builds the selected project and its dependencies.

Visual Studio 2015/17

ALT + B + E

ALT + B = Open Build Menu

E = Rebuild Current Project

Saar

for C# development. Tools -> Options. Select Keyboard, select additional keyboard mapping scheme to "Visual C# 2005". This mapping has F6 as standard shortcut.

Don Rolling

VS 2012 has Shift + F6 already mapped for this. I was surprised to learn this.

Michael M

For Visual Studio 2017 community, you can use Alt+b then press u to build your current project.

Details: ALT Switch to the main menu -> choose b for build -> u choose the option of build your_project_name from the drop list.

In Visual Studio 2017 and 2019, Shift + F6 works for me.

Raptor

In Visual Studio 2015, Alt + B, H will build your solution and publish it.

In the Visual Studio options window, under "Keyboard", look for the "Build.BuildOnlyProject" command and you can set whatever you want.

press (Alt + B + J + B) these key combinations to build only current selected project of the solution (VS 2010). It selects "Build" option from toolbar (Alt + B key ) , then goto "project only" (J key ) and then "Build Only XXX" project (B key).

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!