<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:copyright="http://blogs.law.harvard.edu/tech/rss" xmlns:image="http://purl.org/rss/1.0/modules/image/">
    <channel>
        <title>John Blumenauer's Blog</title>
        <link>http://geekswithblogs.net/jblumenauer/Default.aspx</link>
        <description>.NET Development and Community Nuggets</description>
        <language>en-US</language>
        <copyright>John Blumenauer</copyright>
        <managingEditor>codesmith@verizon.net</managingEditor>
        <generator>Subtext Version 0.0.0.0</generator>
        <image>
            <title>John Blumenauer's Blog</title>
            <url>http://geekswithblogs.net/images/RSS2Image.gif</url>
            <link>http://geekswithblogs.net/jblumenauer/Default.aspx</link>
            <width>77</width>
            <height>60</height>
        </image>
        <item>
            <title>Slides and Code from NoVa Code Camp 2011 - Dependency Injection, Inversion of Control and Dependency Inversion &amp;ndash; A Primer</title>
            <category>Code Camp Presentations</category>
            <link>http://geekswithblogs.net/jblumenauer/archive/2011/10/06/slides-and-code-from-nova-code-camp-2011---dependency.aspx</link>
            <description>&lt;p&gt;During my &lt;a href="http://novacodecamp.org/RecentCodeCamps/NovaCodeCamp2011/2011Sessions.aspx"&gt;Dependency Injection and Inversion of Container Primer&lt;/a&gt; presentation at the &lt;a href="http://novacodecamp.org/"&gt;2011 NoVa Code Camp&lt;/a&gt;, I had several attendees inquire about whether I could provide the slides and code. The slides and code can now be found &lt;a href="https://skydrive.live.com/redir.aspx?cid=6b4837b7be79d339&amp;amp;resid=6B4837B7BE79D339!223"&gt;here&lt;/a&gt;.  I want to give a big THANKS to all who attended.  During the presentation, there were several great discussions which indicated to me the wheels were turning already.  &lt;/p&gt;  &lt;p&gt;If anyone has any questions about the topic, please feel free to contact me.  Thanks again!&lt;/p&gt; &lt;img src="http://geekswithblogs.net/jblumenauer/aggbug/147203.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>John Blumenauer</dc:creator>
            <guid>http://geekswithblogs.net/jblumenauer/archive/2011/10/06/slides-and-code-from-nova-code-camp-2011---dependency.aspx</guid>
            <pubDate>Thu, 06 Oct 2011 23:58:00 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/jblumenauer/comments/147203.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/jblumenauer/archive/2011/10/06/slides-and-code-from-nova-code-camp-2011---dependency.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/jblumenauer/comments/commentRss/147203.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Is Merging Assemblies Containing Lambdas with ILMerge in VS2010 not Working? - UPDATED</title>
            <link>http://geekswithblogs.net/jblumenauer/archive/2010/06/15/issues-with-ilmerge-lambda-expressions-and-vs2010-merging.aspx</link>
            <description>&lt;p&gt;&lt;strong&gt;&lt;font color="#0000ff" size="3"&gt;A little Background&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;For quite some time now, it’s been possible to merge multiple .NET assemblies into a single assembly using &lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=22914587-b4ad-4eae-87cf-b14ae6a939b0&amp;amp;displaylang=en"&gt;ILMerge&lt;/a&gt; in &lt;a href="http://msdn.microsoft.com/en-us/vstudio/default.aspx"&gt;Visual Studio 2008&lt;/a&gt;.  This is especially helpful when writing wrapper assemblies for 3rd-party libraries where it’s desirable to minimize the number of assemblies for distribution.  During the merge process, ILMerge will take a set of assemblies and merge them into a single assembly.  The resulting assembly can be either an executable or a DLL and is identified as the &lt;em&gt;primary&lt;/em&gt; assembly. &lt;/p&gt;  &lt;p&gt;&lt;strong&gt;&lt;font color="#0000ff" size="3"&gt;Issue&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;During a recent project, I discovered using ILMerge to merge assemblies containing &lt;a href="http://msdn.microsoft.com/en-us/library/bb397687.aspx"&gt;lambda expressions&lt;/a&gt; in &lt;a href="http://msdn.microsoft.com/en-us/vstudio/default.aspx"&gt;Visual Studio 2010&lt;/a&gt; is resulting in invalid primary assemblies.  The code below is not where the initial issue was identified, I will merely use it to illustrate the problem at hand.&lt;/p&gt;  &lt;p&gt;In order to describe the issue, I created a console application and a class library for calculating a few math functions utilizing lambda expressions.  The code is available for download at the bottom of this blog entry.&lt;/p&gt;  &lt;p&gt;&lt;u&gt;&lt;strong&gt;MathLib.cs&lt;/strong&gt;&lt;/u&gt;&lt;/p&gt;  &lt;pre class="code"&gt;&lt;span style="color: blue"&gt;using &lt;/span&gt;System;

