是否有 Visual Studio 选项或附加组件可以添加“在此处打开资源管理器”当我右键单击解决方案文件夹中的项目时?

发布于 2025-01-06 18:34:20 字数 242 浏览 1 评论 0原文

当我右键单击解决方案资源管理器中的项目时,我希望能够选择一个选项来打开一个新窗口“资源管理器”,其中列出了构建目录的内容。我会满足于项目目录...但是根据活动构建配置让我进入 /bin/x86/Debug 与 /bin/x86/Release 将是主要的好处。

我发现自己经常出于各种原因手动导航到该文件夹​​ - 通常是在没有安装程序/cmd 行构建脚本等的实用程序应用程序上,

我目前使用 2005 Express。但是,我愿意升级。

When I right click on a project in the solution explorer I'd like to be able to select an option that would open a new windows "Explorer" that lists the contents of the build directory. I'd settle for the project directory... but getting me into /bin/x86/Debug vs /bin/x86/Release based on the active build configuration would be major bonus.

I find myself manually navigating to that folder fairly often for various reasons - usually on Utility applications which don't have installers / cmd line build scripts etc

I currently use 2005 express. But, am open to upgrading.

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

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

发布评论

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

评论(2

↘人皮目录ツ 2025-01-13 18:34:20

有几件事可能足够接近:

  • 将“外部工具”添加到“工具”菜单中。在“工具 | 外部工具...”对话框中:

    • 点击“添加”并为新工具指定您想要的任何名称
    • 命令:%systemroot%\system32\cmd.exe
    • 参数:/k "c:\Program Files (x86)\Microsoft Visual Studio 8\VC\vcvarsall.bat" x86
    • 初始目录:$(TargetDir) //(或任何适当的宏)
  • < p>右键单击在打开的文档选项卡上,选择“打开包含文件夹”

我的 VS 2005 标准 IDE 已经有一个“Visual Studio 2005 命令提示符”工具,但它登陆了命令窗口在VC安装目录下。如上所述更改“参数”和“初始目录”字段使其进入项目的目标目录。

缺点是它们不会出现在项目的正确菜单中,并且它们可能不会让您准确地到达您想要的位置,但它们应该让您非常接近。

A couple things that might be close enough:

  • add an "external tool" to the Tools menu. In the "Tools | External Tools..." dialog:

    • Click "Add" and give the new tool whatever name you want
    • Command: %systemroot%\system32\cmd.exe
    • Argument: /k "c:\Program Files (x86)\Microsoft Visual Studio 8\VC\vcvarsall.bat" x86
    • Initial directory: $(TargetDir) // (or whatever appropriate macro)
  • Right click on a open document's tab and select "Open containing folder"

My VS 2005 Standard IDE already had a "Visual Studio 2005 Command Prompt" tool, but it landed the command window in the VC installation directory. Changing the "Argument" and "Initial directory" fields as above made it land in the project's target directory.

The drawbacks are they don't show up in the right menu for the project and they might not land you exactly where you want, but they should land you pretty close.

趴在窗边数星星i 2025-01-13 18:34:20

不确定这是否是您想要的,但“打开文件”图标将在项目文件夹中弹出一个“打开文件”对话框。从那里,您可以右键单击“发布”或“调试”文件夹以在资源管理器中打开它们(并取消对话框)。

No sure this is what you want but the "Open file" icon will pop up a FileOpen dialog in the project folder. From there you can right click the Release or Debug folders to open them in an Explorer (and Cancel the dialog).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文