Jonathan Magnan

Results 1222 comments of Jonathan Magnan

Hello @TehWardy , No, that's not new to .NET Core. You had to do it also before. > Is it possible to have an override of this that auto registers...

> What I think you're saying is that In addition to providing the assemblies I also need to tell it what namespaces from those assemblies I want to use. Not...

Hello @TehWardy , Just to let you know, my developer started to work on something that will tell you which types are missing. He almost completed the code so we...

Hello @TehWardy , Just to confirm we made the right thing, how do you expect this functionality to work? - Should it tell you all types used? - Should it...

Hello @TehWardy , We added `UsedTypes`, `MissingTypes`, `RetryAndFindMissingTypes` to check what type has been used during the last compilation Here is an example: ```csharp var context = new EvalContext(); context.UnregisterAll();...

Thank you for your good word ;) In fact, if we success to compile when the option `context.RetryAndFindMissingTypes = true;` is enabled, it will return the compiled version, however, the...

Almost... In actually return the compiled version (but doesn't cache it), so you can actually execute it. However, you know that the code was retried with all domain assemblies when...

Since the feature is pretty fresh and outside of you, none know about it, we will think about it tomorrow and maybe do it this way ;)

Thank you TehWardy for this additional research. I will think about the exception. We usually try to avoid custom exceptions in our library but I must admit that sometimes it...

Hello @TehWardy , Sorry for the late answer, I have been sick for a few days and was unable to review & release change made by my developer (had to...