The assembly.load tag has no wiki summary.
2
votes
2answers
102 views
Testability versus Over-Design? [duplicate]
Here is the situation actually posed by a co-worker that pegged my interest:
public DoSomething()
{
//Do Stuff
var assembly = Assembly.LoadFrom("Path");
//Do More Stuff
}
So, in order ...
1
vote
3answers
112 views
Assembly.Load throws a bad format exception if i load a winform application
this is the error code i get
System.BadImageFormatException: impossible to load the file or assembly '6632 bytes loaded from quick test 2, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' or ...
6
votes
1answer
81 views
Weird Assembly.Load error trying to load assembly compiled with C# code provider
I'm trying to compile an assembly from my code with C# code provider.
When I access the compiled assembly with compilerResult.CompiledAssembly, everything works. However, when I instead do ...
-1
votes
2answers
99 views
Assembly.Load() in multiple methods within the same class to load the same assembly - optimal or not?
I have a class with several methods (e.g. Method1, Method2, Method3) and inside each method I load an assembly (same one in each method) and invoke a certain method (reflection) like this:
void ...
0
votes
0answers
25 views
Use Assembly.Load trough emmiting the IL
Alright guys, so basicaly, I am trying to use the function Assembly.Load with calling it directly. I want to call it using the Emit library.
Here is my code so far :
Private Function Ass_Load(ByVal ...
0
votes
0answers
27 views
How to prevent further loading attempts on assebly if assembly already loaded?
I have following situation: to save some time for probing and to ensure more fluent work of application I'm trying to load most of assemblies with Assembly.Load(byte[]) method at beginning(to be ...
0
votes
2answers
355 views
Load Assembly in AppDomain and Invoke Entry Point
I'm having the hardest time with this. I've googled for hours, and been to many different questions on here, but I just can't get it.
static void Main(string[] args)
{
AppDomainSetup domainSetup ...
1
vote
1answer
362 views
Checking Mono.Cecil and Mono.Cecil.Cil
I have some code to load a exe file and shows its CIL code to user. To do it I use Mono.Cecil and Mono.Cecil.Cil.
Now I wanna do something different: I wanna know if user has Mono.Cecil and ...
0
votes
1answer
183 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 ...
1
vote
1answer
38 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
...
2
votes
2answers
528 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 ...
0
votes
1answer
460 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", ...
2
votes
1answer
554 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, ...
0
votes
0answers
273 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
313 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
500 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
791 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 ...
1
vote
1answer
1k 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 ...
1
vote
1answer
1k 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 ...
0
votes
1answer
179 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 ...
2
votes
2answers
969 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 ...
1
vote
2answers
719 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 ...
6
votes
4answers
573 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 ...
14
votes
2answers
3k 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 ...
2
votes
3answers
1k 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 ...
4
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 ...
1
vote
1answer
590 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
2k 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
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:
...
28
votes
4answers
21k 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 ...
12
votes
2answers
5k 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 ...