&lt;span style="color: blue"&gt;namespace &lt;/span&gt;MathLib
{
    &lt;span style="color: blue"&gt;public static class &lt;/span&gt;&lt;span style="color: #2b91af"&gt;MathHelpers
    &lt;/span&gt;{
        &lt;span style="color: blue"&gt;public static &lt;/span&gt;&lt;span style="color: #2b91af"&gt;Func&lt;/span&gt;&amp;lt;&lt;span style="color: blue"&gt;double&lt;/span&gt;, &lt;span style="color: blue"&gt;double&lt;/span&gt;, &lt;span style="color: blue"&gt;double&lt;/span&gt;&amp;gt; Hypotenuse =

            (x, y) =&amp;gt; &lt;span style="color: #2b91af"&gt;Math&lt;/span&gt;.Sqrt(x * x + y * y);


        &lt;span style="color: blue"&gt;static readonly &lt;/span&gt;&lt;span style="color: #2b91af"&gt;Func&lt;/span&gt;&amp;lt;&lt;span style="color: blue"&gt;int&lt;/span&gt;, &lt;span style="color: blue"&gt;int&lt;/span&gt;, &lt;span style="color: blue"&gt;bool&lt;/span&gt;&amp;gt; divisibleBy = (&lt;span style="color: blue"&gt;int &lt;/span&gt;a, &lt;span style="color: blue"&gt;int &lt;/span&gt;b) =&amp;gt; a % b == 0;

        &lt;span style="color: blue"&gt;public static bool &lt;/span&gt;IsPrimeNumber(&lt;span style="color: blue"&gt;int &lt;/span&gt;x)
        {
            {

                &lt;span style="color: blue"&gt;for &lt;/span&gt;(&lt;span style="color: blue"&gt;int &lt;/span&gt;i = 2; i &amp;lt;= x / 2; i++)

                    &lt;span style="color: blue"&gt;if &lt;/span&gt;(divisibleBy(x, i))
                        &lt;span style="color: blue"&gt;return false&lt;/span&gt;;

                &lt;span style="color: blue"&gt;return true&lt;/span&gt;;

            };
        }

    }
}&lt;/pre&gt;

&lt;p&gt;&lt;strong&gt;&lt;u&gt;Program.cs&lt;/u&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;pre class="code"&gt;&lt;span style="color: blue"&gt;using &lt;/span&gt;System;
&lt;span style="color: blue"&gt;using &lt;/span&gt;MathLib;

&lt;span style="color: blue"&gt;namespace &lt;/span&gt;ILMergeLambdasConsole
{
    &lt;span style="color: blue"&gt;class &lt;/span&gt;&lt;span style="color: #2b91af"&gt;Program
    &lt;/span&gt;{
        &lt;span style="color: blue"&gt;static void &lt;/span&gt;Main(&lt;span style="color: blue"&gt;string&lt;/span&gt;[] args)
        {
            &lt;span style="color: blue"&gt;int &lt;/span&gt;n = 19;

            &lt;span style="color: blue"&gt;if &lt;/span&gt;(&lt;span style="color: #2b91af"&gt;MathHelpers&lt;/span&gt;.IsPrimeNumber(n))
            {
                &lt;span style="color: #2b91af"&gt;Console&lt;/span&gt;.WriteLine(n + &lt;span style="color: #a31515"&gt;" is prime"&lt;/span&gt;);
            }
            &lt;span style="color: blue"&gt;else
            &lt;/span&gt;{
                &lt;span style="color: #2b91af"&gt;Console&lt;/span&gt;.WriteLine(n + &lt;span style="color: #a31515"&gt;" is not prime"&lt;/span&gt;);
            }

            &lt;span style="color: #2b91af"&gt;Console&lt;/span&gt;.ReadLine();
        }
    }
}&lt;/pre&gt;

&lt;p&gt;Not surprisingly, the preceding code compiles, builds and executes without error prior to running the ILMerge tool.&lt;/p&gt;

&lt;p&gt; &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;font color="#0000ff" size="3"&gt;ILMerge Setup&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;In order to utilize ILMerge, the following changes were made to the project.&lt;/p&gt;

&lt;ol&gt;
  &lt;li&gt;The MathLib.dll assembly was built in release configuration and copied to the MathLib folder.  The following folder hierarchy was used for this example: &lt;a href="http://geekswithblogs.net/images/geekswithblogs_net/jblumenauer/WindowsLiveWriter/ILMergeLambdaExpressionsandVS2010_136B8/image_10.png"&gt;&lt;img style="border-right-width: 0px; margin: 15px 90px 15px 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://geekswithblogs.net/images/geekswithblogs_net/jblumenauer/WindowsLiveWriter/ILMergeLambdaExpressionsandVS2010_136B8/image_thumb_4.png" width="208" height="153" /&gt;&lt;/a&gt;  &lt;/li&gt;

  &lt;li&gt;The project file for ILMergeLambdasConsole project file was edited to add the ILMerge post-build configuration.  The following lines were added near the bottom of the project file:  &lt;span style="color: blue"&gt;&lt;/span&gt;

    &lt;pre class="code"&gt;  &lt;span style="color: blue"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #a31515"&gt;Target &lt;/span&gt;&lt;span style="color: red"&gt;Name&lt;/span&gt;&lt;span style="color: blue"&gt;=&lt;/span&gt;"&lt;span style="color: blue"&gt;AfterBuild&lt;/span&gt;" &lt;span style="color: red"&gt;Condition&lt;/span&gt;&lt;span style="color: blue"&gt;=&lt;/span&gt;"&lt;span style="color: blue"&gt;'$(Configuration)' == 'Release'&lt;/span&gt;"&lt;span style="color: blue"&gt;&amp;gt;
    &amp;lt;&lt;/span&gt;&lt;span style="color: #a31515"&gt;Exec &lt;/span&gt;&lt;span style="color: red"&gt;Command&lt;/span&gt;&lt;span style="color: blue"&gt;=&lt;/span&gt;"&lt;span style="color: red"&gt;&amp;amp;quot;&lt;/span&gt;&lt;span style="color: blue"&gt;..\..\lib\ILMerge\Ilmerge.exe&lt;/span&gt;&lt;span style="color: red"&gt;&amp;amp;quot; &lt;/span&gt;&lt;span style="color: blue"&gt;/ndebug /out:@(MainAssembly) 
      &lt;/span&gt;&lt;span style="color: red"&gt;&amp;amp;quot;&lt;/span&gt;&lt;span style="color: blue"&gt;@(IntermediateAssembly)&lt;/span&gt;&lt;span style="color: red"&gt;&amp;amp;quot; &lt;/span&gt;&lt;span style="color: blue"&gt;@(ReferenceCopyLocalPaths-&amp;gt;'&lt;/span&gt;&lt;span style="color: red"&gt;&amp;amp;quot;&lt;/span&gt;&lt;span style="color: blue"&gt;%(FullPath)&lt;/span&gt;&lt;span style="color: red"&gt;&amp;amp;quot;&lt;/span&gt;&lt;span style="color: blue"&gt;', ' ')&lt;/span&gt;" &lt;span style="color: blue"&gt;/&amp;gt;
    &amp;lt;&lt;/span&gt;&lt;span style="color: #a31515"&gt;Delete &lt;/span&gt;&lt;span style="color: red"&gt;Files&lt;/span&gt;&lt;span style="color: blue"&gt;=&lt;/span&gt;"&lt;span style="color: blue"&gt;@(ReferenceCopyLocalPaths-&amp;gt;'$(OutDir)%(DestinationSubDirectory)%(Filename)%(Extension)')&lt;/span&gt;" &lt;span style="color: blue"&gt;/&amp;gt;
  &amp;lt;/&lt;/span&gt;&lt;span style="color: #a31515"&gt;Target&lt;/span&gt;&lt;span style="color: blue"&gt;&amp;gt;
