vote up 0 vote down star

I recently upgraded to Windows 7 from Vista and since switching, I can no longer use nunit-gui.exe to run my tests. Every time I do, I get the following error:

System.IO.FileLoadException: Could not load life or assembly 'nunit.framework. Version=2.4.1.0 Culture=neutral, PublicKeyToken=96d09a1eb7f44a77' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)

I've tried install versions 2.5.2 (the newest version), 2.5.1 (the version we are using in our solution), and 2.4.1 (the version it claims to be missing). I've tried having them installed one at a time and concurrently. Neither works and I always receive the same error.

Anybody have any ideas?

flag
The assumptions below (that there was an assembly mismatch in the project file) was true, but removing and re-adding the reference did not fix the issue. Also, SpecificVersion was already set to false. – HawkeyeJoeS Nov 9 at 19:00

2 Answers

vote up 0 vote down
The located assembly's manifest definition does not match the assembly reference

I'd uninstall all versions, then install just one to C:\Program Files (x86)\NUnit. I think there's a path mishap here.

link|flag
I am suspecting a version-specific reference in your dotNET project. Make it ignore version info and rebuild. – GregC Nov 2 at 21:41
vote up 0 vote down

An assembly mismatch is probably occurring in your project file. You can either remove and re-add the reference to nunit, or mark the reference to ignore the version.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.