im using codedom library to compile some codes in string format.
i have to use this library in a .net core project.
first i made a project with .net framework(because codedom works with .net framework) , and every thing worked fine. but when i refrenced my .net core project to the first project i faced with "Operation is not supported" in first project.
CompilerResults compileResult = codeCompiler.CompileAssemblyFromSource(compileParams,
code);
what should i do to fix this? thanks for your time.