The [NeutralResourceLanguage] attribute is missing on the entry assembly

I’m getting the same thing.. Maybe their new update they just made doesn’t work? Found it… Update Assembly.cs with this: using System.Resources; // Add this to the top.. [assembly: NeutralResourcesLanguage(“en-US”, UltimateResourceFallbackLocation.Satellite)] This worked for me.. Cheers.. Note per Blakomen: If you are submitting an application for worldwide publishing, you should use NeutralResourcesLanguage(“en”), not just “en-US” … Read more

Custom WP7 Silverlight control with dynamic 3D content

I couldn’t find any way of detecting that a Silverlight control needs to change its presentation, be it due to user interaction or animation. Controls are rendered only when the 3D scene changes because of this, and so they lack the slick look and feel of the native WP7 applications. Make something that always changes … Read more

Getting GPS coordinates on Windows phone 7

Here’s a simple example: GeoCoordinateWatcher watcher; watcher = new GeoCoordinateWatcher(GeoPositionAccuracy.Default) { MovementThreshold = 20 }; watcher.PositionChanged += this.watcher_PositionChanged; watcher.StatusChanged += this.watcher_StatusChanged; watcher.Start(); private void watcher_StatusChanged(object sender, GeoPositionStatusChangedEventArgs e) { switch (e.Status) { case GeoPositionStatus.Disabled: // location is unsupported on this device break; case GeoPositionStatus.NoData: // data unavailable break; } } private void watcher_PositionChanged(object sender, GeoPositionChangedEventArgs<GeoCoordinate> … Read more