在 windows phone 10 中安装 appx 文件后 MetroLog 不工作
MetroLog does not working after install appx file in windows phone 10
我已经将 Nuget 的 MetroLog 包安装到 UWP 解决方案 (VS2015) 中。
在调试模式下一切正常 -
它在本地文件夹中创建一个日志文件并在其中写入内容。
当我创建一个 .appx 文件时,将其复制到 WP 设备并安装它,
什么都没发生,MetroLog 不会创建任何日志文件。
拜托,需要帮助吗?
UWP 支持 MetroLog。默认情况下,in 会将日志存储在应用程序的 LocalState 文件夹中。所以这里的重点是如何访问 LocalState (LocalFolder) 文件夹 Windows 10 Mobile.
通常,我们可能会使用一些第三方工具,例如IsoStoreSpy or Windows Phone Power Tools to access Isolated Storage. With these tools, we can access LocalFolder, TemporaryFolder and RoamingFolder。但是,这两个工具只能在应用程序部署在 Debug 模式下工作。
目前建议在周年更新中使用App File Explorer to view and manipulate files stored by your sideloaded apps. This tool should be able to work no matter your application is deployed in Debug mode or Release mode. But please note that this is a new tool added to Windows Device Portal。
要使用此功能,我们需要 enable Device discovery and Device Portal. For more info, please see Using the App File Explorer to see your app data。
我已经将 Nuget 的 MetroLog 包安装到 UWP 解决方案 (VS2015) 中。
在调试模式下一切正常 - 它在本地文件夹中创建一个日志文件并在其中写入内容。
当我创建一个 .appx 文件时,将其复制到 WP 设备并安装它, 什么都没发生,MetroLog 不会创建任何日志文件。
拜托,需要帮助吗?
MetroLog。默认情况下,in 会将日志存储在应用程序的 LocalState 文件夹中。所以这里的重点是如何访问 LocalState (LocalFolder) 文件夹 Windows 10 Mobile.
通常,我们可能会使用一些第三方工具,例如IsoStoreSpy or Windows Phone Power Tools to access Isolated Storage. With these tools, we can access LocalFolder, TemporaryFolder and RoamingFolder。但是,这两个工具只能在应用程序部署在 Debug 模式下工作。
目前建议在周年更新中使用App File Explorer to view and manipulate files stored by your sideloaded apps. This tool should be able to work no matter your application is deployed in Debug mode or Release mode. But please note that this is a new tool added to Windows Device Portal。
要使用此功能,我们需要 enable Device discovery and Device Portal. For more info, please see Using the App File Explorer to see your app data。