Scenario
Create a new configuration in Visual Studio and select ‘copy’ from an existing working configuration. The new configuration will not compile now.

As it turns out, Visual Studio 2010 (even with SP1) does not copy the Conditional compilation symbols.

Adding in my conditional compilation symbols allows the project to compile now.
8f448235-a620-46e3-b7b3-893a99728c0e|0|.0
I use these two snippets a lot for WPF and Silverlight development. I decided to post them on the blog so that I have them available to me whenever and wherever. I always seem to be searching through older projects for this code.
vmb
This snippet creates the ViewModelBase that I use almost everywhere. It simply implements INotifyPropertyChanged and works in both WPF and Silverlight. I use this for my ViewModels so that the properties on the VM are observable for databinding. I use this in conjunction with my propsn snippet that creates a property with SafeNotify calls in the setter.
mb
This snippet is used to create the ModelBase. Again, this is a WPF / Silverlight compatible class. I link my model such that it compiles for WPF and Silverlight so that I can share my model between my WCF and my UI. This class gives me INotifyPropertyChanged, SafeNotify, and a ToString implementation that uses reflection to dump a shallow representation of the class.
Hope this code helps someone.
682c9d01-be01-481b-92ef-28c1094139d8|0|.0
If you have not installed the latest version of the Visual Studio Productivity Power Tools (The LATEST release that is), you are missing out on some killer functionality.
Download them here:
http://visualstudiogallery.msdn.microsoft.com/en-us/d0d33361-18e2-46c0-8ff2-4adea1e34fef
There is now a Solution Navigator:
Advanced object information when hovering over an object or method with your cursor:
Cool new color coded gradient backed tabs:
Pinning of tabs is still supported:
Check out more info on the Visual Studio Blog
http://blogs.msdn.com/b/visualstudio/archive/2010/07/20/solution-navigator-blog-post.aspx
Download the latest version of the Productivity Power Tools
http://visualstudiogallery.msdn.microsoft.com/en-us/d0d33361-18e2-46c0-8ff2-4adea1e34fef
a976bf56-3e05-4d89-8325-4c49145fb672|0|.0