When I build my project I keep getting warnings that various referenced components could not be found in multiple projects, however it does say that the build was successful. If I remove/readd the references then the warnings will go away for one compile, but then they come right back on the next compile.
I just moved this project into Visual Studio 2012 (from 2010) and that's one of two problems I'm having, the second being a bit more frustrating... when I press F5 to debug Visual Studio changes modes (i.e. the toolbar changes so you can see it's gone into debug mode) but the application never launches and no breakpoints get hit. My Application Resources section contains an AppBootstrapper object and my breakpoint is at the start of the constructor for the AppBootstrapper.
I'm not sure whether these two problems are even related or not.
EDIT: Any time I make a change and then press Ctl-Shift-B it builds without any warnings, however when I hit Ctl-Shift-B again the warnings come back and remain for each build I do until I make another change at which point the warnings go away again for a single build.
EDIT: I got the latter problem fixed. I had modified my app.xaml to put my resources directly under the <Application.Resources> tag rather than nested in <ResourceDictionary><ResourceDictionary.MergedDictionaries><ResourceDictionary> tags when someone suggested I do so, but I guess it turns out it needs to be that way after all although I don't understand why... I just know that it doesn't actually try to create instances of the resources if it isn't don't this way.
I still have the other problem though which is a huge annoyance but at least stuff is running now.