Delphi 项目版本

URL:

http://stackoverflow.com/questions/9757886/how-do-i-determine-the-delphi-version-which-created-a-delphi-project

http://stackoverflow.com/questions/4394136/how-can-i-tell-what-version-of-delphi-was-used-to-create-a-project

Delphi 的每个工程都有一个 *.dproj 文件,实际上为一个 xml 文件。

通过该文件的 ProjectVersion 可以知道其工程的建立所用 IDE 的版本。

----------------------------------------------------------------------------

  Delphi 10 Seattle:    <ProjectVersion>18.1</ProjectVersion>

----------------------------------------------------------------------------

原文地址:https://www.cnblogs.com/BSor/p/6351349.html