<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>digitalMoto.net &#187; Debugging</title>
	<atom:link href="http://digitalMoto.net/blog/tag/debugging/feed/" rel="self" type="application/rss+xml" />
	<link>http://digitalMoto.net/blog</link>
	<description>Off-idle banter on motorcycling, software development and life in the Pacific Northwest.</description>
	<lastBuildDate>Thu, 17 May 2012 18:00:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Where am I? (Using reflection to determine location in the execution)</title>
		<link>http://digitalMoto.net/blog/2011/05/29/where-am-i/</link>
		<comments>http://digitalMoto.net/blog/2011/05/29/where-am-i/#comments</comments>
		<pubDate>Sun, 29 May 2011 08:53:54 +0000</pubDate>
		<dc:creator>digital</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[CodeKeep]]></category>
		<category><![CDATA[Debugging]]></category>
		<category><![CDATA[Reflection]]></category>

		<guid isPermaLink="false">http://digitalMoto.net/blog/2011/05/29/where-am-i/</guid>
		<description><![CDATA[(Another snippet I originally posted to CodeKeep.) Using reflection inside a method to determine where you are in the control flow via the output window. This is another snippet I used to have on CodeKeep.net. I like to put a lot of debugging statements in my code and tracking the code exec is much easier [...]]]></description>
		<wfw:commentRss>http://digitalMoto.net/blog/2011/05/29/where-am-i/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sending the LINQ To SQL log to the debugger output window</title>
		<link>http://digitalMoto.net/blog/2010/01/10/sending-the-linq-to-sql-log-to-the-debugger-output-window/</link>
		<comments>http://digitalMoto.net/blog/2010/01/10/sending-the-linq-to-sql-log-to-the-debugger-output-window/#comments</comments>
		<pubDate>Sun, 10 Jan 2010 23:02:43 +0000</pubDate>
		<dc:creator>digital</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Debugging]]></category>
		<category><![CDATA[LINQ to SQL]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://digitalMoto.net/blog/?p=1083</guid>
		<description><![CDATA[I keep looking this up and I know it works. Sending the LINQ To SQL log to the debugger output window]]></description>
		<wfw:commentRss>http://digitalMoto.net/blog/2010/01/10/sending-the-linq-to-sql-log-to-the-debugger-output-window/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Testing execution timeout in Visual Studio 2008 Team System</title>
		<link>http://digitalMoto.net/blog/2009/12/09/testing-execution-timeout-in-visual-studio-2008-team-system/</link>
		<comments>http://digitalMoto.net/blog/2009/12/09/testing-execution-timeout-in-visual-studio-2008-team-system/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 19:30:41 +0000</pubDate>
		<dc:creator>digital</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Debugging]]></category>
		<category><![CDATA[Testing]]></category>
		<category><![CDATA[Visual Studio 2008]]></category>

		<guid isPermaLink="false">http://digitalMoto.net/blog/?p=1034</guid>
		<description><![CDATA[With Visual Studio Team System, the LocalTestRun.testrunconfig file controls execution parameters for running tests. The default timeout on individual tests is 30 minutes. Ouch! Solution: Double click on the &#8216;Solution Items\LocalTestRun.testrunconfig&#8217; file. Select &#8216;Test Timeouts&#8217; Set the individual test time to your preference or set a total time abort if you prefer.]]></description>
		<wfw:commentRss>http://digitalMoto.net/blog/2009/12/09/testing-execution-timeout-in-visual-studio-2008-team-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>List embedded resources</title>
		<link>http://digitalMoto.net/blog/2009/11/24/list-embedded-resources/</link>
		<comments>http://digitalMoto.net/blog/2009/11/24/list-embedded-resources/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 20:31:27 +0000</pubDate>
		<dc:creator>digital</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[Debugging]]></category>
		<category><![CDATA[Embedded Resources]]></category>

		<guid isPermaLink="false">http://digitalMoto.net/blog/?p=1014</guid>
		<description><![CDATA[You can embed items into your WinForm app. So how to do you figure out what you have and the correct path to retreive the items? Here&#8217;s a method to show you what&#8217;s an embedded resource in your application. Code: using System.Diagnostics; using System.Reflection; private void ExposeResources() { Assembly assembly = Assembly.GetExecutingAssembly(); foreach ( string [...]]]></description>
		<wfw:commentRss>http://digitalMoto.net/blog/2009/11/24/list-embedded-resources/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fixed: API restriction w/ Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll</title>
		<link>http://digitalMoto.net/blog/2009/11/11/fixed-api-restriction-w-microsoftvisualstudioqualitytoolsunittestframeworkdll/</link>
		<comments>http://digitalMoto.net/blog/2009/11/11/fixed-api-restriction-w-microsoftvisualstudioqualitytoolsunittestframeworkdll/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 18:36:42 +0000</pubDate>
		<dc:creator>digital</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Debugging]]></category>
		<category><![CDATA[Visual Studio 2008]]></category>
		<category><![CDATA[Win7]]></category>

		<guid isPermaLink="false">http://digitalMoto.net/blog/?p=978</guid>
		<description><![CDATA[I wrote about this a couple days ago. I have now confirmed my fix. ENV: Win7 Ent x64, VS 2008 SP1 Problem: API restriction: The assembly &#8216;file:///c:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\PublicAssemblies\Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll&#8217; has already loaded from a different location. It cannot be loaded from a new location within the same appdomain. Solution: Make sure you [...]]]></description>
		<wfw:commentRss>http://digitalMoto.net/blog/2009/11/11/fixed-api-restriction-w-microsoftvisualstudioqualitytoolsunittestframeworkdll/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

