Tagged Questions
T4 stands for Text Template Transformation Toolkit and is Microsoft's template based text generation framework included with Visual Studio.
29
votes
7answers
6k views
Get Visual Studio to run a T4 Template on every build
How do I get a T4 template to generate its output on every build? As it is now, it only regenerates it when I make a change to the template.
I have found other questions similar to this:
...
23
votes
3answers
1k views
NHaml T4 templates for CRUD?
I want to ask if anyone has or has seen T4 templates for NHaml that are the same as the default T4 CRUD (List, Create etc) templates from MVC 2.0?
22
votes
1answer
2k views
How can I use Linq in a T4 template?
I am using T4 to generate some screens and middle-tier code for a project, and would like to use Linq to simplify some of my template code. However, when I try to use Linq, the template reports a ...
18
votes
1answer
285 views
How to generate all my entities composed two tables for each entity via a T4 automation
I have a class library project for a data access layer that uses Entity Framework 4. My project needs a versioning concept. My database contains many tables that contain «Id» and «CreationDateTime». ...
14
votes
4answers
2k views
How to output namespace in T4 templates?
I have a T4 template for a class set up with TextTemplatingFileGenerator Custom Tool in Visual Studio:
<#@ template language="C#v3.5" hostspecific="True" debug="True" #>
<#
var className = ...
13
votes
7answers
641 views
For what purposes have YOU used T4?
T4 has existed for several years in Visual Studio, but doesn't get a lot of attention. However, for those that know it, there seems to be some very creative and useful purposes.
I am researching ...
12
votes
5answers
3k views
Creating T4 templates at runtime (build-time)?
We are building an inhouse application which needs to generate HTML files for upload into eBay listings. We are looking to use a template engine to generate the HTML files based on database and static ...
12
votes
4answers
734 views
Spark T4 templates for ASP.NET MVC
I was just curious if any Spark T4 templates already exist that match/are similar to the out of the box web forms view templates (create, edit, details, etc...). My Google skills didn't lead me to any ...
11
votes
2answers
2k views
Visual Studio T4 vs CodeSmith
I've been using CodeSmith for the past 2 years and love what it does for me. However, I also know about T4 which is built in to Visual Studio and can do some pretty cool stuff too. Based on ...
11
votes
5answers
4k views
how can I get intellisense in a T4 template?
When trying out these tutorials (T4 Tutorial: Creating reusable code generation templates) I noticed that although I was using plain c# I didn't get any intellisense, probably because of the file ...
10
votes
3answers
153 views
How do you display the code (not output) that .Net T4 generates?
We have a set of T4 templates we have just migrated forward to VS 2010 and they compile but are no longer working the same.
In order to see what is actually going on under the hood it would be useful ...
10
votes
1answer
2k views
Get Project or Relative Directory with T4
How can I get a reference to the directory of the visual studio project or solution or the directory of the t4 template from within a t4 template?
I have a template that concatenates a number of ...
10
votes
12answers
769 views
Domain Specific Language resources [closed]
I was just listening to some older .Net Rocks! episodes, and I found #329 on DSLs to be interesting. My problem is that I can't find any good online resources for people trying to learn this ...
9
votes
2answers
669 views
Does VS 2010 Express edition support T4 preprocessed templates?
Just installed 2010 Express Edition and I cannot see Preprocess t4 template as an option. Is it not supported in 2010 Express?
9
votes
2answers
828 views
Ascertaining Project Directory from T4 Templates
I am using T4 templates in Visual Studio for code generation, and am trying to reference a local .xml file from the template code so I can parse it for metadata about the application's data model.
...
9
votes
1answer
939 views
T4 transformation and build order in Visual Studio
I have a VS project that contains:
1. A Pre-Build action of running TextTransform on a "template.tt" to generate "generated.cs"
2. "generated.cs" listed as one of the files to compile (i.e. in the ...
9
votes
2answers
1k views
T4 code generation: access types in current project
Using T4 code generation, is it possible to access the types defined in the current project?
For example, if I have an interface and I want to delegate its implementation to another class, i.e.
...
9
votes
5answers
2k views
T4 without Visual Studio?
I'm trying to wireup some code gen templates to my team's automated build process. Our SCM team doesn't want Visual Studio on our build machine (which I have a hard time arguing with).
Is there a ...
8
votes
3answers
470 views
T4 Preprocessed Template Debugging Not Working - Visual Studio 2010 RTM
I am attempting to debug a preprocessed T4 template and I am not able to step into the class created by running the preprocessed template. I am able to create an instance of the class but as soon as I ...
8
votes
3answers
1k views
Automatic INotifyPropertyChanged Implementation through T4 code generation?
I'm currently working on setting up a new project of mine and was wondering how I could achieve that my ViewModel classes do have INotifyPropertyChanged support while not having to handcode all the ...
8
votes
4answers
2k views
ASP.NET MVC custom T4 templates for views
When I'm adding a new strongly-typed view to an ASP.NET MVC project, I can select between different view content templates (Create Details, Edit, List). I have read these are templates based on the ...
8
votes
2answers
2k views
Cannot find Microsoft.VisualStudio.TextTemplating assembly
I am doing some work with T4 (Text Template Transformation Toolkit) and am trying to get to a point where I can create my own custom text template host. However, all of that relies on the ...
7
votes
2answers
1k views
Testing EF 4.0 with POCO and t4 templates - How mock context?
I'm trying to create fake context accodring to http://blogs.msdn.com/b/adonet/archive/2009/12/17/walkthrough-test-driven-development-with-the-entity-framework-4-0.aspx
As i can see there is an ...
7
votes
2answers
2k views
Can I use T4 programmatically from C#?
I am writing software that produces C# code. Mostly I am using StringTemplate and StringBuilder.
Is there any way to use T4 templates direct from my code?
7
votes
1answer
2k views
MvcTextTemplateHost not found
I'm trying to use the T4 templates in my MVC project. This screencast suggests just copying the existing T4 templates for MVC into your solution and going from there. However when I try to compile I ...
7
votes
3answers
4k views
SubSonic ASP.NET MVC sample in Visual Web Developer Express
In Visual Web Developer Express 2008 the SubSonic ASP.NET MVC template doesn't seem to work with a new database I added. I removed the Chinook Database and created my own one. I understand the the .tt ...
7
votes
2answers
1k views
How to get t4 files to build in visual studio?
When I build my c# solution the .tt files will not create the .cs file outputs. But if I right click the .tt files one at a time in solution explorer and select "Run Custom Tool" the .cs is generated, ...
6
votes
3answers
222 views
A generic method can use contravariant/covariant types?
I'm writting a generalized method to use it in a special task at a T4 template. The method should allow me to use specialized types from a general interface. I though about the following signatures:
...
6
votes
4answers
482 views
DTO Generator for EF 4 Entity model
Is it possible to write t4 template ( or if it already exists ) which will be able to generate DTO classes based on the data in the *.edmx file?
I have to write DTO classes for the current project, ...
6
votes
1answer
606 views
Aspect Oriented Logging with Unity\T4\anything else
In my application we have a trace logger. We have log statements added at the beginning and end of most of the important methods tracing the method name and the parameter values. Now these trace ...
6
votes
3answers
2k views
Using types in a T4 template that exist in the same project as the template
I'm working on my first T4 code generation tool to add some Stored Procedure helper code to my project. I've created custom types (e.g. StoredProcedure and StoredProcedureParameter to help with my ...
6
votes
1answer
421 views
Why does my T4 template append a number to the file name?
Why do my T4 templates sometimes append a number to the output file and sometimes not? For instance, in one case I might have a template file called Foo.tt and I'll get an output file of Foo.cs. In ...
6
votes
7answers
1k views
Can I redistribute the Microsoft T4 Engine with my product?
I'm generating code dynamically, currently using String.Format and embedding placeholders - but reformatting the C# code for use as a template is a pain, and I think using a T4 template would be ...
5
votes
1answer
194 views
T4 append output to existing file
Is it possible to make a T4 template output to be merged with an existing file?
For example, if a T4 template generates localization resource XML files, is it possible to merge them in some existing ...
5
votes
2answers
398 views
EF4: Get the linked column names from NavigationProperty of an EDMX
I am generating POCOs (lets say they are subclasses of MyEntityObject) by using a T4 template from an EDMX file.
I have 3 entities, e.g.:
MyTable1 (PrimaryKey: MyTable1ID)
MyTable2 (PrimaryKey: ...
5
votes
2answers
248 views
How to use T4 to generate two files at the same time from one template?
I am having a case in which I need to generate two CSharp code files with pretty the same code but different namespace of the input and output types of the methods. In fact each file is for a specific ...
5
votes
2answers
268 views
Output Path for Shared T4 Template
How can I specify the output path of a T4 template?
When I add my T4 template using "Add as Link" to my project from $TemplatePath$, it generates the output file in $TemplatePath$, not $ProjectPath$. ...
5
votes
1answer
526 views
VS2010 Disable T4 Template Validation
How do you disable T4 Template validation . VS2010 is validating my T4 Template just now on ever part that has '#' (the sharp character).
error CS1040: Preprocessor directives must appear as the ...
5
votes
2answers
675 views
T4 template to Generate Enums
I'm looking at created a T4 template to generate enums of my database.
Essential I want the same feature as SubSonic e.g. Product.Columns.ProductId for Linq-to-SQL or Entity Framework 4.
Any help ...
5
votes
2answers
498 views
Get controller name in View T4 template
I have a problem similar to the one described here: http://stackoverflow.com/questions/1128003/mvc-t4-mvctexttemplatehost-and-customized-controller-t4-template but hopefully, simpler.
I have a custom ...
5
votes
5answers
2k views
Debugging T4 Template in VS 2010 Crashes IDE
I'm trying to debug a slightly-modified version of the ADO.NET POCO Entity Generator template using the directions Oleg Sych published a few years back. I modified the DbgJITDebugLaunchSetting key as ...
5
votes
1answer
498 views
Does Visual Studio 2008 Express support t4?
I'm trying to use T4MVC in Visual Web Developer 2008 Express Edition and it's not building any files. Is T4 supported in the express editions?
5
votes
2answers
982 views
Can you do a RunCustomTool with EnvDTE as a pre-build event?
I am using T4MVC, and I can't use a pre-build event to run TextTransform.exe as it relies on EnvDTE, and must be run with Visual Studio as host.
If I have run custom tool once, it works nicely ...
5
votes
1answer
578 views
Is there any way to have functions in basic T4 templates?
By basic T4 template, I mean not using T4 Toolkit or any of the add-ins.
My T4 is getting a little complicated, but I'd like to keep in self-contained for now. Is there a way have functions in your ...
5
votes
3answers
2k views
Cannot get T4MVC to work with VS2010 and ASP.NET MVC 2
I'm trying to add the T4MVC templates to my project, but I'm experiencing some problems. I went to Codeplex and downloaded the latest version of T4MVC, and according to the instructions I just copied ...
5
votes
3answers
1k views
How do you use .net Reflection with T4?
I have a c# project which includes a Text Template. I would like this template to generate some SQL based on reflecting against the C# classes in the project.
How does one access the current ...
5
votes
1answer
439 views
Change Default MsTest Unit Test Wizard Template
My team is using the unit test wizard, but has found the amount of cruft generated annoying. Is there anyway to modify this template?
Thanks
5
votes
3answers
537 views
Getting started with T4
I want to start writing T4 templates. I've heard a lot of great a things about these templates (in the Hanselminutes podcast mainly) and would like to know more. What are the best locations to look ...
5
votes
2answers
630 views
Get argument value from TextTransform.exe into the template
I can't found some example how can I use argument -a when I use TextTransform.exe to generate code from templates. In MSDN is following description for argument -a:
"Specifies a parameter that a ...
5
votes
8answers
4k views
T4 template for NHibernate? - not Fuent NHibernate
Wondering if anyone knows of a set of T4 templates for generating C# POCO classes and also mapping XML files for NHibernate from a set of tables in a database. I saw that David Hayden has created T4 ...