<?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/"
	>

<channel>
	<title>digitalMoto.net</title>
	<atom:link href="http://digitalMoto.net/blog/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>
	<pubDate>Thu, 04 Mar 2010 21:13:51 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Happy Camper</title>
		<link>http://digitalMoto.net/blog/2010/03/04/happy-camper/</link>
		<comments>http://digitalMoto.net/blog/2010/03/04/happy-camper/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 20:38:51 +0000</pubDate>
		<dc:creator>digital</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<category><![CDATA[Intuit]]></category>

		<category><![CDATA[Microsoft]]></category>

		<category><![CDATA[Product Support]]></category>

		<category><![CDATA[Quick Books Sucks]]></category>

		<category><![CDATA[Win7]]></category>

		<guid isPermaLink="false">http://digitalMoto.net/blog/?p=1087</guid>
		<description><![CDATA[There are days when I reeeeeeally like dealing with Microsoft.  Today is one of those days.  Under the terms of my BizSpark license, I can legally install Microsoft Dynamics GP.  It&#8217;s a huge accounting package if you didn&#8217;t know.  The point is that we can use a fully featured accounting package [...]]]></description>
		<wfw:commentRss>http://digitalMoto.net/blog/2010/03/04/happy-camper/feed/</wfw:commentRss>
		</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[Ramblings]]></category>

		<category><![CDATA[C#]]></category>

		<category><![CDATA[Debugging]]></category>

		<category><![CDATA[LINQ to SQL]]></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>
		</item>
		<item>
		<title>App version by the deployment method</title>
		<link>http://digitalMoto.net/blog/2010/01/10/app-version-by-the-deployment-method/</link>
		<comments>http://digitalMoto.net/blog/2010/01/10/app-version-by-the-deployment-method/#comments</comments>
		<pubDate>Sun, 10 Jan 2010 21:10:56 +0000</pubDate>
		<dc:creator>digital</dc:creator>
		
		<category><![CDATA[Ramblings]]></category>

		<category><![CDATA[Add new tag]]></category>

		<category><![CDATA[C#]]></category>

		<category><![CDATA[ClickOnce Deployment]]></category>

		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://digitalMoto.net/blog/?p=1075</guid>
		<description><![CDATA[I have several clickonce deployments.  And it gets old having to manually increament my version numbers in the AssemblyInfo file especially when my deployment method does that on it&#8217;s own.  
So&#8230;  Here&#8217;s my solution.
Add Reference:
System.Deployment

using System.Deployment.Application;

...

public string Version { get; private set; }

public MainViewModel()
{
	SetVersion();
}

private void SetVersion()
{
	if ( ApplicationDeployment.IsNetworkDeployed )
		Version = ApplicationDeployment.CurrentDeployment.CurrentVersion.ToString();
	else
		Version = [...]]]></description>
		<wfw:commentRss>http://digitalMoto.net/blog/2010/01/10/app-version-by-the-deployment-method/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Self-assembling Gixxer</title>
		<link>http://digitalMoto.net/blog/2009/12/11/self-assembling-gixxer/</link>
		<comments>http://digitalMoto.net/blog/2009/12/11/self-assembling-gixxer/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 17:10:09 +0000</pubDate>
		<dc:creator>digital</dc:creator>
		
		<category><![CDATA[Motorcycle]]></category>

		<category><![CDATA[Animation]]></category>

		<category><![CDATA[GSX-R]]></category>

		<category><![CDATA[Stop Motion]]></category>

		<guid isPermaLink="false">http://digitalMoto.net/blog/?p=1068</guid>
		<description><![CDATA[
Thx Noah!  
]]></description>
		<wfw:commentRss>http://digitalMoto.net/blog/2009/12/11/self-assembling-gixxer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Remove items from a list.</title>
		<link>http://digitalMoto.net/blog/2009/12/09/remove-items-from-a-list/</link>
		<comments>http://digitalMoto.net/blog/2009/12/09/remove-items-from-a-list/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 20:12:24 +0000</pubDate>
		<dc:creator>digital</dc:creator>
		
		<category><![CDATA[Software]]></category>

		<category><![CDATA[C#]]></category>

		<category><![CDATA[LINQ]]></category>

		<guid isPermaLink="false">http://digitalMoto.net/blog/?p=1064</guid>
		<description><![CDATA[You have a list of &#8220;something&#8221; and you want to remove items from the list.  I can think of a couple ways to do this.  
Remove Items V1:
List myList = new List() { &#8220;one&#8221;, &#8220;two&#8221;, &#8220;three&#8221; };
// print out the original list
foreach (string item in myList)
  Console.WriteLine(item); // one two three
myList.Remove(&#8221;two&#8221;);
// print [...]]]></description>
		<wfw:commentRss>http://digitalMoto.net/blog/2009/12/09/remove-items-from-a-list/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
