I am building a third party library with few template Custom controls . Now when I refer those controls in app from project its works fine but when I take .dll of that library and refer, getting error of those custom control classes missing in .dll.
What wrong am i doing?
Got it working. Seems xaml files do not get compiled into dll and need to be distributed as resource. I changed custom control to Template control, distributed xaml to the application and .cs file compiled into the class library dll .
Got it working. Seems xaml files do not get compiled into dll and need to be distributed as resource. I changed custom control to Template control, distributed xaml to the application and .cs file compiled into the class library dll .