I have a c++ project solution which i am building using azure devops pipeline and i want to update the file version everytime my build is sucessful. I have found different extensions but none is working for me.
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "xxxxx"
BEGIN
VALUE "CompanyName", "xxxx"
VALUE "FileDescription", "xxxx"
VALUE "FileVersion", "1.1.0.0"
VALUE "InternalName", "xxxxx"
VALUE "LegalCopyright", "xxxxx"
VALUE "OriginalFilename", "xxxx"
VALUE "ProductName", "xxxxx"
VALUE "ProductVersion", "1.1.0.0"
END
END
this is how my .rc file looks where i set my default version and other things. I am looking for a way on how i can update fileversion and product version eveytime i build.
