在 Visual Studio 2008 中重建解决方案的快捷方式

发布于 2024-12-03 23:26:42 字数 125 浏览 1 评论 0原文

在 Visual Studio 2008 中构建解决方案的快捷方式是 Ctrl + Shift + B

我想知道重建解决方案的默认快捷方式。

The shortcut to Build a solution in Visual Studio 2008 is Ctrl + Shift + B.

I would like to know the default shortcut to Rebuild the solution.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

时光暖心i 2024-12-10 23:26:42

命令 Build.RebuildSolution 未绑定到标准配置文件中的任何组合键。但是,您可以使用以下技巧来调用它

Alt + BR

这将通过 Alt + B 导航到构建菜单,然后 < kbd>R 将选择重建选项

The command Build.RebuildSolution is not bound to any key combination in the standard profiles. However you can use the following trick to invoke it

Alt + B, R

This will navigate to the build menu via Alt + B and then R will select the Rebuild option

玩物 2024-12-10 23:26:42

另一种方法是执行此操作:

工具>>选项>>环境>>键盘。

找到由“显示包含的命令”标签装饰的文本框。

类型>> “构建.重建”
选择>>对于您想要的重建类型,您有两个选项可供选择。

找到由“按快捷键”标签装饰的文本框。

点击>> “键盘上的一个键”,即我使用 F6 进行解决方案范围的重建。
点击>>分配按钮。
单击>>确定并退出。

最后加载一个测试项目来测试快捷方式。

Another way is to do this:

Tools >> Options >> Environment >> Keyboard.

Locate the textbox decorated by the 'Show commands Containing' lable.

Type >> 'Build.Rebuild'
Select >> the rebuild type you want, you have two options to choose from.

Locate the textbox decorated by the 'Press shortcut Keys' lable.

Hit >> 'a key on your keyboard', i.e I used F6 for solution wide rebuild.
Click >> the assign button.
CLick >> O.K and to exit.

Finally load up a test project to test out the short cut.

清醇 2024-12-10 23:26:42

在我的安装中,没有默认值。我配置为 C#,其他配置可能会默认定义它,但我不这么认为。您可以通过“工具”->“查看是否有分配的键”。自定义,单击底部的“键盘...”按钮,然后在“显示包含的命令”编辑框中键入“Build.RebuildSolution”。如果分配了一个键,它将显示在对话框的底部。

In my installation, there is no default. I am configured for C#, it's possible other configurations will define this by default, but I don't think so. You can see if there is a key assigned by going to Tools -> Customize, clicking the Keyboard... button at the bottom and typing "Build.RebuildSolution" in the Show Commands Containing edit box. If there is a key assigned, it will show up at the bottom of the dialog.

黎夕旧梦 2024-12-10 23:26:42

重建解决方案没有默认快捷方式。

除了其他答案中提到的方法之外,您还可以通过

  • 创建 Visual Studio 宏,用于重建解决方案并为宏分配键盘快捷键。这种方法的优点是你不再受 Visual Studio 中提供的命令的限制。您可以创建自定义操作,例如重建解决方案、启动应用程序进程并将 Visual Studio 调试器附加到该进程。所有这一切都通过一个键盘快捷键实现!

There is no default shortcut to Rebuild Solution.

In addition to the ways mentioned in other answers you can perform the rebuild by

  • Create a Visual Studio Macro that rebuilds the solution and assign a keyboard shortcut to macro. The advantage of this approach is that you are no longer restricted by the commands provided in visual studio. You can create a custom operation like rebuild the solution, launch the application process and attach the visual studio debugger to the process. All this in a single keyboard shortcut!
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文