这次翻车,真的,在网上绝对找不到回答的。
只有在WTS的Issues讨论中才找到,哈哈
不过这个应该比较少遇到吧,据我所知,提出Issue那个大胸弟和我都遇到了。。。
翻车具备的条件如下:
1. 使用了WTS(Windows Template Studio)的What‘s New Prompt,版本是1.7之前的。我的项目是2017年9月份创建的,版本应该是的。好像1.6当时
2. 添加了UWP Community Toolkit 的 SystemInformation
类, 我是直接引用了SystemInformationPage。
如果你两个都碰到了,恭喜!!!
调试的时候,Json反序列化一定异常。
Newtonsoft.Json.JsonReaderException: 'Input string '2018.1.19.0' is not a valid number. Path '', line 1, position 7.'
这个是版本号,本来是字符串类型,在反序列化的时候,却把他当成了数字类型。
解决办法呢,老外也给了,你不嫌麻烦,可以直接去https://github.com/Microsoft/WindowsTemplateStudio/issues/1659查找。
我直接挑明了说。
直接修改WhatsNewDisplayService.cs
public static class WhatsNewDisplayService
{
internal static async Task ShowIfAppropriateAsync()
{
if (Microsoft.Toolkit.Uwp.Helpers.SystemInformation.IsAppUpdated)
{
var dialog = new WhatsNewDialog();
await dialog.ShowAsync();
}
}
}