How to check if an assembly was built using Debug or Release configuration?

后端 未结 6 412
半阙折子戏
半阙折子戏 2020-12-13 04:16

I\'m starting deployment of my web application and I need to guarantee that all the assemblies that are going to be deployed were built using Release configuration. Our syst

6条回答
  •  庸人自扰
    2020-12-13 04:55

    If you have Reflector installed you can also click on the assembly and look for the debuggable attribute ([assembly: Debuggable()]) in the Disassembler pane.

提交回复
热议问题