While preparing my phone app for release, I thought I\'d change the version numbers on all my assemblies.
I also had an issue with the WCF service client not auto-ge
I post here as reference, as it took me some hours to fix this: I had the same problem, i had to go in Assembly.cs file, then make make sure that the following element has empty value:
[assembly: AssemblyCulture("")]
Putting a culture info there (eg. "en-US") makes the app quit silently on startup, without any exception nor log info.
No problem in leaving culture information in the following field:
[assembly: NeutralResourcesLanguageAttribute("en-US")]