&lt;/span&gt;&lt;/pre&gt;
    &lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;&lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;&lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;&lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;&lt;/li&gt;

  &lt;li&gt;The ILMergeLambdasConsole project was modified to reference the MathLib.dll located in the MathLib folder above. &lt;/li&gt;

  &lt;li&gt;ILMerge and ILMerge.exe.config was copied into the ILMerge folder shown above.  The contents of ILMerge.exe.config are: 
    &lt;pre class="code"&gt;&lt;span style="color: blue"&gt;&amp;lt;?&lt;/span&gt;&lt;span style="color: #a31515"&gt;xml &lt;/span&gt;&lt;span style="color: red"&gt;version&lt;/span&gt;&lt;span style="color: blue"&gt;=&lt;/span&gt;"&lt;span style="color: blue"&gt;1.0&lt;/span&gt;" &lt;span style="color: red"&gt;encoding&lt;/span&gt;&lt;span style="color: blue"&gt;=&lt;/span&gt;"&lt;span style="color: blue"&gt;utf-8&lt;/span&gt;" &lt;span style="color: blue"&gt;?&amp;gt;
&amp;lt;&lt;/span&gt;&lt;span style="color: #a31515"&gt;configuration&lt;/span&gt;&lt;span style="color: blue"&gt;&amp;gt;
  &amp;lt;&lt;/span&gt;&lt;span style="color: #a31515"&gt;startup &lt;/span&gt;&lt;span style="color: red"&gt;useLegacyV2RuntimeActivationPolicy&lt;/span&gt;&lt;span style="color: blue"&gt;=&lt;/span&gt;"&lt;span style="color: blue"&gt;true&lt;/span&gt;"&lt;span style="color: blue"&gt;&amp;gt;
    &amp;lt;&lt;/span&gt;&lt;span style="color: #a31515"&gt;requiredRuntime &lt;/span&gt;&lt;span style="color: red"&gt;safemode&lt;/span&gt;&lt;span style="color: blue"&gt;=&lt;/span&gt;"&lt;span style="color: blue"&gt;true&lt;/span&gt;" &lt;span style="color: red"&gt;imageVersion&lt;/span&gt;&lt;span style="color: blue"&gt;=&lt;/span&gt;"&lt;span style="color: blue"&gt;v4.0.30319&lt;/span&gt;" &lt;span style="color: red"&gt;version&lt;/span&gt;&lt;span style="color: blue"&gt;=&lt;/span&gt;"&lt;span style="color: blue"&gt;v4.0.30319&lt;/span&gt;"&lt;span style="color: blue"&gt;/&amp;gt;
  &amp;lt;/&lt;/span&gt;&lt;span style="color: #a31515"&gt;startup&lt;/span&gt;&lt;span style="color: blue"&gt;&amp;gt;
&amp;lt;/&lt;/span&gt;&lt;span style="color: #a31515"&gt;configuration&lt;/span&gt;&lt;span style="color: blue"&gt;&amp;gt;
&lt;/span&gt;&lt;/pre&gt;
  &lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;&lt;font color="#0000ff" size="3"&gt;Post-ILMerge&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;After compiling and building, the MathLib.dll assembly will be merged into the ILMergeLambdasConsole executable.  Unfortunately, executing ILMergeLambdasConsole.exe now results in a crash.  The ILMerge documentation recommends using &lt;a href="http://msdn.microsoft.com/en-us/library/62bwd2yd(VS.80).aspx"&gt;PEVerify.exe&lt;/a&gt; to validate assemblies after merging.  Executing PEVerify.exe against the ILMergeLambdasConsole.exe assembly results in the following error:&lt;/p&gt;

&lt;p&gt;   &lt;a href="http://geekswithblogs.net/images/geekswithblogs_net/jblumenauer/WindowsLiveWriter/ILMergeLambdaExpressionsandVS2010_136B8/image_12.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://geekswithblogs.net/images/geekswithblogs_net/jblumenauer/WindowsLiveWriter/ILMergeLambdaExpressionsandVS2010_136B8/image_thumb_5.png" width="628" height="319" /&gt;&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;Further investigation by using &lt;a href="http://reflector.red-gate.com/download.aspx"&gt;Reflector&lt;/a&gt; reveals the divisibleBy method in the MathHelpers class looks a bit questionable after the merge.&lt;/p&gt;

&lt;p&gt;&lt;a href="http://geekswithblogs.net/images/geekswithblogs_net/jblumenauer/WindowsLiveWriter/ILMergeLambdaExpressionsandVS2010_136B8/image_14.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://geekswithblogs.net/images/geekswithblogs_net/jblumenauer/WindowsLiveWriter/ILMergeLambdaExpressionsandVS2010_136B8/image_thumb_6.png" width="639" height="583" /&gt;&lt;/a&gt;    &lt;/p&gt;

