To understand the problem, I think it is important to realize that there are four version numbers involved:
- (A) The version of the VC header files to which the .exe is compiled.
- (B) The version of the manifest file that is embedded in the resources section of that .exe. By default, this manifest file is automatically generated by Visual Studio.
- (C) The version of the VC .DLLs (part of the side-by-side assembly) you copy in the same directory as the .exe.
- (D) The version of the VC manifest files (part of the side-by-side assembly) you copy in the same directory as the .exe.
There are two versions of the VC 2008 DLL's in the running:
- v1: 9.0.21022.8
- v2: 9.0.30729.4148
For clarity, I'll use the v1/v2 notation. The following table shows a number of possible situations:
Situation | .exe (A) | embedded manifest (B) | VC DLLs (C) | VC manifests (D)
-----------------------------------------------------------------------------
1 | v2 | v1 | v1 | v1
2 | v2 | v1 | v2 | v2
3 | v2 | v1 | v2 | v1
4 | v2 | v2 | v2 | v2
The results of these situations when running the .exe on a clean Vista SP1 installation are:
Situation 1: a popup is shown, saying: "The procedure entry point XYZXYZ could not be located in the dynamic link library".
Situation 2: nothing seems to happen when running the .exe, but the following event is logged in Windows' "Event Viewer / Application log":
Activation context generation failed for "C:\Path\file.exe".Error in manifest or policy file "C:\Path\Microsoft.VC90.CRT.MANIFEST" on line 4. Component identity found in manifest does not match the identity of the component requested. Reference is Microsoft.VC90.CRT,processorArchitecture="x86",publicKeyToken="1fc8b3b9a1e18e3b",type="win32",version="9.0.21022.8". Definition is Microsoft
Situation 3: everything seems to work fine. This is remicles2's solution.
Situation 4: this is how it should be done. Regrettably, as Roel indicates, it can be rather hard to implement.
Now, my situation (and I think it is the same as crashmstr's) is nr 1. The problem is that Visual Studio for one reason or another generates client code (A) for v2, but for one reason or another, generates a v1 manifest file (B). I have no idea where version (A) can be configured.
Note that this whole explanation is still in the context of private assemblies.
Update: finally I start to understand what is going on. Apparently, Visual Studio generates client code (A) for v2 by default, contrary to what I've read on some Microsoft blogs. The _BIND_TO_CURRENT_VCLIBS_VERSION flag only selects the version in the generated manifest file (B), but this version will be ignored when running the application.
Conclusion
An .exe that is compiled by Visual Studio 2008 links to the newest versions of the VC90 DLLs by default. You can use the _BIND_TO_CURRENT_VCLIBS_VERSION flag to control which version of the VC90 libraries will be generated in the manifest file. This indeed avoids situation 2 where you get the error message "manifest does not match the identity of the component requested". It also explains why situation 3 works fine, as even without the _BIND_TO_CURRENT_VCLIBS_VERSION flag the application is linked to the newest versions of the VC DLLs.
The situation is even weirder with public side-by-side assemblies, where vcredist was run, putting the VC 9.0 DLLs in the Windows SxS directory. Even if the .exe's manifest file states that the old versions of the DLLs should be used (this is the case when the _BIND_TO_CURRENT_VCLIBS_VERSION flag is not set), Windows ignores this version number by default! Instead, Windows will use a newer version if present on the system, except when an "application configuration file" is used.
Am I the only one who thinks this is confusing?
So in summary:
- For private assemblies, use the _BIND_TO_CURRENT_VCLIBS_VERSION flag in the .exe's project and all dependent .lib projects.
- For public assemblies, this is not required, as Windows will automatically select the correct version of the .DLLs from the SxS directory.