c# – T4模板装配指令

前端之家收集整理的这篇文章主要介绍了c# – T4模板装配指令前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个定制的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

这是因为这里描述的兼容性破坏:

http://weblogs.asp.net/lhunt/archive/2010/05/04/t4-template-error-assembly-directive-cannot-locate-referenced-assembly-in-visual-studio-2010-project.aspx

原文链接:https://www.f2er.com/csharp/93020.html

猜你在找的C#相关文章