Change dproj file and product version
December 4, 2015
Author: Rubén Pozo
If you have a project with automatic builds is posible that you want change the File/Product version of the file.
Using the code below you can create a console application for to modify these values easily.
program ChangeVersion;
{$APPTYPE CONSOLE}
{$R *.res}
uses
System.SysUtils,
UnParseDproj in 'UnParseDproj.pas';
procedure ChangeDprojVersion;
var
DprojParser…