For code generation purposes I need to load an asp.net 5 generated assembly via reflection. If it was a normal assembly I would do
Assembly assembly = Assembly.LoadFrom(assemblyPath); The problem is that I can't find it's assembly after build. How can I do something similar in an asp.net 5 assembly from an external process?
Thanks in advance