Tagged Questions
4
votes
3answers
3k views
Debugging assembly load issue
I have a very wierd problem happening to me during unit testing (MSTest in Visual Studio - .NET 3.5 SP1):
I click "Run All Tests in solution"
All tests passes, except for one particular class, where ...
3
votes
1answer
122 views
Odd behavior when attempting to get a Type by AssemblyQualifiedName at runtime
I'm getting a FileLoadException when attempting to deserialize a type using the NetDataContractSerializer:
The given assembly name or codebase was invalid. (Exception from HRESULT: 0x80131047)
...
2
votes
2answers
100 views
Assembly Version numbers, signed assemblies Why do I get a FileLoadExceptions
My Problem:
I have a signed assembly A.dll that it versioned as 1.0.0.0
I have another assembly (lets say B.dll) that references A.dll.
Once both assemblies both assemblies load fine without any ...
2
votes
1answer
792 views
The located assembly's manifest definition does not match the assembly reference
I get the following error:
System.IO.FileLoadException: The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)
It do not give me ...
2
votes
4answers
2k views
System.IO.FileLoadException
I have got this error when using Enterprise Library 3.1 May 2007 version. We are developing a product and have a common lib directory beneath the Subversion Trunk directory
<>\Trunk\Lib\ into ...
0
votes
4answers
219 views
Unhandled FileLoadException that I think I'm handling
I have a thread that get I initialize like this:
Utility.Log("1");
myThread = new Thread(new ThreadStart(delegate
{
Utility.Log("2");
and then the rest of the thread's execution. The weird ...