0

Is CodeDom needed for anything in a deployed application? Can the <system.codedom> section be safely removed from Web.config?

Tim
  • 8,227
  • 30
  • 100
  • 173

1 Answers1

1

It's got to do with dynamic compilation in a multi-language environment. If you're not using more than one language, then you don't need it:

The impact of multiple compiler definitions in system.codedom in web.config

https://msdn.microsoft.com/en-us/library/system.codedom(v=vs.110).aspx

http://www.c-sharpcorner.com/article/dynamically-creating-applications-using-system-codedom/

Community
  • 1
  • 1
IrishChieftain
  • 15,099
  • 7
  • 48
  • 91