Tagged Questions
The compileassemblyfromsource tag has no wiki summary.
6
votes
4answers
2k views
How can I prevent CompileAssemblyFromSource from leaking memory?
I have some C# code which is using CSharpCodeProvider.CompileAssemblyFromSource to create an assembly in memory. After the assembly has been garbage collected, my application uses more memory than it ...
5
votes
1answer
140 views
C# CompileAssemblyFromSource, add referenced assemblies it needs?
I have the CompileAssemblyFromSource working for code that only references assemblies that my program (that compiles it) uses. It works beautifully.
However, if I need to compile code that has a ...
4
votes
1answer
98 views
.NET CompileAssemblyFromSource: Determine which source failed?
I'm dynamically compiling code, using the CompileAssemblyFromSource with multiple sources.
In the event of a compile error I can retreive the line number etc. from the Errors collection.
However the ...
1
vote
0answers
75 views
Prevent CompileAssemblyFromSource from generate temp files with duplicate file name
My WCF application uses code compiled in run time to calculate some values of a report. I'm using CSharpCodeProvider.CompileAssemblyFromSource to compile the code.
If the client (a Silverlight ...
1
vote
1answer
145 views
Accessing class and function after compiling ( CompiledAssembly )
Heres some example code. I successfully figured out how to compile this. I grabbed the location and was able to use visual studios object browser to look through the DLL. I cant figure out how to get ...