Visual Studio Code – Using Roslyn and .NET Core : how do I resolve "type or namespace name "Forms" does not exist in the namespace 'System.Windows'
I am developing a system that uses Roslyn to do runtime compilation of C# code. I am adding assemblies using this code, passing the fully qualified assembly file name to the method. public bool AddAssembly(string assemblyDll) { if (string.IsNullOrEmpty(assemblyDll)) return…