0
votes
1answer
12 views
What is the requires/provides design pattern used by the T4 RequiresProvidesDirectiveProcessor class?
The MSDN Library documentation for the RequiresProvidesDirectiveProcessor class in the Microsoft.VisualStudio.TextTemplating namespace refers to a design pattern called "requires/p …
0
votes
1answer
28 views
T4 Controller Template to trigger View Generation
I have been using some customized MVC templates that really improve my productivity. However, I would like to take it to the next level.
I generate a controller template for each …
1
vote
2answers
88 views
Simple & Practical C# code generation (VS 2008 or 2010)
I've put off using generated code as part of the build process for fear of the complexity it introduces into the build process.
Is there a simple way to integrate build-time gener …
1
vote
1answer
43 views
Visual Studio + Subsonic 3 + Multiple Projects + “transform all templates” problems
I am using
Visual Studio + Subsonic 3 + Multiple Projects + T4 Templates + "transform all templates" and I have two projects each with their own DB and associated activerecord.tt …
1
vote
0answers
61 views
T4 transformation and build order in Visual Studio
I have a VS project that contains:
1. A Pre-Build action of running TextTransform on a "template.tt" to generate "generated.cs"
2. "generated.cs" listed as one of the files to comp …
1
vote
1answer
29 views
TextTransform.exe seems to only accept an older version of C#
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 …
1
vote
2answers
67 views
Get Visual Studio to run a T4 Template on every build
How do I get a T4 template to generate its output on every build? As it is now, it only regenerates it when I make a change to the template.
I have found other questions similar …
4
votes
0answers
74 views
Spark T4 templates for ASP.NET MVC
I was just curious if any Spark T4 templates already exist that match/are similar to the out of the box web forms view templates (create, edit, details, etc...). My Google skills d …
0
votes
1answer
31 views
How to force Visual Studio 2008 to regenerate code from T4 templates when an XML file changes?
I'm generating quite a bit of code from a single XML file, but the templates are organized in two different T4 templates. Whenever I change the XML file, I have to remember to open …
0
votes
2answers
109 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
dy …
2
votes
2answers
91 views
Can I use T4 programmatically from C# ?
I am writing software that produces C# code. Mostly I am using StringTemplate and StringBuilder.
Is there any way to use T4 templates direct from my code?
2
votes
2answers
92 views
Anybody know of any T4 templates for generating classes from xsd?
I'm looking at some work updating classes generated from xsds. I think this would be a great use of T4 templates, but I don't see any examples of people doing this. Essentially, …
0
votes
1answer
58 views
Auto-generate an application facade from appsettings
Here's the question first:
Is this possible? I'm taking my inspiration from Joe Wrobel's work (a redux of the forgotten Codeplex project). Here, you do your work on creating your …
0
votes
1answer
90 views
How do I refresh the SubSonic T4 Template generated code?
I've just started using SubSonic 3 and I'm using the ActiveRecord T4 template.
If I make a change in the database (add a column to a table for example), what is the correct method …
1
vote
2answers
130 views
How can I use T4 templating with MonoDevelop 2.2 on OSX
I understand MonoDevelop supports MVC and uses an implementation of T4 to generate code.
Is there a way to utilize T4 with my own templates?
I am using MonoDevelop 2.2 Alpha (Mon …
