I have a situation while developing a WPF MVVM application. After some extensive searching I'll try to explain the experienced behaviour on SO, and hope someone has a solution.
The WPF application under development, has a reference to a local developed "Infrastructure" assembly. This assembly mainly consists of classes to commmunicate with our WCF services.
This assembly has a assembly reference to a second assembly, "Ninject.Extensions.WCF", whoose content is used in some functionalities.
When I include a reference to the "Infrastructure" assembly, i get a VS2010 designer error that it cannot find the "Ninject.Extensions.WCF" assembly within a couple of seconds after triggering a local build.
This all makes sense because the designer "probably" traverses all referenced assemblies for definitions.
In this particular case, the assembly it's trying to load has nothing to do with WPF, so I can live with the designer not trying to resolve the assembly.
Is there a way to "tell" the designer to ignore these missing referenced assemblies instead of throwing an exception?