> 데이터 베이스 > MySQL 튜토리얼 > CodeSmith实用技巧(八):生成的代码输出到文件中

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

WBOY
풀어 주다: 2016-06-07 15:10:51
원래의
1689명이 탐색했습니다.

在 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实用技巧(八):生成的代码输出到文件中script runat="template">
CodeSmith实用技巧(八):生成的代码输出到文件中
// Override the OutputFile property and assign our specific settings to it.
CodeSmith实用技巧(八):生成的代码输出到文件中
[FileDialog(FileDialogType.Save, Title="Select Output File", Filter="C# Files (*.cs)|*.cs", DefaultExtension=".cs")]
CodeSmith实用技巧(八):生成的代码输出到文件中
public override string OutputFile
CodeSmith实用技巧(八):生成的代码输出到文件中CodeSmith实用技巧(八):生成的代码输出到文件中
CodeSmith实用技巧(八):生成的代码输出到文件中{
CodeSmith实用技巧(八):生成的代码输出到文件中CodeSmith实用技巧(八):生成的代码输出到文件中    
get CodeSmith实用技巧(八):生成的代码输出到文件中{return base.OutputFile;}
CodeSmith实用技巧(八):生成的代码输出到文件中CodeSmith实用技巧(八):生成的代码输出到文件中    
set CodeSmith实用技巧(八):生成的代码输出到文件中{base.OutputFile = value;}
CodeSmith实用技巧(八):生成的代码输出到文件中}

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

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