首页 > 数据库 > mysql教程 > CodeSmith实用技巧(八):生成的代码输出到文件中

CodeSmith实用技巧(八):生成的代码输出到文件中

WBOY
发布: 2016-06-07 15:10:51
原创
1686 人浏览过

在 CodeSmith 中,要把生成的代码文件输出到文件中,你需要在自己的模版中继承 OutputFileCodeTemplate 类。 % @CodeTemplateLanguage = " C# " TargetLanguage = " C# " Inherits = " OutputFileCodeTemplate " Description = " Buildcustomaccesscode. " %

CodeSmith中,要把生成的代码文件输出到文件中,你需要在自己的模版中继承OutputFileCodeTemplate类。

CodeSmith实用技巧(八):生成的代码输出到文件中<%@ CodeTemplate Language="C#" TargetLanguage="C#" Inherits="OutputFileCodeTemplate" Description="Build custom access code." %>
CodeSmith实用技巧(八):生成的代码输出到文件中
<%@ Assembly Name="CodeSmith.BaseTemplates" %>

OutputFileCodeTemplate主要做两件事情:

1.它添加一个名为OutputFile的属性到你的模版中,该属性要求你必须选择一个文件;

2.模版重载了方法OnPostRender(),在CodeSmith生成代码完成后把相应的内容写入到指定的文件中去。

如果想要自定义OutputFile属性弹出的保存文件对话框,你需要在你的模版中重载OutputFile属性。例如:你希望用户选择一个.cs文件来保存生成的代码,需要在你的模版中添加如下代码:

CodeSmith实用技巧(八):生成的代码输出到文件中脚本运行于="模板" >
CodeSmith实用技巧(八):生成的代码输出到文件中
//覆盖OutputFile属性并为其分配我们的特定设置。
CodeSmith实用技巧(八):生成的代码输出到文件中
[FileDialog(FileDialogType.Save, 标题="选择输出文件",过滤器="C# 文件 (*.cs)|*.cs", 默认扩展名=".cs")]
CodeSmith实用技巧(八):生成的代码输出到文件中
公共 覆盖 字符串 输出文件
CodeSmith实用技巧(八):生成的代码输出到文件中CodeSmith实用技巧(八):生成的代码输出到文件中
CodeSmith实用技巧(八):生成的代码输出到文件中{
CodeSmith实用技巧(八):生成的代码输出到文件中CodeSmith实用技巧(八):生成的代码输出到文件中    
获取 CodeSmith实用技巧(八):生成的代码输出到文件中{返回 基础.OutputFile;}
CodeSmith实用技巧(八):生成的代码输出到文件中 CodeSmith实用技巧(八):生成的代码输出到文件中    
设置 CodeSmith实用技巧(八):生成的代码输出到文件中{base.OutputFile = 值;}
CodeSmith实用技巧(八):生成的代码输出到文件中}

CodeSmith实用技巧(八):生成的代码输出到文件中
脚本>

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板