UWP App for Windows 10在手机上崩溃但在PC上工作

时间:2016-06-23 20:01:49

标签: c# exception crash windows-10 uwp

我正在为Windows 10制作一个UWP应用程序。该应用程序在PC上工作正常,但它在手机上崩溃了。我不确定为什么会这样。在我的应用程序中,我正在阅读json文件。

var lines = File.ReadAllLines("Assets/xxxxxx.json");

运行上面一行后,它会转到App.g.i.cs文件并运行以下代码。

#if DEBUG && !DISABLE_XAML_GENERATED_BREAK_ON_UNHANDLED_EXCEPTION
        UnhandledException += (sender, e) =>
        {
            if (global::System.Diagnostics.Debugger.IsAttached) global::System.Diagnostics.Debugger.Break();
        };
#endif

然后崩溃并从应用程序中消失。

我还从Solution Explorer添加了对Windows 10 Mobile的引用。

任何帮助都将不胜感激。

0 个答案:

没有答案