Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
0answers
134 views

T4 tool for XCode

Does anything like the T4 text template generation tool of visual studio exist for XCode? Thanks for help, Enyra
2
votes
2answers
3k views

How can I specify T4 (Text Templates) to use C# 4.0, in VS2010?

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; ...
1
vote
0answers
52 views

Code generation via T4 template in Entity Framework 4.1

I am using Entity Framework 4.1 in web application(database first method) and I intend to use t4 templates to generating code. I'm not sure about that if I can have some methods for implement all the ...
1
vote
2answers
148 views

“for” loop inside a Text::Template template

I'm trying to use perl Text::Template for short templates and so far failed to get it to iterate over an array. Here is a short test program I wrote to demonstrate what I'm trying to do: ...
1
vote
2answers
165 views

Installing Subsonic - adding Text Templates does nothing

I'm trying to start using Subsonic (v3). The brief installation instructions indicate that I must: add a reference to the DLL = Done edit Setting.ttinclude to use right connection string = Done; ...
0
votes
1answer
334 views

T4 and TextTemplatingFileGenerator

I am using T4 in my project. I have a .tt file which is TextTemplatingFileGenerator I found that it won't generate the output unless I edit the .tt file. Is there a way to generate the output by ...
0
votes
2answers
247 views

Clearing Custom Tool file property in Visual Studio 2010

Is there any way to prevent prevent a custom tool from running or remove the custom tool for a file type per project in Visual Studio? In my example I would like to add a file to my project with an ...
0
votes
3answers
242 views

Can T4 templates use the same library

I have a library that defines a class namespace ClassLibrary1 { public class Class1 { public static readonly int Rate = 5; } } In the same lib I add a tt file <#@ template ...