<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Multiple outputs from T4 made easy</title>
	<atom:link href="http://damieng.com/blog/2009/01/22/multiple-outputs-from-t4-made-easy/feed" rel="self" type="application/rss+xml" />
	<link>http://damieng.com/blog/2009/01/22/multiple-outputs-from-t4-made-easy?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=multiple-outputs-from-t4-made-easy</link>
	<description>A .NET developer in Redmond</description>
	<lastBuildDate>Fri, 23 Jul 2010 04:45:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Mel Grubb</title>
		<link>http://damieng.com/blog/2009/01/22/multiple-outputs-from-t4-made-easy#comment-28978</link>
		<dc:creator>Mel Grubb</dc:creator>
		<pubDate>Mon, 02 Nov 2009 16:30:50 +0000</pubDate>
		<guid isPermaLink="false">http://damieng.com/blog/2009/01/22/multiple-outputs-from-t4-made-easy#comment-28978</guid>
		<description>When I look in the directory you mentioned, I don&#039;t see a ...TextTemplating.Interfaces.dll, only a ...TextTemplating.Modeling.dll.  Specifying the import as suggested by Valk seems to have solved the problem for me, though.</description>
		<content:encoded><![CDATA[<p>When I look in the directory you mentioned, I don&#8217;t see a &#8230;TextTemplating.Interfaces.dll, only a &#8230;TextTemplating.Modeling.dll.  Specifying the import as suggested by Valk seems to have solved the problem for me, though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Valk</title>
		<link>http://damieng.com/blog/2009/01/22/multiple-outputs-from-t4-made-easy#comment-28584</link>
		<dc:creator>Valk</dc:creator>
		<pubDate>Fri, 30 Oct 2009 10:12:42 +0000</pubDate>
		<guid isPermaLink="false">http://damieng.com/blog/2009/01/22/multiple-outputs-from-t4-made-easy#comment-28584</guid>
		<description>After looking around the internet I found where the interface is hiding.

try: import namespace=&quot;Microsoft.VisualStudio.TextTemplating.Interfaces&quot;</description>
		<content:encoded><![CDATA[<p>After looking around the internet I found where the interface is hiding.</p>
<p>try: import namespace=&#8221;Microsoft.VisualStudio.TextTemplating.Interfaces&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Damien Guard</title>
		<link>http://damieng.com/blog/2009/01/22/multiple-outputs-from-t4-made-easy#comment-28400</link>
		<dc:creator>Damien Guard</dc:creator>
		<pubDate>Wed, 28 Oct 2009 22:45:26 +0000</pubDate>
		<guid isPermaLink="false">http://damieng.com/blog/2009/01/22/multiple-outputs-from-t4-made-easy#comment-28400</guid>
		<description>There is a problem with T4 in VS2010 whereby that interface was moved to Microsoft.VisualStudio.TextTemplating.Interfaces.10.0.dll and so it can&#039;t find it. You can add an assembly reference to it for now but I&#039;ve been assured that it will be fixed for RTM:
&lt;pre&gt;&lt;code&gt;&lt;#@ assembly name=&quot;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\PublicAssemblies\Microsoft.VisualStudio.TextTemplating.Interfaces.10.0.dll&quot; #&gt;&lt;/code&gt;&lt;/pre&gt;
(remove the (x86) bit on 32-bit machines).

[)amien</description>
		<content:encoded><![CDATA[<p>There is a problem with T4 in VS2010 whereby that interface was moved to Microsoft.VisualStudio.TextTemplating.Interfaces.10.0.dll and so it can&#8217;t find it. You can add an assembly reference to it for now but I&#8217;ve been assured that it will be fixed for RTM:</p>
<pre><code>&lt;#@ assembly name="C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\PublicAssemblies\Microsoft.VisualStudio.TextTemplating.Interfaces.10.0.dll" #&gt;</code></pre>
<p>(remove the (x86) bit on 32-bit machines).</p>
<p>[)amien</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mel Grubb</title>
		<link>http://damieng.com/blog/2009/01/22/multiple-outputs-from-t4-made-easy#comment-28084</link>
		<dc:creator>Mel Grubb</dc:creator>
		<pubDate>Fri, 23 Oct 2009 18:40:31 +0000</pubDate>
		<guid isPermaLink="false">http://damieng.com/blog/2009/01/22/multiple-outputs-from-t4-made-easy#comment-28084</guid>
		<description>Have you tried running this on VS2010b2 yet? I&#039;m trying to work with a project of mine, and I&#039;m not having much luck. I&#039;m getting the following error:

Compiling transformation: The type or namespace name &#039;ITextTemplatingEngineHost&#039; could not be found (are you missing a using directive or an assembly reference?)

Has something been moved, or made obsolete? Also, it would also appear that the behavior of the  keyword may have changed. I have a particular template that must use reflection to accomplish its job, and it no longer finds the assemblies in the bin folder like it used to.</description>
		<content:encoded><![CDATA[<p>Have you tried running this on VS2010b2 yet? I&#8217;m trying to work with a project of mine, and I&#8217;m not having much luck. I&#8217;m getting the following error:</p>
<p>Compiling transformation: The type or namespace name &#8216;ITextTemplatingEngineHost&#8217; could not be found (are you missing a using directive or an assembly reference?)</p>
<p>Has something been moved, or made obsolete? Also, it would also appear that the behavior of the  keyword may have changed. I have a particular template that must use reflection to accomplish its job, and it no longer finds the assemblies in the bin folder like it used to.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Johannes</title>
		<link>http://damieng.com/blog/2009/01/22/multiple-outputs-from-t4-made-easy#comment-11353</link>
		<dc:creator>Johannes</dc:creator>
		<pubDate>Tue, 24 Feb 2009 16:29:45 +0000</pubDate>
		<guid isPermaLink="false">http://damieng.com/blog/2009/01/22/multiple-outputs-from-t4-made-easy#comment-11353</guid>
		<description>Thanks Damien, great work!

A small problem though is that my files are under TFS source control, and if I edit the template file it and its default output file are automatically checked out, but my additional files are not, and the file update crashes. Its easy enough to avoid by checking the files out first, but is it possible to automatically check out the other files as well before the Manager edits them?

Johannes</description>
		<content:encoded><![CDATA[<p>Thanks Damien, great work!</p>
<p>A small problem though is that my files are under TFS source control, and if I edit the template file it and its default output file are automatically checked out, but my additional files are not, and the file update crashes. Its easy enough to avoid by checking the files out first, but is it possible to automatically check out the other files as well before the Manager edits them?</p>
<p>Johannes</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://damieng.com/blog/2009/01/22/multiple-outputs-from-t4-made-easy#comment-11304</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Thu, 19 Feb 2009 19:41:06 +0000</pubDate>
		<guid isPermaLink="false">http://damieng.com/blog/2009/01/22/multiple-outputs-from-t4-made-easy#comment-11304</guid>
		<description>Damien

Made Easy!!! I was struggling with some of the concepts necessary to the task until I found your post

Thanks!
Mike</description>
		<content:encoded><![CDATA[<p>Damien</p>
<p>Made Easy!!! I was struggling with some of the concepts necessary to the task until I found your post</p>
<p>Thanks!<br />
Mike</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hannes</title>
		<link>http://damieng.com/blog/2009/01/22/multiple-outputs-from-t4-made-easy#comment-11190</link>
		<dc:creator>hannes</dc:creator>
		<pubDate>Fri, 13 Feb 2009 14:22:37 +0000</pubDate>
		<guid isPermaLink="false">http://damieng.com/blog/2009/01/22/multiple-outputs-from-t4-made-easy#comment-11190</guid>
		<description>Hello Damien,

thank You! Your Linq To SQL T4 Templates are great!

Regards
Hannes</description>
		<content:encoded><![CDATA[<p>Hello Damien,</p>
<p>thank You! Your Linq To SQL T4 Templates are great!</p>
<p>Regards<br />
Hannes</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Damien Guard</title>
		<link>http://damieng.com/blog/2009/01/22/multiple-outputs-from-t4-made-easy#comment-10917</link>
		<dc:creator>Damien Guard</dc:creator>
		<pubDate>Fri, 23 Jan 2009 18:58:50 +0000</pubDate>
		<guid isPermaLink="false">http://damieng.com/blog/2009/01/22/multiple-outputs-from-t4-made-easy#comment-10917</guid>
		<description>I was aware of it but hadn&#039;t seen what they are up to lately, I have now, thanks.

[)amien</description>
		<content:encoded><![CDATA[<p>I was aware of it but hadn&#8217;t seen what they are up to lately, I have now, thanks.</p>
<p>[)amien</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: George J. Capnias</title>
		<link>http://damieng.com/blog/2009/01/22/multiple-outputs-from-t4-made-easy#comment-10915</link>
		<dc:creator>George J. Capnias</dc:creator>
		<pubDate>Fri, 23 Jan 2009 18:00:49 +0000</pubDate>
		<guid isPermaLink="false">http://damieng.com/blog/2009/01/22/multiple-outputs-from-t4-made-easy#comment-10915</guid>
		<description>Damien, are you aware of the T4Toolbox project on CodePlex?

Regards,
George J.</description>
		<content:encoded><![CDATA[<p>Damien, are you aware of the T4Toolbox project on CodePlex?</p>
<p>Regards,<br />
George J.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vish</title>
		<link>http://damieng.com/blog/2009/01/22/multiple-outputs-from-t4-made-easy#comment-10914</link>
		<dc:creator>Vish</dc:creator>
		<pubDate>Fri, 23 Jan 2009 17:35:11 +0000</pubDate>
		<guid isPermaLink="false">http://damieng.com/blog/2009/01/22/multiple-outputs-from-t4-made-easy#comment-10914</guid>
		<description>Hi Damien,

This is some great work. I had been searching the web for this info for a while now. You saved me a lot of work and frustration ... 

Thank You,
Vish</description>
		<content:encoded><![CDATA[<p>Hi Damien,</p>
<p>This is some great work. I had been searching the web for this info for a while now. You saved me a lot of work and frustration &#8230; </p>
<p>Thank You,<br />
Vish</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dew Drop - January 23, 2009 &#124; Alvin Ashcraft's Morning Dew</title>
		<link>http://damieng.com/blog/2009/01/22/multiple-outputs-from-t4-made-easy#comment-10913</link>
		<dc:creator>Dew Drop - January 23, 2009 &#124; Alvin Ashcraft's Morning Dew</dc:creator>
		<pubDate>Fri, 23 Jan 2009 15:36:49 +0000</pubDate>
		<guid isPermaLink="false">http://damieng.com/blog/2009/01/22/multiple-outputs-from-t4-made-easy#comment-10913</guid>
		<description>[...] Multiple Outputs from T4 Made Easy (Damien Guard) [...]</description>
		<content:encoded><![CDATA[<p>[...] Multiple Outputs from T4 Made Easy (Damien Guard) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Damien Guard</title>
		<link>http://damieng.com/blog/2009/01/22/multiple-outputs-from-t4-made-easy#comment-10905</link>
		<dc:creator>Damien Guard</dc:creator>
		<pubDate>Fri, 23 Jan 2009 01:13:40 +0000</pubDate>
		<guid isPermaLink="false">http://damieng.com/blog/2009/01/22/multiple-outputs-from-t4-made-easy#comment-10905</guid>
		<description>If it detects it&#039;s running inside VS they all magically appear as nested files behind the template, if you turn it off they are removed again :)

[)amien</description>
		<content:encoded><![CDATA[<p>If it detects it&#8217;s running inside VS they all magically appear as nested files behind the template, if you turn it off they are removed again :)</p>
<p>[)amien</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luis Rocha</title>
		<link>http://damieng.com/blog/2009/01/22/multiple-outputs-from-t4-made-easy#comment-10904</link>
		<dc:creator>Luis Rocha</dc:creator>
		<pubDate>Fri, 23 Jan 2009 01:10:30 +0000</pubDate>
		<guid isPermaLink="false">http://damieng.com/blog/2009/01/22/multiple-outputs-from-t4-made-easy#comment-10904</guid>
		<description>Damien,

This is awesome!! Thanks for sharing this. I saw that the VSManagementStrategy class automatically adds the generated files to the project. Would all generated files show in the solution explorer as nested files of their t4 template?

Thanks,
Luis</description>
		<content:encoded><![CDATA[<p>Damien,</p>
<p>This is awesome!! Thanks for sharing this. I saw that the VSManagementStrategy class automatically adds the generated files to the project. Would all generated files show in the solution explorer as nested files of their t4 template?</p>
<p>Thanks,<br />
Luis</p>
]]></content:encoded>
	</item>
</channel>
</rss>
