Xamarin.Forms UWP 应用程序在运行时使用 .net 本机工具链失败,但以其他方式工作

Posted

技术标签:

【中文标题】Xamarin.Forms UWP 应用程序在运行时使用 .net 本机工具链失败,但以其他方式工作【英文标题】:Xamarin.Forms UWP app failing at run time with .net native tool chain but works otherwise 【发布时间】:2019-09-15 22:54:26 【问题描述】:

我有一个 Xamarin.Forms UWP 应用(Xamarin.Forms v3.4.0.1008975,UWP 目标/分钟版本 16299,VS 2017 15.9.11)。在没有 .net 本机工具链的情况下编译时,它可以正确构建和运行。当使用 .net 本机工具链编译时,它可以正常构建,但在运行时会失败。这是一个问题,因为我无法将应用程序发布到 Windows 商店。此应用程序之前(约 10 个月前)已发布到商店并正常运行。从那以后,随着 XF、Prism、sqlite 软件包的更新版本以及在许多其他更改中添加了几个其他软件包,已经进行了广泛的大修,因此几乎不可能找出可能是什么更改造成的。

我设法解决了 Rg.Plugins.Popup 和 Xam.Plugin.Iconize.FontAwesome 包的一些初始问题,方法是获取它们的程序集列表并将它们传递到 App.xaml.cs 中的 Xamarin.Forms.Forms.Init(e, assemblies); UWP 项目。这修复了我的应用程序中弹出窗口和字体图标的崩溃/显示问题。

当应用程序启动时,我在Xamarin.Forms.Forms.Init(...) 形式的Cannot load assembly 'clrcompression'. No metadata found for this assembly. 调用上看到几个处理的FileNotFoundException。缺少的程序集是:

clr压缩 e_sqlite3 libEGL libGLESv2 libSkiaSharp SkiaSharp.Views.Interop.UWP sqlite3

如前所述,这些错误已得到处理,并且仅在调试时才能看到。我没有看到任何明确的证据表明这些错误是一个问题,因为该应用程序肯定会从 Sqlite 读取一些数据而没有错误,并且我看到使用 SkiaSharp 正确绘制的图像。

但是,当我执行某些导致应用程序崩溃的操作时,我遇到了其他运行时错误。例如Unhandled exception at 0x05F8F74C (SharedLibrary.dll) in MyApp.UWP.exe: 0x00001007. occurred。如果我查看线程窗口,我会得到更多信息:

