Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
1k views

Updating a DLL in a Production ASP.NET Web Site bin folder

I want to update a class library (a single DLL file) in a production web application. This web app is pre-compiled (published). I read an answer on StackOverflow (sorry, can't seem to find it ...
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
117 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
91 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
5answers
288 views

Updating the application with a new .net dll gives me FileLoadException?

I have a .net 3.5 application with many dlls, I tried to rebuild specific dll without building the whole application, but after replacing the old one with the new, the application throws exception as ...
2
votes
1answer
670 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 ...
1
vote
3answers
205 views

System.IO.FileLoadException when running C# program on a different computer

I am currently working on a C# WPF project which makes use of the MySQL.Data and System.Data.Sqlite dll as well as a couple of others. The project is a .Net 4 project which works without problems on ...
1
vote
1answer
309 views

How do I fix the CRT dependency causing a FileLoadException with my vc2005 mixed-mode DLL on XP?

I have a mixed-mode DLL built in visual studio 2005. In dependency walker, my DLL is showing a dependency of the following CRT Dlls. Note this is on my Windows 7 developement machine. ...
1
vote
1answer
183 views

FileLoadException with .NET 4

I'm trying to build an application using the OpenNURBS toolkit (see here) and I'm getting a FileLoadException with the following message while debugging: Mixed mode assembly is built against ...
1
vote
1answer
2k views

Why do I get System.IO.FileLoadException: Could not load file or assembly, about once a week on my ASP.Net Website?

I have a rather simple internal ASP.Net Website that has issues loading the Microsoft.Practices.EnterpriseLibrary.Data dll about once a week. Here is the Exception message: ...
1
vote
2answers
1k views

SharpSVN and C# Problem

When trying to add SharpSVN to my C# project, compiling with SharpSVN related calls gives me this error: FileLoadException was Unhandled Mixed mode assembly is built against version 'v2.0.50727' of ...
0
votes
1answer
18 views

FileLoadException when using Microsoft Unity configuration

A FileLoadException when using Unity generally means that a type has been configured for that cannot be loaded because the assembly has not been reference by the project. How can I find out what type ...
0
votes
0answers
267 views

FileLoadException when loading references

I'm using Spring.Net to dynamic load my object graph. 10 .exe consoles will start on the same time and via Spring.Net they will instantiate the same libraries. The consoles have no references to the ...
0
votes
1answer
411 views

dll not loading- FileLoadException

The problem I am having is that I am getting a System.IO.FileLoadException when trying to load the RWLock.dll on a test box and Windows xp machines. This is the exception that is thrown when it ...
0
votes
4answers
198 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 ...
0
votes
1answer
759 views

Assembly FileLoadException (Access is denied) after period of time

I have a web application that works fine for a while (a few days) and then starts throwing FileLoadException's when instantiating a class that references an external dll. I'm not explicitly loading ...
0
votes
4answers
307 views

FileLoadException with new version of dll

I have an application that needs to work with two versions of a dll. I figured I would just compile the app once, copy the exe to two directories, and then copy the two versions of the dlls to each ...