<?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>Elegant Code &#187; Kirstin Juhl</title>
	<atom:link href="http://elegantcode.com/author/kirstin/feed/" rel="self" type="application/rss+xml" />
	<link>http://elegantcode.com</link>
	<description></description>
	<lastBuildDate>Sun, 14 Mar 2010 19:55:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Delete a work Item in TFS</title>
		<link>http://elegantcode.com/2009/11/11/delete-a-work-item-in-tfs/</link>
		<comments>http://elegantcode.com/2009/11/11/delete-a-work-item-in-tfs/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 21:44:38 +0000</pubDate>
		<dc:creator>Kirstin Juhl</dc:creator>
				<category><![CDATA[Esoterica]]></category>

		<guid isPermaLink="false">http://elegantcode.com/2009/11/11/delete-a-work-item-in-tfs/</guid>
		<description><![CDATA[I needed to delete a work item in TFS and found that by design it is not easy to do.
I found that this can be done using the TFS Power Tools via the command line.
tfpt.exe destroywi /server:http://ServerName:8080 /workitemid:123
You will get a warning:
This action is not recoverable. Are you sure you want to destroy work item(s)123? [...]]]></description>
			<content:encoded><![CDATA[<p>I needed to delete a work item in TFS and found that by design it is not easy to do.</p>
<p>I found that this can be done using the TFS Power Tools via the command line.</p>
<p>tfpt.exe destroywi /server:http://ServerName:8080 /workitemid:123</p>
<p>You will get a warning:</p>
<p>This action is not recoverable. Are you sure you want to destroy work item(s)123? (Y/N)</p>
<p>Work item is gone.</p>
]]></content:encoded>
			<wfw:commentRss>http://elegantcode.com/2009/11/11/delete-a-work-item-in-tfs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snow Leopard and Quicksilver</title>
		<link>http://elegantcode.com/2009/11/01/snow-leopard-and-quicksilver/</link>
		<comments>http://elegantcode.com/2009/11/01/snow-leopard-and-quicksilver/#comments</comments>
		<pubDate>Sun, 01 Nov 2009 21:46:54 +0000</pubDate>
		<dc:creator>Kirstin Juhl</dc:creator>
				<category><![CDATA[Esoterica]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Snow Leopard]]></category>

		<guid isPermaLink="false">http://elegantcode.com/?p=2828</guid>
		<description><![CDATA[I recently did the upgrade to Snow Leopard on my MBP. To my dismay, Quicksilver no longer worked. It terminated immediately after launch. 
I found the the Beta 56a7 on here. 
I also had to remove Plugins.plist and the Plugins folder from ~/Library/Application Support/Quicksilver. 
I am ecstatic to report that Quicksilver is up and running [...]]]></description>
			<content:encoded><![CDATA[<p>I recently did the upgrade to Snow Leopard on my MBP. To my dismay, Quicksilver no longer worked. It terminated immediately after launch. </p>
<p>I found the the Beta 56a7 on here. </p>
<p>I also had to remove Plugins.plist and the Plugins folder from ~/Library/Application Support/Quicksilver. </p>
<p>I am ecstatic to report that Quicksilver is up and running again, and my Mac is happy.</p>
]]></content:encoded>
			<wfw:commentRss>http://elegantcode.com/2009/11/01/snow-leopard-and-quicksilver/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>&quot;Can not find Respack&quot; error when running a Moonlight project</title>
		<link>http://elegantcode.com/2009/10/28/can-not-find-respack-error-when-running-a-moonlight-project/</link>
		<comments>http://elegantcode.com/2009/10/28/can-not-find-respack-error-when-running-a-moonlight-project/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 21:28:33 +0000</pubDate>
		<dc:creator>Kirstin Juhl</dc:creator>
				<category><![CDATA[Esoterica]]></category>

		<guid isPermaLink="false">http://elegantcode.com/2009/10/28/can-not-find-respack-error-when-running-a-moonlight-project/</guid>
		<description><![CDATA[I recently upgraded to MonoDevelop 2.2 Beta 2 (for the debugging capability, more on that later) on my Mac. 
When I opened a Moonlight solution and tried to run it, I got the following error: 
Could not find respack
The project had lost its references to System.Windows and System.Windows.Browser. 
The cause turned out to be that [...]]]></description>
			<content:encoded><![CDATA[<p>I recently upgraded to MonoDevelop 2.2 Beta 2 (for the debugging capability, more on that later) on my Mac. </p>
<p>When I opened a Moonlight solution and tried to run it, I got the following error: </p>
<p><strong>Could not find respack</strong></p>
<p>The project had lost its references to System.Windows and System.Windows.Browser. </p>
<p>The cause turned out to be that when you upgrade MonoDevelop, it doesn&#8217;t always update where it&#8217;s pointing. </p>
<p>The solution was to go to: </p>
<p>/Library/Frameworks/Mono.framework/Versions</p>
<p>and delete all directories except the one for the current version of MonoDevelop, in my case, 2.4.2.3</p>
]]></content:encoded>
			<wfw:commentRss>http://elegantcode.com/2009/10/28/can-not-find-respack-error-when-running-a-moonlight-project/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
