使用 MSBuild 编译 Delphi 2010 项目
我正在尝试使用 msbuild 工具编译 Delpho 2010 项目。不幸的是,当触发命令时,
msbuild Delphi.dproj
它返回错误代码 MSB4040,这意味着项目中没有目标。
到目前为止,机器上仍然安装了RAD Delphi 2010环境。有人知道在没有安装 RAD 环境的情况下编译项目需要哪些文件吗?
提前致谢 丹尼斯
I am trying to compile a Delpho 2010 project using the msbuild tool. Unfortunately when firing the command
msbuild Delphi.dproj
it returns the error code MSB4040, which means that there is no target in the project.
So far a RAD Delphi 2010 environment is still installed on the machine. Does anybody know which files do I need to compile the project without the RAD environment installed?
Thanks in advance
Dennis
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看起来您需要以下文件才能在未安装 RAD Studio 的情况下运行 Delphi 2010 编译过程:
完整的 lib 文件夹,包括 Indy10 文件夹(如果您想使用 Indy)
以及 bin 文件夹中的以下文件
我希望这是最小的一组需要的文件。
Looks like you need following files to get Delphi 2010 compiling process run without RAD Studio installed:
The complete lib folder including the Indy10 folder (if you want to use Indy)
And the following files from the bin folder
I hope this is the minimal set of needed files.
我遇到了类似的问题,发现您必须从项目文件夹而不是
msbuild
的安装文件夹中调用msbuild
。...调用
会抛出一些奇怪的错误,调用
对我来说效果很好。
I had a similar problem and found out that you have to call
msbuild
from the project-folder instead of the installation folder ofmsbuild
....where calling
would throw some strange errors, calling
would work fine for me.