DotNetShoutout - Stories tagged with Custom tool
5
Shouts

T 4 beginners – part 5 - [Export] Bnaya Eshet

published 1080 days, 6 hours, 49 minutes ago posted by bnayabnaya 1081 days, 30 minutes ago
Sunday, June 06, 2010 2:21:02 PM GMT Saturday, June 05, 2010 8:40:11 PM GMT
T 4 beginners – part 5T 4 beginners – part 5 this is the 5rd post on this series. in this post we will focus on how to debugT4. there is no special code for this post. the series TOC is available here. What cause T4 failure? actually the T4 can fail in to different stage:It can fail when VS compile the Control blocks or Directives(this is compile time failure)It can fail because the Control blocks is throwing an exception (while the compiled T4 is executing).  Executing T4 it is important to ... (more)
category: Architecture | clicked: 0 | comment | | source: blogs.microsoft.co.il
tags: Custom tool, T4, Entity Framework, VS 2010
3
Shouts

T 4 beginners – part 4 - [Export] Bnaya Eshet

posted by bnayabnaya 1095 days, 16 hours, 4 minutes ago
Saturday, May 22, 2010 5:06:40 AM GMT
T 4 beginners – part 4T 4 beginners – part 4 this is the 4rd post on this series. in this post we will focus on T4Class feature control blocks. you can download the code for this post here. the series TOC is available here.  What is class feature control block? class feature control block is one of the T4 extension mechanism that enable reuse of T4 sections. using class feature control block you can defines helper properties or methods, that can be used from different T4 templates.  The sy... (more)
category: Architecture | clicked: 0 | comment | | source: blogs.microsoft.co.il
tags: Custom tool, T4, Entity Framework, VS 2010
4
Shouts

T 4 beginners – part 3 - [Export] Bnaya Eshet

posted by bnayabnaya 1096 days, 2 hours, 24 minutes ago
Friday, May 21, 2010 6:46:21 PM GMT
T 4 beginners – part 3T 4 beginners – part 3 this is the 3rd post on this series. in this post we will focus on basics T4Control blocks. you can download the code sample from here. the series TOC is available here.   T4Control blocks is where dynamic text is added into the template output, this is the heart of T4 concept (C# is the default language but you can change it to VB).  Standard control blocks A standard control block is a section of program code that generates part of the output. ... (more)
category: Architecture | clicked: 1 | comment | | source: blogs.microsoft.co.il
tags: Custom tool, T4, Entity Framework, VS 2010
5
Shouts

T 4 beginners – part 2 - [Export] Bnaya Eshet

published 1097 days, 9 hours, 35 minutes ago posted by bnayabnaya 1098 days, 1 hour, 56 minutes ago
Thursday, May 20, 2010 11:35:34 AM GMT Wednesday, May 19, 2010 7:14:13 PM GMT
T 4 beginners – part 2T 4 beginners – part 2 this is the second post on this series. in this post we will focus on basics T4 Directives. you can use the code sample of the previous post here. the series TOC is available here.  Directive syntax: any of the directives is using the following syntax: (more)
category: Architecture | clicked: 0 | comment | | source: blogs.microsoft.co.il
tags: Custom tool, T4, Entity Framework, VS 2010
4
Shouts

T 4 beginners – part 1 - [Export] Bnaya Eshet

published 1098 days, 7 hours, 48 minutes ago posted by bnayabnaya 1099 days, 2 hours, 19 minutes ago
Wednesday, May 19, 2010 1:22:43 PM GMT Tuesday, May 18, 2010 6:51:42 PM GMT
T 4 beginners – part 1T 4 beginners – part 1 this is the first post of a series that will focus on T4 template. this post discuss the T4 in general while the following pose will focus on the T4 practice. the code for this post can be found here.  What is T4 template? T4 is sanding for Text Template Transformation Toolkit. T4 is all about automating code or content generation. the usual extension for T4 files is the *.tt  When to use T4? whenever you identify repeatable pattern of code or conte... (more)
category: Architecture | clicked: 0 | comment | | source: blogs.microsoft.co.il
tags: Custom tool, T4, Entity Framework, VS 2010