Microsoft Visual Express 10 中没有 devenv 文件
我正在尝试在 Windows XP 上构建 google dart 项目。
按照安装文档,我遇到了一个问题。 python脚本需要调用devenv。问题是,对于 Visual 10 Express,我没有这个 exe,它应该在
C:\\Program Files (x86)\\Microsoft Visual Studio 10.0\\Common7\\IDE
哪里可以得到这个 exe?我需要下载 Visual 10 的早期版本吗?
i am trying to build the google dart project on windows XP.
following the installation documentation, i ran accross a problem. The python script needs to call devenv. The problem is that with Visual 10 Express, i don't have this exe which should be in
C:\\Program Files (x86)\\Microsoft Visual Studio 10.0\\Common7\\IDE
Where can i get this exe ? Do i need to download a prior version that visual 10 ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我遇到了一个问题,需要我编辑不存在的
devenv.exe.config
在 VCExpress 中并在 answer 中了解到 exe 的名称(当然它是匹配的).config
文件)取决于 Visual Studio 的版本。在 VS 的“完整”版本(例如 VSPro)中,您要查找的可执行文件确实是
devenv.exe
,但在 Express 中它是vcexpress.exe
(或者您的Express 版本(例如 Visual Basic Express 的 vbexpress.exe 等),因此并不是 Express 不包含 devenv.exe,而是它被称为其他名称,并且可能不是下面的所有命令行选项devenv.exe
将可用或执行与v*express.exe
相同的操作。I had an issue that needed me to edit
devenv.exe.config
which doesn't exist in VCExpress and learned in the answer that the name of the exe (and of course it's matching.config
file) depends on the version of Visual Studio.In the "complete" versions of VS such as VSPro the executable you're looking for is indeed
devenv.exe
but in Express it'svcexpress.exe
(or the equivalent for your Express version eg vbexpress.exe for Visual Basic Express etc) so it's not so much that Express doesn't includedevenv.exe
but that it's called something else and presumably not all command line options underdevenv.exe
will be available or perform the same asv*express.exe
.您尝试过 MSBuild 吗? MSDN 现在建议使用 MSBuild 而不是 devenv。 MSBuild 似乎免费附带 VC Express。
要使用 MSBuild 通过配置 Debug|Win32 构建解决方案:
更详细的 MSBuild 用法可在MSDN。
Have you ever tried MSBuild? MSDN now recommands using MSBuild instead of devenv. MSBuild seems to come along with VC Express at no cost.
To build a solution with configuration Debug|Win32 using MSBuild:
More detailed MSBuild usage is available on MSDN.
devenv.exe 是 Visual Studio Shell 可执行文件。只需点击“开始”菜单链接即可访问 Express 版本。它应该指向您的 devenv.exe。
devenv.exe is the Visual Studio Shell executable. Just follow your Start Menu link to your Express edition. It should point to your devenv.exe.
如果您创建包含内容的 devenv.bat,则依赖于 devenv 的脚本可能会起作用
Scripts depending on devenv are likely to work if you create a devenv.bat with content