I generate some code in memory from random size data. This can generate something like 15K classes, and could be even more. The code is stored in a List that I use with the CompileAssemblyFromSource
method from the CSharpCodeProvider
class.
The thing is, while compiling, I'd like to have a progress report, or maybe an output of whats going on. For the moment, my App just sits there and waits for 5 or 10 minutes.
Is there a way to know how much time this is going to take, or maybe see whats going on. Maybe an other idea ? I hope the answer isn't just a message saying that this process can take a couple of minutes.