Tagged Questions
The assembly.load tag has no wiki summary.
24
votes
4answers
16k views
C# Assembly.Load vs Assembly.ReflectionOnlyLoad
I'm trying to understand the differences between Assembly.Load and Assembly.ReflectionOnlyLoad.
In the code below I am attempting to find all of the objects in a given assembly that inherit from a ...
11
votes
2answers
2k views
Recompile C# while running, without AppDomains
Let’s say that I have two C# applications - game.exe (XNA, needs to support Xbox 360) and editor.exe (XNA hosted in WinForms) - they both share an engine.dll assembly that does the vast majority of ...
8
votes
2answers
3k views
How to run NUnit programmatically
I have some assembly that references NUnit and creates a single test class with a single test method. I am able to get the file system path to this assembly (e.g. "C:...\test.dll"). I would like to ...
6
votes
4answers
455 views
How to provide a fallback assembly instead of the one that can't be loaded?
At runtime, if a referenced assembly fails to load with e.g. "Strong name validation failed" (because it's test-signed), is there a way to provide a substitution assembly from another path that is ...
4
votes
4answers
1k views
How can I prevent loading a native dll from a .NET app?
Background:
My C# application includes a plugin framework and generic plugin loader.
The plugin loader enumerates the application directory in order to identify plugin dlls (essentially it searches ...
3
votes
2answers
2k views
Weird behaviour when mixing loading of assemblies using Assembly.LoadFrom and Assembly.Load
Weird behavior when mixing loading of assemblies using Assembly.LoadFrom and Assembly.Load
I have encountered a weird behavior when loading assemblies with Assembly.LoadFrom and later on with ...
2
votes
2answers
188 views
Does Assembly.Load use cache?
I have a resource assembly which stores a lot of reusable scripts, styles and controls. I'm not sure if I should cache this assembly after loading it. Does Assembly.Load use internal cache within the ...
2
votes
1answer
196 views
Load strongly-name assembly from specific path?
I have a strongly-named assembly, installed to a specific folder (and not the GAC).
The name as shown in Reflector is:
"Foo.Bar.TreeFrog, Version=1.2.1.0, Culture=neutral, ...
2
votes
2answers
736 views
Assembly.Load(Byte[]) and Assembly.Location/Assembly.Codebase
I'm trying to load an assembly without locking the file. These assemblies could be third party assemblies so we don't necessarily have access to the code and one or two of them make use of ...
2
votes
3answers
842 views
How do I load an assembly that references a Win32 DLL?
I am developing a .NET application that uses reflection to load plugins. My plugins are C# class libraries. The trouble is that some of my plugins reference conventional Win32 DLLs, and C# is ...
1
vote
1answer
24 views
Allowing execution of extern interface implementations: what are the risks?
from writing ABAP programs, the following methodology is known to me as an 'exit' to a program, for this reason I choose the names accordingly.
Suppose you, in .Net,
1) define an interface
...
1
vote
1answer
560 views
Loading interdependent assemblies from C++/CLI
I want to load two assemblies from C++/CLI; assembly A depends on assembly B, and both are VB.Net projects (3.5). I want them to load from a byte array, so I use Assembly::Load(), but when I try to ...
1
vote
2answers
497 views
Dynamically loading assemblies and their dependents using XCOPY deployment
I have an application loader that dynamically loads applications.
An application is an assembly with all of its dependents in a single folder.
Using XCOPY deployment I can add/remove applications by ...
1
vote
1answer
443 views
Loading Assembly only once
I'm loading an assembly at runtime and the question that arises everytime I call the code is that should I be checking if that particular assembly has loaded already? or does .Net take care of this ...
1
vote
5answers
1k views
Assembly binding problems in .NET
I am writing a .NET library that for various reasons cannot be registered in the GAC.
This dll (let's call it SDK.dll) depends on other DLLs in order to be loaded.
When writing a program that uses ...
0
votes
1answer
24 views
Meeting assembly dependencies in a MEF environment
I have an application in which I am employing MEF to dynamically load extension assemblies. One assembly is a domain layer, the second is a view. The domain assembly load and works as expected. The ...
0
votes
1answer
302 views
C# “Assembly.LoadFile” & disable “DllImport” in loaded assembly?
In C#, Is it possible to dynamicaly load a .NET library at runtime with using something like System.Reflection.Assembly.LoadFile & disabling the loaded library from using [DllImport("someCPP.DLL", ...
0
votes
0answers
190 views
SecurityException from Activator.CreateInstance(), How to grant permissons to Assembly?
I have been loading an assembly via Assembly.LoadFrom(@"path"); and then doing
Type t = asm.GetType("Test.Test");
test = Activator.CreateInstance(t, new Object[] { ... });
and it was working fine, ...
0
votes
3answers
203 views
How can I load assembly dynamically thru internet?
Is there a way or a library that can help me load assembly in memory (dll for example) located on my webpage. I'm trying to figure out a nice crack protection
0
votes
1answer
344 views
ASP.NET load assembly from parent application
i have a website and in it is an application with website administration.
It is possible to load an assembly from website in administration application?
E.G:
WebAdmin project (web application) : ...
0
votes
4answers
563 views
Strange problem with Assembly.Load*
I have strange problem with loading assembly from file and unfortunately I can't reproduce it with simple easy-to-share code. I describe what I'm doing right below.
I have 4 applications:
"Complex ...
0
votes
1answer
660 views
How to solve Assembly.Load performance hit?
I'm refactoring some code and I've been hit with a dilemma.
Let's say we have the following scenario:
A Core Assembly that contains many common interfaces and classes
A Library Assembly that ...
0
votes
1answer
146 views
Tests under TestDriven.NET not picking up updated fuslogvw settings
If there's a dup of this, I'll be upvoting it but until someone finds it for me.... This is a Things I've Learned Today [that nobody seems to have blogged about] entry...
With TestDriven.NET, I was ...
0
votes
2answers
2k views
C# assembly.load from a byte[] issues
I have an EXE loaded into a byte array, and I am trying to load it into an assembly object using Assembly.Load. I am getting errors trying to load.
Here is the code that is causing the exception:
...