vote up 0 vote down star

I need to specify my T4 to use C# 4.0, to render my tt files? I tried using

<#@ template language="C#v4.0" debug="true" #>

But when I use a dynamic variable, like this

dynamic x=10;
Write(x.ToString());

I'm getting these errors

Error   2	Compiling transformation: Predefined type 'Microsoft.CSharp.RuntimeBinder.CSharpSetMemberBinder' is not defined or imported	e:\projects\DynamicModel\DynamicModel\ModelGenerator.tt	1	1	
Error   3	Compiling transformation: Missing compiler required member 'Microsoft.CSharp.RuntimeBinder.CSharpInvokeMemberBinder..ctor'	e:\projects\DynamicModel\DynamicModel\ModelGenerator.tt	1	1	
Error   4	Compiling transformation: Missing compiler required member 'System.Runtime.CompilerServices.CallSite.Create'	e:\projects\DynamicModel\DynamicModel\ModelGenerator.tt	1	1	
Error   5	Compiling transformation: One or more types required to compile a dynamic expression cannot be found. Are you missing references to Microsoft.CSharp.dll and System.Core.dll?	e:\Projects\DynamicModel\DynamicModel\ModelGenerator.tt	7	8	
Error   6	A namespace cannot directly contain members such as fields or methods	e:\projects\DynamicModel\DynamicModel\ModelGenerator.cs	1	1	DynamicModel

Also, please note that I'm using TextTemplatingFileGenerator and Not pre-processor templates

flag

62% accept rate
Have you tried looking at the templates provided with VS2010? – Lazarus Oct 7 at 11:53
Yep, it goes well as long as you don't use a dynamic variable – amazedsaint Oct 7 at 12:35

2 Answers

vote up 1 vote down

Found that you should specify the correct assemblies as well.

Adding this will ensure you are using c# 4.0.

<#@ template language="C#" debug="true" #>
<#@ output extension=".txt" #>
<#@ Assembly Name="System.Core, Version=4.0.0.0, Culture=neutral" #>
<#@ Assembly Name="Microsoft.CSharp, Version=4.0.0.0, Culture=neutral" #>

How ever, for some reason, during the time of t4 transformation, the dynamic dispatching is still not working from T4, wondering why. From T4 it throws a runtime error, the same code does good directly from a cs file.

link|flag
Have you tried using precompiled T4? olegsych.com/2009/09/… – Pavel Minaev Oct 24 at 8:42
infact I got it right, thanks – amazedsaint Oct 24 at 12:02
And FYI I'm using a custom template host, not directly running t4 from VS :) – amazedsaint Oct 24 at 12:03
vote up 0 vote down

I believe that by default the T4 engine can only use 4.0, although I'd make sure that any DLLs you reference are correct for your error.

link|flag

Your Answer

Get an OpenID
or

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