Tag: deployment
XAP File in Windows Phone
XAP is the file which is used to deploy the app to the unlocked windows phone 8 device or submit the app for windows phone store. In simple terms, XAP is the output of the Windows Phone 8 project in Visual Studio and is a compressed files which contains assemblies, images, configuration files etc. The XAP file also contains 2 more important application manifest file…
How to Prevent the deployment of Windows Phone 8.1 App in SD Card ?
If you want to prevent the user from deploying your Windows Phone 8.1 app in SD Card , you can do it by updating the WMAppManifest.xml file. How to Prevent the deployment of Windows Phone 8.1 App in SD Card ? Follow the below steps to do it. 1. Double Click and open the WMAppManifest.xml . This will open the WMAppManifest.xml in GUI designer.2. Navigate…
Difference between Web.Debug.config and Web.Release.Config in ASP.NET MVC Project
When creating a ASP.NET MVC Project in Visual Studio 2010 , one might notice the Web.config file has additional 2 files Web.Debug.config Web.Release.Config What are the difference between Web.Debug.config and Web.Release.Config in ASP.NET MVC Project ? This is something new in Visual Studio 2010 and higher versions . It is called “Web Deployment’s Web.Config Transformation” feature. You could have the settings specific for an environment…