<?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: DevEnv vs. the Programmer</title>
	<atom:link href="http://mathieu.fenniak.net/devenv-vs-the-programmer/feed/" rel="self" type="application/rss+xml" />
	<link>http://mathieu.fenniak.net/devenv-vs-the-programmer/</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Tue, 31 Mar 2009 04:37:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Mark</title>
		<link>http://mathieu.fenniak.net/devenv-vs-the-programmer/comment-page-1/#comment-44</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Fri, 27 Jul 2007 20:41:45 +0000</pubDate>
		<guid isPermaLink="false">http://stompstompstomp.com/weblog/entries/63#comment-44</guid>
		<description>The following piece of code works for me with Visual Studio 2005 SP1. Note that I had to use a slightly different format for the pipe name (r&quot;\\.\pipe\%s&quot;):

from subprocess import Popen
from NamedPipe import AnonymousNamedPipeReader

DEVENV_EXE=r&quot;C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\devenv.exe&quot;
solution = &quot;mysolution.sln&quot;
configuration = &quot;Debug&#124;Win32&quot;

pipe = AnonymousNamedPipeReader()
process = Popen([DEVENV_EXE, solution, &quot;/Build&quot;, configuration, &quot;/Out&quot;, r&quot;\\.\pipe\%s&quot; % pipe.name])
for line in pipe:
  print line,</description>
		<content:encoded><![CDATA[<p>The following piece of code works for me with Visual Studio 2005 SP1. Note that I had to use a slightly different format for the pipe name (r&#8221;\\.\pipe\%s&#8221;):</p>
<p>from subprocess import Popen<br />
from NamedPipe import AnonymousNamedPipeReader</p>
<p>DEVENV_EXE=r&#8221;C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\devenv.exe&#8221;<br />
solution = &#8220;mysolution.sln&#8221;<br />
configuration = &#8220;Debug|Win32&#8243;</p>
<p>pipe = AnonymousNamedPipeReader()<br />
process = Popen([DEVENV_EXE, solution, "/Build", configuration, "/Out", r"\\.\pipe\%s" % pipe.name])<br />
for line in pipe:<br />
  print line,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jay</title>
		<link>http://mathieu.fenniak.net/devenv-vs-the-programmer/comment-page-1/#comment-43</link>
		<dc:creator>Jay</dc:creator>
		<pubDate>Wed, 30 May 2007 13:56:54 +0000</pubDate>
		<guid isPermaLink="false">http://stompstompstomp.com/weblog/entries/63#comment-43</guid>
		<description>I created and connected to a named pipe as well, passing in the same pipe name with the /Out command line switch.  The output did not come through the pipe until the very end.  I have read, however, that this behavior is &quot;fixed&quot; in SP1 (see http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1411143&amp;SiteID=1).</description>
		<content:encoded><![CDATA[<p>I created and connected to a named pipe as well, passing in the same pipe name with the /Out command line switch.  The output did not come through the pipe until the very end.  I have read, however, that this behavior is &#8220;fixed&#8221; in SP1 (see <a href="http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1411143&amp;SiteID=1)" rel="nofollow">http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1411143&amp;SiteID=1)</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jshuler</title>
		<link>http://mathieu.fenniak.net/devenv-vs-the-programmer/comment-page-1/#comment-42</link>
		<dc:creator>jshuler</dc:creator>
		<pubDate>Thu, 08 Mar 2007 17:08:45 +0000</pubDate>
		<guid isPermaLink="false">http://stompstompstomp.com/weblog/entries/63#comment-42</guid>
		<description>Can you post the complete script that you use to build from the command line?</description>
		<content:encoded><![CDATA[<p>Can you post the complete script that you use to build from the command line?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: visionep</title>
		<link>http://mathieu.fenniak.net/devenv-vs-the-programmer/comment-page-1/#comment-41</link>
		<dc:creator>visionep</dc:creator>
		<pubDate>Thu, 14 Dec 2006 01:29:25 +0000</pubDate>
		<guid isPermaLink="false">http://stompstompstomp.com/weblog/entries/63#comment-41</guid>
		<description>I&#039;ve worked around the problem with 2005 caching up all of its output by calling vcbuild.exe.  You can&#039;t control what you are building as accurately as you can with devenv, but it gets the job done with live progress.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve worked around the problem with 2005 caching up all of its output by calling vcbuild.exe.  You can&#8217;t control what you are building as accurately as you can with devenv, but it gets the job done with live progress.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mathieu Fenniak</title>
		<link>http://mathieu.fenniak.net/devenv-vs-the-programmer/comment-page-1/#comment-40</link>
		<dc:creator>Mathieu Fenniak</dc:creator>
		<pubDate>Fri, 22 Sep 2006 03:17:05 +0000</pubDate>
		<guid isPermaLink="false">http://stompstompstomp.com/weblog/entries/63#comment-40</guid>
		<description>visionep -- I haven&#039;t tried it with Visual Studio 2005.  My experience was with Visual Studio 2003, and I don&#039;t believe I had the problem you describe.  It is possible that the behavior of the software has changed between versions.</description>
		<content:encoded><![CDATA[<p>visionep &#8212; I haven&#8217;t tried it with Visual Studio 2005.  My experience was with Visual Studio 2003, and I don&#8217;t believe I had the problem you describe.  It is possible that the behavior of the software has changed between versions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: visionep</title>
		<link>http://mathieu.fenniak.net/devenv-vs-the-programmer/comment-page-1/#comment-39</link>
		<dc:creator>visionep</dc:creator>
		<pubDate>Fri, 22 Sep 2006 03:07:30 +0000</pubDate>
		<guid isPermaLink="false">http://stompstompstomp.com/weblog/entries/63#comment-39</guid>
		<description>I&#039;ve implemented this to drive devenv.com in Devstudio 2005 and I don&#039;t get on the fly progress, it seems live devenv caches up all of it&#039;s logging and spits it out all at once.  Is this your current experience? Or do you think I&#039;ve implemented something wrong?</description>
		<content:encoded><![CDATA[<p>I&#8217;ve implemented this to drive devenv.com in Devstudio 2005 and I don&#8217;t get on the fly progress, it seems live devenv caches up all of it&#8217;s logging and spits it out all at once.  Is this your current experience? Or do you think I&#8217;ve implemented something wrong?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
