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

前端 未结 1 1350
时光取名叫无心
时光取名叫无心 2021-01-18 19:13

All my ASP.NET web projects are being developed exclusively in VB.NET. (And so are the satellite DLL projects, which is probably less relevant.

When I look at the de

1条回答
  •  情话喂你
    2021-01-18 19:26

    It's lazy loaded. The compiler option specifies which compiler is used for dynamic page compilation based on the file extension. If the file doesn't have that extension, the compiler is never launched.

    If you're not using both languages, you can safely remove it. However, if you think you might used mixed-language development in the future, it's best to leave it there, as it does no harm.

    0 讨论(0)
提交回复
热议问题