<?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>un tipo neuroso &#187; BusinessIntelligence</title>
	<atom:link href="http://untiponeuroso.wordpress.com/tag/businessintelligence/feed/" rel="self" type="application/rss+xml" />
	<link>http://untiponeuroso.wordpress.com</link>
	<description>technical blog</description>
	<lastBuildDate>Wed, 05 Aug 2009 08:54:08 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>it</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='untiponeuroso.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/a50f24c5709772bf74b8787932aa3629?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>un tipo neuroso &#187; BusinessIntelligence</title>
		<link>http://untiponeuroso.wordpress.com</link>
	</image>
			<item>
		<title>Referenziare una classlibrary da uno script task di un package SSIS</title>
		<link>http://untiponeuroso.wordpress.com/2007/09/21/referenziare-una-classlibrary-da-uno-script-task-di-un-package-ssis/</link>
		<comments>http://untiponeuroso.wordpress.com/2007/09/21/referenziare-una-classlibrary-da-uno-script-task-di-un-package-ssis/#comments</comments>
		<pubDate>Fri, 21 Sep 2007 11:22:45 +0000</pubDate>
		<dc:creator>dancerjude</dc:creator>
				<category><![CDATA[BusinessIntelligence]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Troubleshooting]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[SSIS]]></category>

		<guid isPermaLink="false">http://untiponeuroso.wordpress.com/2007/09/21/referenziare-una-classlibrary-da-uno-script-task-di-un-package-ssis/</guid>
		<description><![CDATA[[ SSIS : Sql Server Integration Services ]
Descrizione del problema : referenziare una classlibrary esterna da una o più componenti di scripting, dall&#8217;interno di un progetto SSIS in Visual Studio .NET (2005)
Da questo problema, avuto qualche giorno fa, vi riporto la soluzione che ho trovato io :

Creare una classlibrary nella solution, diciamo ClassLibrary1, in un [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=untiponeuroso.wordpress.com&blog=1756843&post=5&subd=untiponeuroso&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><h6><a href="http://en.wikipedia.org/wiki/SQL_Server_Integration_Services" target="_blank"><em>[ SSIS : Sql Server Integration Services ]</em></a></h6>
<p><strong>Descrizione del problema :</strong> referenziare una classlibrary esterna da una o più componenti di scripting, dall&#8217;interno di un progetto SSIS in Visual Studio .NET (2005)</p>
<p>Da questo problema, avuto qualche giorno fa, vi riporto la soluzione che ho trovato io :</p>
<ol>
<li>Creare una classlibrary nella solution, diciamo <em>ClassLibrary1</em>, in un qualunque linguaggio .NET</li>
<li>Compilare l&#8217;assembly facendo attenzione a <u>firmarlo</u>
<ol>
<li> Solution Explorer &gt; proprietà della <em>ClassLibrary1</em></li>
<li>voce <em>&#8220;Signing&#8221;</em> &gt; check su <em>&#8220;Sign the assembly&#8221;</em></li>
<li>listbox &#8220;Choose a strong name key file&#8221; &gt; utilizzare un key file (file della firma) se già presente, oppure crearne uno nuovo con un nome relativo al progetto magari (con estensione <em>.pfx</em>) &gt; inserire una password per la firma quando richiesta</li>
<li>salvare le impostazioni con il pulsante di salvataggio in alto nella barra di visual studio</li>
</ol>
</li>
<li>Una volta compilata correttamente la ClassLibrary1, copiare l&#8217;assembly nella directory <em>&#8220;C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727&#8243;</em></li>
<li>Aggiungere l&#8217;assembly nella GAC
<ol>
<li>Pannello di controllo &gt; Strumenti di Amministrazione &gt; Microsoft .NET framework 2.0 Configuration &gt; Assembly Cache</li>
<li><em>Add an assembly to the assembly cache</em> &gt; selezionare l&#8217;assembly dalla directory del framework (dove è stato copiato nel precedente step 3)</li>
</ol>
</li>
<li>Utilizziamo la <em>ClassLibrary1</em>
<ol>
<li>Solution Explorer &gt; progetto SSIS &gt; package di riferimento, diciamo <em>Package1</em></li>
<li>Aprire il Package1 in design, andare sullo Script Task</li>
<li>Tasto destro sullo Script Task &gt; Edit &gt; Script &gt; Design Script &gt; Project Explorer &gt; Reference</li>
<li>Add Reference &gt; Aggiungere l&#8217;assembly ClassLibrary1 dalla directory del framework &gt; Aggiungere la direttiva &#8220;Imports&#8221; in testa al file della classe che si sta utilizzando come script, indicando il namespace di utilizzo&gt; Utilizzare le classi che sono state definite nella ClassLibrary1</li>
</ol>
</li>
</ol>
<p>Le informazioni sono state raccolte da internet nelle varie community e chiaramente da <a href="http://msdn.microsoft.com" target="_blank">MSDN</a>.<br />
Per correzioni, chiarimenti e/o altre informazioni inserite un commento.</p>
<h4><font color="#c0c0c0"><em><strong>P.S. : </strong>non sono un esperto di SSIS e <strike>mi fa schifo</strike> neanche mi piace&#8230;</em></font></h4>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/untiponeuroso.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/untiponeuroso.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/untiponeuroso.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/untiponeuroso.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/untiponeuroso.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/untiponeuroso.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/untiponeuroso.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/untiponeuroso.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/untiponeuroso.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/untiponeuroso.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/untiponeuroso.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/untiponeuroso.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=untiponeuroso.wordpress.com&blog=1756843&post=5&subd=untiponeuroso&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://untiponeuroso.wordpress.com/2007/09/21/referenziare-una-classlibrary-da-uno-script-task-di-un-package-ssis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/a2ddde651c3634bc99dcb0b1fc60764c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">dancerjude</media:title>
		</media:content>
	</item>
	</channel>
</rss>