I get a squiggly line under the 6th line of code below, giving me the error indicated in the title. I just switched to VS 2012, and everything worked perfectly in VS 2010. I feel that maybe the problem is really in another place ... can someone tell me if there is something wrong with this xaml?
<Application x:Class="SageWpf.App" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:SageWpf"> <Application.Resources> <ResourceDictionary x:Key="rd"> <ResourceDictionary.MergedDictionaries> <ResourceDictionary> <local:AppBootStrapper x:Key="bootstrapper"/> <local:EffectConverter x:Key="effectConverter"/> <local:VisibilityConverter x:Key="visibilityConverter"/> </ResourceDictionary> </ResourceDictionary.MergedDictionaries> </ResourceDictionary> </Application.Resources> </Application>
source share