I'm writing a C++ application in Microsoft Visual Studio and have added a VS_VERSION_INFO version table in the resource script so as to include version information (including a version number which is automatically increased at every build through a VS plugin).
I also need to include a manifest file and, as described in Application Manifests, the program's version needs to be included there as well. At the moment, I'm writing it (inside the assemblyIdentity string) into the project's property pages manually.
Is there a way to keep both version numbers automatically synchronized so that I won't have to check at each build (or, at least, at every release build) that they are in fact in sync?