I have an assembly that i want to explore using c# interactive. The assembly has dependencies to other assemblies and assembly redirection is used in a config file. The other assemblies use data from the current appdomain to set thing up. Now this assembly works fine when used in a different context (i.e. not c# repl).
How can i emulate the same context in c# repl?
one of the errors i get is FileLoadException because i guess it doesnt find the correct version of some assembly.
What I have tried:
override AppDomain.CurrentDomain properties by using AppDomain.SetData. config file, appbase, and other.
in my csx file, reference all assemblies.
copy all assemblies into C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\PrivateAssemblies
Is there information on how to work with c# interactive for this kind of scenario? The only info i get when i search for it is simple tutorials. Is this even possible?