<?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>Dan Rigby &#187; VisualStudio</title>
	<atom:link href="http://danrigby.com/tag/visualstudio/feed/" rel="self" type="application/rss+xml" />
	<link>http://danrigby.com</link>
	<description>Random Thoughts About Life, Technology, and Software</description>
	<lastBuildDate>Thu, 01 Jul 2010 16:49:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Quick and Easy Google (or Bing) Web Search in Visual Studio</title>
		<link>http://danrigby.com/2010/03/03/quick-and-easy-google-or-bing-web-search-in-visual-studio/</link>
		<comments>http://danrigby.com/2010/03/03/quick-and-easy-google-or-bing-web-search-in-visual-studio/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 02:48:38 +0000</pubDate>
		<dc:creator>Dan Rigby</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[VisualStudio]]></category>

		<guid isPermaLink="false">http://danrigby.com/?p=277</guid>
		<description><![CDATA[Here is a quick and easy way to add a Google (or Bing) Web Search link to the context menu in Visual Studio: Open the Visual Studio macros IDE by navigating to Tools –&#62; Macros –&#62; Macros IDE (or pressing Alt+F11). Right click on “MyMacros” and select Add New –&#62; Add New Item. Select the [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a quick and easy way to add a Google (or Bing) Web Search link to the context menu in Visual Studio:</p>
<ul>
<li>Open the Visual Studio macros IDE by navigating to Tools –&gt; Macros –&gt; Macros IDE (or pressing Alt+F11).</li>
<li>Right click on “MyMacros” and select Add New –&gt; Add New Item.</li>
<li>Select the Module template, name the module “Search”, and click Add.</li>
<li>Paste the following code directly before the “End Module” line:
<pre class="brush: vb;">
Sub Search()
    Dim strUrl As String
    Dim selection As TextSelection = DTE.ActiveDocument.Selection()
    If selection.Text &lt;&gt; &quot;&quot; Then
        strUrl = &quot;www.google.com/search?q=&quot; + selection.Text
        'strUrl = &quot;www.bing.com/search?q=&quot; + selection.Text
        DTE.ExecuteCommand(&quot;View.URL&quot;, strUrl)
    Else
        MsgBox(&quot;Select Text first to Search&quot;)
    End If
End Sub
</pre>
</li>
<li>(Optional) If you prefer to use Bing for your search, uncomment the Bing line and comment out the Google line.</li>
<li>Your macro editor window should now look something like this:<br />
<img title="image" src="http://danrigby.com/wp-content/uploads/2010/03/image_thumb.png" border="0" alt="image" width="604" height="454" /></li>
<li>Save and close the Macro Editor window and IDE.</li>
<li>Right click on the Visual Studio toolbar and select Customize.</li>
<li>Under the Toolbars tab, check the Context Menus option and the switch to the Commands tab.</li>
<li>Select the Macros Category, and then select the “MyMacros.Search.Search” macro.</li>
<li>Drag the selected macro onto “Editor Context Menus” -&gt; “Code Window” and then drop it where you want it in the context menu (I place mine below the Paste command).</li>
<li>Right click on the new context menu item and change it’s name to “&amp;Web Search”.</li>
<li>Click close on the Customize window.</li>
<li>You are now done! If everything has gone according to plan, when viewing a source code file you should now see a new context menu item that will do a web search on any selected text when you click it:<br />
<img title="image" src="http://danrigby.com/wp-content/uploads/2010/03/image_thumb1.png" border="0" alt="image" width="604" height="454" /><br />
<img title="image" src="http://danrigby.com/wp-content/uploads/2010/03/image_thumb2.png" border="0" alt="image" width="604" height="454" /></li>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=Quick%20and%20Easy%20Google%20%28or%20Bing%29%20Web%20Search%20in%20Visual%20Studio&amp;body=http%3A%2F%2Fdanrigby.com%2F2010%2F03%2F03%2Fquick-and-easy-google-or-bing-web-search-in-visual-studio%2F" title="email"><img src="http://danrigby.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdanrigby.com%2F2010%2F03%2F03%2Fquick-and-easy-google-or-bing-web-search-in-visual-studio%2F&amp;title=Quick%20and%20Easy%20Google%20%28or%20Bing%29%20Web%20Search%20in%20Visual%20Studio" title="DotNetKicks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdanrigby.com%2F2010%2F03%2F03%2Fquick-and-easy-google-or-bing-web-search-in-visual-studio%2F&amp;title=Quick%20and%20Easy%20Google%20%28or%20Bing%29%20Web%20Search%20in%20Visual%20Studio&amp;bodytext=Here%20is%20a%20quick%20and%20easy%20way%20to%20add%20a%20Google%20%28or%20Bing%29%20Web%20Search%20link%20to%20the%20context%20menu%20in%20Visual%20Studio%3A%0D%0A%0D%0A%09Open%20the%20Visual%20Studio%20macros%20IDE%20by%20navigating%20to%20Tools%20%E2%80%93%26gt%3B%20Macros%20%E2%80%93%26gt%3B%20Macros%20IDE%20%28or%20pressing%20Alt%2BF11%29.%0D%0A%09Right%20click%20on%20%E2%80%9CMyM" title="Digg"><img src="http://danrigby.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fdanrigby.com%2F2010%2F03%2F03%2Fquick-and-easy-google-or-bing-web-search-in-visual-studio%2F&amp;title=Quick%20and%20Easy%20Google%20%28or%20Bing%29%20Web%20Search%20in%20Visual%20Studio&amp;notes=Here%20is%20a%20quick%20and%20easy%20way%20to%20add%20a%20Google%20%28or%20Bing%29%20Web%20Search%20link%20to%20the%20context%20menu%20in%20Visual%20Studio%3A%0D%0A%0D%0A%09Open%20the%20Visual%20Studio%20macros%20IDE%20by%20navigating%20to%20Tools%20%E2%80%93%26gt%3B%20Macros%20%E2%80%93%26gt%3B%20Macros%20IDE%20%28or%20pressing%20Alt%2BF11%29.%0D%0A%09Right%20click%20on%20%E2%80%9CMyM" title="del.icio.us"><img src="http://danrigby.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fdanrigby.com%2F2010%2F03%2F03%2Fquick-and-easy-google-or-bing-web-search-in-visual-studio%2F" title="Technorati"><img src="http://danrigby.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdanrigby.com%2F2010%2F03%2F03%2Fquick-and-easy-google-or-bing-web-search-in-visual-studio%2F&amp;title=Quick%20and%20Easy%20Google%20%28or%20Bing%29%20Web%20Search%20in%20Visual%20Studio" title="StumbleUpon"><img src="http://danrigby.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdanrigby.com%2F2010%2F03%2F03%2Fquick-and-easy-google-or-bing-web-search-in-visual-studio%2F&amp;title=Quick%20and%20Easy%20Google%20%28or%20Bing%29%20Web%20Search%20in%20Visual%20Studio&amp;source=Dan+Rigby+Random+Thoughts+About+Life%2C+Technology%2C+and+Software&amp;summary=Here%20is%20a%20quick%20and%20easy%20way%20to%20add%20a%20Google%20%28or%20Bing%29%20Web%20Search%20link%20to%20the%20context%20menu%20in%20Visual%20Studio%3A%0D%0A%0D%0A%09Open%20the%20Visual%20Studio%20macros%20IDE%20by%20navigating%20to%20Tools%20%E2%80%93%26gt%3B%20Macros%20%E2%80%93%26gt%3B%20Macros%20IDE%20%28or%20pressing%20Alt%2BF11%29.%0D%0A%09Right%20click%20on%20%E2%80%9CMyM" title="LinkedIn"><img src="http://danrigby.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdanrigby.com%2F2010%2F03%2F03%2Fquick-and-easy-google-or-bing-web-search-in-visual-studio%2F&amp;t=Quick%20and%20Easy%20Google%20%28or%20Bing%29%20Web%20Search%20in%20Visual%20Studio" title="Facebook"><img src="http://danrigby.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=Quick%20and%20Easy%20Google%20%28or%20Bing%29%20Web%20Search%20in%20Visual%20Studio%20-%20http%3A%2F%2Fdanrigby.com%2F2010%2F03%2F03%2Fquick-and-easy-google-or-bing-web-search-in-visual-studio%2F" title="Twitter"><img src="http://danrigby.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdanrigby.com%2F2010%2F03%2F03%2Fquick-and-easy-google-or-bing-web-search-in-visual-studio%2F&amp;title=Quick%20and%20Easy%20Google%20%28or%20Bing%29%20Web%20Search%20in%20Visual%20Studio&amp;annotation=Here%20is%20a%20quick%20and%20easy%20way%20to%20add%20a%20Google%20%28or%20Bing%29%20Web%20Search%20link%20to%20the%20context%20menu%20in%20Visual%20Studio%3A%0D%0A%0D%0A%09Open%20the%20Visual%20Studio%20macros%20IDE%20by%20navigating%20to%20Tools%20%E2%80%93%26gt%3B%20Macros%20%E2%80%93%26gt%3B%20Macros%20IDE%20%28or%20pressing%20Alt%2BF11%29.%0D%0A%09Right%20click%20on%20%E2%80%9CMyM" title="Google Bookmarks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdanrigby.com%2F2010%2F03%2F03%2Fquick-and-easy-google-or-bing-web-search-in-visual-studio%2F&amp;title=Quick%20and%20Easy%20Google%20%28or%20Bing%29%20Web%20Search%20in%20Visual%20Studio" title="Live"><img src="http://danrigby.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://danrigby.com/2010/03/03/quick-and-easy-google-or-bing-web-search-in-visual-studio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Automatically Cancelling a Failed Build in Visual Studio</title>
		<link>http://danrigby.com/2009/10/04/automatically-cancelling-a-failed-build-in-visual-studio/</link>
		<comments>http://danrigby.com/2009/10/04/automatically-cancelling-a-failed-build-in-visual-studio/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 01:43:19 +0000</pubDate>
		<dc:creator>Dan Rigby</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[VisualStudio]]></category>

		<guid isPermaLink="false">http://danrigby.com/?p=238</guid>
		<description><![CDATA[Stumbled across this little tip on how to automatically cancel a build in progress after getting an error. You normally have to wait for visual studio to try to finish building all of the remaining projects before getting a chance to fix an the issue and this can take a few minutes if you have [...]]]></description>
			<content:encoded><![CDATA[<p>Stumbled across <a href="http://www.ehow.com/how_5025041_automatically-visual-studio-build-error.html" target="_blank">this little tip</a> on how to automatically cancel a build in progress after getting an error. You normally have to wait for visual studio to try to finish building all of the remaining projects before getting a chance to fix an the issue and this can take a few minutes if you have a lot of projects in your solution.</p>
<p><strong>Step 1:</strong> Open the Visual Studio macros IDE by navigating to Tools –&gt; Macros –&gt; Macros IDE.</p>
<p><strong>Step 2:</strong> Double click on “MyMacros” and then on “EnvironmentEvents”. You should now be looking at a VB code editor window.</p>
<p><strong>Step 3:</strong> Paste the following code directly before the “End Module” line:</p>
<pre class="brush: vb;">
Private Sub BuildEvents_OnBuildProjConfigDone(ByVal Project As String, ByVal ProjectConfig As String, ByVal Platform As String, ByVal SolutionConfig As String, ByVal Success As Boolean) Handles BuildEvents.OnBuildProjConfigDone

    If Success = False Then
        DTE.ExecuteCommand(&quot;Build.Cancel&quot;)
    End If

End Sub
</pre>
<p><strong>Step 4: </strong>Save and close the Macro Editor window and IDE.</p>
<p>All done!</p>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=Automatically%20Cancelling%20a%20Failed%20Build%20in%20Visual%20Studio&amp;body=http%3A%2F%2Fdanrigby.com%2F2009%2F10%2F04%2Fautomatically-cancelling-a-failed-build-in-visual-studio%2F" title="email"><img src="http://danrigby.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdanrigby.com%2F2009%2F10%2F04%2Fautomatically-cancelling-a-failed-build-in-visual-studio%2F&amp;title=Automatically%20Cancelling%20a%20Failed%20Build%20in%20Visual%20Studio" title="DotNetKicks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F10%2F04%2Fautomatically-cancelling-a-failed-build-in-visual-studio%2F&amp;title=Automatically%20Cancelling%20a%20Failed%20Build%20in%20Visual%20Studio&amp;bodytext=Stumbled%20across%20this%20little%20tip%20on%20how%20to%20automatically%20cancel%20a%20build%20in%20progress%20after%20getting%20an%20error.%20You%20normally%20have%20to%20wait%20for%20visual%20studio%20to%20try%20to%20finish%20building%20all%20of%20the%20remaining%20projects%20before%20getting%20a%20chance%20to%20fix%20an%20the%20issue" title="Digg"><img src="http://danrigby.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fdanrigby.com%2F2009%2F10%2F04%2Fautomatically-cancelling-a-failed-build-in-visual-studio%2F&amp;title=Automatically%20Cancelling%20a%20Failed%20Build%20in%20Visual%20Studio&amp;notes=Stumbled%20across%20this%20little%20tip%20on%20how%20to%20automatically%20cancel%20a%20build%20in%20progress%20after%20getting%20an%20error.%20You%20normally%20have%20to%20wait%20for%20visual%20studio%20to%20try%20to%20finish%20building%20all%20of%20the%20remaining%20projects%20before%20getting%20a%20chance%20to%20fix%20an%20the%20issue" title="del.icio.us"><img src="http://danrigby.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fdanrigby.com%2F2009%2F10%2F04%2Fautomatically-cancelling-a-failed-build-in-visual-studio%2F" title="Technorati"><img src="http://danrigby.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdanrigby.com%2F2009%2F10%2F04%2Fautomatically-cancelling-a-failed-build-in-visual-studio%2F&amp;title=Automatically%20Cancelling%20a%20Failed%20Build%20in%20Visual%20Studio" title="StumbleUpon"><img src="http://danrigby.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F10%2F04%2Fautomatically-cancelling-a-failed-build-in-visual-studio%2F&amp;title=Automatically%20Cancelling%20a%20Failed%20Build%20in%20Visual%20Studio&amp;source=Dan+Rigby+Random+Thoughts+About+Life%2C+Technology%2C+and+Software&amp;summary=Stumbled%20across%20this%20little%20tip%20on%20how%20to%20automatically%20cancel%20a%20build%20in%20progress%20after%20getting%20an%20error.%20You%20normally%20have%20to%20wait%20for%20visual%20studio%20to%20try%20to%20finish%20building%20all%20of%20the%20remaining%20projects%20before%20getting%20a%20chance%20to%20fix%20an%20the%20issue" title="LinkedIn"><img src="http://danrigby.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdanrigby.com%2F2009%2F10%2F04%2Fautomatically-cancelling-a-failed-build-in-visual-studio%2F&amp;t=Automatically%20Cancelling%20a%20Failed%20Build%20in%20Visual%20Studio" title="Facebook"><img src="http://danrigby.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=Automatically%20Cancelling%20a%20Failed%20Build%20in%20Visual%20Studio%20-%20http%3A%2F%2Fdanrigby.com%2F2009%2F10%2F04%2Fautomatically-cancelling-a-failed-build-in-visual-studio%2F" title="Twitter"><img src="http://danrigby.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdanrigby.com%2F2009%2F10%2F04%2Fautomatically-cancelling-a-failed-build-in-visual-studio%2F&amp;title=Automatically%20Cancelling%20a%20Failed%20Build%20in%20Visual%20Studio&amp;annotation=Stumbled%20across%20this%20little%20tip%20on%20how%20to%20automatically%20cancel%20a%20build%20in%20progress%20after%20getting%20an%20error.%20You%20normally%20have%20to%20wait%20for%20visual%20studio%20to%20try%20to%20finish%20building%20all%20of%20the%20remaining%20projects%20before%20getting%20a%20chance%20to%20fix%20an%20the%20issue" title="Google Bookmarks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F10%2F04%2Fautomatically-cancelling-a-failed-build-in-visual-studio%2F&amp;title=Automatically%20Cancelling%20a%20Failed%20Build%20in%20Visual%20Studio" title="Live"><img src="http://danrigby.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://danrigby.com/2009/10/04/automatically-cancelling-a-failed-build-in-visual-studio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Official jQuery 1.3.0, 1.3.1 Visual Studio Intellisense Files</title>
		<link>http://danrigby.com/2009/02/09/official-jquery-130-131-visual-studio-intellisense-files/</link>
		<comments>http://danrigby.com/2009/02/09/official-jquery-130-131-visual-studio-intellisense-files/#comments</comments>
		<pubDate>Mon, 09 Feb 2009 13:42:29 +0000</pubDate>
		<dc:creator>Dan Rigby</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Tech News]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[VisualStudio]]></category>

		<guid isPermaLink="false">http://danrigby.com/2009/02/09/official-jquery-130-131-visual-studio-intellisense-files/</guid>
		<description><![CDATA[It looks like this weekend while I was at the South Florida Code Camp the jQuery team has posted the official jQuery 1.3.1 Visual Studio intellisense file. You can get it from the jQuery downloads page, or more directly from the jQuery Google Code download page. The official 1.3.0 documentation was posted this weekend as [...]]]></description>
			<content:encoded><![CDATA[<p>It looks like this weekend while I was at the <a href="http://codecamp09.fladotnet.com/" target="_blank">South Florida Code Camp</a> the jQuery team has posted the official jQuery 1.3.1 Visual Studio intellisense file. You can get it from the <a href="http://docs.jquery.com/Downloading_jQuery#Current_Release" target="_blank">jQuery downloads page</a>, or more directly from the <a href="http://code.google.com/p/jqueryjs/downloads/detail?name=jquery-1.3.1-vsdoc.js" target="_blank">jQuery Google Code download page</a>.</p>
<p>The official 1.3.0 documentation was posted this weekend as well and is also available from the downloads link above, or this <a href="http://code.google.com/p/jqueryjs/downloads/detail?name=jquery-1.3-vsdoc.js" target="_blank">Google Code download page</a>.</p>
<p>Keep your eyes peeled for a jQuery 1.3.2 release anytime in the next few days as John Resig has mentioned there is still one last 1.3 regression they are working on fixing. </p>
<p>For those interested, the regression has to do with the $(document).ready() function waiting until images are fully loaded in Internet Explorer 6 &amp; 7. The jQuery bug ticket ID is <a href="http://dev.jquery.com/ticket/3988#preview" target="_blank">#3988</a> and here’s a <a href="http://stackoverflow.com/questions/477463/jquery-is-waiting-for-images-to-load-before-executing-document-ready" target="_blank">Stack Overflow question</a> in which John Resig talks about the issue in some detail.</p>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=Official%20jQuery%201.3.0%2C%201.3.1%20Visual%20Studio%20Intellisense%20Files&amp;body=http%3A%2F%2Fdanrigby.com%2F2009%2F02%2F09%2Fofficial-jquery-130-131-visual-studio-intellisense-files%2F" title="email"><img src="http://danrigby.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdanrigby.com%2F2009%2F02%2F09%2Fofficial-jquery-130-131-visual-studio-intellisense-files%2F&amp;title=Official%20jQuery%201.3.0%2C%201.3.1%20Visual%20Studio%20Intellisense%20Files" title="DotNetKicks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F02%2F09%2Fofficial-jquery-130-131-visual-studio-intellisense-files%2F&amp;title=Official%20jQuery%201.3.0%2C%201.3.1%20Visual%20Studio%20Intellisense%20Files&amp;bodytext=It%20looks%20like%20this%20weekend%20while%20I%20was%20at%20the%20South%20Florida%20Code%20Camp%20the%20jQuery%20team%20has%20posted%20the%20official%20jQuery%201.3.1%20Visual%20Studio%20intellisense%20file.%20You%20can%20get%20it%20from%20the%20jQuery%20downloads%20page%2C%20or%20more%20directly%20from%20the%20jQuery%20Google%20Code%20do" title="Digg"><img src="http://danrigby.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fdanrigby.com%2F2009%2F02%2F09%2Fofficial-jquery-130-131-visual-studio-intellisense-files%2F&amp;title=Official%20jQuery%201.3.0%2C%201.3.1%20Visual%20Studio%20Intellisense%20Files&amp;notes=It%20looks%20like%20this%20weekend%20while%20I%20was%20at%20the%20South%20Florida%20Code%20Camp%20the%20jQuery%20team%20has%20posted%20the%20official%20jQuery%201.3.1%20Visual%20Studio%20intellisense%20file.%20You%20can%20get%20it%20from%20the%20jQuery%20downloads%20page%2C%20or%20more%20directly%20from%20the%20jQuery%20Google%20Code%20do" title="del.icio.us"><img src="http://danrigby.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fdanrigby.com%2F2009%2F02%2F09%2Fofficial-jquery-130-131-visual-studio-intellisense-files%2F" title="Technorati"><img src="http://danrigby.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdanrigby.com%2F2009%2F02%2F09%2Fofficial-jquery-130-131-visual-studio-intellisense-files%2F&amp;title=Official%20jQuery%201.3.0%2C%201.3.1%20Visual%20Studio%20Intellisense%20Files" title="StumbleUpon"><img src="http://danrigby.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F02%2F09%2Fofficial-jquery-130-131-visual-studio-intellisense-files%2F&amp;title=Official%20jQuery%201.3.0%2C%201.3.1%20Visual%20Studio%20Intellisense%20Files&amp;source=Dan+Rigby+Random+Thoughts+About+Life%2C+Technology%2C+and+Software&amp;summary=It%20looks%20like%20this%20weekend%20while%20I%20was%20at%20the%20South%20Florida%20Code%20Camp%20the%20jQuery%20team%20has%20posted%20the%20official%20jQuery%201.3.1%20Visual%20Studio%20intellisense%20file.%20You%20can%20get%20it%20from%20the%20jQuery%20downloads%20page%2C%20or%20more%20directly%20from%20the%20jQuery%20Google%20Code%20do" title="LinkedIn"><img src="http://danrigby.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdanrigby.com%2F2009%2F02%2F09%2Fofficial-jquery-130-131-visual-studio-intellisense-files%2F&amp;t=Official%20jQuery%201.3.0%2C%201.3.1%20Visual%20Studio%20Intellisense%20Files" title="Facebook"><img src="http://danrigby.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=Official%20jQuery%201.3.0%2C%201.3.1%20Visual%20Studio%20Intellisense%20Files%20-%20http%3A%2F%2Fdanrigby.com%2F2009%2F02%2F09%2Fofficial-jquery-130-131-visual-studio-intellisense-files%2F" title="Twitter"><img src="http://danrigby.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdanrigby.com%2F2009%2F02%2F09%2Fofficial-jquery-130-131-visual-studio-intellisense-files%2F&amp;title=Official%20jQuery%201.3.0%2C%201.3.1%20Visual%20Studio%20Intellisense%20Files&amp;annotation=It%20looks%20like%20this%20weekend%20while%20I%20was%20at%20the%20South%20Florida%20Code%20Camp%20the%20jQuery%20team%20has%20posted%20the%20official%20jQuery%201.3.1%20Visual%20Studio%20intellisense%20file.%20You%20can%20get%20it%20from%20the%20jQuery%20downloads%20page%2C%20or%20more%20directly%20from%20the%20jQuery%20Google%20Code%20do" title="Google Bookmarks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F02%2F09%2Fofficial-jquery-130-131-visual-studio-intellisense-files%2F&amp;title=Official%20jQuery%201.3.0%2C%201.3.1%20Visual%20Studio%20Intellisense%20Files" title="Live"><img src="http://danrigby.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://danrigby.com/2009/02/09/official-jquery-130-131-visual-studio-intellisense-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Update for .NET Framework 3.5 Service Pack 1 Available</title>
		<link>http://danrigby.com/2009/01/22/update-for-net-framework-35-service-pack-1-available/</link>
		<comments>http://danrigby.com/2009/01/22/update-for-net-framework-35-service-pack-1-available/#comments</comments>
		<pubDate>Thu, 22 Jan 2009 23:53:43 +0000</pubDate>
		<dc:creator>Dan Rigby</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Tech News]]></category>
		<category><![CDATA[SoftwareUpdate]]></category>
		<category><![CDATA[VisualStudio]]></category>

		<guid isPermaLink="false">http://danrigby.com/?p=180</guid>
		<description><![CDATA[Microsoft has released an update for .NET Framework 3.5 Service Pack 1. Taken from the update page: An update for the Microsoft .NET Framework 3.5 Service Pack 1 (SP1) is available. This article describes information about the issues that the update for the .NET Framework 3.5 SP1 fixes. The update for the .NET Framework 3.5 [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft has released an <a href="http://support.microsoft.com/kb/959209" target="_blank">update for .NET Framework 3.5 Service Pack 1</a>.</p>
<p>Taken from the update page:</p>
<blockquote><p>An update for the Microsoft .NET Framework 3.5 Service Pack 1 (SP1) is available. This article describes information about the issues that the update for the .NET Framework 3.5 SP1 fixes.</p>
<p>The update for the .NET Framework 3.5 SP1 fixes the issues that are described in the following articles in the Microsoft Knowledge Base:</p>
<ul>
<li><a href="http://support.microsoft.com/kb/958481/" target="_blank">958481</a>  List of the breaking issues with the .NET Framework 2.0 Service Pack 2 after you upgrade to the .NET Framework 3.5 Service Pack 1</li>
<li><a href="http://support.microsoft.com/kb/958483/" target="_blank">958483</a>  List of the breaking issues with the .NET Framework 3.0 Service Pack 2 after you upgrade to the .NET Framework 3.5 Service Pack 1</li>
<li><a href="http://support.microsoft.com/kb/958484/" target="_blank">958484</a>  List of the breaking issues with the .NET Framework 3.0 Service Pack 1 after you upgrade to the .NET Framework 3.5 Service Pack 1</li>
</ul>
</blockquote>
<p><a href="http://www.devfish.net/" target="_blank">Joe Healy</a> has <a href="http://www.devfish.net/FullBlogItemView.aspx?BlogId=630" target="_blank">blogged about this update</a> and mentions some of the important fixes:</p>
<blockquote><p>Interesting items fixed (note a full list can be found via the KB) &#8211; dynamic data one to one relationships &#8211; ASP.NET BrowsCap being broken of FPSE are installed &#8211; some broken UpdateProgress control issues &#8211; changes in the AutoCommit behavior for Oracle transactions &#8211; problems with WPF generating images on the fly via ASP.NET on IIS &#8211; and some other fairly freaky stuff &#8211; read the kb for all details.</p></blockquote>
<p>I installed this update today on my Vista x64 work machine and it is actually 3 seperate updates which have to be downloaded and installed in a specific order. Please be sure to read the KB documention as to the order in which to install the updates.</p>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=Update%20for%20.NET%20Framework%203.5%20Service%20Pack%201%20Available&amp;body=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F22%2Fupdate-for-net-framework-35-service-pack-1-available%2F" title="email"><img src="http://danrigby.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F22%2Fupdate-for-net-framework-35-service-pack-1-available%2F&amp;title=Update%20for%20.NET%20Framework%203.5%20Service%20Pack%201%20Available" title="DotNetKicks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F22%2Fupdate-for-net-framework-35-service-pack-1-available%2F&amp;title=Update%20for%20.NET%20Framework%203.5%20Service%20Pack%201%20Available&amp;bodytext=Microsoft%20has%20released%20an%20update%20for%20.NET%20Framework%203.5%20Service%20Pack%201.%0D%0A%0D%0ATaken%20from%20the%20update%20page%3A%0D%0AAn%20update%20for%20the%20Microsoft%20.NET%20Framework%203.5%20Service%20Pack%201%20%28SP1%29%20is%20available.%20This%20article%20describes%20information%20about%20the%20issues%20that%20the%20upd" title="Digg"><img src="http://danrigby.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F22%2Fupdate-for-net-framework-35-service-pack-1-available%2F&amp;title=Update%20for%20.NET%20Framework%203.5%20Service%20Pack%201%20Available&amp;notes=Microsoft%20has%20released%20an%20update%20for%20.NET%20Framework%203.5%20Service%20Pack%201.%0D%0A%0D%0ATaken%20from%20the%20update%20page%3A%0D%0AAn%20update%20for%20the%20Microsoft%20.NET%20Framework%203.5%20Service%20Pack%201%20%28SP1%29%20is%20available.%20This%20article%20describes%20information%20about%20the%20issues%20that%20the%20upd" title="del.icio.us"><img src="http://danrigby.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F22%2Fupdate-for-net-framework-35-service-pack-1-available%2F" title="Technorati"><img src="http://danrigby.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F22%2Fupdate-for-net-framework-35-service-pack-1-available%2F&amp;title=Update%20for%20.NET%20Framework%203.5%20Service%20Pack%201%20Available" title="StumbleUpon"><img src="http://danrigby.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F22%2Fupdate-for-net-framework-35-service-pack-1-available%2F&amp;title=Update%20for%20.NET%20Framework%203.5%20Service%20Pack%201%20Available&amp;source=Dan+Rigby+Random+Thoughts+About+Life%2C+Technology%2C+and+Software&amp;summary=Microsoft%20has%20released%20an%20update%20for%20.NET%20Framework%203.5%20Service%20Pack%201.%0D%0A%0D%0ATaken%20from%20the%20update%20page%3A%0D%0AAn%20update%20for%20the%20Microsoft%20.NET%20Framework%203.5%20Service%20Pack%201%20%28SP1%29%20is%20available.%20This%20article%20describes%20information%20about%20the%20issues%20that%20the%20upd" title="LinkedIn"><img src="http://danrigby.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F22%2Fupdate-for-net-framework-35-service-pack-1-available%2F&amp;t=Update%20for%20.NET%20Framework%203.5%20Service%20Pack%201%20Available" title="Facebook"><img src="http://danrigby.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=Update%20for%20.NET%20Framework%203.5%20Service%20Pack%201%20Available%20-%20http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F22%2Fupdate-for-net-framework-35-service-pack-1-available%2F" title="Twitter"><img src="http://danrigby.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F22%2Fupdate-for-net-framework-35-service-pack-1-available%2F&amp;title=Update%20for%20.NET%20Framework%203.5%20Service%20Pack%201%20Available&amp;annotation=Microsoft%20has%20released%20an%20update%20for%20.NET%20Framework%203.5%20Service%20Pack%201.%0D%0A%0D%0ATaken%20from%20the%20update%20page%3A%0D%0AAn%20update%20for%20the%20Microsoft%20.NET%20Framework%203.5%20Service%20Pack%201%20%28SP1%29%20is%20available.%20This%20article%20describes%20information%20about%20the%20issues%20that%20the%20upd" title="Google Bookmarks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F22%2Fupdate-for-net-framework-35-service-pack-1-available%2F&amp;title=Update%20for%20.NET%20Framework%203.5%20Service%20Pack%201%20Available" title="Live"><img src="http://danrigby.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://danrigby.com/2009/01/22/update-for-net-framework-35-service-pack-1-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FxCop 1.36 and StyleCop 4.3</title>
		<link>http://danrigby.com/2009/01/18/fxcop-136-and-stylecop-43/</link>
		<comments>http://danrigby.com/2009/01/18/fxcop-136-and-stylecop-43/#comments</comments>
		<pubDate>Sun, 18 Jan 2009 23:26:23 +0000</pubDate>
		<dc:creator>Dan Rigby</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Release]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[VisualStudio]]></category>

		<guid isPermaLink="false">http://danrigby.com/?p=160</guid>
		<description><![CDATA[While this is not new news, I realized that finding the link to download FxCop 1.36 is still not as straight forward as I&#8217;d like it to be (most links are still pointing to the 1.35 on msdn code or the 1.36 Beta 2 release), so I thought I would add the link here so [...]]]></description>
			<content:encoded><![CDATA[<p>While this is not new news, I realized that finding the link to download FxCop 1.36 is still not as straight forward as I&#8217;d like it to be (most links are still pointing to the 1.35 on msdn code or the 1.36 Beta 2 release), so I thought I would add the link here so I can find it again, or anyone else for that matter.</p>
<ul>
<li>FxCop 1.36 download: <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=9aeaa970-f281-4fb0-aba1-d59d7ed09772&amp;DisplayLang=en" target="_blank">http://www.microsoft.com/downloads/details.aspx?FamilyID=9aeaa970-f281-4fb0-aba1-d59d7ed09772&amp;DisplayLang=en</a></li>
<li>Whats new in FxCop 1.36 can be found in <a href="http://blogs.msdn.com/fxcop/archive/2008/08/19/fxcop-1-36-released.aspx" target="_blank">this post</a> on the <a href="http://blogs.msdn.com/fxcop/" target="_blank">MS Visual Studio Code Analysis Team Blog</a>.</li>
</ul>
<p>For those who haven&#8217;t used it before, FxCop is a tool to analyze .NET assemblies based on a set of rules in order to find potential defects or design issues. The tool comes with a lot of very helpful built in analysis rules that are broken out into seperate categories (e.g. Performance, Design, Globalization, etc..). A lot of Continuous Integration tools have the ability to include FxCop analysis as part of a build so that the warnings FxCop generates can be tracked over time (hopefully in the *downward* direction).</p>
<p>And on a somewhat related note, I also wanted to add the download link for StyleCop, which ironically, is easy to find even though I&#8217;m pretty sure a lot more people are using FxCop.</p>
<ul>
<li>StyleCop 4.3 download: <a href="http://code.msdn.microsoft.com/sourceanalysis/Release/ProjectReleases.aspx" target="_blank">http://code.msdn.microsoft.com/sourceanalysis/Release/ProjectReleases.aspx</a></li>
<li>Updates and news about StyleCop can be found on the <a href="http://blogs.msdn.com/sourceanalysis/" target="_blank">StyleCop Blog</a>.</li>
</ul>
<p>StyleCop is a tool which analyzes C# source code using a set of rules (much like FxCop) in order to enforce code styling guidelines. It can be used in Continuous Integration projects to verify code style rules are being met. The rule documentation is also available at the link above. I have found reading the rule justifications to be quite educational at times, especially since many of the StyleCop rules run counter to common .NET programming practices that I&#8217;ve seen.</p>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=FxCop%201.36%20and%20StyleCop%204.3&amp;body=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F18%2Ffxcop-136-and-stylecop-43%2F" title="email"><img src="http://danrigby.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F18%2Ffxcop-136-and-stylecop-43%2F&amp;title=FxCop%201.36%20and%20StyleCop%204.3" title="DotNetKicks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F18%2Ffxcop-136-and-stylecop-43%2F&amp;title=FxCop%201.36%20and%20StyleCop%204.3&amp;bodytext=While%20this%20is%20not%20new%20news%2C%20I%20realized%20that%20finding%20the%20link%20to%20download%20FxCop%201.36%20is%20still%20not%20as%20straight%20forward%20as%20I%27d%20like%20it%20to%20be%20%28most%20links%20are%20still%20pointing%20to%20the%201.35%20on%20msdn%20code%20or%20the%201.36%20Beta%202%20release%29%2C%20so%20I%20thought%20I%20would%20add%20th" title="Digg"><img src="http://danrigby.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F18%2Ffxcop-136-and-stylecop-43%2F&amp;title=FxCop%201.36%20and%20StyleCop%204.3&amp;notes=While%20this%20is%20not%20new%20news%2C%20I%20realized%20that%20finding%20the%20link%20to%20download%20FxCop%201.36%20is%20still%20not%20as%20straight%20forward%20as%20I%27d%20like%20it%20to%20be%20%28most%20links%20are%20still%20pointing%20to%20the%201.35%20on%20msdn%20code%20or%20the%201.36%20Beta%202%20release%29%2C%20so%20I%20thought%20I%20would%20add%20th" title="del.icio.us"><img src="http://danrigby.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F18%2Ffxcop-136-and-stylecop-43%2F" title="Technorati"><img src="http://danrigby.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F18%2Ffxcop-136-and-stylecop-43%2F&amp;title=FxCop%201.36%20and%20StyleCop%204.3" title="StumbleUpon"><img src="http://danrigby.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F18%2Ffxcop-136-and-stylecop-43%2F&amp;title=FxCop%201.36%20and%20StyleCop%204.3&amp;source=Dan+Rigby+Random+Thoughts+About+Life%2C+Technology%2C+and+Software&amp;summary=While%20this%20is%20not%20new%20news%2C%20I%20realized%20that%20finding%20the%20link%20to%20download%20FxCop%201.36%20is%20still%20not%20as%20straight%20forward%20as%20I%27d%20like%20it%20to%20be%20%28most%20links%20are%20still%20pointing%20to%20the%201.35%20on%20msdn%20code%20or%20the%201.36%20Beta%202%20release%29%2C%20so%20I%20thought%20I%20would%20add%20th" title="LinkedIn"><img src="http://danrigby.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F18%2Ffxcop-136-and-stylecop-43%2F&amp;t=FxCop%201.36%20and%20StyleCop%204.3" title="Facebook"><img src="http://danrigby.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=FxCop%201.36%20and%20StyleCop%204.3%20-%20http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F18%2Ffxcop-136-and-stylecop-43%2F" title="Twitter"><img src="http://danrigby.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F18%2Ffxcop-136-and-stylecop-43%2F&amp;title=FxCop%201.36%20and%20StyleCop%204.3&amp;annotation=While%20this%20is%20not%20new%20news%2C%20I%20realized%20that%20finding%20the%20link%20to%20download%20FxCop%201.36%20is%20still%20not%20as%20straight%20forward%20as%20I%27d%20like%20it%20to%20be%20%28most%20links%20are%20still%20pointing%20to%20the%201.35%20on%20msdn%20code%20or%20the%201.36%20Beta%202%20release%29%2C%20so%20I%20thought%20I%20would%20add%20th" title="Google Bookmarks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F18%2Ffxcop-136-and-stylecop-43%2F&amp;title=FxCop%201.36%20and%20StyleCop%204.3" title="Live"><img src="http://danrigby.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://danrigby.com/2009/01/18/fxcop-136-and-stylecop-43/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Unofficial JQuery 1.3 Visual Studio Intellisense File</title>
		<link>http://danrigby.com/2009/01/17/unofficial-jquery-13-visual-studio-intellisense-file/</link>
		<comments>http://danrigby.com/2009/01/17/unofficial-jquery-13-visual-studio-intellisense-file/#comments</comments>
		<pubDate>Sun, 18 Jan 2009 03:02:09 +0000</pubDate>
		<dc:creator>Dan Rigby</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[VisualStudio]]></category>

		<guid isPermaLink="false">http://danrigby.com/?p=155</guid>
		<description><![CDATA[In lieu of the official Visual Studio 2008 Intellisense file for jQuery, the jQuery intellisense file generator at http://www.infobasis.com/sandpit/jQuery-Intellisense/ has been updated to support jQuery 1.3.0 (See this post for more details). The will allow you to get proper jQuery 1.3 intellisense in your applications until the official version is released. The above linked script generator uses [...]]]></description>
			<content:encoded><![CDATA[<p>In lieu of the official Visual Studio 2008 Intellisense file for jQuery, the jQuery intellisense file generator at <a href="http://www.infobasis.com/sandpit/jQuery-Intellisense/" target="_blank">http://www.infobasis.com/sandpit/jQuery-Intellisense/</a> has been updated to support jQuery 1.3.0 (See <a href="http://blogs.ipona.com/james/archive/2009/01/14/jquery-1.3-and-visual-studio-2008-intellisense.aspx" target="_blank">this post</a> for more details). The will allow you to get proper jQuery 1.3 intellisense in your applications until the official version is released. The above linked script generator uses the official jQuery API documentation to build the intellisense file, so you don&#8217;t need to worry about it being inaccurate or imcomplete just because it&#8217;s not the &#8220;official&#8221; version.</p>
<p>Happy jQuerying!</p>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=Unofficial%20JQuery%201.3%20Visual%20Studio%20Intellisense%20File&amp;body=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F17%2Funofficial-jquery-13-visual-studio-intellisense-file%2F" title="email"><img src="http://danrigby.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F17%2Funofficial-jquery-13-visual-studio-intellisense-file%2F&amp;title=Unofficial%20JQuery%201.3%20Visual%20Studio%20Intellisense%20File" title="DotNetKicks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F17%2Funofficial-jquery-13-visual-studio-intellisense-file%2F&amp;title=Unofficial%20JQuery%201.3%20Visual%20Studio%20Intellisense%20File&amp;bodytext=In%20lieu%20of%20the%20official%20Visual%20Studio%202008%20Intellisense%20file%20for%20jQuery%2C%20the%20jQuery%20intellisense%20file%20generator%20at%C2%A0http%3A%2F%2Fwww.infobasis.com%2Fsandpit%2FjQuery-Intellisense%2F%C2%A0has%20been%20updated%20to%20support%20jQuery%201.3.0%20%28See%20this%20post%20for%20more%20details%29.%20The%20" title="Digg"><img src="http://danrigby.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F17%2Funofficial-jquery-13-visual-studio-intellisense-file%2F&amp;title=Unofficial%20JQuery%201.3%20Visual%20Studio%20Intellisense%20File&amp;notes=In%20lieu%20of%20the%20official%20Visual%20Studio%202008%20Intellisense%20file%20for%20jQuery%2C%20the%20jQuery%20intellisense%20file%20generator%20at%C2%A0http%3A%2F%2Fwww.infobasis.com%2Fsandpit%2FjQuery-Intellisense%2F%C2%A0has%20been%20updated%20to%20support%20jQuery%201.3.0%20%28See%20this%20post%20for%20more%20details%29.%20The%20" title="del.icio.us"><img src="http://danrigby.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F17%2Funofficial-jquery-13-visual-studio-intellisense-file%2F" title="Technorati"><img src="http://danrigby.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F17%2Funofficial-jquery-13-visual-studio-intellisense-file%2F&amp;title=Unofficial%20JQuery%201.3%20Visual%20Studio%20Intellisense%20File" title="StumbleUpon"><img src="http://danrigby.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F17%2Funofficial-jquery-13-visual-studio-intellisense-file%2F&amp;title=Unofficial%20JQuery%201.3%20Visual%20Studio%20Intellisense%20File&amp;source=Dan+Rigby+Random+Thoughts+About+Life%2C+Technology%2C+and+Software&amp;summary=In%20lieu%20of%20the%20official%20Visual%20Studio%202008%20Intellisense%20file%20for%20jQuery%2C%20the%20jQuery%20intellisense%20file%20generator%20at%C2%A0http%3A%2F%2Fwww.infobasis.com%2Fsandpit%2FjQuery-Intellisense%2F%C2%A0has%20been%20updated%20to%20support%20jQuery%201.3.0%20%28See%20this%20post%20for%20more%20details%29.%20The%20" title="LinkedIn"><img src="http://danrigby.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F17%2Funofficial-jquery-13-visual-studio-intellisense-file%2F&amp;t=Unofficial%20JQuery%201.3%20Visual%20Studio%20Intellisense%20File" title="Facebook"><img src="http://danrigby.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=Unofficial%20JQuery%201.3%20Visual%20Studio%20Intellisense%20File%20-%20http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F17%2Funofficial-jquery-13-visual-studio-intellisense-file%2F" title="Twitter"><img src="http://danrigby.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F17%2Funofficial-jquery-13-visual-studio-intellisense-file%2F&amp;title=Unofficial%20JQuery%201.3%20Visual%20Studio%20Intellisense%20File&amp;annotation=In%20lieu%20of%20the%20official%20Visual%20Studio%202008%20Intellisense%20file%20for%20jQuery%2C%20the%20jQuery%20intellisense%20file%20generator%20at%C2%A0http%3A%2F%2Fwww.infobasis.com%2Fsandpit%2FjQuery-Intellisense%2F%C2%A0has%20been%20updated%20to%20support%20jQuery%201.3.0%20%28See%20this%20post%20for%20more%20details%29.%20The%20" title="Google Bookmarks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F17%2Funofficial-jquery-13-visual-studio-intellisense-file%2F&amp;title=Unofficial%20JQuery%201.3%20Visual%20Studio%20Intellisense%20File" title="Live"><img src="http://danrigby.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://danrigby.com/2009/01/17/unofficial-jquery-13-visual-studio-intellisense-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VS2008 SP1 Hotfix to Support &#8220;-vsdoc.js&#8221; IntelliSense Doc Files</title>
		<link>http://danrigby.com/2009/01/08/vs2008-sp1-hotfix-to-support-vsdocjs-intellisense-doc-files/</link>
		<comments>http://danrigby.com/2009/01/08/vs2008-sp1-hotfix-to-support-vsdocjs-intellisense-doc-files/#comments</comments>
		<pubDate>Thu, 08 Jan 2009 15:30:08 +0000</pubDate>
		<dc:creator>Dan Rigby</dc:creator>
				<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[VisualStudio]]></category>

		<guid isPermaLink="false">http://www.rigbyonline.net/?p=101</guid>
		<description><![CDATA[Back in October of last year Microsoft released Visual Studio 2008 SP1 which fixed intellisense support for several javascript libraries, including JQuery. In order to use this with jQuery though, it was necessary to download a seperate jQuery intellisense file and add references to it. If you wanted the intellisense in a js file, you&#8217;d [...]]]></description>
			<content:encoded><![CDATA[<p>Back in October of last year Microsoft released Visual Studio 2008 SP1 which fixed intellisense support for several javascript libraries, including JQuery. In order to use this with jQuery though, it was necessary to download a seperate jQuery intellisense file and add references to it. If you wanted the intellisense in a js file, you&#8217;d reference it using a standard js reference like this:</p>
<pre class="brush: csharp;">/// &lt;reference path=&quot;MyIntellisenseFile.js&quot; /&gt;</pre>
<p>However, if you needed intellisense in an ASP.Net page, you needed to add the reference to the intellisense file in a server tag that would prevent it from being sent to the client, usually by wrapping the script reference tag like this:</p>
<pre class="brush: csharp;">&lt;% if(false) { %&gt;
&lt;script src=&quot;MyIntellisenseFile.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
&lt;% } %&gt;</pre>
<p>Unbeknowst to me, Last November the VS Web Tools team <a href="http://blogs.msdn.com/webdevtools/archive/2008/11/07/hotfix-to-enable-vsdoc-js-intellisense-doc-files-is-now-available.aspx" target="_blank">released a hotfix to VS 2008 SP1</a> that alleviates a lot of this trouble. Now all you have to do is just reference the jQuery library and have the intelisense file in the same directory following the naming convention of filename-vsdoc.js (e.g. if your jQuery file is named jQuery.js, your intellisense file would be named jQuery-vsdoc.js) and Visual Studio will automatically find the file and provide you with intellisense support. No more conditional ASP.Net server tags. Woo! The VS 2008 hotfix is currently <a href="http://code.msdn.microsoft.com/KB958502/Release/ProjectReleases.aspx?ReleaseId=1736" target="_blank">available on the MSDN Code Gallery</a>.</p>
<p>If you&#8217;re looking for the official Visual Studio intellisense file for jQuery, you can grab it from the <a href="http://docs.jquery.com/Downloading_jQuery" target="_blank">jQuery downloads page</a> (It&#8217;s found in the Current Release section). Thanks to <a href="http://www.devfish.net" target="_blank">Joe Healy</a> for pointing out to me that there was an official version.</p>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=VS2008%20SP1%20Hotfix%20to%20Support%20%22-vsdoc.js%22%20IntelliSense%20Doc%20Files&amp;body=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F08%2Fvs2008-sp1-hotfix-to-support-vsdocjs-intellisense-doc-files%2F" title="email"><img src="http://danrigby.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F08%2Fvs2008-sp1-hotfix-to-support-vsdocjs-intellisense-doc-files%2F&amp;title=VS2008%20SP1%20Hotfix%20to%20Support%20%22-vsdoc.js%22%20IntelliSense%20Doc%20Files" title="DotNetKicks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F08%2Fvs2008-sp1-hotfix-to-support-vsdocjs-intellisense-doc-files%2F&amp;title=VS2008%20SP1%20Hotfix%20to%20Support%20%22-vsdoc.js%22%20IntelliSense%20Doc%20Files&amp;bodytext=Back%20in%20October%20of%20last%20year%20Microsoft%20released%20Visual%20Studio%202008%20SP1%20which%20fixed%20intellisense%20support%20for%20several%20javascript%20libraries%2C%20including%20JQuery.%20In%20order%20to%20use%20this%20with%20jQuery%20though%2C%20it%20was%20necessary%20to%20download%20a%20seperate%20jQuery%20intell" title="Digg"><img src="http://danrigby.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F08%2Fvs2008-sp1-hotfix-to-support-vsdocjs-intellisense-doc-files%2F&amp;title=VS2008%20SP1%20Hotfix%20to%20Support%20%22-vsdoc.js%22%20IntelliSense%20Doc%20Files&amp;notes=Back%20in%20October%20of%20last%20year%20Microsoft%20released%20Visual%20Studio%202008%20SP1%20which%20fixed%20intellisense%20support%20for%20several%20javascript%20libraries%2C%20including%20JQuery.%20In%20order%20to%20use%20this%20with%20jQuery%20though%2C%20it%20was%20necessary%20to%20download%20a%20seperate%20jQuery%20intell" title="del.icio.us"><img src="http://danrigby.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F08%2Fvs2008-sp1-hotfix-to-support-vsdocjs-intellisense-doc-files%2F" title="Technorati"><img src="http://danrigby.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F08%2Fvs2008-sp1-hotfix-to-support-vsdocjs-intellisense-doc-files%2F&amp;title=VS2008%20SP1%20Hotfix%20to%20Support%20%22-vsdoc.js%22%20IntelliSense%20Doc%20Files" title="StumbleUpon"><img src="http://danrigby.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F08%2Fvs2008-sp1-hotfix-to-support-vsdocjs-intellisense-doc-files%2F&amp;title=VS2008%20SP1%20Hotfix%20to%20Support%20%22-vsdoc.js%22%20IntelliSense%20Doc%20Files&amp;source=Dan+Rigby+Random+Thoughts+About+Life%2C+Technology%2C+and+Software&amp;summary=Back%20in%20October%20of%20last%20year%20Microsoft%20released%20Visual%20Studio%202008%20SP1%20which%20fixed%20intellisense%20support%20for%20several%20javascript%20libraries%2C%20including%20JQuery.%20In%20order%20to%20use%20this%20with%20jQuery%20though%2C%20it%20was%20necessary%20to%20download%20a%20seperate%20jQuery%20intell" title="LinkedIn"><img src="http://danrigby.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F08%2Fvs2008-sp1-hotfix-to-support-vsdocjs-intellisense-doc-files%2F&amp;t=VS2008%20SP1%20Hotfix%20to%20Support%20%22-vsdoc.js%22%20IntelliSense%20Doc%20Files" title="Facebook"><img src="http://danrigby.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=VS2008%20SP1%20Hotfix%20to%20Support%20%22-vsdoc.js%22%20IntelliSense%20Doc%20Files%20-%20http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F08%2Fvs2008-sp1-hotfix-to-support-vsdocjs-intellisense-doc-files%2F" title="Twitter"><img src="http://danrigby.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F08%2Fvs2008-sp1-hotfix-to-support-vsdocjs-intellisense-doc-files%2F&amp;title=VS2008%20SP1%20Hotfix%20to%20Support%20%22-vsdoc.js%22%20IntelliSense%20Doc%20Files&amp;annotation=Back%20in%20October%20of%20last%20year%20Microsoft%20released%20Visual%20Studio%202008%20SP1%20which%20fixed%20intellisense%20support%20for%20several%20javascript%20libraries%2C%20including%20JQuery.%20In%20order%20to%20use%20this%20with%20jQuery%20though%2C%20it%20was%20necessary%20to%20download%20a%20seperate%20jQuery%20intell" title="Google Bookmarks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdanrigby.com%2F2009%2F01%2F08%2Fvs2008-sp1-hotfix-to-support-vsdocjs-intellisense-doc-files%2F&amp;title=VS2008%20SP1%20Hotfix%20to%20Support%20%22-vsdoc.js%22%20IntelliSense%20Doc%20Files" title="Live"><img src="http://danrigby.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://danrigby.com/2009/01/08/vs2008-sp1-hotfix-to-support-vsdocjs-intellisense-doc-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Personal Updates, VS2008/.NET 3.5 SP1 Information, and much more&#8230;</title>
		<link>http://danrigby.com/2008/08/26/personal-updates-and-net-35-sp1-information-and-more/</link>
		<comments>http://danrigby.com/2008/08/26/personal-updates-and-net-35-sp1-information-and-more/#comments</comments>
		<pubDate>Wed, 27 Aug 2008 02:01:46 +0000</pubDate>
		<dc:creator>Dan Rigby</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Software Development]]></category>
		<category><![CDATA[Tech News]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[VisualStudio]]></category>

		<guid isPermaLink="false">http://www.rigbyonline.net/?p=78</guid>
		<description><![CDATA[Sorry for the long delay between posts, a lot has been going on in my world as of late. Here&#8217;s a quick run down of the recent personal events that have kept me busy (and postless): I was promoted to &#8220;Software Engineer II&#8221;. I got married (I love you Erika!). The wedding was wonderful. Many [...]]]></description>
			<content:encoded><![CDATA[<p>Sorry for the long delay between posts, a lot has been going on in my world as of late. Here&#8217;s a quick run down of the recent personal events that have kept me busy (and postless):</p>
<ul>
<li>I was promoted to &#8220;Software Engineer II&#8221;.</li>
<li>I got married (I love you Erika!). The wedding was wonderful. Many thanks to all who were in attendance.</li>
<li>Spent a week on honeymoon in Seattle, Washington and Vancouver, Canada (4 days and 3 days respectively).</li>
</ul>
<p>So, enough of the mushy stuff.</p>
<p>This last Saturday was the <strong>Jacksonville Code Camp</strong> and it was a very nice event despite the last minute change in location due to after effects of Tropical Storm Fay. There were a lot of great sessions and the speakers all did a great job. (I even won a copy of CodeSmith Professional Tools in the raffle&#8230; woot!) This was my second year in attendance.</p>
<p>For those in the Jacksonville area, the <strong>Jacksonville Developers User Group</strong> website can be found at <a href="http://www.jaxdug.com/" target="_blank">http://www.jaxdug.com/</a> and contains information on Jacksonville area Developer events. I have agreed to do <strong>my first user group talk</strong> in October and well be covering what free tools are available to make .Net developers&#8217; lives easier. (I will be posting the slides here on my site afterward.)</p>
<p><strong>VS2008 &amp; .NET 3.5 SP1 Fun!:</strong> Service Pack 1 for Microsoft .NET 3.5 and Service Pack 1 for Visual Studio 2008 have been released! (<em>about a week ago&#8230;</em>) Information on the updates included with the service packs can be found <a href="http://msdn.microsoft.com/en-us/vstudio/products/cc533447.aspx" target="_blank">here</a>, and for the impatient, you can download the service packs directly from <a href="http://msdn.microsoft.com/en-us/vstudio/cc533448.aspx" target="_blank">here</a>. If you have trouble with the installation of the service packs, try running the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=A494B0E0-EB07-4FF1-A21C-A4663E456D9D&amp;displaylang=en" target="_blank">Visual Studio 2008 Service Pack Preparation Tool</a>. Microsoft has also released the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=355c80e9-fde0-4812-98b5-8a03f5874e96&amp;displaylang=en" target="_blank">Framework 3.5 Enhancements Training Kit</a> which has even more information about the new features in the service packs and how to use them (This is in addition to the regular <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=8BDAA836-0BBA-4393-94DB-6C3C4A0C98A1&amp;displaylang=en" target="_blank">Visual Studio 2008 &amp; .NET 3.5 Training Kit</a>.) Another important release that got lost a little in the hype over .NET 3.5 SP1/VS2008 SP1 is the release of <a href="http://www.microsoft.com/sqlserver/2008/en/us/default.aspx" target="_blank">SQL Server 2008</a>. This includes SQL Server 2008 Express Edition which you can grab <a href="http://www.microsoft.com/express/sql/default.aspx" target="_blank">here</a> for those interested.</p>
<p>Now if that wasn&#8217;t enough for one post&#8230;. on with the show!</p>
<p><strong>XAMLPad 4.0</strong> has been <a href="http://blogs.msdn.com/llobo/archive/2008/08/25/xamlpadx-4-0.aspx" target="_blank">released</a> and can be downloaded from <a href="http://blogs.msdn.com/llobo/attachment/8772446.ashx" target="_blank">here</a>. But wait.. what is XAMLPad?:</p>
<p>&#8220;XamlPad (xamlpad.exe) is a basic visual editor for Extensible Application Markup Language (XAML). XAMLPad is installed with the SDK and can be found from the start menu at All Programs/Microsoft Windows SDK/Tools/XAMLPad. &#8221;</p>
<p>While you&#8217;re downloading XAMLPad, be sure to grab <a href="http://www.linqpad.net/" target="_blank">LINQPad</a> if you don&#8217;t already have it.</p>
<p>And there&#8217;s still more&#8230;<br />
<strong>NHibernate 2.0 Final</strong> has also been <a href="http://ayende.com/Blog/archive/2008/08/23/NHibernate-2.0-Final-is-out.aspx" target="_blank">released</a>! It can be downloaded <a href="https://sourceforge.net/project/showfiles.php?group_id=73818&amp;package_id=73969" target="_blank">here</a>. And while the main NHibernate page doesn&#8217;t have the link up yet, the release notes for this release can be found <a href="http://sourceforge.net/project/shownotes.php?group_id=73818&amp;release_id=621482" target="_blank">here</a>.</p>
<p>Finally, bringing up the rear on the notable release train is the official release of <strong>Microsoft Live Labs <a href="http://photosynth.net/Default.aspx" target="_blank">Photosynth</a></strong>. If you&#8217;re not familiar with Microsoft&#8217;s Photosynth technology, <a href="http://photosynth.net/about.aspx" target="_blank">Photosynth&#8217;s About Page</a> and this <a href="http://news.cnet.com/8301-17939_109-10020637-2.html?hhTest=1&amp;part=rss&amp;subj=news&amp;tag=2547-1_3-0-20" target="_blank">CNET Article</a> about the launch should give you a good head start.</p>
<p>My very last news item for today (I promise!) is that Sara Ford has <a href="http://blogs.msdn.com/saraford/archive/2008/08/11/microsoft-visual-studio-tips-helps-katrina-survivors-rebuild-lives.aspx" target="_blank">announced the pre-sale of her first book</a>, &#8220;<strong>Visual Studio Tips: 251 Ways to Improve Your Productivity</strong>&#8220;. If you&#8217;re not familiar with Sara Ford and <a href="http://blogs.msdn.com/saraford/default.aspx" target="_blank">her blog</a>&#8230; then you have a lot of reading to do&#8230; Sara has an almost daily piece of information about Visual Studio IDE and its various components. Well worth the read if you can squeeze just one more item into your daily blog diet.</p>
<p>Wooo! Hows that for an &#8220;I&#8217;m not dead, just busy&#8221; post! (-;</p>

<div class="sociable">

<ul>
	<li class="sociablefirst"><a rel="nofollow"  href="mailto:?subject=Personal%20Updates%2C%20VS2008%2F.NET%203.5%20SP1%20Information%2C%20and%20much%20more...&amp;body=http%3A%2F%2Fdanrigby.com%2F2008%2F08%2F26%2Fpersonal-updates-and-net-35-sp1-information-and-more%2F" title="email"><img src="http://danrigby.com/wp-content/plugins/sociable/images/email_link.png" title="email" alt="email" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.dotnetkicks.com/kick/?url=http%3A%2F%2Fdanrigby.com%2F2008%2F08%2F26%2Fpersonal-updates-and-net-35-sp1-information-and-more%2F&amp;title=Personal%20Updates%2C%20VS2008%2F.NET%203.5%20SP1%20Information%2C%20and%20much%20more..." title="DotNetKicks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/dotnetkicks.png" title="DotNetKicks" alt="DotNetKicks" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fdanrigby.com%2F2008%2F08%2F26%2Fpersonal-updates-and-net-35-sp1-information-and-more%2F&amp;title=Personal%20Updates%2C%20VS2008%2F.NET%203.5%20SP1%20Information%2C%20and%20much%20more...&amp;bodytext=Sorry%20for%20the%20long%20delay%20between%20posts%2C%20a%20lot%20has%20been%20going%20on%20in%20my%20world%20as%20of%20late.%20Here%27s%20a%20quick%20run%20down%20of%20the%20recent%20personal%20events%20that%20have%20kept%20me%20busy%20%28and%20postless%29%3A%0D%0A%0D%0A%09I%20was%20promoted%20to%20%22Software%20Engineer%20II%22.%0D%0A%09I%20got%20married%20%28I%20love" title="Digg"><img src="http://danrigby.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fdanrigby.com%2F2008%2F08%2F26%2Fpersonal-updates-and-net-35-sp1-information-and-more%2F&amp;title=Personal%20Updates%2C%20VS2008%2F.NET%203.5%20SP1%20Information%2C%20and%20much%20more...&amp;notes=Sorry%20for%20the%20long%20delay%20between%20posts%2C%20a%20lot%20has%20been%20going%20on%20in%20my%20world%20as%20of%20late.%20Here%27s%20a%20quick%20run%20down%20of%20the%20recent%20personal%20events%20that%20have%20kept%20me%20busy%20%28and%20postless%29%3A%0D%0A%0D%0A%09I%20was%20promoted%20to%20%22Software%20Engineer%20II%22.%0D%0A%09I%20got%20married%20%28I%20love" title="del.icio.us"><img src="http://danrigby.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://technorati.com/faves?add=http%3A%2F%2Fdanrigby.com%2F2008%2F08%2F26%2Fpersonal-updates-and-net-35-sp1-information-and-more%2F" title="Technorati"><img src="http://danrigby.com/wp-content/plugins/sociable/images/technorati.png" title="Technorati" alt="Technorati" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fdanrigby.com%2F2008%2F08%2F26%2Fpersonal-updates-and-net-35-sp1-information-and-more%2F&amp;title=Personal%20Updates%2C%20VS2008%2F.NET%203.5%20SP1%20Information%2C%20and%20much%20more..." title="StumbleUpon"><img src="http://danrigby.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http%3A%2F%2Fdanrigby.com%2F2008%2F08%2F26%2Fpersonal-updates-and-net-35-sp1-information-and-more%2F&amp;title=Personal%20Updates%2C%20VS2008%2F.NET%203.5%20SP1%20Information%2C%20and%20much%20more...&amp;source=Dan+Rigby+Random+Thoughts+About+Life%2C+Technology%2C+and+Software&amp;summary=Sorry%20for%20the%20long%20delay%20between%20posts%2C%20a%20lot%20has%20been%20going%20on%20in%20my%20world%20as%20of%20late.%20Here%27s%20a%20quick%20run%20down%20of%20the%20recent%20personal%20events%20that%20have%20kept%20me%20busy%20%28and%20postless%29%3A%0D%0A%0D%0A%09I%20was%20promoted%20to%20%22Software%20Engineer%20II%22.%0D%0A%09I%20got%20married%20%28I%20love" title="LinkedIn"><img src="http://danrigby.com/wp-content/plugins/sociable/images/linkedin.png" title="LinkedIn" alt="LinkedIn" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fdanrigby.com%2F2008%2F08%2F26%2Fpersonal-updates-and-net-35-sp1-information-and-more%2F&amp;t=Personal%20Updates%2C%20VS2008%2F.NET%203.5%20SP1%20Information%2C%20and%20much%20more..." title="Facebook"><img src="http://danrigby.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://twitter.com/home?status=Personal%20Updates%2C%20VS2008%2F.NET%203.5%20SP1%20Information%2C%20and%20much%20more...%20-%20http%3A%2F%2Fdanrigby.com%2F2008%2F08%2F26%2Fpersonal-updates-and-net-35-sp1-information-and-more%2F" title="Twitter"><img src="http://danrigby.com/wp-content/plugins/sociable/images/twitter.png" title="Twitter" alt="Twitter" class="sociable-hovers" /></a></li>
	<li><a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fdanrigby.com%2F2008%2F08%2F26%2Fpersonal-updates-and-net-35-sp1-information-and-more%2F&amp;title=Personal%20Updates%2C%20VS2008%2F.NET%203.5%20SP1%20Information%2C%20and%20much%20more...&amp;annotation=Sorry%20for%20the%20long%20delay%20between%20posts%2C%20a%20lot%20has%20been%20going%20on%20in%20my%20world%20as%20of%20late.%20Here%27s%20a%20quick%20run%20down%20of%20the%20recent%20personal%20events%20that%20have%20kept%20me%20busy%20%28and%20postless%29%3A%0D%0A%0D%0A%09I%20was%20promoted%20to%20%22Software%20Engineer%20II%22.%0D%0A%09I%20got%20married%20%28I%20love" title="Google Bookmarks"><img src="http://danrigby.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a></li>
	<li class="sociablelast"><a rel="nofollow"  href="https://favorites.live.com/quickadd.aspx?marklet=1&amp;url=http%3A%2F%2Fdanrigby.com%2F2008%2F08%2F26%2Fpersonal-updates-and-net-35-sp1-information-and-more%2F&amp;title=Personal%20Updates%2C%20VS2008%2F.NET%203.5%20SP1%20Information%2C%20and%20much%20more..." title="Live"><img src="http://danrigby.com/wp-content/plugins/sociable/images/live.png" title="Live" alt="Live" class="sociable-hovers" /></a></li>
</ul>
</div>
]]></content:encoded>
			<wfw:commentRss>http://danrigby.com/2008/08/26/personal-updates-and-net-35-sp1-information-and-more/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
