Microsoft MVP성태의 닷넷 이야기
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일
(연관된 글이 1개 있습니다.)

하나의 T4 템플릿으로 여러 개의 소스코드 파일을 자동으로 생성하는 방법

T4를 이용한 자동 생성 코드는 예전에 한번 소개해 드렸습니다.

T4 를 이용한 INotifyPropertyChanged 코드 자동 생성
; https://www.sysnet.pe.kr/2/0/1619

그런데, 때로는 출력 파일을 다중으로 할 필요가 있습니다. 다행히, 이에 대한 방법은 아래의 글에 전부 공개되어 있습니다.

How to generate multiple outputs from single T4 template
; http://www.olegsych.com/2008/03/how-to-generate-multiple-outputs-from-single-t4-template/

좀 복잡하니, ^^ 간단하게 정리해 볼까요?

우선 "How to generate multiple outputs from single T4 template" 글에 공개된 예제 프로젝트를 다운로드 받습니다.

Source code 
; http://www.olegsych.com/wp-content/uploads/2008/03/multioutputpot.zip

이 압축 파일의 내용 중에 MultiOutput.tt 파일만 필요하니 그것만 복사해서 여러분들의 솔루션에 추가해 줍니다. MultiOutput.tt 파일의 경우 스스로에 대한 소스 코드 생성이 목적은 아니므로 "Custom Tool"의 내용을 지워줍니다.

t4_multiple_output_1.png

자, 이제 소스 코드를 생성할 용도의 tt 파일을 원하는 만큼 추가해줍니다. 여기서는 csgen.tt, jsgen.tt 2개의 파일을 추가합니다. 2개 모두 마찬가지로 "Custom Tool"의 내용을 지워줍니다.

예를 들어, 아래는 jsgen.tt 파일의 내용이고,

<#@ template language="C#" #>
<#@ output extension=".js" #>
<#@ import namespace="System.Runtime.Remoting.Messaging" #>

var <#= Parameter #> = {
}

<#+
    string Parameter
    {
        get 
        { 
            string result = (string)CallContext.GetData("Parameter");
            if (result == null)
                result = string.Empty;
            return result; 
        }
    }
#>

다음은 csgen.tt 파일입니다.

<#@ template language="C#" #>
<#@ output extension=".cs" #>
<#@ import namespace="System.Runtime.Remoting.Messaging" #>

public class <#= Parameter #>
{
}

<#+
    string Parameter
    {
        get 
        { 
            string result = (string)CallContext.GetData("Parameter");
            if (result == null)
                result = string.Empty;
            return result; 
        }
    }
#>

마지막으로 2개의 tt 파일과 MultiOutput.tt에서 제공되는 메서드를 이용해 다중 파일을 생성하는 tt 파일을 만들어 줍니다.

<#@ import namespace="System.Runtime.Remoting.Messaging" #>
<#@ include file="MultiOutput.tt" #>
<#
    CallContext.SetData("Parameter", "MyType"); // csgen.tt, jsgen.tt 내부에서 활용할 데이터를 전달

    ProcessTemplate("csgen.tt", "DataObject.cs");
    ProcessTemplate("jsgen.tt", "DataObject.js");

    DeleteOldOutputs();
#>

이번 tt 파일은 소스 코드를 생성할 것이므로 Custom Tool의 내용을 지워서는 안됩니다. 이렇게 만들고 tt 파일을 저장하면 하위에 다음과 같이 3개의 파일이 생성됩니다

t4_multiple_output_2.png

이 중에서 DataObject.cs, DataObject.js 파일은 각각 csgen.tt, jsgen.tt에 의해 생성된 것이고 DataObjectGen.js 파일은 본래의 DataObjectGen.tt에 의해 성성된 것입니다. (현재는 DataObjectGen.tt에 별다른 출력 내용이 없으므로 아무것도 포함하고 있지 않습니다.)




그리하여, "T4 를 이용한 INotifyPropertyChanged 코드 자동 생성" 글과 이번 글의 내용을 합치면 어떻게 될까요?

단일 XML 하나에 정의된 Data Object 스키마를 통해 다중 언어로의 구현 타입으로 자동으로 출력하는 것이 가능합니다. ^^

