今天在微软的网站看到的一篇使用CodeSmith的例子,现在写出来大家一起研究研究。
        首先,我还是要简要介绍一下其中用到的基础知识。
        1.在模板中的代码区中(<%=  %><%  %>)可以使用.NET中的一些类和方法。但是就像和.NET项目中一样需要添加应用,就像C#中的using

<%@ Assembly Name="System.Data" %>
<%@ Import Namespace="System. Data" %>


        2.在脚本区域中可以编写生成模板时使用到的函数,其中的语言根据在声明模板时定义的使用的语言相同。

<script runat="template">

</script>

        3.个人感觉在编写模板时就像以前编写ASP页面一样,很灵活。其中的循环和判断的使用结构上和ASP基本一样,只不过在代码区域中使用的语言是声明模板时定义的语言,像C#VB.NET等。

        这次我们要实现的一个功能是将某一文件夹下所有匹配后缀的文件全部找出并输出它们的绝对路径。其实这个模板本身的功能并不强大,主要是大家可以利用这个模板在生成代码时批量向代码文件中生成代码,例如向某一文件夹下的所有
.cs文件中插入相应的代码。这个思想是基于一定条件的:首先要学习我前边在CodeSmith基础中提到的,可以向代码文件中定义的region中添加相应的代码,文件夹下的.cs文件需要有一定的命名规范,.cs代码文件中的region区域的定义的名称也需要有一定的命名规范,这两个要求是结合起来的,因为我们得到同一文件夹下的所有.cs文件后,根据文件名去确定这个代码文件是哪一层的那个类文件,通过这个名称我们就知道需要读出那个数据表的结构,然后按照这个数据表去像相应命名好的region中添加相应的代码。主要思想就是这样的。下面将模板文件的代码贴出来大家研究。

 1CodeSmith应用(三)<%@ CodeTemplate Language="C#"  TargetLanguage="Text" Description="Simple template to show main syntax" %>
 2CodeSmith应用(三)<%@ Property Name="Filter" Default="*.cst" Type="System.string" Category="Masks" Description="Mask for files in the directory" %>
 3CodeSmith应用(三)<%@ Assembly Name="SchemaExplorer" %>
 4CodeSmith应用(三)<%@ Assembly Name="System.Design" %>
 5CodeSmith应用(三)<%@ Import Namespace="SchemaExplorer" %>
 6CodeSmith应用(三)<%@ Import Namespace="System.IO" %>
 7CodeSmith应用(三)Simple Template Example used to show syntax and structure of template. 
 8CodeSmith应用(三)
 9CodeSmith应用(三)<%= DateTime.Now.ToLongDateString() %>
10CodeSmith应用(三)
11CodeSmith应用(三)<% 
12CodeSmith应用(三)// Comments within code delimiters or script blocks 
13CodeSmith应用(三)// are made using the Language syntax (e.g. C#)
14CodeSmith应用(三)Response.WriteLine("List of files in template directory (using mask "+ Filter + ")"); 
15CodeSmith应用(三)DisplayDirectoryContents(Filter);
16CodeSmith应用(三)Response.WriteLine(">> Code Generation Complete.");
17CodeSmith应用(三)%>
18CodeSmith应用(三)
19CodeSmith应用(三)<script runat="template">
20CodeSmith应用(三)// Iterates through the current directory and displays
21CodeSmith应用(三)// a list of the files that conform to the supplied 
22CodeSmith应用(三)// mask. 
23CodeSmith应用(三)public void DisplayDirectoryContents(string sFilter)
24>

相关文章:

  • 2021-05-03
  • 2021-06-05
  • 2021-05-26
  • 2021-10-07
猜你喜欢
  • 2021-07-02
  • 2021-09-01
  • 2021-12-30
  • 2021-08-23
相关资源
相似解决方案