I’ve got a solution with about 8 separate projects in it and every time I do a release build of the entire solution I need to make sure that the version string for the binary output of each project is the same. Is there an easy way to synchronize the VS_VERSION_INFO section of a project’s resources file?
Share
I don’t know that this is the way you would want to go, but
.rcfiles allow includes, and you can use#definevalues in the version blockDefine version numbers in a header file
Use them in the
VS_VERSION_INFOblockReference the one header file in all of the projects and change it before each build.