2015-10-30 37 views

回答

0

我在VS 2015上下文中遇到了一个类似的问题,它使用了我使用ILSpy进行反编译的DLL代码。 我最终更新了反编译DLL项目的AssemblyInfo.cs中的以下行。

[assembly: Debuggable(DebuggableAttribute.DebuggingModes.Default | DebuggableAttribute.DebuggingModes.DisableOptimizations | DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints | DebuggableAttribute.DebuggingModes.EnableEditAndContinue)] 

希望像这样的东西也适用于你。祝你好运。

相关问题