Watch out when refactoring Silverlight namespaces
This was a small problem that had me stumped for around 10 minutes. Often I have the default namespace and assembly (and .xap) name to a project differ from the project name. For example if the solution is CompiledExperience.Examples and the project is Animation.Position then the namespace I'll set as CompiledExperience.Examples.Animation.Position for consistencies sake.
However the first time I did this in a Silverlight project things broke. Everything compiled fine however after the standard Silverlight loading screen .... nothing. Turns out just like Console applications in .NET Silverlight has the concept of a start up object. In Console projects it's the class that contains the Main method you'd like to use. In Silverlight it's the one that inherits from Application that you want to use (as ultimately this class will handle initial visuals and error handling).
You can set this start up Application object in the Silverlight tab of the project properties. My problem was that because I had moved this object into a different namespace then nothing happened after startup. Simply setting the object again in the project properties had everything going again smoothly.

Comments
Barry Dahlberg - Sunday, January 18, 2009
You would really expect an error to show for that...
scommisso - Wednesday, January 21, 2009
Odd, usually when I mess that up I get a "Check Application Manifest" error. You had Silverlight debugging turned on, right?
Nigel Sampson - Wednesday, January 21, 2009
By default I use Firefox so the debugging experience isn't as clear.