Reputation: 817
When deploying Windows Phone 7 application i have choice for References Properties - Copy Local. Do I have Copy Local such references as System.XML, System.XML.Linq, Microsoft.Phone.Controls?
How to prepare my app for marketplace? For example I am using Release instead of Debug Configuration in Visual Studio. What else is important (I had Certification failure twice - once my app terminated at launch as reviewer said, 2nd time i included all rerefences as copy local and had problems with Microsoft.Phone.dll)
Upvotes: 0
Views: 94
Reputation: 1631
Actually you wouldn't need to set anything on your References they are handled automatically by Visual Studio. My references Copy Local property is set to false.
The first Certification error you got was because your application exited without a warning, you should catch every exception and inform the user about them and then you can exit the application if you can't handle the error.
You should read this MSDN resource thoroughly, it is important.
Application Certification Requirements for Windows Phone
The Most important parts are :
Application Submission Requirements
Technical Certification Requirements
Additional Requirements for Specific Application Types
And before you send your app you have an additional option to test your app yourself with Visual Studio build in Marketplace Test Kit found in the project menu.
Upvotes: 1