【发布时间】:2014-03-20 16:31:37
【问题描述】:
我已将 Typescript + Web Essentials 集成到我的项目中,到目前为止我一直在使用 VS 2012。
我在保存时遇到了 typescript 的问题,我根据this question 编辑了我的 csproj,这解决了我的问题。
前几天我安装了 VS2013,安装了 Web Essentials 2013,从那以后每次我加载我的解决方案时,VS2013 都会崩溃。 如果我卸载 Web Essentials,一切正常。
我尝试删除我在 csproj 中编辑的文本,但无济于事。
这是我从崩溃中得到的问题详细信息:
Problem Event Name: CLR20r3
Problem Signature 01: devenv.exe
Problem Signature 02: 12.0.30110.0
Problem Signature 03: 52cfb65a
Problem Signature 04: Microsoft.VisualStudio.Platform.VSEditor
Problem Signature 05: 12.0.21005.1
Problem Signature 06: 524fcbc8
Problem Signature 07: 2e6
Problem Signature 08: 19
Problem Signature 09: System.NullReferenceException
OS Version: 6.1.7601.2.1.0.256.4
Locale ID: 1033
Additional Information 1: 0a9e
Additional Information 2: 0a9e372d3b4ad19135b953a78882e789
Additional Information 3: 0a9e
Additional Information 4: 0a9e372d3b4ad19135b953a78882e789
对于如何解决这个问题没有太多想法。
编辑:我注意到只有在打开 .ts 文件时才会发生崩溃。由于已经打开了 .ts 文件,因此该解决方案不断崩溃。我禁用了 Web Essentials,将它们全部关闭,启用了 WE,然后解决方案在没有崩溃的情况下打开。然后打开一个 .ts 文件触发了崩溃。
这是堆栈跟踪:
> Microsoft.VisualStudio.Platform.VSEditor.dll!Microsoft.VisualStudio.Utilities.Implementation.ContentTypeRegistryImpl.GetContentType(string typeName) Unknown
WebEssentials2013.dll!MadsKristensen.EditorExtensions.Margin.TextViewMargin.CreateTextViewHost(string contentType) Unknown
WebEssentials2013.dll!MadsKristensen.EditorExtensions.Margin.TextViewMargin.CreatePreviewControl(double width) Unknown
WebEssentials2013.dll!MadsKristensen.EditorExtensions.MarginBase.CreateMarginControls() Unknown
WebEssentials2013.dll!MadsKristensen.EditorExtensions.CompilingMarginBase.CreateMarginControls() Unknown
WindowsBase.dll!System.Windows.Threading.ExceptionWrapper.InternalRealCall(System.Delegate callback, object args, int numArgs) Unknown
WindowsBase.dll!MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(object source, System.Delegate method, object args, int numArgs, System.Delegate catchHandler) Unknown
WindowsBase.dll!System.Windows.Threading.DispatcherOperation.InvokeImpl() Unknown
WindowsBase.dll!System.Windows.Threading.DispatcherOperation.InvokeInSecurityContext(object state) Unknown
mscorlib.dll!System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, object state, bool preserveSyncCtx) Unknown
mscorlib.dll!System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, object state, bool preserveSyncCtx) Unknown
mscorlib.dll!System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext executionContext, System.Threading.ContextCallback callback, object state) Unknown
WindowsBase.dll!System.Windows.Threading.DispatcherOperation.Invoke() Unknown
WindowsBase.dll!System.Windows.Threading.Dispatcher.ProcessQueue() Unknown
WindowsBase.dll!System.Windows.Threading.Dispatcher.WndProcHook(System.IntPtr hwnd, int msg, System.IntPtr wParam, System.IntPtr lParam, ref bool handled) Unknown
WindowsBase.dll!MS.Win32.HwndWrapper.WndProc(System.IntPtr hwnd, int msg, System.IntPtr wParam, System.IntPtr lParam, ref bool handled) Unknown
WindowsBase.dll!MS.Win32.HwndSubclass.DispatcherCallbackOperation(object o) Unknown
WindowsBase.dll!System.Windows.Threading.ExceptionWrapper.InternalRealCall(System.Delegate callback, object args, int numArgs) Unknown
WindowsBase.dll!MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(object source, System.Delegate method, object args, int numArgs, System.Delegate catchHandler) Unknown
WindowsBase.dll!System.Windows.Threading.Dispatcher.LegacyInvokeImpl(System.Windows.Threading.DispatcherPriority priority, System.TimeSpan timeout, System.Delegate method, object args, int numArgs) Unknown
WindowsBase.dll!MS.Win32.HwndSubclass.SubclassWndProc(System.IntPtr hwnd, int msg, System.IntPtr wParam, System.IntPtr lParam) Unknown
【问题讨论】:
-
不幸的是,这些信息不足以追踪错误。这是一个 NRE,但没有堆栈跟踪无法看到它来自哪里。你能附加一个调试器并获得完整的跟踪吗?我知道@slaks 会很乐意在跟踪可用时修复它
-
@JaredPar 谢谢,我用堆栈跟踪和我发现的一些额外信息编辑了我的问题。希望它会有用。让我知道是否还有其他可以提供帮助的内容。
-
附加调试器,捕获异常,查看本地(如果可能)。
-
@SLaks 很高兴听到这个消息,我下周试试!谢谢
标签: visual-studio-2013 web-essentials