A dynamic assembly is a .NET assembly that is created dynamically at runtime and hosts generated classes and methods. Usually created via reflection emit
Questions tagged [dynamic-assemblies]
51 questions
0
votes
1 answer
How can I change the name of a dynamic assembly after it has been created?
Is there any way to change the name of a dynamic assembly after it has been created? I'm using a framework that uses dynamic methods, and it is creating a dynamic assembly with the same name as my main assembly (which causes problems with WPF when…

Samuel Jack
- 32,712
- 16
- 118
- 155
0
votes
0 answers
Trying to solve Compile time error with Assembly.Load using Interface
I am loading an assembly at runtime on my code and all the references to that assembly are broken at the run time as I have mentioned on this thread:
How to keep dynamically loaded assemblies form breaking code at compile time?
BUT now I tried to…

Lost
- 12,007
- 32
- 121
- 193
0
votes
2 answers
.NET component behaviour difference when changing compilation configuration
I'm having problems with a piece of code that behaves differently depending on whether it was compiled in the Release or Debug configuration in Visual Studio. I have manually altered all the project compilation settings I can see on the Release…

Paul Taylor
- 5,651
- 5
- 44
- 68
0
votes
1 answer
.NET: Extend classes upon loading or is there a concept of class loaders?
This question was probably asked hundreds of times but again: is there a concept of class loaders in .NET. And let me elaborate the problem: I wan’t to inject a class with several additional code items required for being able to plug objects of this…

jasnevo
- 101
- 7
-1
votes
1 answer
Release .dll and .pdb after loading .dll file dynamically
I'm building a windows application where I can call coded UI project (project named RecordAndPlayback) by clicking on a button. My aim is to call the test methods in the coded UI project and then be able to modify the test then call it back from my…

Islam El-gendy
- 73
- 1
- 7
-1
votes
1 answer
Load assembly every time or only once
I'm building an extensible service application for my work, and the way it 'extends' is by loading DLL's and executing methods within. It is designed this way so that I do not need to recompile and re-deploy every time we have a new job for it to…

Jacob Lambert
- 7,449
- 8
- 27
- 47