(첨부된 파일은 위의 실습을 포함한 프로젝트입니다.)




[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]

[연관 글]






[최초 등록일: ]
[최종 수정일: 5/24/2014]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 



2014-05-26 11시01분
[spowner] 와우! 브라보!
[guest]

... 121  122  123  124  125  126  127  128  129  [130]  131  132  133  134  135  ...
NoWriterDateCnt.TitleFile(s)
1803정성태11/4/201420210오류 유형: 261. Windows Server Backup 오류 - Error in backup of E:\$Extend\$RmMetadata\$TxfLog
1802정성태11/4/201422186오류 유형: 260. 이벤트 로그 - Windows Error Reporting / AEAPPINVW8
1801정성태11/4/201427386오류 유형: 259. 이벤트 로그 - Windows Error Reporting / IPX Assertion / KorIME.exe [1]
1800정성태11/4/201418209오류 유형: 258. 이벤트 로그 - Starting a SMART disk polling operation in Automatic mode.
1799정성태11/4/201422928오류 유형: 257. 이벤트 로그 - The WMI Performance Adapter service entered the stopped state.
1798정성태11/4/201431695오류 유형: 256. 이벤트 로그 - The WinHTTP Web Proxy Auto-Discovery Service service entered the stopped state. [1]
1797정성태11/4/201417379오류 유형: 255. 이벤트 로그 - The Adobe Flash Player Update Service service entered the stopped state.
1796정성태10/30/201424410개발 환경 구성: 249. Visual Studio 2013에서 Mono 컴파일하는 방법
1795정성태10/29/201426948개발 환경 구성: 248. Lync 2013 서버 설치 방법
1794정성태10/29/201422368개발 환경 구성: 247. "Microsoft Office 365 Enterprise E3" 서비스에 대한 간략 소개
1793정성태10/27/201423002.NET Framework: 474. C# - chromiumembedded 사용 - 두 번째 이야기 [2]파일 다운로드1
1792정성태10/27/201423128.NET Framework: 473. WebClient 객체에 쿠키(Cookie)를 사용하는 방법
1791정성태10/22/201422865VC++: 83. G++ - 템플릿 클래스의 iterator 코드 사용에서 발생하는 컴파일 오류 [5]
1790정성태10/22/201418402오류 유형: 254. NETLOGON Service is paused on [... AD Server...]
1789정성태10/22/201420976오류 유형: 253. 이벤트 로그 - The client-side extension could not remove user policy settings for '...'
1788정성태10/22/201423072VC++: 82. COM 프로그래밍에서 HRESULT 타입의 S_FALSE는 실패일까요? 성공일까요? [2]
1787정성태10/22/201431245오류 유형: 252. COM 개체 등록시 0x8002801C 오류가 발생한다면?
1786정성태10/22/201432605디버깅 기술: 65. 프로세스 비정상 종료 시 "Debug Diagnostic Tool"를 이용해 덤프를 남기는 방법 [3]파일 다운로드1
1785정성태10/22/201421785오류 유형: 251. 이벤트 로그 - Load control template file /_controltemplates/TaxonomyPicker.ascx failed [1]
1784정성태10/22/201429896.NET Framework: 472. C/C++과 C# 사이의 메모리 할당/해제 방법파일 다운로드1
1783정성태10/21/201423326VC++: 81. 프로그래밍에서 borrowing의 개념
1782정성태10/21/201420073오류 유형: 250. 이벤트 로그 - Application Server job failed for service instance Microsoft.Office.Server.Search.Administration.SearchServiceInstance
1781정성태10/21/201420474디버깅 기술: 64. new/delete의 짝이 맞는 경우에도 메모리 누수가 발생한다면?
1780정성태10/15/201424115오류 유형: 249. The application-specific permission settings do not grant Local Activation permission for the COM Server application with CLSID
1779정성태10/15/201419618오류 유형: 248. Active Directory에서 OU가 지워지지 않는 경우
1778정성태10/10/201418066오류 유형: 247. The Netlogon service could not create server share C:\Windows\SYSVOL\sysvol\[도메인명]\SCRIPTS.
... 121  122  123  124  125  126  127  128  129  [130]  131  132  133  134  135  ...