I created a WPF UserControl in a VisualStudio project, and now want to use it within another project.
I read here how can i link in xaml this, but somehow, even after rebuilding several times, the compiler stills complains about Assembly xxx not found. What am i doing wrong?
My UserControl is inside project CircularProgress directly under the root (there's no extra folder) and has the name CircularProgressControl.xaml, and my new project xaml looks uses this
xmlns:other="clr-namespace:CircularProgress;assembly=CircularProgress"
...
<other:CircularProgressControl/>