What is the Package.appxmanifest.xml file in a Windows Phone 8.1 Silverlight application?

I created a Windows Silverlight Silverlight project from Visual Studio 2013. The project has two different manifest files WMAppManifest.xml and Package.appxmanifest.xml. All information such as "Display Name", "Navigation Start Page", "Notification Service", "Tile Name", "Version Number, etc." ), Goes into my WMAppManifest.xml file. I never use another manifest file. Even when I extract the "xap" of my application, it only contains the WMAppManifest.xml file. So what's the use of Package.appxmanifest.xml in a Windows Phone 8.1 Silverlight app?

+3


source to share


2 answers


It is used for specific scenarios related to APIs and WinRT functions. For example, things like adding generic Background Tasks and some WinRT APIs require capabilities defined in the AppX manifest, not in WMAppManifest.



+1


source


You need to manually edit certain values ​​in the Package.appxmanifest.xml file. See this link: Prepare Windows Phone Silverlight 8.1 Application for Publishing



0


source







All Articles