Difference between revisions of "T4"
From Richard's Wiki
(New page: * [http://t4-editor.tangible-engineering.com/T4-Editor-Visual-T4-Editing.html T4 Editor plus UML-Style modeling tools for Visual Studio 2008/2010] * [http://danielvaughan.orpius.com/post/M...) |
|||
Line 1: | Line 1: | ||
* [http://t4-editor.tangible-engineering.com/T4-Editor-Visual-T4-Editing.html T4 Editor plus UML-Style modeling tools for Visual Studio 2008/2010] | * [http://t4-editor.tangible-engineering.com/T4-Editor-Visual-T4-Editing.html T4 Editor plus UML-Style modeling tools for Visual Studio 2008/2010] | ||
* [http://danielvaughan.orpius.com/post/MetaGen-A-project-metadata-generator-for-Visual-Studio-using-T4.aspx MetaGen: A project metadata generator for Visual Studio using T4] | * [http://danielvaughan.orpius.com/post/MetaGen-A-project-metadata-generator-for-Visual-Studio-using-T4.aspx MetaGen: A project metadata generator for Visual Studio using T4] | ||
+ | * Using the default editor (not the Tangible Engineering one) you can put breakpoints in and debug interactively. Put the following code at the beginning of executable code in your template (and make sure that debug="true" is set in the tempalte language definition line): | ||
+ | <code> | ||
+ | System.Diagnostics.Debugger.Break(); | ||
+ | </code> |
Latest revision as of 01:45, 8 February 2010
- T4 Editor plus UML-Style modeling tools for Visual Studio 2008/2010
- MetaGen: A project metadata generator for Visual Studio using T4
- Using the default editor (not the Tangible Engineering one) you can put breakpoints in and debug interactively. Put the following code at the beginning of executable code in your template (and make sure that debug="true" is set in the tempalte language definition line):
System.Diagnostics.Debugger.Break();