<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>.Net Framework Addons</title><link>http://fadd.codeplex.com/project/feeds/rss</link><description>Replaced with all Griffin.&amp;#42; projects at github&amp;#58; http&amp;#58;&amp;#47;&amp;#47;github.com&amp;#47;jgauffin</description><item><title>Source code checked in, #80132</title><link>http://fadd.codeplex.com/SourceControl/changeset/changes/80132</link><description>Upgrade&amp;#58; New Version of LabDefaultTemplate.xaml. To upgrade your build definitions, please visit the following link&amp;#58; http&amp;#58;&amp;#47;&amp;#47;go.microsoft.com&amp;#47;fwlink&amp;#47;&amp;#63;LinkId&amp;#61;254563</description><author>Project Collection Service Accounts</author><pubDate>Mon, 01 Oct 2012 21:49:39 GMT</pubDate><guid isPermaLink="false">Source code checked in, #80132 20121001094939P</guid></item><item><title>Source code checked in, #80131</title><link>http://fadd.codeplex.com/SourceControl/changeset/changes/80131</link><description>Checked in by server upgrade</description><author>Project Collection Service Accounts</author><pubDate>Mon, 01 Oct 2012 21:43:10 GMT</pubDate><guid isPermaLink="false">Source code checked in, #80131 20121001094310P</guid></item><item><title>Updated Wiki: Home</title><link>http://fadd.codeplex.com/wikipage?version=14</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Fadd - .net Framework ADD-ons.&lt;/h1&gt;
&lt;br /&gt;Replaced by my Griffin.* prjects at github: &lt;a href="http://github.com/jgauffin"&gt;http://github.com/jgauffin&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>jgauffin</author><pubDate>Mon, 27 Aug 2012 05:35:54 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20120827053554A</guid></item><item><title>Updated Wiki: Home</title><link>http://fadd.codeplex.com/wikipage?version=13</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Fadd - .net Framework ADD-ons.&lt;/h1&gt;
Replaced by my Griffin.* prjects at github: &lt;a href="http://github.com/jgauffin"&gt;http://github.com/jgauffin&lt;/a&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>jgauffin</author><pubDate>Mon, 27 Aug 2012 05:35:39 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20120827053539A</guid></item><item><title>Source code checked in, #67972</title><link>http://fadd.codeplex.com/SourceControl/changeset/changes/67972</link><description></description><author>jgauffin</author><pubDate>Sun, 19 Jun 2011 17:49:11 GMT</pubDate><guid isPermaLink="false">Source code checked in, #67972 20110619054911P</guid></item><item><title>Source code checked in, #65227</title><link>http://fadd.codeplex.com/SourceControl/changeset/changes/65227</link><description></description><author>jgauffin</author><pubDate>Wed, 06 Apr 2011 09:39:38 GMT</pubDate><guid isPermaLink="false">Source code checked in, #65227 20110406093938A</guid></item><item><title>Source code checked in, #65100</title><link>http://fadd.codeplex.com/SourceControl/changeset/changes/65100</link><description>More refactorings</description><author>jgauffin</author><pubDate>Sun, 03 Apr 2011 20:21:19 GMT</pubDate><guid isPermaLink="false">Source code checked in, #65100 20110403082119P</guid></item><item><title>Updated Wiki: Logging</title><link>http://fadd.codeplex.com/wikipage?title=Logging&amp;version=1</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Logging&lt;/h1&gt;
A small logging framework with support for console and file logs. It can easily be extended with more types of logging targets.&lt;br /&gt;
&lt;h1&gt;Usage&lt;/h1&gt;
The quick and dirty solution would be to use the &lt;b&gt;SimpleLogManager&lt;/b&gt; to get everything working quickly. It&amp;#39;s not as powerful as the regular setup but will work for 90% of all users.&lt;br /&gt;&lt;br /&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
    &lt;span style="color:Blue;"&gt;class&lt;/span&gt; SimpleLogManagerTest
    {
        &lt;span style="color:Blue;"&gt;private&lt;/span&gt; ILogger _logger;

        &lt;span style="color:Blue;"&gt;public&lt;/span&gt; SimpleLogManagerTest()
        {
            &lt;span style="color:Green;"&gt;// true will create a console if it do not exist.&lt;/span&gt;
            &lt;span style="color:Green;"&gt;// perfect for debugging winfoms/wfp applications.&lt;/span&gt;
            SimpleLogManager.AddConsole(&lt;span style="color:Blue;"&gt;true&lt;/span&gt;);

            &lt;span style="color:Green;"&gt;// Will create a file log&lt;/span&gt;
            SimpleLogManager.AddFile(&lt;span style="color:#A31515;"&gt;&amp;quot;Mylog&amp;quot;&lt;/span&gt;);

            &lt;span style="color:Green;"&gt;// and assign a logger.&lt;/span&gt;
            _logger = LogManager.GetLogger&amp;lt;SimpleLogManagerTest&amp;gt;();
        }

        &lt;span style="color:Blue;"&gt;public&lt;/span&gt; &lt;span style="color:Blue;"&gt;void&lt;/span&gt; SomeMethod()
        {
            &lt;span style="color:Green;"&gt;// Logging isn&amp;#39;t harder than this.&lt;/span&gt;
            &lt;span style="color:Green;"&gt;// one method per log level&lt;/span&gt;
            _logger.Debug(&lt;span style="color:#A31515;"&gt;&amp;quot;We are in some method&amp;quot;&lt;/span&gt;);

            &lt;span style="color:Blue;"&gt;try&lt;/span&gt;
            {
                &lt;span style="color:Blue;"&gt;int&lt;/span&gt; a = 5/0;
            }
            &lt;span style="color:Blue;"&gt;catch&lt;/span&gt;(Exception err)
            {
                &lt;span style="color:Green;"&gt;// Exceptions are automatically formatted properly&lt;/span&gt;
                &lt;span style="color:Green;"&gt;// including all nested inner exceptions.&lt;/span&gt;
                _logger.Error(&lt;span style="color:#A31515;"&gt;&amp;quot;Oooops, something went wrong!&amp;quot;&lt;/span&gt;, err);
            }
        }
    }
