Multi-targeting your Windows Phone Application to Run on 7.0 and 7.5 (Mango)
Introduction
With the general availability of Windows Phone "Mango", Windows Phone consumers around the world might have one of two Windows Phone OS on their phones - the original Windows Phone 7.0 or the recently announced Windows Phone 7.1 (code-named "Mango").
Smart developers would like to make sure that their Windows Phone application can target the older version of Windows Phone (7.0) even though they may be using the latest version of Windows Phone development tools (7.1)
Why Multi-targeting
How to Specify Multi-targeting in Your Visual Studio Project
Fortunately for Windows Phone developers, the SDK tools for Windows Phone 7.1 bring multi-targeting support to Visual Studio.
Whenever a developer creates a Windows Phone application/library using Windows Phone "Mango" SDK tools, they have an option to choose the Windows Phone version they want to target.
For example, let us create a Windows Phone application using WP 7.1 SDK tools.
Figure 1: Create a Windows Phone application using WP 7.1 SDK tools
When we click OK, Visual Studio prompts us to choose the Windows Phone OS version we want to target.
Figure 2: Target Windows Phone OS Version
If we choose 7.0 as the target version, and you open up the WMAppManifest.xml file, you will notice the following line.
<Deployment xmlns="http://schemas.microsoft.com/windowsphone/2009/deployment" AppPlatformVersion="7.0">
If we choose 7.1 as the target version, the WMAppManifest.xml file will contain the following.
<Deployment xmlns="http://schemas.microsoft.com/windowsphone/2009/deployment" AppPlatformVersion="7.1">
We see that WP 7.0 and WP7.1 applications basically differ in the AppPlatformVersion property in its application manifest file.
Summary
In this article, we learned how to multi-target a Windows Phone application. I hope you have found this information useful. You can check out the different values of AppPlaformVersion property by creating your own projects or downloading the sample project from here.
Comments
There are no comments yet. Be the first to comment!