我想在Visual Studio 7.1升級我的Windows Phone應用8.0 2015年有當我想調試這是錯誤唯一的問題的Windows Phone 7.1在Visual Studio 2015年在Windows 10
AppManifest Validation failed. Invalid AppPlatformVersion in WMAppmanifest.xml PhoneApp2
而且這裏是我的manifest.cs
<Application
x:Class="PhoneApp2.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone">
<!--Application Resources-->
<Application.Resources>
</Application.Resources>
<Application.ApplicationLifetimeObjects>
<!--Required object that handles lifetime events for the application-->
<shell:PhoneApplicationService
Launching="Application_Launching" Closing="Application_Closing"
Activated="Application_Activated" Deactivated="Application_Deactivated"/>
</Application.ApplicationLifetimeObjects>
</Application>
做some1知道如何解決這個問題?
這不是您的應用程序清單。這是你的App.xaml。 – BoltClock
我應該如何處理.xaml? – miechooy