the application was unable to start correctly 0xc00007b
I have a win32 application. Trying to run in windows 7 64-bit OS in VisualStudio 2008. Have installed x64 Environment. So when i'm trying to run my project i'm getting this error "the application was unable to start correctly 0xc00007b". I have no link error开发者_JAVA技巧s too. Anyone any suggestions please.
i got the same issue as you. I had a application Win32. When i converted this application Win32 to X64 with Visual Studio 2010, the application x64 is compiled successfully. But when i ran it, it generated the error message: "The application was unable to start correctly (0xc00000b7). Click ok to close the application".
It took few days to fix it by changing many setting of Configuration properties->linker. Especially, i changed the setting of Linker.Manifestfile.Generate Manifest = No (/MANIFEST:NO) It worked to my application. Good luck!
It can be processorArchitecture mismatch in manifest in assemblyIdentity or in dependencyAssembly.
精彩评论