&lt;/pre&gt;&lt;/div&gt;&lt;br /&gt;Output:&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>jgauffin</author><pubDate>Wed, 16 Mar 2011 19:36:23 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Logging 20110316073623P</guid></item><item><title>Updated Wiki: Home</title><link>http://fadd.codeplex.com/wikipage?version=12</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Fadd - .net Framework ADD-ons.&lt;/h1&gt;
This library is divided into two parts. &lt;b&gt;Specification&lt;/b&gt; and &lt;b&gt;Implementation&lt;/b&gt;. &lt;br /&gt;
&lt;h2&gt;Specification&lt;/h2&gt;
This assembly can be used of all kinds of projects to create an abstraction layer to your favorite tools. &lt;br /&gt;&lt;br /&gt;It currently contains abstractions for:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;InversionOfControl&lt;/li&gt;
&lt;li&gt;Logging&lt;/li&gt;
&lt;li&gt;Messaging (publish/subscribe system)&lt;/li&gt;&lt;/ul&gt;

&lt;h2&gt;Implementation&lt;/h2&gt;
Implementation implements all interfaces defined in Specification + some more.&lt;br /&gt;&lt;br /&gt;Current features:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://fadd.codeplex.com/wikipage?title=Logging&amp;referringTitle=Home"&gt;Logging&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Messaging&lt;/li&gt;
&lt;li&gt;Remoting&lt;/li&gt;
&lt;li&gt;Simplified network communication&lt;/li&gt;&lt;/ul&gt;
&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>jgauffin</author><pubDate>Wed, 16 Mar 2011 07:03:07 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110316070307A</guid></item><item><title>Source code checked in, #58976</title><link>http://fadd.codeplex.com/SourceControl/changeset/changes/58976</link><description>Some changes, some things will be broken until next commit.</description><author>jgauffin</author><pubDate>Sun, 31 Oct 2010 15:38:54 GMT</pubDate><guid isPermaLink="false">Source code checked in, #58976 20101031033854P</guid></item><item><title>Source code checked in, #58859</title><link>http://fadd.codeplex.com/SourceControl/changeset/changes/58859</link><description>Cleaned up the simple server a bit.</description><author>jgauffin</author><pubDate>Wed, 27 Oct 2010 19:30:49 GMT</pubDate><guid isPermaLink="false">Source code checked in, #58859 20101027073049P</guid></item><item><title>Source code checked in, #58858</title><link>http://fadd.codeplex.com/SourceControl/changeset/changes/58858</link><description></description><author>jgauffin</author><pubDate>Wed, 27 Oct 2010 19:06:59 GMT</pubDate><guid isPermaLink="false">Source code checked in, #58858 20101027070659P</guid></item><item><title>Source code checked in, #58857</title><link>http://fadd.codeplex.com/SourceControl/changeset/changes/58857</link><description>Inital commit of new trunk. Far from complete.</description><author>jgauffin</author><pubDate>Wed, 27 Oct 2010 18:36:50 GMT</pubDate><guid isPermaLink="false">Source code checked in, #58857 20101027063650P</guid></item><item><title>Source code checked in, #55373</title><link>http://fadd.codeplex.com/SourceControl/changeset/changes/55373</link><description>Checked in by server upgrade</description><author>_TFSSERVICE</author><pubDate>Mon, 02 Aug 2010 22:49:34 GMT</pubDate><guid isPermaLink="false">Source code checked in, #55373 20100802104934P</guid></item><item><title>Source code checked in, #55202</title><link>http://fadd.codeplex.com/SourceControl/changeset/changes/55202</link><description></description><author>jgauffin</author><pubDate>Tue, 27 Jul 2010 11:32:56 GMT</pubDate><guid isPermaLink="false">Source code checked in, #55202 20100727113256A</guid></item><item><title>Updated Wiki: Home</title><link>http://fadd.codeplex.com/wikipage?version=11</link><description>&lt;div class="wikidoc"&gt;A set of classes that makes the life easier for developers. Currently contains&amp;#58; IoC, DAL&amp;#47;ORM, Model validation, localization, logging, parsers, design by contract.&lt;br /&gt;Feel free to contribute.&lt;br /&gt;&lt;br /&gt;Rebirth of the project. All old classes is available under tags\v1.1&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>jgauffin</author><pubDate>Tue, 27 Jul 2010 11:32:13 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20100727113213A</guid></item><item><title>Source code checked in, #55201</title><link>http://fadd.codeplex.com/SourceControl/changeset/changes/55201</link><description>Branched sine new version is being added.</description><author>jgauffin</author><pubDate>Tue, 27 Jul 2010 11:26:29 GMT</pubDate><guid isPermaLink="false">Source code checked in, #55201 20100727112629A</guid></item><item><title>Source code checked in, #43255</title><link>http://fadd.codeplex.com/SourceControl/changeset/view/43255</link><description>Changed XmlMappingReader</description><author>jgauffin</author><pubDate>Sun, 04 Apr 2010 07:11:58 GMT</pubDate><guid isPermaLink="false">Source code checked in, #43255 20100404071158A</guid></item><item><title>Source code checked in, #42311</title><link>http://fadd.codeplex.com/SourceControl/changeset/view/42311</link><description>TransactionWrapper now works</description><author>shizawana</author><pubDate>Thu, 11 Mar 2010 12:26:08 GMT</pubDate><guid isPermaLink="false">Source code checked in, #42311 20100311122608P</guid></item><item><title>Source code checked in, #39001</title><link>http://fadd.codeplex.com/SourceControl/changeset/view/39001</link><description>Signed Components and Logging</description><author>jgauffin</author><pubDate>Tue, 08 Dec 2009 10:59:52 GMT</pubDate><guid isPermaLink="false">Source code checked in, #39001 20091208105952A</guid></item></channel></rss>