&lt;p&gt;Prior to using ILMerge, the same divisibleBy method appeared as the following in Reflector:&lt;/p&gt;

&lt;p&gt;&lt;a href="http://geekswithblogs.net/images/geekswithblogs_net/jblumenauer/WindowsLiveWriter/ILMergeLambdaExpressionsandVS2010_136B8/image_16.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://geekswithblogs.net/images/geekswithblogs_net/jblumenauer/WindowsLiveWriter/ILMergeLambdaExpressionsandVS2010_136B8/image_thumb_7.png" width="646" height="488" /&gt;&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;It’s pretty obvious something has gone awry during the merge process.  However, this is only occurring when building within the Visual Studio 2010 environment.  The same code and configuration built within Visual Studio 2008 executes fine.  I’m still investigating the issue.  If anyone has already experienced this situation and solved it, I would love to hear from you.  However, as of right now, it looks like something has gone terribly wrong when executing ILMerge against assemblies containing Lambdas in Visual Studio 2010.&lt;/p&gt;

&lt;div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:fb3a1972-4489-4e52-abe7-25a00bb07fdf:2ad4be79-65db-4b29-9ec3-71ad15980b0f" class="wlWriterEditableSmartContent"&gt;&lt;p&gt;Solution Files &lt;a href="http://geekswithblogs.net/images/geekswithblogs_net/jblumenauer/WindowsLiveWriter/ILMergeLambdaExpressionsandVS2010_136B8/ILMergeLambdaExpressions.zip" target="_blank"&gt;ILMergeLambdaExpression&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;&lt;font color="#008000" size="5"&gt;RESOLUTION&lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;After some correspondence with Mike Barnett from Microsoft, he suggested using the /targetplatform option instead of the ILMerge.exe configuration file.&lt;/p&gt;

&lt;p&gt;Ex.&lt;/p&gt;

&lt;p&gt;&amp;gt;ILMerge.exe &lt;strong&gt;/targetplatform:v4,c:\Windows\Microsoft.NET\Framework\v4.0.30319&lt;/strong&gt; /out:foo.exe Program.exe MathLib.dll&lt;/p&gt;

&lt;p&gt;I added the /targetplatform option to my project file target section:&lt;/p&gt;

&lt;pre class="code"&gt;  &lt;span style="color: blue"&gt;&amp;lt;&lt;/span&gt;&lt;span style="color: #a31515"&gt;Target &lt;/span&gt;&lt;span style="color: red"&gt;Name&lt;/span&gt;&lt;span style="color: blue"&gt;=&lt;/span&gt;"&lt;span style="color: blue"&gt;AfterBuild&lt;/span&gt;" &lt;span style="color: red"&gt;Condition&lt;/span&gt;&lt;span style="color: blue"&gt;=&lt;/span&gt;"&lt;span style="color: blue"&gt;'$(Configuration)' == 'Release'&lt;/span&gt;"&lt;span style="color: blue"&gt;&amp;gt;
    &amp;lt;&lt;/span&gt;&lt;span style="color: #a31515"&gt;Exec &lt;/span&gt;&lt;span style="color: red"&gt;Command&lt;/span&gt;&lt;span style="color: blue"&gt;=&lt;/span&gt;"&lt;span style="color: red"&gt;&amp;amp;quot;&lt;/span&gt;&lt;span style="color: blue"&gt;..\..\lib\ILMerge\Ilmerge.exe&lt;/span&gt;&lt;span style="color: red"&gt;&amp;amp;quot; &lt;/span&gt;&lt;span style="color: blue"&gt;/targetplatform:v4,c:\Windows\Microsoft.NET\Framework\v4.0.30319 
      /ndebug /out:@(MainAssembly) &lt;/span&gt;&lt;span style="color: red"&gt;&amp;amp;quot;&lt;/span&gt;&lt;span style="color: blue"&gt;@(IntermediateAssembly)&lt;/span&gt;&lt;span style="color: red"&gt;&amp;amp;quot; &lt;/span&gt;&lt;span style="color: blue"&gt;@(ReferenceCopyLocalPaths-&amp;gt;'&lt;/span&gt;&lt;span style="color: red"&gt;&amp;amp;quot;&lt;/span&gt;&lt;span style="color: blue"&gt;%(FullPath)&lt;/span&gt;&lt;span style="color: red"&gt;&amp;amp;quot;&lt;/span&gt;&lt;span style="color: blue"&gt;', ' ')&lt;/span&gt;" &lt;span style="color: blue"&gt;/&amp;gt;
    &amp;lt;&lt;/span&gt;&lt;span style="color: #a31515"&gt;Delete &lt;/span&gt;&lt;span style="color: red"&gt;Files&lt;/span&gt;&lt;span style="color: blue"&gt;=&lt;/span&gt;"&lt;span style="color: blue"&gt;@(ReferenceCopyLocalPaths-&amp;gt;'$(OutDir)%(DestinationSubDirectory)%(Filename)%(Extension)')&lt;/span&gt;" &lt;span style="color: blue"&gt;/&amp;gt;
  &amp;lt;/&lt;/span&gt;&lt;span style="color: #a31515"&gt;Target&lt;/span&gt;&lt;span style="color: blue"&gt;&amp;gt;
&lt;/span&gt;&lt;/pre&gt;
&lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;&lt;a href="http://11011.net/software/vspaste"&gt;&lt;/a&gt;

&lt;p&gt;After adding this to the project file and deleting my ILMerge configuration file, everything worked fine, including the verification by PEVerify.&lt;/p&gt;

