Tagged Questions
The assembly-loading tag has no wiki summary.
10
votes
3answers
3k views
Difference between LoadFile and LoadFrom with .NET Assemblies?
I was looking at the msdn documentation and I am still a little confused on what exactly is the difference between using LoadFile and LoadFrom when loading an assembly. Can someone provide an example ...
4
votes
2answers
391 views
Loading a InMemory compiled assembly into current domain
I'm using CSharpCodeProvider to compile an assembly and I have the CompileParameters GenerateInMemory property set to true because I don't want to create a physical file.
After the compile I can take ...
4
votes
1answer
2k views
COM interop assembly loading sequence
There is very strange assembly reference problem and loading problem I experience with my Outlook addin. Here are the detail (a long story :) ):
I have an old Outlook addin, written and build using ...
3
votes
2answers
561 views
Load an assembly without locking file AND keep the right Binding Context
I've comp up against a formidable condundrum. Here's my situation:
I'm building an application with a plugin framework. There's a base plugin class that all plugins must extend. Within the same same ...
3
votes
3answers
382 views
Interesting error with AppDomain.Load()
I am trying to find a way to compile assemblies at runtime and load them. Basic intention is to store them in a database not on the disc. So I wrote some code but saw an interesting situation. Here is ...
3
votes
1answer
129 views
Is it a good or bad idea to maintain references to Assembly objects to avoid unnecessary calls of Assembly.LoadFrom?
In a plugin system I instantiate objects and call methods of those objects based on some incoming requests which have some identifier (simply a string). With the help of a configuration this ...
3
votes
3answers
6k views
“System.IO.FileNotFoundException: Could not load file or assembly” when the assembly does in fact exist
As part of our migration from .net 1.1 to .net 3.5, we had to change out a few vender DLLs.
One of them is giving us trouble in only 1 spot out of the 4 spots we use it at:
The trouble spot is a ...
2
votes
2answers
57 views
Assembly Loading, Type Creation & Caching
I am trying to write something like an ObjectFactory which, given an assembly's path and a name of a type in that assembly, returns an instance of that same type using Reflection. Since I need to make ...
2
votes
0answers
115 views
How to debug Assembly Load - ConfigurationErrorsException
I've got an application that runs fine locally, but when deployed I'm seeing the error:
Exception information:
Exception type: ConfigurationErrorsException
Exception message: Could not load ...
2
votes
2answers
140 views
Two applications load same .NET assembly: same instance?
1) .NET Assembly MyAssembly.dll implements a Singleton class MyClass
2) A .NET APP has a reference to MyAssembly.dll and uses MyClass
3) A .NET ActiveX MyActiveX.dll implements a COM Visible class ...
2
votes
3answers
1k views
Is using Assembly.Load a static reference or dynamic reference?
What are the implications and suggested scenarios to use either?
1
vote
2answers
112 views
MEF assembly loading declarations
In Prism, I have the ability to declare from my dynamically loaded assembly how I expect the loading assembly to initialize me and when. That is, I could place the following class attribute:
...
1
vote
2answers
265 views
Child form loses focus on first click to parent form. How to fix this?
Im writing a new plugin based app. This loads assemblies in their own app domains and displays the specified main forms within each via Application.Run(pluginForm). I set the main form in the loader ...
1
vote
2answers
158 views
Is MEF For Me? (one core application allowing client applications to plug into it)
I'm trying to determine if MEF is a the proper direction our application framework should be taking. From my reading of MEF, our framework doesn't seem to 'exactly' fit in, but I'll see if any ...
0
votes
1answer
236 views
ELMAH 1.2 unable to load file or assembly 'System.Data.SQLite' or one of its dependencies
I am trying to include the 64-bit version of ELMAH 1.2 into an ASP.NET application that is hosted locally in IIS Express. I referenced the release version of Elmah.dll so that it would copy to the ...
0
votes
1answer
60 views
How do I register types in assemblies that haven't been loaded with Unity?
I want to load all the types of an Interface so I can call a method on it. However, the assemblies are not referenced a compile time. They will be in the bin folder.
Is this something I can do easily ...
0
votes
1answer
52 views
Replace Assembly.LoadFrom(String, Evidence) call with Assembly.LoadFrom(String) - .NET 4
I have to move some old .NET 2 code to the .NET 4 project. It has the next line:
`return Assembly.LoadFrom(filePath, Assembly.GetExecutingAssembly().Evidence);`
As it said in Microsoft's (MSDN):
...
0
votes
2answers
44 views
AppDomain event that gets called for *ATTEMPTED* assembly resolution
Is there an event that we can hook to, that gets called BEFORE an assembly is resolved.
For example if some code in the AppDomain is calling Assembly.Load(path) , the event will be raised, saying ...
0
votes
0answers
290 views
Error loading event receiver assembly when triggered by web service
We have a SharePoint EventReceiver assembly deployed to the GAC that responds to items added to a SharePoint list. It references no other assemblies other than the standard Microsoft ones. The ...
0
votes
0answers
19 views
Loading available assembly
I have an interesting problem.
Lets say I have two assemblies A1. I have 3 A1 assemblies which target .NET 2.0, 3.5 and 4.0(Each has its own public key).
Now, lets say I develop an application using ...
0
votes
2answers
487 views
Load assembly from memory
I am porting a Java application where classes are loaded and "executed" at runtime from memory (a byte array). I am trying to achieve the same thing in C#, but I am having problems ...