Not Flagged >   13884   0   Worker Thread   <No Name>   
System.Private.SharedLibrary.Interop.Generated.dll!__Interop.api_ms_win_core_kernel32_legacy_l1_1_0_dll.PInvoke_RaiseFailFastException
System.Private.SharedLibrary.Interop.Generated.dll!__Interop.api_ms_win_core_kernel32_legacy_l1_1_0_dll.PInvoke_RaiseFailFastException(Interop._EXCEPTION_RECORD* pExceptionRecord, System.IntPtr pContextRecord, uint dwFlags)
System.Private.CoreLib.dll!Interop.mincore.PInvoke_RaiseFailFastException(Interop._EXCEPTION_RECORD* pExceptionRecord, System.IntPtr pContextRecord, uint dwFlags)
System.Private.CoreLib.dll!Interop.mincore.RaiseFailFastException(uint faultCode, System.IntPtr pExAddress, System.IntPtr pExContext) Line 122
System.Private.CoreLib.dll!System.RuntimeExceptionHelpers.FailFast(string message, System.Exception exception, System.RuntimeExceptionHelpers.RhFailFastReason reason, System.IntPtr pExAddress, System.IntPtr pExContext) Line 237
System.Private.CoreLib.dll!System.RuntimeExceptionHelpers.RuntimeFailFast(System.RuntimeExceptionHelpers.RhFailFastReason reason, System.Exception exception, System.IntPtr pExAddress, System.IntPtr pExContext) Line 200
[External Code]
System.Private.CoreLib.dll!Internal.Runtime.Augments.RuntimeAugments.RunFunctionWithConservativelyReportedBufferInternal<Internal.Runtime.TypeLoader.CallConversionParameters>(int cbBuffer, System.IntPtr pfnTargetToInvoke, ref Internal.Runtime.TypeLoader.CallConversionParameters context, ref System.Runtime.RuntimeImports.ConservativelyReportedRegionDesc regionDesc)
System.Private.CoreLib.dll!Internal.Runtime.Augments.RuntimeAugments.RunFunctionWithConservativelyReportedBuffer<Internal.Runtime.TypeLoader.CallConversionParameters>(int cbBuffer, System.IntPtr pfnTargetToInvoke, ref Internal.Runtime.TypeLoader.CallConversionParameters context)
System.Private.TypeLoader.dll!Internal.Runtime.TypeLoader.CallConverterThunk.CallConversionThunk(System.IntPtr callerTransitionBlockParam, System.IntPtr callConversionId)
[External Code]
Prism.dll!Prism.Mvvm.BindableBase.SetProperty<int?>(ref int? storage, int? value, string propertyName)
[External Code]
System.Private.CoreLib.dll!Internal.Runtime.Augments.RuntimeAugments.CallDescrWorker(System.IntPtr callDescr) Line 970
System.Private.TypeLoader.dll!Internal.Runtime.TypeLoader.CallConverterThunk.InvokeTarget(void* allocatedStackBuffer, ref Internal.Runtime.TypeLoader.CallConversionParameters conversionParams)
System.Private.CoreLib.dll!Internal.Runtime.Augments.RuntimeAugments.RunFunctionWithConservativelyReportedBufferInternal<Internal.Runtime.TypeLoader.CallConversionParameters>(int cbBuffer, System.IntPtr pfnTargetToInvoke, ref Internal.Runtime.TypeLoader.CallConversionParameters context, ref System.Runtime.RuntimeImports.ConservativelyReportedRegionDesc regionDesc)
System.Private.CoreLib.dll!Internal.Runtime.Augments.RuntimeAugments.RunFunctionWithConservativelyReportedBuffer<Internal.Runtime.TypeLoader.CallConversionParameters>(int cbBuffer, System.IntPtr pfnTargetToInvoke, ref Internal.Runtime.TypeLoader.CallConversionParameters context)
System.Private.TypeLoader.dll!Internal.Runtime.TypeLoader.CallConverterThunk.CallConversionThunk(System.IntPtr callerTransitionBlockParam, System.IntPtr callConversionId)
[External Code]
MyApp.dll!MyApp.ViewModels.AppLevel.AppStatusViewModel.CurrentSynchroniseJobTasksCount.set(int? value) Line 415
MyApp.dll!MyApp.ViewModels.AppLevel.AppStatusViewModel.HandleDataSyncStartEvent(string payload) Line 287
[External Code]
MyApp.dll!MyApp.Services.Synchronisation.DataSyncCoordinator.DoSynchronisationJob() Line 84
MyApp.dll!MyApp.Services.Synchronisation.DataSyncCoordinator.AttemptSynchronisationTask(MyApp.Services.Synchronisation.IDatabaseSyncJob job) Line 74
MyApp.dll!MyApp.Services.Synchronisation.DataSyncService.DeleteLocalData(string dbResetKey) Line 29
MyApp.dll!MyApp.ViewModels.ClearLocalDataPopupViewModel.Submit() Line 66
[Resuming Async Method]
[External Code]

不幸的是,虽然这告诉我问题出在哪里,但它并没有给我任何关于为什么会发生以及如何解决它的线索。在这种情况下,它似乎无法在视图模型上设置属性,但即使在代码中达到这一点,它也必须在其他地方成功完成此操作。我想我真的在寻找有关如何调查此/获取更多信息的指导,因为如果没有一些源代码(我无法真正提供),将很难解决特定问题。我尝试在关闭优化的情况下进行调试,这通常是建议的,但没有提供比我在此处发布的更多信息。

我还担心,即使我找出了为什么会发生此特定异常并修复它,应用程序中可能还会出现更多问题,这些问题仅在使用 .net 本机工具链时才会出现。有什么工具可以帮助我解决这个问题吗?

【问题讨论】:

我缺少几乎相同的组件,但我没有使用 Prism ????????‍♂️ 【参考方案1】:

所以这被证明是 Prism (7.0.0.396) 和 .net 本机的问题。使用 .net 本机工具链编译时,使用 BindableBase.SetProperty 绑定可空类型(在本例中为 int?)的属性看起来会失败。以下似乎可以解决此问题:

public class BindableBaseWithFix : BindableBase

    protected virtual bool SetProperty<T>(ref T? storage, T? value, [CallerMemberName] string propertyName = null)
        where T : struct
    
        if (EqualityComparer<T?>.Default.Equals(storage, value))
            return false;
        storage = value;
        RaisePropertyChanged(propertyName);
        return true;
    
 

【讨论】:

以上是关于Xamarin.Forms UWP 应用程序在运行时使用 .net 本机工具链失败,但以其他方式工作的主要内容,如果未能解决你的问题,请参考以下文章

Xamarin.Forms UWP 中的内存泄漏

适用于 UWP 的 Xamarin Forms 顶部导航栏

hockeyapp 在 xamarin.forms 应用程序中的 UWP 上引发异常

VisualStateManager.SetVisualStateGroups UWP

Xamarin Forms 便携式项目:UWP 错误 -2147467259

无法在发布模式下为 UWP 构建 Xamarin.Forms 应用