我有一个定制的dll,它有一个类,并且(为了简单起见)有一个方法,它将返回一个字符串.
我有一个项目,引用了dll,我想在该项目中使用一个(不是预处理的)T4模板,这个模板称之为方法.我试过这个:
<#@ template debug="true" hostspecific="false" language="C#" #> <#@ assembly name="MyDLL.dll" #> <#@ output extension=".cs" #> <# var template = new MyDLL.MyNamespace.MyClass(); this.Write(template.Run()); #>
我收到以下错误:
Error 14 Compiling transformation: Metadata file ‘MyDLL.dll’ could not be found
Error 13 A namespace cannot directly contain members such as fields or methods
即使MyClass.Run()只是一个返回“// hello”;
解决方法
好像你的问题:
Error Compiling transformation: Metadata file ‘dotless.Core’ could not be found
这是因为这里描述的兼容性破坏: