解决方案资源管理器按特定关键字过滤会导致崩溃
Solution Explorer filter by specific keywords causes crash
解决方案资源管理器中的某些搜索导致 Visual Studio 崩溃:
filterchanged
filter
fil
其他搜索工作正常。我已尝试重建解决方案、重置所有设置、删除 .suo
文件。
当我附加一个调试器(Visual Studio 的新实例)时,Exception Helper 说这是一个 AggregateException —— 根本没有帮助。我无法找到更多详细信息。
我该如何调试?
除了关键字是delete
,我的项目也遇到了同样的问题这似乎解决了我的问题:Visual Studio 2015 is crashing when searching from Solution Explorer。
我还注意到它在 /SafeMode 下工作正常。
问题行:
Public Event ObjectDeleted(ByVal aString As String)
解决方法是用事件处理程序替换您的委托:
Public Delegate Sub MyEventHandler(ByVal s As String)
并像这样使用:
Public Event test As MyEventHandler
我在这里向微软提交了一个错误:
https://connect.microsoft.com/VisualStudio/feedback/details/2449669/visual-studio-crashes-when-you-type-delete-into-the-solution-explorer-search
希望这对您有所帮助:)
解决方案资源管理器中的某些搜索导致 Visual Studio 崩溃:
filterchanged
filter
fil
其他搜索工作正常。我已尝试重建解决方案、重置所有设置、删除 .suo
文件。
当我附加一个调试器(Visual Studio 的新实例)时,Exception Helper 说这是一个 AggregateException —— 根本没有帮助。我无法找到更多详细信息。
我该如何调试?
除了关键字是delete
,我的项目也遇到了同样的问题这似乎解决了我的问题:Visual Studio 2015 is crashing when searching from Solution Explorer。
我还注意到它在 /SafeMode 下工作正常。
问题行:
Public Event ObjectDeleted(ByVal aString As String)
解决方法是用事件处理程序替换您的委托:
Public Delegate Sub MyEventHandler(ByVal s As String)
并像这样使用:
Public Event test As MyEventHandler
我在这里向微软提交了一个错误: https://connect.microsoft.com/VisualStudio/feedback/details/2449669/visual-studio-crashes-when-you-type-delete-into-the-solution-explorer-search
希望这对您有所帮助:)