我升级到Windows 8.1今天。升级后,我在其中一个WPF窗口上遇到以下异常:
XAML Exception: Provide value on 'System.Windows.Baml2006.TypeConverterMarkupExtension' threw an exception
。
Inner Exception: Method not found: 'Void System.Diagnostics.Tracing.FrameworkEventSource.BeginGetResponse(System.Object, System.String)'.
在更新我的窗口之前,我没有收到此异常。请注意,当我从窗口中删除图标时,不会发生异常 - Icon="/MyProgram;component/Resources/language.png"
未处理的堆栈跟踪如下:
Framework Version: v4.0.30319
Description: The process was terminated due to an unhandled exception.
Exception Info: System.Windows.Markup.XamlParseException
Stack:
at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(System.Object, System.Delegate, System.Object, Int32, System.Delegate)
at System.Windows.Threading.DispatcherOperation.InvokeImpl()
at System.Windows.Threading.DispatcherOperation.InvokeInSecurityContext(System.Object)
at System.Threading.ExecutionContext.RunInternal(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
at System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
at System.Windows.Threading.DispatcherOperation.Invoke()
at System.Windows.Threading.Dispatcher.ProcessQueue()
at System.Windows.Threading.Dispatcher.WndProcHook(IntPtr, Int32, IntPtr, IntPtr, Boolean ByRef)
at MS.Win32.HwndWrapper.WndProc(IntPtr, Int32, IntPtr, IntPtr, Boolean ByRef)
at MS.Win32.HwndSubclass.DispatcherCallbackOperation(System.Object)
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(System.Delegate, System.Object, Int32)
at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(System.Object, System.Delegate, System.Object, Int32, System.Delegate)
at System.Windows.Threading.Dispatcher.LegacyInvokeImpl(System.Windows.Threading.DispatcherPriority, System.TimeSpan, System.Delegate, System.Object, Int32)
at MS.Win32.HwndSubclass.SubclassWndProc(IntPtr, Int32, IntPtr, IntPtr)
at MS.Win32.UnsafeNativeMethods.DispatchMessage(System.Windows.Interop.MSG ByRef)
at System.Windows.Threading.Dispatcher.PushFrameImpl(System.Windows.Threading.DispatcherFrame)
at System.Windows.Threading.Dispatcher.PushFrame(System.Windows.Threading.DispatcherFrame)
at System.Windows.Application.RunDispatcher(System.Object)
at System.Windows.Application.RunInternal(System.Windows.Window)
at System.Windows.Application.Run(System.Windows.Window)
at System.Windows.Application.Run()
at MaxCut.App.Main()
我猜的另一个问题与上面的问题有关:当我尝试在Visual Studio 2013 Update 4中创建一个新项目时,我收到以下错误
“无法从文本'.. \ Images \ Medium.png'创建'ImageSource'
.NET Framework 4.6为我做了伎俩,希望它也适合你!
http://www.microsoft.com/en-us/download/confirmation.aspx?id=44928
对任何遇到此问题的人。请注意,在安装后他执行了两次更新后问题得以解决:
升级到基于x64的系统的Windows 8.1(KB3063843)
升级到基于x64的系统的Windows 8.1(KB3068708)
我正在运行一个新的.NET WebApi站点(.Net版本4.5.2),该站点在我的工作管理的Windows 7 PC上本地构建,并部署到我没有升级权限的Windows Server 2012。
我能够通过删除nuget包解决此问题并部署我的网站:
Microsoft.AspNet.TelemtryCorrelation
System.Diagnostics.DiagnosticSource
我删除了所有应用程序见解包和诊断包。