在 Visual Studio Professional 2015 中使用团队资源管理器上的合并按钮时出现异常
Exception using Merge Button on Team Explorer in Visual Studio Professional 2015
在 Visual Studio Professional 2015 中单击团队资源管理器中的合并按钮时出现异常。
An exception has been encountered. This may be caused by an extension.
You can get more information by examining the file C:\Users\XXXX\AppData\Roaming\Microsoft\VisualStudio.0\ActivityLog.xml'.
ActivityLog.xml内容如下:
<record>775</record>
<time>2016/02/23 11:22:08.722</time>
<type>Error</type>
<source>Editor or Editor Extension</source>
<description>
System.ArgumentNullException: Value cannot be null.
Parameter name: key

at System.Collections.Generic.Dictionary`2.FindEntry(TKey key)

at Microsoft.VisualStudio.Html.Package.Extensions.ExtensionsManager.OnTextViewCreated(ITextView textView, ITextBuffer textBuffer)

at Microsoft.Web.Editor.Controller.TextViewConnectionListener.OnTextViewGotAggregateFocus(ITextView textView, ITextBuffer textBuffer)

at Microsoft.VisualStudio.Html.Package.Commands.Html.VsHtmlTextViewConnectionListener.OnTextViewGotAggregateFocus(ITextView textView, ITextBuffer textBuffer)

at Microsoft.Web.Editor.Controller.TextViewConnectionListener.<>c__DisplayClass24_0.<OnTextViewConnected>b__0(Object sender, EventArgs eventArgs)

at Microsoft.VisualStudio.Text.Utilities.GuardedOperations.RaiseEvent(Object sender, EventHandler eventHandlers)
</description>
我们也 运行 关注这个问题。具体来说,我们注意到 VS 2015 Update 1 我们无法手动合并“.JSX”文件中的冲突。使用以下线程作为灵感:https://github.com/aspnet/Tooling/issues/293 我们暂时执行了以下操作来解决此问题。下面的示例适用于 JSX 文件,但这适用于任何基于文本的文件,只需修改您的文件类型的说明即可。
1) 将 .JSX 文件指向 HTML 编辑器:
- 工具
- 选项
- 文本编辑器
- 文件扩展名
- 将 jsx 添加到列表,映射到编辑器 "HTML Editor"
2) 为 HTML 编辑器禁用 "identifying helpful extensions":
- 工具
- 选项
- 文本编辑器
- HTML
- 高级
- "Extension Management" -> "Identify Helpful Extensions" -> 假
现在应该可以解决这个问题。解决方法是我们欺骗 VS 不为 .JSX 文件寻找有用的扩展。我已经向 MS 提交了 VS 错误报告。
我对根本问题的猜测是 VS 是 "looking for helpful extensions" 用于 "jsx" 或它找不到任何有用扩展的其他文件。结果是 null ref / object not set to instance 异常。
更新::根据Mads on GitHub , the issue has been fixed as part of the .NET Core Tooling Preview 1 for Visual Studio 2015. Thanks Burak_Karakuş的评论!
更新 2::我见过这种解决方法不起作用的案例。在那种情况下,将扩展映射到 "Source Code (Text) Editor with Encoding" 解决了崩溃问题。
在 Visual Studio Professional 2015 中单击团队资源管理器中的合并按钮时出现异常。
An exception has been encountered. This may be caused by an extension.
You can get more information by examining the file C:\Users\XXXX\AppData\Roaming\Microsoft\VisualStudio.0\ActivityLog.xml'.
ActivityLog.xml内容如下:
<record>775</record>
<time>2016/02/23 11:22:08.722</time>
<type>Error</type>
<source>Editor or Editor Extension</source>
<description>
System.ArgumentNullException: Value cannot be null.
Parameter name: key

at System.Collections.Generic.Dictionary`2.FindEntry(TKey key)

at Microsoft.VisualStudio.Html.Package.Extensions.ExtensionsManager.OnTextViewCreated(ITextView textView, ITextBuffer textBuffer)

at Microsoft.Web.Editor.Controller.TextViewConnectionListener.OnTextViewGotAggregateFocus(ITextView textView, ITextBuffer textBuffer)

at Microsoft.VisualStudio.Html.Package.Commands.Html.VsHtmlTextViewConnectionListener.OnTextViewGotAggregateFocus(ITextView textView, ITextBuffer textBuffer)

at Microsoft.Web.Editor.Controller.TextViewConnectionListener.<>c__DisplayClass24_0.<OnTextViewConnected>b__0(Object sender, EventArgs eventArgs)

at Microsoft.VisualStudio.Text.Utilities.GuardedOperations.RaiseEvent(Object sender, EventHandler eventHandlers)
</description>
我们也 运行 关注这个问题。具体来说,我们注意到 VS 2015 Update 1 我们无法手动合并“.JSX”文件中的冲突。使用以下线程作为灵感:https://github.com/aspnet/Tooling/issues/293 我们暂时执行了以下操作来解决此问题。下面的示例适用于 JSX 文件,但这适用于任何基于文本的文件,只需修改您的文件类型的说明即可。
1) 将 .JSX 文件指向 HTML 编辑器:
- 工具
- 选项
- 文本编辑器
- 文件扩展名
- 将 jsx 添加到列表,映射到编辑器 "HTML Editor"
2) 为 HTML 编辑器禁用 "identifying helpful extensions":
- 工具
- 选项
- 文本编辑器
- HTML
- 高级
- "Extension Management" -> "Identify Helpful Extensions" -> 假
现在应该可以解决这个问题。解决方法是我们欺骗 VS 不为 .JSX 文件寻找有用的扩展。我已经向 MS 提交了 VS 错误报告。
我对根本问题的猜测是 VS 是 "looking for helpful extensions" 用于 "jsx" 或它找不到任何有用扩展的其他文件。结果是 null ref / object not set to instance 异常。
更新::根据Mads on GitHub , the issue has been fixed as part of the .NET Core Tooling Preview 1 for Visual Studio 2015. Thanks Burak_Karakuş的评论!
更新 2::我见过这种解决方法不起作用的案例。在那种情况下,将扩展映射到 "Source Code (Text) Editor with Encoding" 解决了崩溃问题。