vote up 1 vote down star
1

When I expand T4 templates inside Visual Studio, I can use the full C# 3.0 syntax, including LINQ expressions, etc. When I expand it outside Visual Studio using TextTransform.exe it complains about LINQ expressions and other new features of C# 3.0. Is there a newer version of TextTransform.exe?

The one I'm running is in:

C:\Program Files\Common Files\Microsoft Shared\TextTemplating\1.2\TextTransform.exe
flag

58% accept rate
And no, there are no higher-numbered folders under TextTemplating – JoelFan Nov 3 at 20:23
What form do these complaints take? – Dan Blanchard Nov 3 at 21:41
I would have to try it again to give you actual messages (not on that machine at the moment), but the gist is "I have no idea what you're trying to say". – JoelFan Nov 4 at 3:10
I think "semicolon expected" was a popular "complaint". – JoelFan Nov 4 at 3:10

1 Answer

vote up 3 vote down check

1.2 is the version of TextTransform that shipped with Visual Studio 2008. However, it will use C# compiler version 2.0 unless you specify version 3.5 in the template directive. 3.5 is the internal version of the C# CodeDOM provider for C# 3.0 compiler.

link|flag

Your Answer

Get an OpenID
or

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