I am building a Win32 C++ project on VS2008 SP1. In created .manifest file I see
<assemblyIdentity
type='win32'
name='Microsoft.VC90.DebugCRT'
version='9.0.21022.8'
processorArchitecture='x86'
开发者_运维技巧 publicKeyToken='1fc8b3b9a1e18e3b' />
How can I get it compiled against 9.0.30729?
Add
#define _CRT_ASSEMBLY_VERSION "9.0.30729.1"
to your project. Preverably to the stdafx.h
.
精彩评论