c# - "Assembly Manifest" error in visual studio -
c# - "Assembly Manifest" error in visual studio -
i've been facing problem visual studio,
every time debug programme says:
"error while trying run project: cold not load file
or assembly 'console application1' or 1 of it's dependencies. module expected to
contain assembly manifest."
even if project blank this
using system; using system.collections.generic; using system.linq; using system.text; namespace consoleapplication4 { class programme { static void main(string[] args) { } } } i've tried clean solution , reinstall vs2010 nil works.
the error "the module expected contain assembly manifest" refers low level assembly loading issue. mutual language runtime has found file right name, when assembly attempted loaded doesn't contain right manifest (which has info pertaining assembly).
this question contains info on how test , resolve issue.
c# visual-studio-2010 visual-studio
Comments
Post a Comment