1

当我在本地启动应用程序时,一切正常,但是一旦我将其复制到文件共享中,就会出现以下异常:

Anwendung: WWW.exe
Frameworkversion: v4.0.30319
Beschreibung: Der Prozess wurde aufgrund einer unbehandelten Ausnahme beendet.
Ausnahmeinformationen: System.TypeInitializationException
Stapel:
   bei WWW.exe.Client.App.Application_Startup(System.Object, System.Windows.StartupEventArgs)
   bei System.Windows.Application.<.ctor>b__1(System.Object)
   bei System.Windows.Threading.ExceptionWrapper.InternalRealCall(System.Delegate, System.Object, Int32)
   bei MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(System.Object, System.Delegate, System.Object, Int32, System.Delegate)
   bei System.Windows.Threading.Dispatcher.WrappedInvoke(System.Delegate, System.Object, Int32, System.Delegate)
   bei System.Windows.Threading.DispatcherOperation.InvokeImpl()
   bei System.Threading.ExecutionContext.runTryCode(System.Object)
   bei System.Runtime.CompilerServices.RuntimeHelpers.ExecuteCodeWithGuaranteedCleanup(TryCode, CleanupCode, System.Object)
   bei System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object, Boolean)
   bei System.Threading.ExecutionContext.Run(System.Threading.ExecutionContext, System.Threading.ContextCallback, System.Object)
   bei System.Windows.Threading.DispatcherOperation.Invoke()
   bei System.Windows.Threading.Dispatcher.ProcessQueue()
   bei System.Windows.Threading.Dispatcher.WndProcHook(IntPtr, Int32, IntPtr, IntPtr, Boolean ByRef)
   bei MS.Win32.HwndWrapper.WndProc(IntPtr, Int32, IntPtr, IntPtr, Boolean ByRef)
   bei MS.Win32.HwndSubclass.DispatcherCallbackOperation(System.Object)
   bei System.Windows.Threading.ExceptionWrapper.InternalRealCall(System.Delegate, System.Object, Int32)
   bei MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(System.Object, System.Delegate, System.Object, Int32, System.Delegate)
   bei System.Windows.Threading.Dispatcher.WrappedInvoke(System.Delegate, System.Object, Int32, System.Delegate)
   bei System.Windows.Threading.Dispatcher.InvokeImpl(System.Windows.Threading.DispatcherPriority, System.TimeSpan, System.Delegate, System.Object, Int32)
   bei MS.Win32.HwndSubclass.SubclassWndProc(IntPtr, Int32, IntPtr, IntPtr)
   bei MS.Win32.UnsafeNativeMethods.DispatchMessage(System.Windows.Interop.MSG ByRef)
   bei System.Windows.Threading.Dispatcher.PushFrameImpl(System.Windows.Threading.DispatcherFrame)
   bei System.Windows.Application.RunInternal(System.Windows.Window)
   bei System.Windows.Application.Run()
   bei WWW.exe.Client.App.Main()

有什么提示可能会出错吗?

编辑:我已经将我的整个方法包装到一个 try catch 块中,但是在第一行被击中之前发生了崩溃。

 void Application_Startup(object sender, StartupEventArgs e)
        {
            try
            {
                Application_Startup_Internal(sender, e);
            }
            catch (Exception exception)
            {
                Tracer.Write(exception); // writes the exception to the event log.
                throw;
            }
        }

编辑2:我尝试了这篇博文中提到的想法:http: //social.msdn.microsoft.com/Forums/vstudio/en-US/3e05d960-9bba-496b-bf42-9608b94f3c10/debugdiagnostics-initialization-failed-after-安装-安全-补丁-kb2840628 ,这解决了我的问题。但这意味着我必须删除我所有的诊断,这当然是我做不到的。

4

1 回答 1

1

问题是因为 .NET 4.0 http://support.microsoft.com/kb/2840628/en-us的更新优化不好。如文章中所述,可以通过安装更新​​ http://support.microsoft.com/kb/2872041/en-us来修复它。

于 2013-07-26T13:31:00.470 回答