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
  • 181,601
  • 45
  • 354
  • 430
Jack
  • 376
  • 2
  • 17

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
  • 78
  • 1
  • 9