We recently upgraded from Delphi 2006 to Delphi 2007, and the project files changed from .bdsproj to .dproj .
My research so far shows that an existing project must be open to create .dproj in the D2007 IDE. We have more than 400 .bdsproj files, so doing it manually is not very convenient.
The process I came across was to open all projects from the command line using:
find . -name *.bdsproj -exec bds.exe -pDelphi -ns -m "{}" ";"
This is not ideal, because it is rather slow (wait until BDS boots up, wait for compilation, wait until BDS closes, ...).
Is there an efficient way to convert multiple .bdsproj to .dproj ?
Note. βFoundβ on the command line above is a UNIX-like search (for example, MKS or GNU) that searches for files, not a Windows search that searches for text in files.
delphi delphi-2007
Wilecau
source share