【发布时间】:2015-10-30 10:26:31
【问题描述】:
【问题讨论】:
标签: visual-studio debugging .net-assembly
【问题讨论】:
标签: visual-studio debugging .net-assembly
我在 VS 2015 上下文中遇到了类似的问题,我使用 ILSpy 反编译了一个 DLL 代码。 我最终在反编译的 DLL 项目的 AssemblyInfo.cs 中更新了以下行。
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)]
希望这样的东西也适合你。祝你好运。
【讨论】: