I am using MSBuild to generate some files using T4 and I was wondering if it would be possible to reference and use MSBuild properties within the T4 template?

I want to do something like this snippet:

Revision: <#=$(Revision)#>

This throws an error:

error CS1056: Compiling transformation: Unexpected character '$'

I'd prefer not to have to wrap the properties in a custom DLL and reference a C# class as a T4 property.

Any help would be much appreciated.

link|improve this question
feedback

1 Answer

It should be possible to pass $(Revision) value via TextTransform command line -a option.

Add something like this into your template:

      [<#= this.Host.ResolveParameterValue("", "", "RevisionParameter") #>]

And into MsBuild script:

    TextTransform -a !!RevisionParameter!$(Revision)
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.