我可以通过 Toolsapi 恢复对 Delphi XE 项目的更改吗?
我是写Delphi XE的专家。专家将构建配置从“调试”切换到“发布”,执行构建并切换回“发布”回到“调试”。
切换构建配置时,只有 .dproj 文件发生了修改。项目状态被修改。
是否可以使用 ToolsAPI 恢复项目文件状态?
I am writing Delphi XE expert. The expert switch the build configuration from "debug" to "release", perform build and switch back to "release" back to "debug".
While switch the build configuration, only the .dproj file has modified. The project state become modified.
Is that possible to revert back the project file state with ToolsAPI?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 ToolsAPI 中的 IOTAProjectOptions40 接口轻松更改项目的修改状态。它包含一个属性“ModifiedState”,只需将其分配给 False 即可将项目指定为“未修改”。
享受 :)
You can change the project's modified state easily using the IOTAProjectOptions40 interface from ToolsAPI. It contains a property "ModifiedState", simply assign this to False to specify the project as "unmodified".
Enjoy :)