<?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>TechNullogy &#187; Source Control</title>
	<atom:link href="http://www.technullogy.net/index.php/tag/source-control/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.technullogy.net</link>
	<description>Musings of a convert to nerdism</description>
	<lastBuildDate>Thu, 22 Jul 2010 19:43:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How to Recover Deleted TFS Files and Folders</title>
		<link>http://www.technullogy.net/index.php/2010/03/03/how-to-recover-deleted-tfs-files-and-folders/</link>
		<comments>http://www.technullogy.net/index.php/2010/03/03/how-to-recover-deleted-tfs-files-and-folders/#comments</comments>
		<pubDate>Wed, 03 Mar 2010 21:04:47 +0000</pubDate>
		<dc:creator>MJ Hufford</dc:creator>
				<category><![CDATA[Team Foundation Server]]></category>
		<category><![CDATA[File Recovery]]></category>
		<category><![CDATA[Source Control]]></category>
		<category><![CDATA[TFS]]></category>

		<guid isPermaLink="false">http://www.technullogy.net/?p=250</guid>
		<description><![CDATA[I recently went in search for a &#8220;how to&#8221; regarding file and folder recovery in Microsoft Team Foundation Server.  One of our project files was corrupted and removed its reference to an ascx file, but left the .cs and .designer.cs files behind; ultimately breaking the build on our continuous integration server.  Google doth continue to [...]]]></description>
			<content:encoded><![CDATA[<p>I recently went in search for a &#8220;how to&#8221; regarding file and folder recovery in Microsoft Team Foundation Server.  One of our project files was corrupted and removed its reference to an ascx file, but left the .cs and .designer.cs files behind; ultimately breaking the build on our continuous integration server.  Google doth continue to rock.  I quickly found a solution.   It&#8217;s relatively easy:</p>
<ol>
<li>In Visual Studio, click on Tools -&gt; Options -&gt; (make sure the &#8220;show all items&#8221; check box is checked) -&gt; Source Control -&gt; Visual Studio Team Foundation Server</li>
<li>Check the “Show deleted items in the Source Control Explorer” check box<br />
<a rel="attachment wp-att-251" href="http://www.technullogy.net/index.php/2010/03/03/how-to-recover-deleted-tfs-files-and-folders/showtfsdeleteditems/"><img class="aligncenter size-medium wp-image-251" title="ShowTfsDeletedItems" src="http://www.technullogy.net/wp-content/uploads/2010/03/ShowTfsDeletedItems-300x176.jpg" alt="" width="300" height="176" /></a></li>
<li>Click &#8220;OK&#8221;</li>
<li>In Team Explorer, open Source Control<br />
<a rel="attachment wp-att-252" href="http://www.technullogy.net/index.php/2010/03/03/how-to-recover-deleted-tfs-files-and-folders/deletedtfsitems/"><img class="aligncenter size-medium wp-image-252" title="DeletedTfsItems" src="http://www.technullogy.net/wp-content/uploads/2010/03/DeletedTfsItems-300x147.jpg" alt="" width="300" height="147" /></a></li>
<li>Then just right-click and click &#8220;Undelete&#8221; -&gt; sooooo not a real word</li>
</ol>
<p>Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.technullogy.net/index.php/2010/03/03/how-to-recover-deleted-tfs-files-and-folders/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Listing checked-out files in Team Foundation Server 2008 (TFS)</title>
		<link>http://www.technullogy.net/index.php/2009/09/18/listing-checked-out-files-in-team-foundation-server-2008-tfs/</link>
		<comments>http://www.technullogy.net/index.php/2009/09/18/listing-checked-out-files-in-team-foundation-server-2008-tfs/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 18:20:59 +0000</pubDate>
		<dc:creator>MJ Hufford</dc:creator>
				<category><![CDATA[Team Foundation Server]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[Source Control]]></category>
		<category><![CDATA[TFS]]></category>

		<guid isPermaLink="false">http://www.technullogy.net/?p=172</guid>
		<description><![CDATA[I needed a list of all checked-out files in TFS today.  This page came in handy! Thanks Clay!  Here&#8217;s what he had to say (slightly modified for VS 2008) You can get a complete list of checked out files by using the tf.exe command line tool found in: C:\Program Files\Microsoft Visual Studio 9\Common7\IDE or C:\Program [...]]]></description>
			<content:encoded><![CDATA[<p>I needed a list of all checked-out files in TFS today.  <a href="http://clay.lenharts.net/blog/2008/01/28/listing-checked-out-files-in-team-system-tfs/">This page came in handy!</a> Thanks Clay!  Here&#8217;s what he had to say (slightly modified for VS 2008)</p>
<div>
<p>You can get a complete list of checked out files by using the tf.exe command line tool found in: C:\Program Files\Microsoft Visual Studio 9\Common7\IDE or C:\Program Files (x86)\Microsoft Visual Studio 9\Common7\IDE for you 64 bitters.</p>
<p>All checked out files in $/MyProject:</p>
<pre>tf.exe status $/MyProject /user:* /s:http://MyTfs:8080 /recursive</pre>
<p>All files checked out to Mark:</p>
<pre>tf.exe status /user:mark /s:http://MyTfs:8080</pre>
<p>You can write the output to a file:</p>
<pre>tf.exe status /user:* /s:http://MyTfs:8080 &gt; c:\tfsCheckedOut.txt</pre>
<p><a href="http://www.box.net/shared/6a0n3k7vn9">I also created this little batch file</a> that will automatically output results to your desktop.  It&#8217;s very simplistic, but saves time having to mess with the command prompt.  Edit with your favorite text editor, save, and away you go.</div>
]]></content:encoded>
			<wfw:commentRss>http://www.technullogy.net/index.php/2009/09/18/listing-checked-out-files-in-team-foundation-server-2008-tfs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
