<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Being Scott Densmore : Enterprise Library</title><link>http://blogs.msdn.com/scottdensmore/archive/tags/Enterprise+Library/default.aspx</link><description>Tags: Enterprise Library</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>How to get Enterprise Library 3.1 working in VS 2008</title><link>http://blogs.msdn.com/scottdensmore/archive/2008/03/13/how-to-get-enterprise-library-3-1-working-in-vs-2008.aspx</link><pubDate>Thu, 13 Mar 2008 23:08:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8185320</guid><dc:creator>scottdensmore</dc:creator><slash:comments>18</slash:comments><comments>http://blogs.msdn.com/scottdensmore/comments/8185320.aspx</comments><wfw:commentRss>http://blogs.msdn.com/scottdensmore/commentrss.aspx?PostID=8185320</wfw:commentRss><description>&lt;p&gt;Enterprise Library 3.1 was published for Visual Studio 2005.  That is to say: the Guidance Packages and the integrated Configuration Tool were built to work with Visual Studio 2005.  The rest of the library works against .NET 2.0 and continues to work with .NET 3.5 apps.  &lt;/p&gt;&lt;p&gt;We have done some work to get the integrated tool to work in Visual Studio 2008.  If you run the following registry script it will change the keys where VS looks to load the integrated tool package.  After you run the script, you will need to run devenv /setup from the Visual Studio 2008 command prompt.&lt;/p&gt;&lt;p&gt;You can download the file from the EntLibContrib project on CodePlex from &lt;a mce_href="https://www.codeplex.com/Release/ProjectReleases.aspx?ProjectName=entlibcontrib&amp;amp;ReleaseId=11669" href="https://www.codeplex.com/Release/ProjectReleases.aspx?ProjectName=entlibcontrib&amp;amp;ReleaseId=11669"&gt;here&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;[edit]&lt;/p&gt;&lt;p&gt;I will try and be a little clearer for the steps:&lt;/p&gt;&lt;p&gt;1. Install EL 3.1 (you don't need the Guidance Packages)&lt;/p&gt;&lt;p&gt;2. Run the script&lt;/p&gt;&lt;p&gt;3. Run devenv /setup from the VS 2008 command prompt  &lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p&gt;&lt;b&gt;Wheels&lt;/b&gt; from the album "Pressure Chief" by &lt;a mce_href="http://www.google.com/search?q=%22Cake%22" href="http://www.google.com/search?q=%22Cake%22"&gt;Cake&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=8185320" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/scottdensmore/archive/tags/Visual+Studio/default.aspx">Visual Studio</category><category domain="http://blogs.msdn.com/scottdensmore/archive/tags/Enterprise+Library/default.aspx">Enterprise Library</category><category domain="http://blogs.msdn.com/scottdensmore/archive/tags/patterns+_2600_amp_3B00_+practices/default.aspx">patterns &amp;amp; practices</category></item><item><title>Enterprise Library 4: Now with more Peace Love and Rock n' Roll</title><link>http://blogs.msdn.com/scottdensmore/archive/2008/01/31/enterprise-library-4-now-with-more-peace-love-and-rock-n-roll.aspx</link><pubDate>Thu, 31 Jan 2008 19:14:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7353052</guid><dc:creator>scottdensmore</dc:creator><slash:comments>6</slash:comments><comments>http://blogs.msdn.com/scottdensmore/comments/7353052.aspx</comments><wfw:commentRss>http://blogs.msdn.com/scottdensmore/commentrss.aspx?PostID=7353052</wfw:commentRss><description>&lt;P&gt;At the p&amp;amp;p Summit in November here in Redmond I gave a talk called "EntLib Refactored". This talk was started by my work done on the EntLib contrib project under the same name. What I wanted to do was make Enterprise Library smaller, simpler and easier to consume. My first attempt was to rewrite the blocks to not depend on Configuration. This was a great first stab, yet I found that what I really wanted was to reduce the size of things (which factoring out config did not do). What I wanted to do was get rid of the factories and use a Dependency Injection Container to wire up the objects. &lt;A href="http://bradwilson.typepad.com/" mce_href="http://bradwilson.typepad.com/"&gt;Brad Wilson&lt;/A&gt; and myself had been working on &lt;A href="http://www.codeplex.com/objectbuilder" mce_href="http://www.codeplex.com/objectbuilder"&gt;Object Builder 2&lt;/A&gt; and Containers on top of them to test it out. What we needed for Enterprise Library was a DI Container. &lt;/P&gt;
&lt;P&gt;After working on previous versions of Enterprise Library, we have learned that we needed Dependency Injection (DI) without knowing it and did it at the most basic level. We created factories: which is a form of simple DI. The problem this created is that each individual block was responsible for it's own configuration and configuration was buried at the bottom of the stack. We need to change around the model a bit to make the responsibility of configuration built into the DI Container and remove all that extra code from each block. &lt;/P&gt;
&lt;P&gt;Here is a picture of the old way: [BTW Enterprise Library Factory is buried at the bottom in the Core assembly that no one sees.] &lt;/P&gt;
&lt;P&gt;&lt;IMG height=401 alt="Old Way" hspace=4 src="http://blogs.msdn.com/blogfiles/scottdensmore/Old%20Way.jpg" width=377 vspace=4 border=1 mce_src="http://blogs.msdn.com/blogfiles/scottdensmore/Old%20Way.jpg"&gt; &lt;/P&gt;
&lt;P&gt;Here is the new way: &lt;/P&gt;
&lt;P&gt;&lt;IMG height=207 alt="New Way" hspace=4 src="http://blogs.msdn.com/blogfiles/scottdensmore/New%20Way.jpg" width=305 vspace=4 border=1 mce_src="http://blogs.msdn.com/blogfiles/scottdensmore/New%20Way.jpg"&gt; &lt;/P&gt;
&lt;P&gt;This looks better. Configuration is about the container. WAHOOOOOO! This means that building a block, using a block adding your extensions and having the configuration all comes through the container. This will make it easier for you to use Enterprise Library with Unity or your current DI container and allow us to deliver more cool things to you, the customer. Look for more on this later. &lt;/P&gt;
&lt;P&gt;That all sounds good, yet there is one lagging thing that needed to be addressed: the devil. Backwards compatibility is the work of the devil, and just like the devil, necessary. This is fueled by the fact that Enterprise Library has reached over a million downloads and not having a story would cause a lot of people to swing large baseball bats at us. &lt;STRONG&gt;&lt;U&gt;So the old way will still work working with factories so you can upgrade and migrate slowly. &lt;/U&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Unity is a lightweight container built on top of the work of Object Builder 2, with heavy tweeks by &lt;A href="http://www.tavaresstudios.com/Blog/default.aspx" mce_href="http://www.tavaresstudios.com/Blog/default.aspx"&gt;Chris Tavaras&lt;/A&gt;. You can read more from &lt;A href="http://blogs.msdn.com/agile/" mce_href="http://blogs.msdn.com/agile/"&gt;Grigori&lt;/A&gt; and Chris on Unity. &lt;/P&gt;
&lt;P&gt;The funny story about Unity is the name. Grigori and I were trying to come up with a name for this DI block and mentioned it to Peter Provost when we settled on Unity (which is better than the Doohicky Application Block that was up on the board). Peter never thought we would get it pass legal... neener neener is what we said when we got it. He said "Enterprise Library 4: Now with more Peace love and Rock n' Roll". &lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Doesn't Remind Me&lt;/STRONG&gt; from the album "Out Of Exile" by &lt;A href="http://www.google.com/search?q=%22Audioslave%22" mce_href="http://www.google.com/search?q=%22Audioslave%22"&gt;Audioslave&lt;/A&gt; &lt;/P&gt;&lt;!-- technorati tags start --&gt;
&lt;P style="FONT-SIZE: 10px; TEXT-ALIGN: right"&gt;Technorati Tags: &lt;A href="http://www.technorati.com/tag/Enterprise%20Library" rel=tag&gt;Enterprise Library&lt;/A&gt;, &lt;A href="http://www.technorati.com/tag/patterns%20&amp;amp;%20practices" rel=tag&gt;patterns &amp;amp; practices&lt;/A&gt;, &lt;A href="http://www.technorati.com/tag/Unity" rel=tag mce_href="http://www.technorati.com/tag/Unity"&gt;Unity&lt;/A&gt;&lt;/P&gt;&lt;!-- technorati tags end --&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=7353052" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/scottdensmore/archive/tags/Enterprise+Library/default.aspx">Enterprise Library</category><category domain="http://blogs.msdn.com/scottdensmore/archive/tags/patterns+_2600_amp_3B00_+practices/default.aspx">patterns &amp;amp; practices</category><category domain="http://blogs.msdn.com/scottdensmore/archive/tags/Unity/default.aspx">Unity</category></item><item><title>Unity and Enterprise Library 4 Team</title><link>http://blogs.msdn.com/scottdensmore/archive/2008/01/29/unity-and-enterprise-library-4-team.aspx</link><pubDate>Wed, 30 Jan 2008 08:40:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:7320162</guid><dc:creator>scottdensmore</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/scottdensmore/comments/7320162.aspx</comments><wfw:commentRss>http://blogs.msdn.com/scottdensmore/commentrss.aspx?PostID=7320162</wfw:commentRss><description>&lt;p&gt;
I am back on the team (and no I am not writing configuration again).
&lt;/p&gt;&lt;p&gt;
&lt;img src="http://blogs.msdn.com/blogfiles/scottdensmore/EntLib4-0Team-small.JPG" height="186" width="600" border="1" hspace="4" vspace="4" alt="Entlib4.0 Team" title="Entlib4.0 Team" /&gt;
&lt;/p&gt;&lt;p&gt;
Borrowed pic from &lt;a href="http://blogs.msdn.com/agile/archive/2008/01/22/who-we-are-introducing-entlib-4-0-and-unity-team.aspx"&gt;Grigori's original post.&lt;/a&gt;
&lt;/p&gt;
&lt;!-- technorati tags start --&gt;&lt;p style="text-align:right;font-size:10px;"&gt;Technorati Tags: &lt;a href="http://www.technorati.com/tag/Enterprise Library" rel="tag"&gt;Enterprise Library&lt;/a&gt;, &lt;a href="http://www.technorati.com/tag/patterns &amp;#38; practices" rel="tag"&gt;patterns &amp;#38; practices&lt;/a&gt;, &lt;a href="http://www.technorati.com/tag/Unity" rel="tag"&gt;Unity&lt;/a&gt;&lt;/p&gt;&lt;!-- technorati tags end --&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=7320162" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/scottdensmore/archive/tags/Enterprise+Library/default.aspx">Enterprise Library</category><category domain="http://blogs.msdn.com/scottdensmore/archive/tags/Unity/default.aspx">Unity</category></item><item><title>Enterprse Library V 2.0 - It must be the end of the world </title><link>http://blogs.msdn.com/scottdensmore/archive/2006/01/17/513967.aspx</link><pubDate>Wed, 18 Jan 2006 00:31:04 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:513967</guid><dc:creator>scottdensmore</dc:creator><slash:comments>2</slash:comments><comments>http://blogs.msdn.com/scottdensmore/comments/513967.aspx</comments><wfw:commentRss>http://blogs.msdn.com/scottdensmore/commentrss.aspx?PostID=513967</wfw:commentRss><description>&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I have been really busy working on my new team, but I just noticed&amp;nbsp;3 new things that I found very cool that I thought I would pass along :&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Enterprise Library should be out this week via &lt;a href="http://blogs.msdn.com/tomholl/archive/2006/01/16/513631.aspx"&gt;Tom&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Brian Button explains how we used &lt;a href="http://www.agileprogrammer.com/oneagilecoder/archive/2006/01/03/10564.aspx"&gt;Object Builder in Enterprise Library&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;The Seattle Seahawks are in the NFC title game.&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;All that being said, I have to say I am cheering on my Steelers to go all the way.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Now playing:&lt;/strong&gt; &lt;a href="http://phobos.apple.com/WebObjects/MZSearch.woa/wa/advancedSearchResults?artistTerm=Toad The Wet Sprocket"&gt;Toad The Wet Sprocket&lt;/a&gt; - &lt;a href="http://phobos.apple.com/WebObjects/MZSearch.woa/wa/advancedSearchResults?songTerm=Walk On The Ocean&amp;amp;artistTerm=Toad The Wet Sprocket"&gt;Walk On The Ocean&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=513967" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/scottdensmore/archive/tags/Enterprise+Library/default.aspx">Enterprise Library</category></item><item><title>This is Scott... not saying goodbye.... just saying...</title><link>http://blogs.msdn.com/scottdensmore/archive/2005/12/07/501362.aspx</link><pubDate>Thu, 08 Dec 2005 04:19:46 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:501362</guid><dc:creator>scottdensmore</dc:creator><slash:comments>8</slash:comments><comments>http://blogs.msdn.com/scottdensmore/comments/501362.aspx</comments><wfw:commentRss>http://blogs.msdn.com/scottdensmore/commentrss.aspx?PostID=501362</wfw:commentRss><description>&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Now that I have finally finished working on the Design Time Tool (for the last time) and Enterprise Library 2.0 is near the finish line. I can let the cat out of the bag.&lt;/p&gt;
&lt;p&gt;What a long strange trip it has been.&amp;nbsp; It is hard to believe that almost 3 years ago (January 6th), I started back at Microsoft and this small little group I had never heard of called patterns &amp;amp; practices.&amp;nbsp; 3 years ago &lt;a href="http://blogs.msdn.com/jmeier"&gt;J.D. Meier&lt;/a&gt; e-mailed me and asked me to come do an interview.&amp;nbsp; Believe it or not, I was the second developer they hired as a full time employee (FTE) (most development was done with MCS).&amp;nbsp;&amp;nbsp;It has been amazing to see the growth of this business and it&amp;rsquo;s following.&amp;nbsp; Alas, it is time to move on.&lt;/p&gt;
&lt;p&gt;When I first got here,&amp;nbsp;I started working on&amp;nbsp;small projects like the&amp;nbsp;first Logging&amp;nbsp;Block, Authorization and Profile, and a *research* project that would help integrate our deliverables into the developer environment (now known as &lt;a href="http://msdn.microsoft.com/vstudio/teamsystem/Workshop/gat/default.aspx"&gt;GAT&lt;/a&gt;).&amp;nbsp; That&amp;nbsp;first year went&amp;nbsp;by fast and led me straight in the middle of this small little project known as Enterprise Library.&amp;nbsp; For the past 2 years, I have really enjoyed seeing the uptake by the community and helping everyone out.&amp;nbsp; I am passing on the torch of dev lead to &lt;a href="http://www.agileprogrammer.com/oneagilecoder"&gt;Brian Button&lt;/a&gt;.&amp;nbsp; He will take very good care of you.&amp;nbsp; And lets not forget &lt;a href="http://blogs.msdn.com/tomholl"&gt;Tom&lt;/a&gt; and &lt;a href="http://blogs.msdn.com/edjez"&gt;Ed&lt;/a&gt;.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;Where am I going?&amp;nbsp; Well if I tell you I would have to kill you, but it is going to be really cool.&amp;nbsp; I will still post random thoughts about technology etc and preach p&amp;amp;p.&amp;nbsp; I just want to thank &lt;a href="http://spaces.msn.com/members/hazyhouse/"&gt;Gary&lt;/a&gt; for giving me the chance.&lt;/p&gt;
&lt;p&gt;Along the way I have met and worked with some amazing people.&amp;nbsp; For those who I forget, I apologize up front. (I feel like I am at some awards ceremony and like an awards ceremony, the comments will not make sense to most).&lt;br /&gt;&lt;a href="http://blogs.msdn.com/jamesnewkirk/"&gt;Jim Newkirk&lt;/a&gt; &amp;ndash; the players coach&lt;br /&gt;&lt;a href="http://www.agileprogrammer.com/oneagilecoder"&gt;Brian Button&lt;/a&gt; &amp;ndash; never gets angry or forgets his robe and sandles&lt;br /&gt;&lt;a href="http://www.peterprovost.org/"&gt;Peter Provost&lt;/a&gt; &amp;ndash; my little prodigy&lt;br /&gt;&lt;a href="http://www.agileprogrammer.com/dotnetguy"&gt;Brad Wilson&lt;/a&gt; &amp;ndash; we are to much alike music man&lt;br /&gt;&lt;a href="http://blogs.msdn.com/tomholl"&gt;Tom Hollander&lt;/a&gt; &amp;ndash; community bulldog&lt;br /&gt;&lt;a href="http://blogs.msdn.com/thehoggblog/"&gt;Jason Hogg&lt;/a&gt; &amp;ndash; who needs a car in New York (that is why you ran out of gas)&lt;br /&gt;&lt;a href="http://blogs.msdn.com/jmeier"&gt;J.D. Meier&lt;/a&gt; &amp;ndash; dragon whip tail&lt;br /&gt;&lt;a href="http://blogs.msdn.com/edjez"&gt;Edjez&lt;/a&gt; &amp;ndash; boy I wish I knew some spanish / polish&lt;br /&gt;&lt;a href="http://blogs.msdn.com/darrellsnow/"&gt;Darrell Snow&lt;/a&gt; &amp;ndash; yes I am a prima donna&lt;br /&gt;&lt;a href="http://msdn.microsoft.com/practices/Comm/TeamBlogs/default.aspx"&gt;The rest of the team&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;&lt;a href="http://dotnetjunkies.com/WebLog/tshak"&gt;tshak&lt;/a&gt; &amp;ndash; the kid&lt;br /&gt;&lt;a href="http://bloggingabout.net/blogs/olaf"&gt;olaf&lt;/a&gt; &amp;ndash; the other kid&lt;/p&gt;
&lt;p&gt;&lt;a href="http://clariusconsulting.net/blogs/kzu"&gt;Kzu&lt;/a&gt; &amp;ndash; system.componentmodel can solve everything&lt;br /&gt;&lt;a href="http://clariusconsulting.net/blogs/fds/"&gt;fds&lt;/a&gt; &amp;ndash; DI guy&lt;br /&gt;&lt;a href="http://clariusconsulting.net/blogs/"&gt;All those guys at Clarius&lt;/a&gt; &amp;ndash; automate your life&lt;/p&gt;
&lt;p&gt;And last but not least, the management team at &lt;a href="http://www.microsoft.com/practices"&gt;patterns &amp;amp; practices&lt;/a&gt;.&lt;br /&gt;&lt;/p&gt;&lt;strong&gt;&lt;/strong&gt;
&lt;p&gt;&lt;strong&gt;Now playing:&lt;/strong&gt; &lt;a href="http://phobos.apple.com/WebObjects/MZSearch.woa/wa/advancedSearchResults?artistTerm=Queens Of The Stone Age"&gt;Queens Of The Stone Age&lt;/a&gt; - &lt;a href="http://phobos.apple.com/WebObjects/MZSearch.woa/wa/advancedSearchResults?songTerm=Song For The Deaf&amp;amp;artistTerm=Queens Of The Stone Age"&gt;Song For The Deaf&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=501362" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/scottdensmore/archive/tags/Enterprise+Library/default.aspx">Enterprise Library</category><category domain="http://blogs.msdn.com/scottdensmore/archive/tags/Personal/default.aspx">Personal</category></item><item><title>December Release</title><link>http://blogs.msdn.com/scottdensmore/archive/2005/12/06/500548.aspx</link><pubDate>Tue, 06 Dec 2005 19:17:04 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:500548</guid><dc:creator>scottdensmore</dc:creator><slash:comments>3</slash:comments><comments>http://blogs.msdn.com/scottdensmore/comments/500548.aspx</comments><wfw:commentRss>http://blogs.msdn.com/scottdensmore/commentrss.aspx?PostID=500548</wfw:commentRss><description>&lt;p&gt;&lt;/p&gt;
&lt;p&gt;For all of those who wanted the tool because they hate figuring out the schema for the xml, here is a pretty solid preview.&amp;nbsp; We have really been hard at work to finish this off.&amp;nbsp; Don&amp;rsquo;t blame &lt;a href="http://bloggingabout.net/blogs/olaf"&gt;Olaf&lt;/a&gt;, most of it is my fault.&amp;nbsp; I wanted to make things a bit easier to add your own design time nodes.&amp;nbsp; Go and download it &lt;a href="http://www.gotdotnet.com/codegallery/releases/viewuploads.aspx?id=295a464a-6072-4e25-94e2-91be63527327"&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Now playing:&lt;/strong&gt; &lt;a href="http://phobos.apple.com/WebObjects/MZSearch.woa/wa/advancedSearchResults?artistTerm=Adam &amp;amp; The Ants"&gt;Adam &amp;amp; The Ants&lt;/a&gt; - &lt;a href="http://phobos.apple.com/WebObjects/MZSearch.woa/wa/advancedSearchResults?songTerm=Stand And Deliver&amp;amp;artistTerm=Adam &amp;amp; The Ants"&gt;Stand And Deliver&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=500548" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/scottdensmore/archive/tags/Enterprise+Library/default.aspx">Enterprise Library</category></item><item><title>Enterprise Library Core Webcast</title><link>http://blogs.msdn.com/scottdensmore/archive/2005/12/06/500546.aspx</link><pubDate>Tue, 06 Dec 2005 19:13:32 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:500546</guid><dc:creator>scottdensmore</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/scottdensmore/comments/500546.aspx</comments><wfw:commentRss>http://blogs.msdn.com/scottdensmore/commentrss.aspx?PostID=500546</wfw:commentRss><description>&lt;p&gt;&lt;/p&gt;
&lt;p&gt;As &lt;a href="http://blogs.msdn.com/tomholl"&gt;Tom&lt;/a&gt; and &lt;a href="http://blogs.msdn.com/edjez"&gt;Ed&lt;/a&gt; have pointed out, there are some major changes to the core architecture of Enterprise Library 2.0.&amp;nbsp; Join Tom and I to talk about our integration of object builder, Configuration Sources, and the new (kinda) design time for all the blocks.&amp;nbsp; This will be the last time you get to here my annoying voice (more on that later). Sign up &lt;a href="http://www.microsoft.com/events/EventDetails.aspx?CMTYSvcSource=MSCOMMedia&amp;amp;Params=%7eCMTYDataSvcParams%5e%7earg+Name%3d%22ID%22+Value%3d%221032286082%22%2f%5e%7earg+Name%3d%22ProviderID%22+Value%3d%22A6B43178-497C-4225-BA42-DF595171F04C%22%2f%5e%7earg+Name%3d%22lang%22+Value%3d%22en%22%2f%5e%7earg+Name%3d%22cr%22+Value%3d%22US%22%2f%5e%7esParams%5e%7e%2fsParams%5e%7e%2fCMTYDataSvcParams%5e"&gt;her&lt;/a&gt;e.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Now playing:&lt;/strong&gt; &lt;a href="http://phobos.apple.com/WebObjects/MZSearch.woa/wa/advancedSearchResults?artistTerm=Alien Ant Farm"&gt;Alien Ant Farm&lt;/a&gt; - &lt;a href="http://phobos.apple.com/WebObjects/MZSearch.woa/wa/advancedSearchResults?songTerm=Quite&amp;amp;artistTerm=Alien Ant Farm"&gt;Quite&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=500546" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/scottdensmore/archive/tags/Enterprise+Library/default.aspx">Enterprise Library</category></item><item><title>Enterprise Library 2.0 / Configuration 12.0</title><link>http://blogs.msdn.com/scottdensmore/archive/2005/11/08/490545.aspx</link><pubDate>Wed, 09 Nov 2005 01:13:10 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:490545</guid><dc:creator>scottdensmore</dc:creator><slash:comments>5</slash:comments><comments>http://blogs.msdn.com/scottdensmore/comments/490545.aspx</comments><wfw:commentRss>http://blogs.msdn.com/scottdensmore/commentrss.aspx?PostID=490545</wfw:commentRss><description>&lt;p&gt;We have done it again.&amp;nbsp; Another drop another configuration change.&amp;nbsp; You can read the marketing mojo from &lt;a href="http://blogs.msdn.com/tomholl/archive/2005/11/07/EntLibNovCTP.aspx"&gt;Tom&lt;/a&gt;. Read the&amp;nbsp;MSDN announcement&amp;nbsp;and download it &lt;a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnpag2/html/entlib2.asp"&gt;here&lt;/a&gt;.&amp;nbsp; All feedback welcome.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Now playing:&lt;/strong&gt; &lt;a href="http://phobos.apple.com/WebObjects/MZSearch.woa/wa/advancedSearchResults?artistTerm=Joe Satriani"&gt;Joe Satriani&lt;/a&gt; - &lt;a href="http://phobos.apple.com/WebObjects/MZSearch.woa/wa/advancedSearchResults?songTerm=Surfing With The Alien&amp;amp;artistTerm=Joe Satriani"&gt;Surfing With The Alien&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=490545" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/scottdensmore/archive/tags/Enterprise+Library/default.aspx">Enterprise Library</category></item><item><title>Do you have what it takes?</title><link>http://blogs.msdn.com/scottdensmore/archive/2005/10/25/484874.aspx</link><pubDate>Wed, 26 Oct 2005 01:07:54 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:484874</guid><dc:creator>scottdensmore</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/scottdensmore/comments/484874.aspx</comments><wfw:commentRss>http://blogs.msdn.com/scottdensmore/commentrss.aspx?PostID=484874</wfw:commentRss><description>&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Ever wanted to work with some of the greatest minds on some great software?&amp;nbsp; Well throw your hat in the ring and give it a try.&amp;nbsp; We are hiring.&amp;nbsp; The full job description is &lt;a href="http://members.microsoft.com/careers/search/details.aspx?JobID=7cd2ff93-fdfe-498e-93ea-b8e71dfae4d2"&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Now playing:&lt;/strong&gt; &lt;a href="http://phobos.apple.com/WebObjects/MZSearch.woa/wa/advancedSearchResults?artistTerm=Green Day"&gt;Green Day&lt;/a&gt; - &lt;a href="http://phobos.apple.com/WebObjects/MZSearch.woa/wa/advancedSearchResults?songTerm=American Idiot&amp;amp;artistTerm=Green Day"&gt;American Idiot&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=484874" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/scottdensmore/archive/tags/Enterprise+Library/default.aspx">Enterprise Library</category></item><item><title>CAB  October 2005 CTP Available</title><link>http://blogs.msdn.com/scottdensmore/archive/2005/10/10/479138.aspx</link><pubDate>Mon, 10 Oct 2005 17:34:21 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:479138</guid><dc:creator>scottdensmore</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.msdn.com/scottdensmore/comments/479138.aspx</comments><wfw:commentRss>http://blogs.msdn.com/scottdensmore/commentrss.aspx?PostID=479138</wfw:commentRss><description>&lt;p&gt;The team has been driving hard to get this to you.&amp;nbsp; I would definetly download it and start playing with it.&amp;nbsp;&amp;nbsp;We (Enterprise Library) are going to be using the cool&amp;nbsp;DI code&amp;nbsp;in our project (yes everything you learned for the August CTP is useless now &lt;img src="http://home.comcast.net/~scottdensmore/blog/pics/smile1.gif" /&gt;).&amp;nbsp;&amp;nbsp;Take a look at the Object Builder code from &lt;a href="http://www.agileprogrammer.com/dotnetguy"&gt;Brad&lt;/a&gt; and &lt;a href="http://www.peterprovost.org/"&gt;Peter&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Read both Brad&amp;rsquo;s and Peter&amp;rsquo;s blog for great info.&lt;/p&gt;
&lt;p&gt;Get the life changer at &lt;a href="http://codegallery.gotdotnet.com/cab"&gt;http://codegallery.gotdotnet.com/cab&lt;/a&gt;.&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=479138" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/scottdensmore/archive/tags/Enterprise+Library/default.aspx">Enterprise Library</category><category domain="http://blogs.msdn.com/scottdensmore/archive/tags/patterns+_2600_amp_3B00_+practices/default.aspx">patterns &amp;amp; practices</category></item><item><title>Is Your ASP.Net Process Hanging using Enterprise Library?</title><link>http://blogs.msdn.com/scottdensmore/archive/2005/09/09/462993.aspx</link><pubDate>Fri, 09 Sep 2005 20:16:37 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:462993</guid><dc:creator>scottdensmore</dc:creator><slash:comments>2</slash:comments><comments>http://blogs.msdn.com/scottdensmore/comments/462993.aspx</comments><wfw:commentRss>http://blogs.msdn.com/scottdensmore/commentrss.aspx?PostID=462993</wfw:commentRss><description>&lt;p&gt;I was debugging a app from our product support team where a customer&amp;rsquo;s ASP.Net app was hanging.&amp;nbsp; The way we solved their problem was by putting the application name in their web.conifg. This is a little known feature (aka undocumented) that can cause you some pain.&amp;nbsp; If you are seeing this problem you will need to add a key in your appSettings of your config file named Microsoft.Practices.EnterpriseLibrary.Configuration.ConfigurationManager.ApplicationName and you should be good.&amp;nbsp; You can put any name you want and when you get messages in the Event Log you will get that name as the name of the application.&amp;nbsp; The offending code can be found in the file PerformanceCounterInstances.cs in the project Common at line 81.&lt;/p&gt;
&lt;p&gt;No interestingly enough , someone just posted the same thing plus a little more on the GDN site &lt;a href="http://www.gotdotnet.com/codegallery/messageboard/thread.aspx?id=295a464a-6072-4e25-94e2-91be63527327&amp;amp;mbid=12e6b3c0-1261-461b-b86d-eff86af3939d&amp;amp;threadid=538f8b98-f035-449b-8a6f-6fa893be95ec"&gt;here&lt;/a&gt;.&amp;nbsp; This is a good read and I congratulate them for being so thorough.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Now playing:&lt;/strong&gt; &lt;a href="http://phobos.apple.com/WebObjects/MZSearch.woa/wa/advancedSearchResults?artistTerm=Garbage"&gt;Garbage&lt;/a&gt; - &lt;a href="http://phobos.apple.com/WebObjects/MZSearch.woa/wa/advancedSearchResults?songTerm=Wicked Ways&amp;amp;artistTerm=Garbage"&gt;Wicked Ways&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=462993" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/scottdensmore/archive/tags/Enterprise+Library/default.aspx">Enterprise Library</category></item><item><title>Architecture Testing Guide Released</title><link>http://blogs.msdn.com/scottdensmore/archive/2005/08/31/458493.aspx</link><pubDate>Wed, 31 Aug 2005 18:53:21 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:458493</guid><dc:creator>scottdensmore</dc:creator><slash:comments>2</slash:comments><comments>http://blogs.msdn.com/scottdensmore/comments/458493.aspx</comments><wfw:commentRss>http://blogs.msdn.com/scottdensmore/commentrss.aspx?PostID=458493</wfw:commentRss><description>&lt;blockquote dir="ltr" style="MARGIN-RIGHT: 0px"&gt;
&lt;p&gt;The patterns &amp;amp; practices Architecture Testing Guide is designed to help project stakeholders, software designers, developers, and testers understand the process of testing software architecture before the code is implemented. The paper describes an approach and methodology for testing the design of a system, and describes the user-specific viewpoints that you must consider during the testing process. The Architecture Testing Guide walks through the process of testing a system from each viewpoint, and provides instructions, examples, and best practices along the way. A draft version of the paper is for download here.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;You can &lt;a href="http://www.gotdotnet.com/codegallery/codegallery.aspx?id=4713168a-9073-40e2-854a-a4b9ca217de9"&gt;download it from GDN&lt;/a&gt;.&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=458493" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/scottdensmore/archive/tags/Enterprise+Library/default.aspx">Enterprise Library</category><category domain="http://blogs.msdn.com/scottdensmore/archive/tags/Technology/default.aspx">Technology</category></item><item><title>Enterprise Library : August CTP Available</title><link>http://blogs.msdn.com/scottdensmore/archive/2005/08/26/457038.aspx</link><pubDate>Sat, 27 Aug 2005 08:53:26 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:457038</guid><dc:creator>scottdensmore</dc:creator><slash:comments>2</slash:comments><comments>http://blogs.msdn.com/scottdensmore/comments/457038.aspx</comments><wfw:commentRss>http://blogs.msdn.com/scottdensmore/commentrss.aspx?PostID=457038</wfw:commentRss><description>&lt;p&gt;I am sure I am a little late to the party, but we have worked hard and &lt;a href="http://www.gotdotnet.com/codegallery/releases/viewuploads.aspx?id=295a464a-6072-4e25-94e2-91be63527327"&gt;here it is&lt;/a&gt;.&amp;nbsp; We really want your feedback, so go get it.&lt;/p&gt;
&lt;p&gt;A big thanks to the whole team for getting this out!&amp;nbsp; Have fun while giving it a spin.&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=457038" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/scottdensmore/archive/tags/Enterprise+Library/default.aspx">Enterprise Library</category></item><item><title>Enterprise Library : Configuraiton2 and Injection</title><link>http://blogs.msdn.com/scottdensmore/archive/2005/08/16/452144.aspx</link><pubDate>Tue, 16 Aug 2005 17:01:58 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:452144</guid><dc:creator>scottdensmore</dc:creator><slash:comments>3</slash:comments><comments>http://blogs.msdn.com/scottdensmore/comments/452144.aspx</comments><wfw:commentRss>http://blogs.msdn.com/scottdensmore/commentrss.aspx?PostID=452144</wfw:commentRss><description>&lt;p&gt;&lt;/p&gt;
&lt;p&gt;You knew it was coming.&amp;nbsp;Configuration again.&amp;nbsp; This time around it was fun because I got to work with &lt;a href="http://www.clariusconsulting.net/blogs/fds/"&gt;Fernando&lt;/a&gt;.&amp;nbsp; I have been bugging him about getting a blog and now that he has one, I thought I would let him write the first post on the new &lt;a href="http://www.clariusconsulting.net/blogs/fds/archive/2005/08/16/38.aspx"&gt;Configuration and Dependency Injection&lt;/a&gt; overview in Enterprise Library 2.0.&amp;nbsp; Then he and I will start drilling down on the topics in the overview.&amp;nbsp; Think of it as on-line hands on labs &lt;img src="http://home.comcast.net/~scottdensmore/blog/pics/smile1.gif" /&gt;.&amp;nbsp;&amp;nbsp; I will try to focus on how you can upgrade / relate this to V1.x, because it is very similar.&amp;nbsp; We wanted to get some information out there for the August CTP.&lt;/p&gt;
&lt;p&gt;One of the best things about working at Microsoft is working with smart people, especially those people out in the world that are our customers.&amp;nbsp; There are a lot of them at &lt;a href="http://www.clariusconsulting.net/"&gt;Clarius&lt;/a&gt;.&amp;nbsp; &lt;/p&gt;
&lt;p&gt;I am completely stoked about the new version!&amp;nbsp;&amp;nbsp;Get ready for a&amp;nbsp;lot more.&amp;nbsp;Be nice to Fernando he is new.&lt;/p&gt;
&lt;p&gt;Update : If you can&amp;rsquo;t get to Fernando&amp;rsquo;s site the post is &lt;a href="http://blogs.msdn.com/scottdensmore/archive/2005/08/16/452265.aspx"&gt;here&lt;/a&gt; now.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Now playing:&lt;/strong&gt; &lt;a href="http://phobos.apple.com/WebObjects/MZSearch.woa/wa/advancedSearchResults?artistTerm=Iron Maiden"&gt;Iron Maiden&lt;/a&gt; - &lt;a href="http://phobos.apple.com/WebObjects/MZSearch.woa/wa/advancedSearchResults?songTerm=Bring Your Daughter...To the Slaughter&amp;amp;artistTerm=Iron Maiden"&gt;Bring Your Daughter...To the Slaughter&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=452144" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/scottdensmore/archive/tags/Enterprise+Library/default.aspx">Enterprise Library</category></item><item><title>More Enterprise Library 1.x Posts and Series</title><link>http://blogs.msdn.com/scottdensmore/archive/2005/08/14/451636.aspx</link><pubDate>Mon, 15 Aug 2005 04:43:29 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:451636</guid><dc:creator>scottdensmore</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.msdn.com/scottdensmore/comments/451636.aspx</comments><wfw:commentRss>http://blogs.msdn.com/scottdensmore/commentrss.aspx?PostID=451636</wfw:commentRss><description>&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Via &lt;a href="http://dotnetjunkies.com/WebLog/tshak/default.aspx"&gt;TSHAK&lt;/a&gt;&amp;nbsp;: two new cool posts.&amp;nbsp; One is going to be a series on 1.x.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://bloggingabout.net/blogs/olaf/archive/2005/08/11/8890.aspx"&gt;Managing enterprise library configuration over multiple environments&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=""&gt;&lt;em&gt;DotNetJunkies&lt;/em&gt;&lt;/a&gt;&lt;em&gt; is doing a &lt;/em&gt;&lt;a href="http://www.dotnetjunkies.com/Tutorial/29EF3A4F-A0C2-4BB2-A215-8F87F100A9F9.dcik"&gt;&lt;em&gt;series&lt;/em&gt;&lt;/a&gt;&lt;em&gt; on &lt;/em&gt;&lt;a href="http://practices.gotdotnet.com/workspace.aspx?id=295a464a-6072-4e25-94e2-91be63527327"&gt;&lt;em&gt;Enterprise Library&lt;/em&gt;&lt;/a&gt;&lt;em&gt;, starting with an overview and then publishing a detailed article for each block. &lt;/em&gt;&lt;a href="http://www.dotnetjunkies.com/Tutorial/29EF3A4F-A0C2-4BB2-A215-8F87F100A9F9.dcik"&gt;&lt;em&gt;Check out the first in this series&lt;/em&gt;&lt;/a&gt;&lt;em&gt;.&lt;img height="1" src="http://dotnetjunkies.com/WebLog/aggbug.aspx?PostID=131887" width="1" /&gt;&lt;/em&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;&lt;strong&gt;Now playing:&lt;/strong&gt; &lt;a href="http://phobos.apple.com/WebObjects/MZSearch.woa/wa/advancedSearchResults?artistTerm=Dokken"&gt;Dokken&lt;/a&gt; - &lt;a href="http://phobos.apple.com/WebObjects/MZSearch.woa/wa/advancedSearchResults?songTerm=It's Not Love&amp;amp;artistTerm=Dokken"&gt;It's Not Love&lt;/a&gt;&lt;/p&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=451636" width="1" height="1"&gt;</description><category domain="http://blogs.msdn.com/scottdensmore/archive/tags/Enterprise+Library/default.aspx">Enterprise Library</category></item></channel></rss>