zoukankan      html  css  js  c++  java
  • VS2013: upgrading a Windows Phone 7/8 and Windows 8 apps(转)

    VS2013: upgrading a Windows Phone 7/8 and Windows 8 apps

    In this post I will showcase issues I had while upgrading a Visual Studio 2012 solution containing a Windows Phone app (with both 7.8 and 8.0 versions) and Windows Store app to Visual Studio 2013.

    As you probably already know, the Release Candidate version of VS2013 was released a few days ago and I decided it was the appropriate time to upgrade my 2Day todo-list application. Because 2Day for Windows will target the 8.1 release (coming October 18th, now available for MSDN subscribers) I needed to perform this upgrade before the release.

    Windows Phone 7.x support

    The first issue is simple and yet sad: Visual Studio 2013 is dropping support for Windows Phone 7.x app.  I guess it makes sense when given the fact the WP8 devices represent more than 65% of the total of Windows Phone device (see this AdDuplex blog post for more details).I can also confirm this trend that by looking at 2Day’s data for last week:

    2Day devices chart

    Since I released the first version of 2Day I submitted 14 updates. Starting from 2Day 1.4 I  released all updates for both WP7 and WP8 devices. It looks like the 2.1 update coming later this month will be the last one targeting WP7 devices.

    Windows Phone support Conclusion: upgrade to VS2013 imply no more WP7 support. You can try to maintain 2 solutions but we will see in the next paragraph that there are other issues with Portable Class Libraries.

    Portable Class Libraries (PCL)

    2Day’s Visual Studio 2012 solution contains Portable Class Libraries to enable code reuse between Windows Phone and Windows 8 (it was also helping code sharing between WP7 and WP8 versions). In Visual Studio 2013, like we saw before, support for WP7 is now longer available, including for PCLs:

    VS2013 PCL

    So opening a solution that contains PCLs targeting WP7 will upgrade those PCLs and drop targeting of WP7.

    Also, in order to target WP7 and have async/await support I had to use the Async BCL NuGet package:

    BLC Async Support

    Because the async support is now supported in the frameworks I target (Windows 8.1 and Windows Phone 8), I must remove those packages in order to prevent conflicts like the following:

    Error 28 The type 'System.Threading.Tasks.Task<TResult>' exists in both 'c:Program Files (x86)Reference AssembliesMicrosoftFramework.NETPortablev4.0ProfileProfile158mscorlib.dll' and '...packagesMicrosoft.Bcl.1.0.19libportable-net40+sl4+win8+wp71System.Threading.Tasks.dll'

    While doing those upgrades I also ended up target .Net 4.5, and it turns out the reflection API has some changes in the latest version of .Net.  If you’re like me you’re a fan of SOLID principles, you probably have some kind of Inversion of Control container using reflection… In my case the following code was not working anymore:

    var constructor = typeof(T).GetConstructors().FirstOrDefault();

    And I had to use the new reflection API:

    var constructor = typeof(T).GetTypeInfo().DeclaredConstructors.FirstOrDefault();

    You can read this complete post on the blog of the .Net team for more details about the evolution of the reflection API.

    PCL Conclusion: be careful when you upgrade PCL projects to VS2013. Because WP7 support is gone, you don’t need the Async BCL NuGet package anymore. If you choose to target .Net 4.5 beware of possible breaking changes in the reflection API.

    General conclusion: if like me your original plan was to target WP7, WP8 and Windows 8.1 withing a single Visual Studio solution, you’re in trouble. My decision is to drop support for WP7 devices for the next update of my app. I guess I could go with branching in TFS to keep compatibility but I don’t have time for that. Be also careful with PCLs and the new reflection API.

  • 相关阅读:
    shell脚本编写查看每个进程使用的swap分区的大小
    docker容器启动后自动停止,dockerfile编写的容器启动后也是自动停止
    基于python3环境使用bandersnatch搭建本地pypi源
    shell脚本返回值问题
    sed命令配置反向引用
    算法Sedgewick第四版-第1章基础-2.1Elementary Sortss-003比较算法及算法的可视化
    算法Sedgewick第四版-第1章基础-2.1Elementary Sortss-002插入排序法(Insertion sort)
    算法Sedgewick第四版-第1章基础-2.1Elementary Sortss-001选择排序法(Selection sort)
    算法Sedgewick第四版-第1章基础-1.4 Analysis of Algorithms-007按位置,找出数组相关最大值
    算法Sedgewick第四版-第1章基础-1.3Bags, Queues, and Stacks-001可变在小的
  • 原文地址:https://www.cnblogs.com/yaoliang11/p/3554484.html
Copyright © 2011-2022 走看看