如何在 VS2010 中通过构建事件运行 ResGen

发布于 2024-11-10 01:34:09 字数 250 浏览 0 评论 0原文

我需要在构建项目之前运行 ResGen。 在项目属性对话框中,我设置了 ResGen,但出现错误 Error 524 The command "ResGen /compile tclscript.txt" exited with code 9009.

怎么了?如何在 VS1010 中运行 ResGen?

在此处输入图像描述

I need to run ResGen before building a project.
In project Properties dialog box, I set up the ResGen, but I go the error Error 524 The command "ResGen /compile tclscript.txt" exited with code 9009..

What's wrong? How can I run ResGen in VS1010?

enter image description here

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

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

发布评论

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

评论(1

小帐篷 2024-11-17 01:34:09

要查看完整的错误,请查看构建输出窗口。大概会说:

“resgen.exe”未被识别为内部或外部命令可操作程序或批处理文件。

ResGen 不在路径环境变量中,因此您可以将其放入或仅使用绝对引用来引用 ResGen:

“C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin\resgen.exe”

在我的系统上是这个,但是,您可能需要在您的系统上搜索它。

To see the full error, look at the build output window. It'll probably say:

'resgen.exe' is not recognized as an internal or external command operable program or batch file.

ResGen is not in the path environment variable, so you can either put it in or just reference ResGen with an absolute reference:

"C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin\resgen.exe"

On my system it's this, however, you may have to search for it on your system.

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