如何在 VS2010 中通过构建事件运行 ResGen
我需要在构建项目之前运行 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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要查看完整的错误,请查看构建输出窗口。大概会说:
ResGen 不在路径环境变量中,因此您可以将其放入或仅使用绝对引用来引用 ResGen:
在我的系统上是这个,但是,您可能需要在您的系统上搜索它。
To see the full error, look at the build output window. It'll probably say:
ResGen is not in the path environment variable, so you can either put it in or just reference ResGen with an absolute reference:
On my system it's this, however, you may have to search for it on your system.