我有一个包含2个项目的解决方案
用户控件库-> LUC
解决方案 |-解决方案介绍-> WFA | -Solution.Controls-> LUC
在LUC中,我有一个带有属性的控件,该控件必须显示宿主项目程序集(这里的问题是我不知道该怎么做)。
public class customControl : TextBox
{
public string HostAssemblyName
{
get { /* HELP => should return Solution.Presentation (must be generated dynamically because the name of the project where it will be hosted is not known) */ }
}
}
WFA项目利用LUC项目:
Solutiono
|-Solution.Presentation
|-References
|-Solution.Controls
有什么想法吗? 谢谢