<?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: Automating the build with MSBuild</title>
	<atom:link href="http://codingcockerel.co.uk/2008/04/15/automating-the-build-with-msbuild/feed/" rel="self" type="application/rss+xml" />
	<link>http://codingcockerel.co.uk/2008/04/15/automating-the-build-with-msbuild/</link>
	<description>Getting the job done with .NET</description>
	<lastBuildDate>Fri, 18 May 2012 16:49:36 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Patrick</title>
		<link>http://codingcockerel.co.uk/2008/04/15/automating-the-build-with-msbuild/comment-page-1/#comment-17645</link>
		<dc:creator>Patrick</dc:creator>
		<pubDate>Tue, 24 Apr 2012 12:59:04 +0000</pubDate>
		<guid isPermaLink="false">http://codingcockerel.wordpress.com/?p=3#comment-17645</guid>
		<description>Sorry, posting again because it didn&#039;t allowed me to post tags.

Excellent article, thank you! I used the above code in the csproj file by just changing the BinFiles node to:

BinFiles Include=&quot;$(OutputPath)\*.*&quot; 

And adding the Target as a Dependency in the following Target:

Target Name=&quot;BeforeBuild&quot; DependsOnTargets=&quot;Clean&quot;

It works really well.

Cheers,
Patrick.</description>
		<content:encoded><![CDATA[<p>Sorry, posting again because it didn&#8217;t allowed me to post tags.</p>
<p>Excellent article, thank you! I used the above code in the csproj file by just changing the BinFiles node to:</p>
<p>BinFiles Include=&#8221;$(OutputPath)\*.*&#8221; </p>
<p>And adding the Target as a Dependency in the following Target:</p>
<p>Target Name=&#8221;BeforeBuild&#8221; DependsOnTargets=&#8221;Clean&#8221;</p>
<p>It works really well.</p>
<p>Cheers,<br />
Patrick.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patrick</title>
		<link>http://codingcockerel.co.uk/2008/04/15/automating-the-build-with-msbuild/comment-page-1/#comment-17644</link>
		<dc:creator>Patrick</dc:creator>
		<pubDate>Tue, 24 Apr 2012 12:57:50 +0000</pubDate>
		<guid isPermaLink="false">http://codingcockerel.wordpress.com/?p=3#comment-17644</guid>
		<description>Excellent article, thank you! I used the above code in the csproj file by just changing the BinFiles node to:



And adding the Target as a Dependency in the following Target:



It works really well.

Cheers,
Patrick.</description>
		<content:encoded><![CDATA[<p>Excellent article, thank you! I used the above code in the csproj file by just changing the BinFiles node to:</p>
<p>And adding the Target as a Dependency in the following Target:</p>
<p>It works really well.</p>
<p>Cheers,<br />
Patrick.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: codingcockerel</title>
		<link>http://codingcockerel.co.uk/2008/04/15/automating-the-build-with-msbuild/comment-page-1/#comment-8602</link>
		<dc:creator>codingcockerel</dc:creator>
		<pubDate>Tue, 14 Dec 2010 20:34:50 +0000</pubDate>
		<guid isPermaLink="false">http://codingcockerel.wordpress.com/?p=3#comment-8602</guid>
		<description>Andy, I&#039;m not familiar with LaTeX but if you just want to call programs from the command line then MSBuild can do that with the Exec command. In theory what you want to do should be achievable.</description>
		<content:encoded><![CDATA[<p>Andy, I&#8217;m not familiar with LaTeX but if you just want to call programs from the command line then MSBuild can do that with the Exec command. In theory what you want to do should be achievable.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy</title>
		<link>http://codingcockerel.co.uk/2008/04/15/automating-the-build-with-msbuild/comment-page-1/#comment-8596</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Tue, 14 Dec 2010 15:39:38 +0000</pubDate>
		<guid isPermaLink="false">http://codingcockerel.wordpress.com/?p=3#comment-8596</guid>
		<description>Is it possible to use Visual Studio to be LaTeX editor and use MSBuild to invoke batch file compiling the LaTeX input file, converting *.dvi to *.ps and finally *.ps to *.pdf?

Thank  you in advance. Your article sounds very interesting. It might be what I am looking for.</description>
		<content:encoded><![CDATA[<p>Is it possible to use Visual Studio to be LaTeX editor and use MSBuild to invoke batch file compiling the LaTeX input file, converting *.dvi to *.ps and finally *.ps to *.pdf?</p>
<p>Thank  you in advance. Your article sounds very interesting. It might be what I am looking for.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Khanh</title>
		<link>http://codingcockerel.co.uk/2008/04/15/automating-the-build-with-msbuild/comment-page-1/#comment-7803</link>
		<dc:creator>Khanh</dc:creator>
		<pubDate>Thu, 09 Sep 2010 14:56:27 +0000</pubDate>
		<guid isPermaLink="false">http://codingcockerel.wordpress.com/?p=3#comment-7803</guid>
		<description>Hi, thanks for the tutorial. When I ran

msbuild Build.xml /t:Compile

it said

The project file &quot;BuildDemoSite.csproj&quot;
was not found.
Done Building Project &quot;C:\Documents and Settings\Do_K\My Documents\Visual Studi
o 2008\WebSites\BuildDemoSite\Build.xml&quot; (Compile target(s)) -- FAILED.


Build FAILED.

can you help me? I am a beginner. Thanks</description>
		<content:encoded><![CDATA[<p>Hi, thanks for the tutorial. When I ran</p>
<p>msbuild Build.xml /t:Compile</p>
<p>it said</p>
<p>The project file &#8220;BuildDemoSite.csproj&#8221;<br />
was not found.<br />
Done Building Project &#8220;C:\Documents and Settings\Do_K\My Documents\Visual Studi<br />
o 2008\WebSites\BuildDemoSite\Build.xml&#8221; (Compile target(s)) &#8212; FAILED.</p>
<p>Build FAILED.</p>
<p>can you help me? I am a beginner. Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shaw</title>
		<link>http://codingcockerel.co.uk/2008/04/15/automating-the-build-with-msbuild/comment-page-1/#comment-7569</link>
		<dc:creator>Shaw</dc:creator>
		<pubDate>Wed, 14 Jul 2010 20:32:29 +0000</pubDate>
		<guid isPermaLink="false">http://codingcockerel.wordpress.com/?p=3#comment-7569</guid>
		<description>Thanks! This is great.</description>
		<content:encoded><![CDATA[<p>Thanks! This is great.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nam Gi VU</title>
		<link>http://codingcockerel.co.uk/2008/04/15/automating-the-build-with-msbuild/comment-page-1/#comment-6835</link>
		<dc:creator>Nam Gi VU</dc:creator>
		<pubDate>Tue, 09 Mar 2010 05:16:44 +0000</pubDate>
		<guid isPermaLink="false">http://codingcockerel.wordpress.com/?p=3#comment-6835</guid>
		<description>Nice tutorial on MSBuild for newbie like me ^_^.</description>
		<content:encoded><![CDATA[<p>Nice tutorial on MSBuild for newbie like me ^_^.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hungster</title>
		<link>http://codingcockerel.co.uk/2008/04/15/automating-the-build-with-msbuild/comment-page-1/#comment-2922</link>
		<dc:creator>hungster</dc:creator>
		<pubDate>Fri, 15 May 2009 11:44:22 +0000</pubDate>
		<guid isPermaLink="false">http://codingcockerel.wordpress.com/?p=3#comment-2922</guid>
		<description>Thanks. I finally get this MSBuild stuff.</description>
		<content:encoded><![CDATA[<p>Thanks. I finally get this MSBuild stuff.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shawn Carroll</title>
		<link>http://codingcockerel.co.uk/2008/04/15/automating-the-build-with-msbuild/comment-page-1/#comment-512</link>
		<dc:creator>Shawn Carroll</dc:creator>
		<pubDate>Fri, 05 Dec 2008 18:45:12 +0000</pubDate>
		<guid isPermaLink="false">http://codingcockerel.wordpress.com/?p=3#comment-512</guid>
		<description>Alright, my XML didn&#039;t post so here goes plain text :)

Project
  ItemGroup
    BinFiles
  Target

I used v2.0 and Visual Studio 2005 for this.</description>
		<content:encoded><![CDATA[<p>Alright, my XML didn&#8217;t post so here goes plain text <img src='http://codingcockerel.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Project<br />
  ItemGroup<br />
    BinFiles<br />
  Target</p>
<p>I used v2.0 and Visual Studio 2005 for this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shawn Carroll</title>
		<link>http://codingcockerel.co.uk/2008/04/15/automating-the-build-with-msbuild/comment-page-1/#comment-511</link>
		<dc:creator>Shawn Carroll</dc:creator>
		<pubDate>Fri, 05 Dec 2008 18:43:21 +0000</pubDate>
		<guid isPermaLink="false">http://codingcockerel.wordpress.com/?p=3#comment-511</guid>
		<description>I had the same problem with the ItemGroup node as well. I was able to work around it by pulling the ItemGroup out and placing it above the Target group:




  
    
  

  
    
  

  
    
  

</description>
		<content:encoded><![CDATA[<p>I had the same problem with the ItemGroup node as well. I was able to work around it by pulling the ItemGroup out and placing it above the Target group:</p>
]]></content:encoded>
	</item>
</channel>
</rss>

