How to get build version SDK in Windows Phone 8 using C #?

Can I get the SDK version in Windows Phone 8 using C #. If possible, give me an offer, please. I need to display the SDK version for building the SDK.

+4
source share
1 answer

You can read the Platform / SDK version from WMAppManifest.xaml.

<Deployment xmlns="http://schemas.microsoft.com/windowsphone/2012/deployment" AppPlatformVersion="8.0">

+2
source

Source: https://habr.com/ru/post/1502726/


All Articles