1
vote
2answers
626 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 l …
1
vote
1answer
63 views
Dynamically loading assemblies and their dependents using XCOPY deployment
Hi,
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 …
5
votes
4answers
157 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 anot …
1
vote
1answer
69 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 ma …
0
votes
5answers
485 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 …
4
votes
2answers
243 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 …
1
vote
2answers
712 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") …
2
votes
3answers
213 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 DL …
1
vote
1answer
189 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 …
8
votes
4answers
4k views
C# Assembly.Load vs Assembly.ReflectionOnlyLoad
Hi all,
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 a …
0
votes
3answers
778 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 causi …
3
votes
4answers
541 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 (esse …
