I am trying to reference a DLL called WizardActivityPack with a XML type called "wiz:Step", but it's not appearing in the designer
Since the compiler is complaining about the type not existing, I used reflector to see what the compiled output is. The correct type does appear to be in the correct namespace in the correct DLL
What am I doing wrong, or what else can I do to get the XAML to "see" my DLL?
If it matters, I'm trying to compile in .NET 4.0
It appears that by upgrading each of the projects to version 4.5 and removing the XAML designer code of "InitializeComponent();"
everything compiles and works fine.
I wish I had more to share for anyone who runs across this, but that is the fix for me.