<?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 for Zorched / One Line Fix</title>
	<atom:link href="http://www.zorched.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zorched.net</link>
	<description>Musings of a software developer in Milwaukee, WI.</description>
	<lastBuildDate>Fri, 05 Mar 2010 11:50:11 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on DRYing Grails Criteria Queries by Martin</title>
		<link>http://www.zorched.net/2009/09/02/drying-grails-criteria-queries/comment-page-1/#comment-16054</link>
		<dc:creator>Martin</dc:creator>
		<pubDate>Fri, 05 Mar 2010 11:50:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorched.net/?p=364#comment-16054</guid>
		<description>Thanks man, you saved my ass bigtime :)</description>
		<content:encoded><![CDATA[<p>Thanks man, you saved my ass bigtime :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Start a New Branch on your Remote Git Repository by kevin_mic</title>
		<link>http://www.zorched.net/2008/04/14/start-a-new-branch-on-your-remote-git-repository/comment-page-1/#comment-16053</link>
		<dc:creator>kevin_mic</dc:creator>
		<pubDate>Thu, 04 Mar 2010 00:25:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorched.net/?p=101#comment-16053</guid>
		<description>Another useful way of creating a remote branch is by naming the topic branch you want to push to origin

git push origin master:new_remote_branch

or 

git push origin topic_branch:new_remote_branch</description>
		<content:encoded><![CDATA[<p>Another useful way of creating a remote branch is by naming the topic branch you want to push to origin</p>
<p>git push origin master:new_remote_branch</p>
<p>or </p>
<p>git push origin topic_branch:new_remote_branch</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ASP.NET Web Application Without .ASPX Extension by Sandro</title>
		<link>http://www.zorched.net/2006/01/20/aspnet-web-application-without-aspx-extension/comment-page-1/#comment-16052</link>
		<dc:creator>Sandro</dc:creator>
		<pubDate>Mon, 01 Mar 2010 09:54:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorched.net/2006/01/20/aspnet-web-application-without-aspx-extension/#comment-16052</guid>
		<description>Hi,
I&#039;ve been doing something similar recently: my target is to capture the WebDAV request and write a log into the database (something like an auditlogging feature).
I&#039;ve been following the steps and in my HttpModule I hooked BeginRequest event to write some text log into a local folder (for experimental purpose). However, when I try to upload a file I got &#039;Access Denied&#039; and there is no log written. 
Any advice on what may be wrong?</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I&#8217;ve been doing something similar recently: my target is to capture the WebDAV request and write a log into the database (something like an auditlogging feature).<br />
I&#8217;ve been following the steps and in my HttpModule I hooked BeginRequest event to write some text log into a local folder (for experimental purpose). However, when I try to upload a file I got &#8216;Access Denied&#8217; and there is no log written.<br />
Any advice on what may be wrong?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MSBuild Task for PartCover by Phill Demoore</title>
		<link>http://www.zorched.net/2009/01/08/msbuild-task-for-partcover/comment-page-1/#comment-16051</link>
		<dc:creator>Phill Demoore</dc:creator>
		<pubDate>Sat, 27 Feb 2010 22:23:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorched.net/?p=241#comment-16051</guid>
		<description>Somehow lost my itemgroup for the 2nd example.


     
    
</description>
		<content:encoded><![CDATA[<p>Somehow lost my itemgroup for the 2nd example.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MSBuild Task for PartCover by Phill Demoore</title>
		<link>http://www.zorched.net/2009/01/08/msbuild-task-for-partcover/comment-page-1/#comment-16050</link>
		<dc:creator>Phill Demoore</dc:creator>
		<pubDate>Sat, 27 Feb 2010 22:19:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorched.net/?p=241#comment-16050</guid>
		<description>To add multiple includes/excludes, either:

Exclude=&quot;[nunit*]*;[log4net*]*&quot; 


or


  
      
      
 


 
     &lt;!-- Configure the task to execute --&gt;
    &lt;PartCover ToolPath=&quot;$(LibDirectory)/PartCover&quot;
                    Target=&quot;$(LibDirectory)NUnitnunit-console.exe&quot;
                    TargetArgs=&quot;%(TestAssemblies.FullPath) /xml=%(TestAssemblies.Filename).xml /labels /nologo /noshadow&quot;
		    WorkingDirectory=&quot;$(MSBuildProjectDirectory)&quot;
		    Output=&quot;partcover.xml&quot;
		    Exclude=&quot;@(CoverageExclusions)&quot; 
.
.</description>
		<content:encoded><![CDATA[<p>To add multiple includes/excludes, either:</p>
<p>Exclude=&#8221;[nunit*]*;[log4net*]*&#8221; </p>
<p>or</p>
<p>     <!-- Configure the task to execute --><br />
    <PartCover ToolPath=&#8221;$(LibDirectory)/PartCover&#8221;<br />
                    Target=&#8221;$(LibDirectory)NUnitnunit-console.exe&#8221;<br />
                    TargetArgs=&#8221;%(TestAssemblies.FullPath) /xml=%(TestAssemblies.Filename).xml /labels /nologo /noshadow&#8221;<br />
		    WorkingDirectory=&#8221;$(MSBuildProjectDirectory)&#8221;<br />
		    Output=&#8221;partcover.xml&#8221;<br />
		    Exclude=&#8221;@(CoverageExclusions)&#8221;<br />
.<br />
.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Start a New Branch on your Remote Git Repository by R.S. Oldenbeuving</title>
		<link>http://www.zorched.net/2008/04/14/start-a-new-branch-on-your-remote-git-repository/comment-page-1/#comment-16049</link>
		<dc:creator>R.S. Oldenbeuving</dc:creator>
		<pubDate>Sat, 27 Feb 2010 13:39:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorched.net/?p=101#comment-16049</guid>
		<description>Great article, nice to keep in bookmarks and quickly check if you need to create a new branch, thanks!</description>
		<content:encoded><![CDATA[<p>Great article, nice to keep in bookmarks and quickly check if you need to create a new branch, thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mocking .NET Objects with NUnit by Blake</title>
		<link>http://www.zorched.net/2007/03/10/mocking-net-objects-with-nunit/comment-page-1/#comment-16048</link>
		<dc:creator>Blake</dc:creator>
		<pubDate>Fri, 26 Feb 2010 15:50:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorched.net/2007/03/10/mocking-net-objects-with-nunit/#comment-16048</guid>
		<description>Hey great article.  I have been searching several posts trying to understand the concept of mock testing, and you made me understand it...   Thank very much!</description>
		<content:encoded><![CDATA[<p>Hey great article.  I have been searching several posts trying to understand the concept of mock testing, and you made me understand it&#8230;   Thank very much!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MSBuild Task for PartCover by chris</title>
		<link>http://www.zorched.net/2009/01/08/msbuild-task-for-partcover/comment-page-1/#comment-16047</link>
		<dc:creator>chris</dc:creator>
		<pubDate>Thu, 25 Feb 2010 18:24:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorched.net/?p=241#comment-16047</guid>
		<description>Funny.  I was just looking into doing something like this for a current project and you already have done it.  Man I am missing out!</description>
		<content:encoded><![CDATA[<p>Funny.  I was just looking into doing something like this for a current project and you already have done it.  Man I am missing out!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mocking .NET Objects with NUnit by Shantha D</title>
		<link>http://www.zorched.net/2007/03/10/mocking-net-objects-with-nunit/comment-page-1/#comment-16046</link>
		<dc:creator>Shantha D</dc:creator>
		<pubDate>Mon, 22 Feb 2010 05:04:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorched.net/2007/03/10/mocking-net-objects-with-nunit/#comment-16046</guid>
		<description>Hi

Thanks a lot. Very good example. And so simple to understand for the beginners. I tried execute this example. But I got stucked &quot;private DynamicMock personRepositoryMock;&quot; in this statement. Here what actualy &#039;DynamicMock&#039; stands for? Whether its a class or interface? I&#039;m getting this Error:
&quot;The type or namespace name &#039;DynamicMock&#039; could not be found (are you missing a using directive or an assembly reference?)&quot; . Please help me to resolve this problem.</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>Thanks a lot. Very good example. And so simple to understand for the beginners. I tried execute this example. But I got stucked &#8220;private DynamicMock personRepositoryMock;&#8221; in this statement. Here what actualy &#8216;DynamicMock&#8217; stands for? Whether its a class or interface? I&#8217;m getting this Error:<br />
&#8220;The type or namespace name &#8216;DynamicMock&#8217; could not be found (are you missing a using directive or an assembly reference?)&#8221; . Please help me to resolve this problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mocking .NET Objects with NUnit by Shantha D</title>
		<link>http://www.zorched.net/2007/03/10/mocking-net-objects-with-nunit/comment-page-1/#comment-16045</link>
		<dc:creator>Shantha D</dc:creator>
		<pubDate>Mon, 22 Feb 2010 05:04:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.zorched.net/2007/03/10/mocking-net-objects-with-nunit/#comment-16045</guid>
		<description>Hi

Thanks a lot. Very good example. And so simple to understand for the beginners. I tried execute this example. But I got stucked &quot;private DynamicMock personRepositoryMock;&quot; in this statement. Here what actualy &#039;DynamicMock&#039; stands for? Whether its a class or interface? I&#039;m getting this Error:
&quot;The type or namespace name &#039;DynamicMock&#039; could not be found (are you missing a using directive or an assembly reference?)&quot; . Please help me to resolve this problem.</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>Thanks a lot. Very good example. And so simple to understand for the beginners. I tried execute this example. But I got stucked &#8220;private DynamicMock personRepositoryMock;&#8221; in this statement. Here what actualy &#8216;DynamicMock&#8217; stands for? Whether its a class or interface? I&#8217;m getting this Error:<br />
&#8220;The type or namespace name &#8216;DynamicMock&#8217; could not be found (are you missing a using directive or an assembly reference?)&#8221; . Please help me to resolve this problem.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
