是否有 Visual Studio 选项或附加组件可以添加“在此处打开资源管理器”当我右键单击解决方案文件夹中的项目时?
当我右键单击解决方案资源管理器中的项目时,我希望能够选择一个选项来打开一个新窗口“资源管理器”,其中列出了构建目录的内容。我会满足于项目目录...但是根据活动构建配置让我进入 /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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有几件事可能足够接近:
将“外部工具”添加到“工具”菜单中。在“工具 | 外部工具...”对话框中:
%systemroot%\system32\cmd.exe
/k "c:\Program Files (x86)\Microsoft Visual Studio 8\VC\vcvarsall.bat" x86
$(TargetDir)
//(或任何适当的宏)我的 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:
%systemroot%\system32\cmd.exe
/k "c:\Program Files (x86)\Microsoft Visual Studio 8\VC\vcvarsall.bat" x86
$(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.
不确定这是否是您想要的,但“打开文件”图标将在项目文件夹中弹出一个“打开文件”对话框。从那里,您可以右键单击“发布”或“调试”文件夹以在资源管理器中打开它们(并取消对话框)。
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).