UWP 記一次WTS 和 UCT翻車經歷

原文: UWP 記一次WTS 和 UCT翻車經歷

此次翻車,真的,在網上絕對找不到回答的。html

只有在WTS的Issues討論中才找到,哈哈git

不過這個應該比較少遇到吧,據我所知,提出Issue那個大胸弟和我都遇到了。。。github

 

翻車具有的條件以下:async

1. 使用了WTS(Windows Template Studio)的What‘s New Prompt,版本是1.7以前的。個人項目是2017年9月份建立的,版本應該是的。好像1.6當時spa

2. 添加了UWP Community Toolkit 的 SystemInformation 類, 我是直接引用了SystemInformationPage。調試

 

若是你兩個都碰到了,恭喜!!!code

調試的時候,Json反序列化必定異常。orm

Newtonsoft.Json.JsonReaderException: 'Input string '2018.1.19.0' is not a valid number. Path '', line 1, position 7.'

 

這個是版本號,原本是字符串類型,在反序列化的時候,卻把他當成了數字類型。htm

 

 

 

 

解決辦法呢,老外也給了,你不嫌麻煩,能夠直接去https://github.com/Microsoft/WindowsTemplateStudio/issues/1659查找。blog

我直接挑明瞭說。

直接修改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(); } } }
相關文章
相關標籤/搜索