在 XamlParse 上崩溃部署的应用程序
Crashing deployed app on XamlParse
我已经从我的 WPF 应用程序创建了一个 ClickOnce 应用程序部署清单,但是当我尝试安装它时,它崩溃了并且我收到以下错误日志:
Problem signature:
Problem Event Name: CLR20r3
Problem Signature 01: phynix.exe
Problem Signature 02: 1.0.0.0
Problem Signature 03: 54b90fb3
Problem Signature 04: mscorlib
Problem Signature 05: 4.0.30319.17929
Problem Signature 06: 4ffa561c
Problem Signature 07: 43c4
Problem Signature 08: 105
Problem Signature 09: System.Windows.Markup.XamlParse
OS Version: 6.1.7601.2.1.0.256.48
Locale ID: 1031
Additional Information 1: 0a9e
Additional Information 2: 0a9e372d3b4ad19135b953a78882e789
Additional Information 3: 0a9e
Additional Information 4: 0a9e372d3b4ad19135b953a78882e789
Read our privacy statement online:
http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
If the online privacy statement is not available, please read our privacy statement offline:
C:\Windows\system32\en-US\erofflps.txt
有人知道是什么问题吗??
XamlParse
异常是指XAML无法读取或生成的代码无法正确执行。
通常是:
- 图像文件未作为资源包含在项目中,或者位于部署计算机上不可用的位置;
- 缺少引用的程序集and/or它们的依赖项。
尝试在 WPF
中连接一个 UnhandledException
事件,并在你的 app.xaml
中添加事件连接以避免上述异常。
参考:How can I get useful WPF .NET error information from a user's machine?
我已经从我的 WPF 应用程序创建了一个 ClickOnce 应用程序部署清单,但是当我尝试安装它时,它崩溃了并且我收到以下错误日志:
Problem signature:
Problem Event Name: CLR20r3
Problem Signature 01: phynix.exe
Problem Signature 02: 1.0.0.0
Problem Signature 03: 54b90fb3
Problem Signature 04: mscorlib
Problem Signature 05: 4.0.30319.17929
Problem Signature 06: 4ffa561c
Problem Signature 07: 43c4
Problem Signature 08: 105
Problem Signature 09: System.Windows.Markup.XamlParse
OS Version: 6.1.7601.2.1.0.256.48
Locale ID: 1031
Additional Information 1: 0a9e
Additional Information 2: 0a9e372d3b4ad19135b953a78882e789
Additional Information 3: 0a9e
Additional Information 4: 0a9e372d3b4ad19135b953a78882e789
Read our privacy statement online:
http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409
If the online privacy statement is not available, please read our privacy statement offline:
C:\Windows\system32\en-US\erofflps.txt
有人知道是什么问题吗??
XamlParse
异常是指XAML无法读取或生成的代码无法正确执行。
通常是:
- 图像文件未作为资源包含在项目中,或者位于部署计算机上不可用的位置;
- 缺少引用的程序集and/or它们的依赖项。
尝试在 WPF
中连接一个 UnhandledException
事件,并在你的 app.xaml
中添加事件连接以避免上述异常。
参考:How can I get useful WPF .NET error information from a user's machine?