从外部程序集访问Host属性

时间:2015-07-22 17:40:18

标签: .net visual-studio templates t4

我使用h1s = [] articles = soup.find_all("article") for i in articles: for x in i.find_all('h1'): h1s.append(x.text) 处理器指令在T4模板中导入我的外部程序集。

在所说的程序集中,我试图访问assembly属性。不幸的是,我似乎无法做到。

我尝试以这种方式获得主持人:

Host

不幸的是,尽管反射似乎映射到属性,但返回的值始终为public class MyTransformation : TextTransformation { // ... public void SomeMethod() { object host = GetType().GetProperty("Host").GetValue(this); if (host != null) { // do stuff } } }

调用模板文件的null指令中hostspecific属性设置为true

我做错了什么?

0 个答案:

没有答案