2015-10-30 80 views

回答

0

我在VS 2015上下文中遇到了一個類似的問題,它使用了我使用ILSpy進行反編譯的DLL代碼。 我最終更新了反編譯DLL項目的AssemblyInfo.cs中的以下行。

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

希望像這樣的東西也適用於你。祝你好運。

相關問題