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 extension (.tt)

Isn't there anyway to say to Visual Studio to consider those .tt files as .cs files and thus get the correct intellisense help?

link|improve this question

73% accept rate
feedback

5 Answers

up vote 2 down vote accepted

You can purchase the professional version of T4 Editor. It works very well in standalone .tt files, but unfortunately, due to the differences in how the pro version of T4 Editor and T4 itself compile the templates, you will get false errors reported for this tutorial, which relies on T4 Toolbox.

link|improve this answer
The Clarius T4 editor is the only option I know of at this point. There's a community edition that'll get you some basic syntax highlighting. – Mel Jan 14 '09 at 15:19
Link to Visual T4, Free: visualstudiogallery.msdn.microsoft.com/… – Simon Nov 28 '11 at 15:21
feedback

http://visualstudiogallery.msdn.microsoft.com/en-us/60297607-5fd4-4da4-97e1-3715e90c1a23

Here you go with a plugin...

Vaseem.

link|improve this answer
This works great. – rhooligan Mar 17 at 21:14
feedback

You can just download tangible's T4 Editor at t4editor.tangible-engineering.com it has Intelli-Sense for most important namespaces also in the FREE EDITION.

link|improve this answer
feedback

You can try out Devart T4 Editor. It is free and provides syntax highlighting, intellisense, and code outlining support.

link|improve this answer
feedback

As Scott Hanselman also points out, the intellisense you might be expecting from some of the videos and articles on T4 are not built in to VS2008, you need the T4 Editor from Clarius, but they do have a community edition with some minimalist features to get you started.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.