I have this other assembly which has a folder with 10 UserControls and I reference the assembly in XAML so I can use them.
xmlns:usercontrols="clr-namespace:Company.Project.OtherAssembly.UserControls;assembly=Company.Project.OtherAssembly"
However, when I try to use the UserControls with <usercontrols:someUserControl />
it only finds 4 of the 10 UserControls.
I have no idea why, they all have the same namespace. It even finds a public class within a UserControl but not the actual UserControl.
Any help on this matter is much appreciated.