开发者

Debugging error in Visual Studio 2008

开发者 https://www.devze.com 2023-02-04 20:30 出处:网络
Debugging error : Error while trying to run project. Could not load file or assembly \'开发者_如何学编程

Debugging error :

Error while trying to run project. Could not load file or assembly '开发者_如何学编程 consoleapp2' or one of its depenencies. The module was expected to contain an assembly manifest.


The "module was expected to contain an assembly manifest" part of the error suggests that you may be trying to link to an unmanaged executable.

This thread suggests the error can be caused by linking to assemblies with the same name.


You're trying to use an assembly that's not there, or is there, but can't load. Could be a couple of things. Be sure to include it and its dependencies into your solution, and make sure none of your files have the same name (regardless of extensions), as dave suggested.

0

精彩评论

暂无评论...
验证码 换一张
取 消