1. I've created Web Apllication Project for User Control Library.
2.I've added post-build action in User Control Library to copy dll and *.ascx files to Web Site Project.
copy $(ProjectDir)*.ascx C:\Projects\WEBSITEProject\UserControlsSubfolder
copy $(TargetDir)$(TargetFileName) C:\Projects\WEBSITEProject\Bin
3. Unfortunately I have manually remove CodeBehind="UserControl.ascx.vb" from copied ASCX files.(otherwise Web Site build shows compile errors that vb file not found)
Does anyone has a suggestion, how to avoid step 3?