SeanX
SeanX

Reputation: 1861

How can I tell what version of Delphi was used to create a project

If I have complete source code to a delphi project, how can I tell what version (i.e. Delphi 5, Delphi 7, Delphi 2010 etc) was used to create it, without opening it in Delphi?

I have a number of projects dating back to Delphi 6 era that I would like to categorise. However I don't want to have to open each one in various versions of Delphi to figure out what version to use.

Upvotes: 4

Views: 1331

Answers (1)

Free Consulting
Free Consulting

Reputation: 4412

Delphi

project.dof

[FileVersion]
Version=7.0

BDS

project.dproj

<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <ProjectVersion>
      12.0
    </ProjectVersion>

this is stupid, this site doesnt support TAB in textarea!

Upvotes: 4

Related Questions