<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Chris Forbes blogs on SharePoint &#38; .NET &#187; External-Tools</title>
	<atom:link href="http://chrisforbesblogs.net/tag/external-tools/feed/" rel="self" type="application/rss+xml" />
	<link>http://chrisforbesblogs.net</link>
	<description>Developers chat on SharePoint and .NET</description>
	<lastBuildDate>Tue, 08 May 2012 10:58:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='chrisforbesblogs.net' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/3aa4775025bad14a027d0ade34632a33?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>Chris Forbes blogs on SharePoint &#38; .NET &#187; External-Tools</title>
		<link>http://chrisforbesblogs.net</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://chrisforbesblogs.net/osd.xml" title="Chris Forbes blogs on SharePoint &#38; .NET" />
	<atom:link rel='hub' href='http://chrisforbesblogs.net/?pushpress=hub'/>
		<item>
		<title>Simple way to get the 4-part strong name for an assembly</title>
		<link>http://chrisforbesblogs.net/2010/02/26/simple-way-to-get-the-4-part-strong-name-for-an-assembly/</link>
		<comments>http://chrisforbesblogs.net/2010/02/26/simple-way-to-get-the-4-part-strong-name-for-an-assembly/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 18:38:03 +0000</pubDate>
		<dc:creator>Chris Forbes</dc:creator>
				<category><![CDATA[Visual Studio 2010]]></category>
		<category><![CDATA[4-Part-Assembly-Name]]></category>
		<category><![CDATA[External-Tools]]></category>
		<category><![CDATA[VisualStudio2010]]></category>

		<guid isPermaLink="false">http://chrisforbesblogs.wordpress.com/?p=209</guid>
		<description><![CDATA[As you will know when building SharePoint solutions you always need to determine the 4-part assembly name or Strong Name for inclusion in various solution and feature manifests. I typically got this by pointing Reflector at my compiled DLL files. Simpler way using Power Shell Using the ‘External Tools’ option within visual studio you can [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chrisforbesblogs.net&#038;blog=6742676&#038;post=209&#038;subd=chrisforbesblogs&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As you will know when building SharePoint solutions you always need to determine the 4-part assembly name or <em>Strong Name</em> for inclusion in various solution and feature manifests. I typically got this by pointing <a href="http://www.red-gate.com/products/reflector/" target="_blank">Reflector</a> at my compiled DLL files.</p>
<p><a href="http://chrisforbesblogs.files.wordpress.com/2010/02/image5.png"><img style="display:inline;border-width:0;" title="image" border="0" alt="image" src="http://chrisforbesblogs.files.wordpress.com/2010/02/image_thumb5.png?w=605&h=113" width="605" height="113" /></a></p>
<h3>Simpler way using Power Shell</h3>
<p>Using the ‘External Tools’ option within visual studio you can create a quick link, so from your solution just click the ‘Get 4-Part Name’ link and out pops the 4-part assembly name in you’re output window.</p>
<p><a href="http://chrisforbesblogs.files.wordpress.com/2010/02/image.png"><img style="display:block;float:none;margin-left:auto;margin-right:auto;border-width:0;" title="image" border="0" alt="image" src="http://chrisforbesblogs.files.wordpress.com/2010/02/image_thumb.png?w=232&h=357" width="232" height="357" /></a></p>
<p>Resulting output window…</p>
<p><a href="http://chrisforbesblogs.files.wordpress.com/2010/02/image1.png"><img style="display:block;float:none;margin-left:auto;margin-right:auto;border-width:0;" title="image" border="0" alt="image" src="http://chrisforbesblogs.files.wordpress.com/2010/02/image_thumb1.png?w=407&h=87" width="407" height="87" /></a></p>
<h3>How to add a new External Tool</h3>
<p>Select ‘External Tools…’ from the Tools menu in Visual Studio</p>
<p><a href="http://chrisforbesblogs.files.wordpress.com/2010/02/image2.png"><img style="display:inline;border-width:0;" title="image" border="0" alt="image" src="http://chrisforbesblogs.files.wordpress.com/2010/02/image_thumb2.png?w=428&h=425" width="428" height="425" /></a></p>
</p>
<p>TITLE : Give the tool a title. You can use an ‘&amp;’ character which will act as a short cut i.e. ALT+G.</p>
<p>COMMAND : <em>powershell.exe</em></p>
<p>Arguments: -command &quot;[System.Reflection.AssemblyName]::GetAssemblyName(\&quot;$(TargetPath)\&quot;).FullName&quot;</p>
<p><em></em></p>
<p>3. Make sure you check ‘use output window’ to post the result in the VS output window.</p>
<p><em>&#160;</em></p>
<p>Simple but a great time saver <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<div style="display:inline;float:none;margin:0;padding:0;" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:e83cbaa1-59f5-4de8-bddf-5c7904a464b7" class="wlWriterSmartContent">Technorati Tags: <a href="http://technorati.com/tags/VisualStudio2010" rel="tag">VisualStudio2010</a>,<a href="http://technorati.com/tags/4-Part-Assembly-Name" rel="tag">4-Part-Assembly-Name</a>,<a href="http://technorati.com/tags/External-Tools" rel="tag">External-Tools</a></div>
<div style="display:inline;float:none;margin:0;padding:0;" id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:65c9e903-2caf-4534-9bdd-dcee99fd22f2" class="wlWriterSmartContent">del.icio.us Tags: <a href="http://del.icio.us/popular/VisualStudio2010" rel="tag">VisualStudio2010</a>,<a href="http://del.icio.us/popular/4-Part-Assembly-Name" rel="tag">4-Part-Assembly-Name</a>,<a href="http://del.icio.us/popular/External-Tools" rel="tag">External-Tools</a></div>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/chrisforbesblogs.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/chrisforbesblogs.wordpress.com/209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/chrisforbesblogs.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/chrisforbesblogs.wordpress.com/209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/chrisforbesblogs.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/chrisforbesblogs.wordpress.com/209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/chrisforbesblogs.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/chrisforbesblogs.wordpress.com/209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/chrisforbesblogs.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/chrisforbesblogs.wordpress.com/209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/chrisforbesblogs.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/chrisforbesblogs.wordpress.com/209/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/chrisforbesblogs.wordpress.com/209/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/chrisforbesblogs.wordpress.com/209/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=chrisforbesblogs.net&#038;blog=6742676&#038;post=209&#038;subd=chrisforbesblogs&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://chrisforbesblogs.net/2010/02/26/simple-way-to-get-the-4-part-strong-name-for-an-assembly/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/ed3e25ef8a88f8fff819a7722f1805a9?s=96&#38;d=http%3A%2F%2F0.gravatar.com%2Favatar%2Fad516503a11cd5ca435acc9bb6523536%3Fs%3D96&#38;r=G" medium="image">
			<media:title type="html">chrisforbesblogs</media:title>
		</media:content>

		<media:content url="http://chrisforbesblogs.files.wordpress.com/2010/02/image_thumb5.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://chrisforbesblogs.files.wordpress.com/2010/02/image_thumb.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://chrisforbesblogs.files.wordpress.com/2010/02/image_thumb1.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>

		<media:content url="http://chrisforbesblogs.files.wordpress.com/2010/02/image_thumb2.png" medium="image">
			<media:title type="html">image</media:title>
		</media:content>
	</item>
	</channel>
</rss>