&lt;div style="padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px" id="scid:fb3a1972-4489-4e52-abe7-25a00bb07fdf:d6360a1a-ad7d-4c8c-a18b-e81dfa238b46" class="wlWriterEditableSmartContent"&gt;&lt;p&gt;Updated Solution Files &lt;a href="http://geekswithblogs.net/images/geekswithblogs_net/jblumenauer/WindowsLiveWriter/ILMergeLambdaExpressionsandVS2010_136B8/ILmergeLambdaExpressionsUpdated.zip" target="_blank"&gt;ILMergeLambdaExpressionUpdated&lt;/a&gt;&lt;/p&gt;&lt;/div&gt;

&lt;p&gt;Thanks Mike!&lt;/p&gt; &lt;img src="http://geekswithblogs.net/jblumenauer/aggbug/140407.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>John Blumenauer</dc:creator>
            <guid>http://geekswithblogs.net/jblumenauer/archive/2010/06/15/issues-with-ilmerge-lambda-expressions-and-vs2010-merging.aspx</guid>
            <pubDate>Tue, 15 Jun 2010 04:15:38 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/jblumenauer/comments/140407.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/jblumenauer/archive/2010/06/15/issues-with-ilmerge-lambda-expressions-and-vs2010-merging.aspx#feedback</comments>
            <slash:comments>1</slash:comments>
            <wfw:commentRss>http://geekswithblogs.net/jblumenauer/comments/commentRss/140407.aspx</wfw:commentRss>
        </item>
        <item>
            <title>NoVa Code Camp 2010.1 Building Extensible Silverlight Apps with MEF</title>
            <category>Code Camp Presentations</category>
            <link>http://geekswithblogs.net/jblumenauer/archive/2010/06/12/nova-code-camp-2010.1-building-extensible-silverlight-apps-with-mef.aspx</link>
            <description>&lt;p&gt; A big thanks to everyone who attended my “&lt;a href="http://novacodecamp.org/RecentCodeCamps/NovaCodeCamp201001/Sessions/tabid/197/Default.aspx"&gt;Building Extensible Silverlight Apps with MEF&lt;/a&gt;” session today at &lt;a href="http://novacodecamp.org/Home/tabid/36/Default.aspx"&gt;NoVa Code Camp 2010.1&lt;/a&gt;.  I always enjoy presenting sessions where the attendees already have the wheels turning about how to use concepts being presented in their applications.  It makes for a really interactive session.  The slide and code can be found &lt;a href="http://cid-6b4837b7be79d339.office.live.com/browse.aspx/NoVa%20Code%20Camp%202010.1"&gt;HERE&lt;/a&gt;.&lt;/p&gt; &lt;img src="http://geekswithblogs.net/jblumenauer/aggbug/140379.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>John Blumenauer</dc:creator>
            <guid>http://geekswithblogs.net/jblumenauer/archive/2010/06/12/nova-code-camp-2010.1-building-extensible-silverlight-apps-with-mef.aspx</guid>
            <pubDate>Sun, 13 Jun 2010 02:28:15 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/jblumenauer/comments/140379.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/jblumenauer/archive/2010/06/12/nova-code-camp-2010.1-building-extensible-silverlight-apps-with-mef.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/jblumenauer/comments/commentRss/140379.aspx</wfw:commentRss>
        </item>
        <item>
            <title>NoVa Code Camp 2010.1 &amp;ndash; Don&amp;rsquo;t Miss It!</title>
            <category>Code Camp Presentations</category>
            <link>http://geekswithblogs.net/jblumenauer/archive/2010/06/11/nova-code-camp-2010.1-ndash-donrsquot-miss-it.aspx</link>
            <description>&lt;p&gt;Tomorrow, June 12th will be the &lt;a href="http://novacodecamp.org/Home/tabid/36/Default.aspx"&gt;NoVa Code Camp 2010.1&lt;/a&gt; held at the Microsoft Technical Center in Reston, VA.  What’s in store?  Lots of great topics by some truly knowledgeable speakers from the mid-Atlantic region.  This event will have four talks alone on Azure, plus sessions ASP.NET MVC2, SharePoint, WP7, Silverlight, MEF, WCF and some great presentations centered around best practices and design.&lt;/p&gt;  &lt;p&gt;The schedule can be found at:  &lt;a title="http://novacodecamp.org/RecentCodeCamps/NovaCodeCamp201001/Schedule/tabid/202/Default.aspx" href="http://novacodecamp.org/RecentCodeCamps/NovaCodeCamp201001/Schedule/tabid/202/Default.aspx"&gt;http://novacodecamp.org/RecentCodeCamps/NovaCodeCamp201001/Schedule/tabid/202/Default.aspx&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;The session descriptions and speaker list is at:  &lt;a title="http://novacodecamp.org/RecentCodeCamps/NovaCodeCamp201001/Sessions/tabid/197/Default.aspx" href="http://novacodecamp.org/RecentCodeCamps/NovaCodeCamp201001/Sessions/tabid/197/Default.aspx"&gt;http://novacodecamp.org/RecentCodeCamps/NovaCodeCamp201001/Sessions/tabid/197/Default.aspx&lt;/a&gt;&lt;/p&gt;  &lt;p&gt;We’re also fortunate this year to have several excellent sponsors.  The sponsor list can be found at:  &lt;a title="http://novacodecamp.org/RecentCodeCamps/NovaCodeCamp201001/Sponsors/tabid/198/Default.aspx" href="http://novacodecamp.org/RecentCodeCamps/NovaCodeCamp201001/Sponsors/tabid/198/Default.aspx"&gt;http://novacodecamp.org/RecentCodeCamps/NovaCodeCamp201001/Sponsors/tabid/198/Default.aspx&lt;/a&gt;.  As a result of the excellent sponsors, attendees will be enjoying nice food throughout the day and the end of day raffle will have some great surprises regarding swag!&lt;/p&gt;  &lt;p&gt;I’ll be presenting MEF with an introduction and then how it can be used to extend Silverlight applications.  If you’re new to MEF and/or Silverlight, don’t worry.  I’ll be easing into the concepts so everyone will leave an understanding of MEF by the end of the session.&lt;/p&gt;  &lt;p&gt; &lt;/p&gt;  &lt;p&gt;Don’t miss NoVa Code Camp 2010.1.  See YOU there!&lt;/p&gt; &lt;img src="http://geekswithblogs.net/jblumenauer/aggbug/140350.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>John Blumenauer</dc:creator>
            <guid>http://geekswithblogs.net/jblumenauer/archive/2010/06/11/nova-code-camp-2010.1-ndash-donrsquot-miss-it.aspx</guid>
            <pubDate>Fri, 11 Jun 2010 12:26:08 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/jblumenauer/comments/140350.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/jblumenauer/archive/2010/06/11/nova-code-camp-2010.1-ndash-donrsquot-miss-it.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/jblumenauer/comments/commentRss/140350.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Frederick .NET User Group June 2010 Meeting</title>
            <category>Frederick .NET User Group</category>
            <link>http://geekswithblogs.net/jblumenauer/archive/2010/06/10/frederick-.net-user-group-june-2010-meeting.aspx</link>
            <description>&lt;p&gt;&lt;a href="http://frednug.org/" target="_blank"&gt;FredNUG&lt;/a&gt; is pleased to announce our June speaker will be &lt;a href="http://10rem.net/"&gt;Pete Brown&lt;/a&gt;.  Pete was one of FredNUG’s first speakers when the group started and we’re very happy to have him visiting us again to present on Silverlight!  On June 15th @ 6:30 PM, we’ll start with a Visual Studio 2010 Launch with pizza, swag and a presentation about what makes Visual Studio 2010 great.  Then, starting at 7 PM, &lt;a href="http://10rem.net/"&gt;Pete Brown&lt;/a&gt; will present “&lt;strong&gt;What’s New in Silverlight 4.”  &lt;/strong&gt;It looks like an evening filled with newness!&lt;strong&gt;   &lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;The scheduled agenda is:   &lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;font size="3"&gt;&lt;strong&gt;6:30 PM - 7:15 PM – Visual Studio 2010 Launch Event plus Pizza/Social Networking/Announcements&lt;/strong&gt; &lt;/font&gt;&lt;/li&gt;    &lt;li&gt;&lt;font size="3"&gt;&lt;strong&gt;7:15 PM - 8:30 PM - Main Topic:&lt;/strong&gt; &lt;strong&gt;What’s New in Silverlight 4 with Pete Brown&lt;/strong&gt;  &lt;/font&gt;&lt;/li&gt; &lt;/ul&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;strong&gt;&lt;font size="3"&gt;Main Topic:  &lt;/font&gt;&lt;/strong&gt;&lt;/p&gt;    &lt;p&gt;&lt;em&gt;&lt;strong&gt;&lt;font size="3"&gt;What’s New in Silverlight 4?&lt;/font&gt;&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;    &lt;p&gt;&lt;img style="margin: 0px 15px 0px 0px; display: inline" align="left" src="http://10rem.net/pub/blog/pmb_headshot_full_square_black_bg_color.jpg" width="100" height="100" /&gt;&lt;strong&gt;Speaker Bio: &lt;/strong&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;blockquote&gt;   &lt;p&gt;Pete Brown is a Senior Program Manager with Microsoft on the developer community team led by Scott Hanselman, as well as a former Microsoft Silverlight MVP, INETA speaker, and RIA Architect for Applied Information Sciences, where he worked for over 13 years. Pete's focus at Microsoft is the community around client application development (WPF, Silverlight, Windows Phone, Surface, Windows Forms, C++, Native Windows API and more).&lt;/p&gt;    &lt;p&gt;From his first sprite graphics and custom character sets on the Commodore 64 to 3d modeling and design through to Silverlight, Surface, XNA, and WPF, Pete has always had a deep interest in programming, design, and user experience. His involvement in Silverlight goes back to the Silverlight 1.1 alpha application that he co-wrote and put into production in July 2007. Pete has been programming for fun since 1984, and professionally since 1992.&lt;/p&gt;    &lt;p&gt;In his spare time, Pete enjoys programming, blogging, designing and building his own woodworking projects and raising his two children with his wife in the suburbs of Maryland. Pete's site and blog is &lt;a&gt;&lt;/a&gt;at 10rem.net, and you can follow him on Twitter at &lt;a href="http://twitter.com/pete_brown"&gt;http://twitter.com/pete_brown&lt;/a&gt;&lt;/p&gt;    &lt;ul&gt;     &lt;li&gt;Twitter: &lt;a href="http://twitter.com/pete_brown"&gt;http://twitter.com/pete_brown&lt;/a&gt; &lt;/li&gt;      &lt;li&gt;Facebook: &lt;a href="http://www.facebook.com/pmbrown"&gt;http://www.facebook.com/pmbrown&lt;/a&gt; &lt;/li&gt;   &lt;/ul&gt;    &lt;p&gt;Pete is a founding member of the CapArea .NET Silverlight SIG. (&lt;a href="http://www.caparea.net/silverlight"&gt;Visit the CapArea. NET Silverlight SIG here&lt;/a&gt; )&lt;/p&gt;    &lt;p&gt;&lt;a href="http://www.kevgriffin.com"&gt;&lt;/a&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt; &lt;/p&gt;  &lt;ul&gt;   &lt;li&gt; &lt;strong&gt;8:30 PM - 8:45 PM – RAFFLE!&lt;/strong&gt; &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;Please join us and get involved in our .NET developers community! &lt;/p&gt; &lt;img src="http://geekswithblogs.net/jblumenauer/aggbug/140330.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>John Blumenauer</dc:creator>
            <guid>http://geekswithblogs.net/jblumenauer/archive/2010/06/10/frederick-.net-user-group-june-2010-meeting.aspx</guid>
            <pubDate>Thu, 10 Jun 2010 12:19:06 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/jblumenauer/comments/140330.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/jblumenauer/archive/2010/06/10/frederick-.net-user-group-june-2010-meeting.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/jblumenauer/comments/commentRss/140330.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Materials from Parallel Programming Pattern Presentation at Charlottesville .NET User Group Meeting</title>
            <category>Code Camp Presentations</category>
            <link>http://geekswithblogs.net/jblumenauer/archive/2010/05/28/materials-from-parallel-programming-pattern-presentation-at-charlottesville-.net-user.aspx</link>
            <description>&lt;p&gt;On Thursday, May 27, I had the privilege of presenting “A Look at Parallel Programming Patterns” at the &lt;a href="http://chodotnet.com/cs2007/Default.aspx"&gt;Charlottesville .NET User Group’s&lt;/a&gt; monthly meeting.  Those folks in attendance had many great questions and were obviously very interested in what the Parallel Task Library has to offer.  The code and slides can be found &lt;a href="http://cid-6b4837b7be79d339.skydrive.live.com/browse.aspx/Charlottesville%20.NET%20UG?nl=1&amp;amp;uc=1&amp;amp;isFromRichUpload=1"&gt;HERE&lt;/a&gt;.  Thanks again to &lt;a href="http://chodotnet.com/cs2007/Default.aspx"&gt;CHODOTNET&lt;/a&gt; for having me in town to speak.  If you experience any problems downloading the slides or code, please let me know.&lt;/p&gt; &lt;img src="http://geekswithblogs.net/jblumenauer/aggbug/140124.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>John Blumenauer</dc:creator>
            <guid>http://geekswithblogs.net/jblumenauer/archive/2010/05/28/materials-from-parallel-programming-pattern-presentation-at-charlottesville-.net-user.aspx</guid>
            <pubDate>Fri, 28 May 2010 11:35:24 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/jblumenauer/comments/140124.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/jblumenauer/archive/2010/05/28/materials-from-parallel-programming-pattern-presentation-at-charlottesville-.net-user.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/jblumenauer/comments/commentRss/140124.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Richmond Code Camp 2010.1 &amp;ndash; Developing WPF Applications using Model-View-ViewModel</title>
            <category>Code Camp Presentations</category>
            <link>http://geekswithblogs.net/jblumenauer/archive/2010/05/22/richmond-code-camp-2010.1-ndash-developing-wpf-applications-using-model-view-viewmodel.aspx</link>
            <description>&lt;p&gt;The code and slides from my Developing WPF Applications using Model-View-ViewModel session at &lt;a href="http://richmondcodecamp.org/" target="_blank"&gt;Richmond Code Camp&lt;/a&gt; can be found &lt;a href="http://bit.ly/cHG8SE"&gt;HERE&lt;/a&gt;. During the session, a number of the attendees had some really great questions which tells me they’re really thinking about how to start using MVVM in their own apps.  I’ll be interested to hear feedback as they start investigating and introducing MVVM in their applications.  If you experience any problems downloading the slides or code, please let me know.&lt;/p&gt; &lt;img src="http://geekswithblogs.net/jblumenauer/aggbug/140018.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>John Blumenauer</dc:creator>
            <guid>http://geekswithblogs.net/jblumenauer/archive/2010/05/22/richmond-code-camp-2010.1-ndash-developing-wpf-applications-using-model-view-viewmodel.aspx</guid>
            <pubDate>Sun, 23 May 2010 03:01:34 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/jblumenauer/comments/140018.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/jblumenauer/archive/2010/05/22/richmond-code-camp-2010.1-ndash-developing-wpf-applications-using-model-view-viewmodel.aspx#feedback</comments>
            <slash:comments>1</slash:comments>
            <wfw:commentRss>http://geekswithblogs.net/jblumenauer/comments/commentRss/140018.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Richmond Code Camp 2010.1 &amp;ndash; A Lap Around MEF</title>
            <category>Code Camp Presentations</category>
            <link>http://geekswithblogs.net/jblumenauer/archive/2010/05/22/richmond-code-camp-2010.1-ndash-a-lap-around-mef.aspx</link>
            <description>&lt;p&gt;Thanks to all the attendees who came to my Lap Around MEF session at &lt;a href="http://richmondcodecamp.org/" target="_blank"&gt;Richmond Code Camp&lt;/a&gt; today.   It seems many developers are seeking ways to make their applications more dynamic and extensible.  Hopefully, I provided them with a number of ideas on to get started with MEF and utilize it to tackle this challenge.  The slides from my session can be found &lt;a href="http://bit.ly/ayP3R2"&gt;HERE&lt;/a&gt;.  If you experience any problems downloading the slides or code, please let me know.&lt;/p&gt; &lt;img src="http://geekswithblogs.net/jblumenauer/aggbug/140017.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>John Blumenauer</dc:creator>
            <guid>http://geekswithblogs.net/jblumenauer/archive/2010/05/22/richmond-code-camp-2010.1-ndash-a-lap-around-mef.aspx</guid>
            <pubDate>Sun, 23 May 2010 02:52:35 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/jblumenauer/comments/140017.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/jblumenauer/archive/2010/05/22/richmond-code-camp-2010.1-ndash-a-lap-around-mef.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/jblumenauer/comments/commentRss/140017.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Frederick .NET User Group May 2010 Meeting</title>
            <category>Frederick .NET User Group</category>
            <link>http://geekswithblogs.net/jblumenauer/archive/2010/05/11/frederick-.net-user-group-may-2010-meeting.aspx</link>
            <description>&lt;p&gt;&lt;a href="http://frednug.org/" target="_blank"&gt;FredNUG&lt;/a&gt; is pleased to announce our May speaker will be &lt;a href="http://www.kevgriffin.com" target="_blank"&gt;Kevin Griffin&lt;/a&gt;.  Kevin has been speaking at several community events this spring and we’re pleased he’s stopping by FredNUG to present at our May meeting.  On May 18th, we’ll start with pizza and social networking at 6:30 PM.  Then, starting at 7 PM, &lt;a href="http://www.kevgriffin.com/blog/" target="_blank"&gt;Kevin Griffin&lt;/a&gt; will present “&lt;strong&gt;Awesomize Your Windows Apps.”   &lt;/strong&gt;&lt;/p&gt;  &lt;p&gt;The scheduled agenda is:   &lt;/p&gt;  &lt;ul&gt;   &lt;li&gt;&lt;strong&gt;6:30 PM - 7:00 PM - Pizza/Social Networking/Announcements&lt;/strong&gt; &lt;/li&gt;    &lt;li&gt;&lt;strong&gt;7:00 PM - 8:30 PM - Main Topic:&lt;/strong&gt; &lt;b&gt;&lt;strong&gt;Awesomize Your Windows Apps&lt;/strong&gt; with Kevin Griffin&lt;/b&gt;  &lt;/li&gt; &lt;/ul&gt;  &lt;blockquote&gt;   &lt;p&gt;&lt;strong&gt;Main Topic Description:  &lt;/strong&gt;&lt;/p&gt;    &lt;p&gt;&lt;em&gt;&lt;strong&gt;Awesomize Your Windows Apps&lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;    &lt;p&gt;With the release of Windows 7, many developers might be looking to take advantage of the features Windows 7 offers. This presentation offers attendees a broad overview of the Windows API Code Pack, which is a managed library for .NET developers to use for accessing some of the underlying functionality of Windows that was typically reserved for Interop fans. Topics and demos include Windows 7 taskbar functionality, Task dialogs, Libraries support, and more.&lt;/p&gt;    &lt;p&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;blockquote&gt;   &lt;p align="left"&gt;&lt;img style="margin: 0px 15px 10px 0px; display: inline" alt="Kevin Griffin" align="left" src="http://codecamp.phillydotnet.org/2009-2/Pictures/KevinGriffin.png" /&gt;&lt;strong&gt;Speaker Bio: &lt;/strong&gt;&lt;/p&gt;    &lt;p&gt;Kevin Griffin is a .NET Developer for Antech Systems, located in Chesapeake, VA. He's an ASPInsider and the leader of the Hampton Roads .NET Users Group. Additionally, he serves as an INETA mentor for the state of Virginia. Often, he can be found speaking at or attending other local user group meetings or code camps. He enjoys working with new technology, and consistently works on being a better developer and building the best software he can.&lt;/p&gt;    &lt;p&gt;Follow Kevin on Twitter: &lt;a href="http://www.twitter.com/1kevgriff"&gt;http://www.twitter.com/1kevgriff&lt;/a&gt;&lt;/p&gt;    &lt;p&gt;Read Kevin's Blog: &lt;a href="http://www.kevgriffin.com"&gt;http://www.kevgriffin.com&lt;/a&gt;&lt;/p&gt; &lt;/blockquote&gt;  &lt;p&gt; &lt;/p&gt;  &lt;ul&gt;   &lt;li&gt; &lt;strong&gt;8:30 PM - 8:45 PM – RAFFLE!&lt;/strong&gt; &lt;/li&gt; &lt;/ul&gt;  &lt;p&gt;Please join us and get involved in our .NET developers community! &lt;/p&gt; &lt;img src="http://geekswithblogs.net/jblumenauer/aggbug/139750.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>John Blumenauer</dc:creator>
            <guid>http://geekswithblogs.net/jblumenauer/archive/2010/05/11/frederick-.net-user-group-may-2010-meeting.aspx</guid>
            <pubDate>Tue, 11 May 2010 11:17:02 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/jblumenauer/comments/139750.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/jblumenauer/archive/2010/05/11/frederick-.net-user-group-may-2010-meeting.aspx#feedback</comments>
            <wfw:commentRss>http://geekswithblogs.net/jblumenauer/comments/commentRss/139750.aspx</wfw:commentRss>
        </item>
        <item>
            <title>Exciting New Job Announcement!</title>
            <category>Career</category>
            <link>http://geekswithblogs.net/jblumenauer/archive/2010/04/14/exciting-new-job-announcement.aspx</link>
            <description>&lt;p&gt;I’m extremely excited to announce that I’ve accepted a position with &lt;a href="http://appliedis.com/" target="_blank"&gt;Applied Information Sciences (AIS).&lt;/a&gt;  The innovative work and company values at &lt;a href="http://appliedis.com" target="_blank"&gt;AIS&lt;/a&gt; are aligned with what I was seeking in my next position.  Also, over the past year or so, I’ve met some really talented individuals who work at &lt;a href="http://appliedis.com/" target="_blank"&gt;AIS&lt;/a&gt;, so when the opportunity presented itself, I decided it was time to make a change. &lt;/p&gt;  &lt;p&gt;I look forward to the challenges ahead and working with a team of highly talented and motivated individuals.     &lt;/p&gt; &lt;img src="http://geekswithblogs.net/jblumenauer/aggbug/139253.aspx" width="1" height="1" /&gt;</description>
            <dc:creator>John Blumenauer</dc:creator>
            <guid>http://geekswithblogs.net/jblumenauer/archive/2010/04/14/exciting-new-job-announcement.aspx</guid>
            <pubDate>Wed, 14 Apr 2010 12:29:01 GMT</pubDate>
            <wfw:comment>http://geekswithblogs.net/jblumenauer/comments/139253.aspx</wfw:comment>
            <comments>http://geekswithblogs.net/jblumenauer/archive/2010/04/14/exciting-new-job-announcement.aspx#feedback</comments>
            <slash:comments>1</slash:comments>
            <wfw:commentRss>http://geekswithblogs.net/jblumenauer/comments/commentRss/139253.aspx</wfw:commentRss>
        </item>
    </channel>
</rss>
