1

I am attempting to port some .NET Framework code to .NET Core. The code uses CodeDOM to perform dynamic compilation.

I've learned that .NET Core removed CodeDOM but I haven't found a drop-in replacement. So, my question is: how can I replicate the functionality that used to be provided by CodeDOM?

Daniel A. White
  • 187,200
  • 47
  • 362
  • 445
Jack
  • 396
  • 2
  • 18

1 Answers1

2

.NET Core uses Roslyn as a replacement for CodeDOM, but Roslyn seems to be a much improved version.

This link is for the Roslyn wiki, which contains tutorials. Roslyn Git Wiki

Sorrien
  • 143
  • 1
  • 9