<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>aiframe Wiki Rss Feed</title><link>http://aiframe.codeplex.com/</link><description>aiframe Wiki Rss Description</description><item><title>Updated Wiki: Home</title><link>http://aiframe.codeplex.com/wikipage?version=35</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Welcome to the AiFrame community site&lt;/h1&gt;AiFrame &amp;#40;Application Infrastructure Framework&amp;#41; is a framework for business applications. It was created to improve the productivity of the development process and provides best practices like a plugin manager, an application frame, support for nhibernate and a navigation bar.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=155506" alt="Architecture-Overview.jpg" title="Architecture-Overview.jpg" /&gt;&lt;br /&gt;
&lt;h2&gt;Features&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Plugin manager&lt;/li&gt;
&lt;li&gt;Predefined application frame&lt;/li&gt;
&lt;li&gt;Navigation bar, toolbar, main menu, status bar&lt;/li&gt;
&lt;li&gt;Support for application themes&lt;/li&gt;
&lt;li&gt;Product line support&lt;/li&gt;
&lt;li&gt;Configuration mode for configuring database changes or system updates&lt;/li&gt;
&lt;li&gt;Best practices / generic design patterns for business application&lt;/li&gt;
&lt;li&gt;Support for NHibernate&lt;/li&gt;&lt;/ul&gt;

&lt;h2&gt;Download&lt;/h2&gt;Click on the &amp;quot;Downloads&amp;quot; tab at the top of this page to access downloads for AiFrame.&lt;br /&gt;
&lt;h2&gt;Requirements&lt;/h2&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ab99342f-5d1a-413d-8319-81da479ab0d7" class="externalLink"&gt;Microsoft .NET Framework 3.5 SP1&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0a391abd-25c1-4fc0-919f-b21f31ab88b7&amp;amp;displaylang=en" class="externalLink"&gt;Microsoft .NET Framework 4.0&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http&amp;#58;&amp;#47;&amp;#47;www.aiframe.brilliantvision.de"&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=162548" alt="Aiframe&amp;#32;Website" title="Aiframe&amp;#32;Website" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;h1&gt;Usage instructions&lt;/h1&gt;
For your first business application we&amp;#39;ve set up a demo application which shows you some features like the plugin manager, the usage of the navigation bar and theming with AiFrame.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=198597" alt="Demo" title="Demo" /&gt;&lt;br /&gt;&lt;br /&gt;The first steps when using this framework are:
&lt;ol&gt;&lt;li&gt;Initializing AiFrame&lt;/li&gt;
&lt;li&gt;Creating a product line definition and a program theme&lt;/li&gt;
&lt;li&gt;Implementing the core logic and GUI of a plugin and adding the plugin in the Plugins.PluginManager.xml&lt;/li&gt;&lt;/ol&gt;
&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=198578" alt="AiFrame&amp;#32;Overview" title="AiFrame&amp;#32;Overview" /&gt;&lt;br /&gt;
&lt;h2&gt;1. Initializing AiFrame&lt;/h2&gt;
&lt;ul&gt;&lt;li&gt;Add a reference to the Base.Core assembly and initialize the framework.&lt;/li&gt;&lt;/ul&gt;
&lt;pre&gt;
public class CoreInitialization
    {
        public static void Initialize()
        {
            ConfigurationProxy.ApplicationName = &amp;quot;AiFrameDemo&amp;quot;;
            ConfigurationProxy.CompanyName = &amp;quot;MyCompany&amp;quot;;
            DatabaseConnection.Instance.HostAddress = &amp;quot;server&amp;quot;;
            DatabaseConnection.Instance.Database = &amp;quot;aiframe_demo&amp;quot;;
            DatabaseConnection.Instance.Username = &amp;quot;user&amp;quot;;
            DatabaseConnection.Instance.Password = &amp;quot;password&amp;quot;;
        }
    }
&lt;/pre&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Add a hibernate.cfg.xml to your project and activate the &amp;quot;Copy to output directory&amp;quot; property.&lt;/li&gt;&lt;/ul&gt;
&lt;pre&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; ?&amp;gt;
&amp;lt;hibernate-configuration xmlns=&amp;quot;urn:nhibernate-configuration-2.2&amp;quot;&amp;gt;
  &amp;lt;session-factory&amp;gt;
    &amp;lt;property name=&amp;quot;connection.provider&amp;quot;&amp;gt;NHibernate.Connection.DriverConnectionProvider&amp;lt;/property&amp;gt;
    &amp;lt;property name=&amp;quot;dialect&amp;quot;&amp;gt;NHibernate.Dialect.MsSql2005Dialect&amp;lt;/property&amp;gt;
    &amp;lt;property name=&amp;quot;connection.driver_class&amp;quot;&amp;gt;NHibernate.Driver.SqlClientDriver&amp;lt;/property&amp;gt;    
    &amp;lt;property name=&amp;quot;show_sql&amp;quot;&amp;gt;false&amp;lt;/property&amp;gt;
  &amp;lt;/session-factory&amp;gt;
&amp;lt;/hibernate-configuration&amp;gt;
&lt;/pre&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;In your executing assembly you have to reference the assemblies Base.Core, Base.WinUI and InterfaceLib. After that you can get your program running with&lt;/li&gt;&lt;/ul&gt;
&lt;pre&gt;
BaseInitialization baseInitialization = new BaseInitialization(args);
baseInitialization.PreInitialize();

CoreInitialization.Initialize();

baseInitialization.PostInitialize(new DefaultStartupView());
&lt;/pre&gt;&lt;br /&gt;The &lt;i&gt;PreInitialize&lt;/i&gt; method initializes the framework and loads all registered plugins, the &lt;i&gt;PostInitialize&lt;/i&gt; method opens the main window.&lt;br /&gt;
&lt;h2&gt;2. Product Line and Theme information&lt;/h2&gt;
In order to get the program starting properly you need the following two assemblies in your application directory:
&lt;ul&gt;&lt;li&gt;Policy.Productline.dll: Requires a public class which implements the IProductLine interface&lt;/li&gt;
&lt;li&gt;Windows.Theme.dll: Requires a public class which implements the ITheme interface&lt;/li&gt;&lt;/ul&gt;

&lt;h2&gt;3. Implementing the core logic and GUI of a plugin and adding the plugin in the Plugins.PluginManager.xml&lt;/h2&gt;
&lt;ul&gt;&lt;li&gt;Add another assembly to your solution and create a public class implementing the IPlugin interface.&lt;/li&gt;
&lt;li&gt;Add the assembly to the Plugins.PluginManager.xml&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>brilliantvision</author><pubDate>Mon, 17 Jan 2011 10:08:29 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110117100829A</guid></item><item><title>Updated Wiki: Home</title><link>http://aiframe.codeplex.com/wikipage?version=34</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Welcome to the AiFrame community site&lt;/h1&gt;AiFrame &amp;#40;Application Infrastructure Framework&amp;#41; is a framework for business applications. It was created to improve the productivity of the development process and provides best practices like a plugin manager, an application frame, support for nhibernate and a navigation bar.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=155506" alt="Architecture-Overview.jpg" title="Architecture-Overview.jpg" /&gt;&lt;br /&gt;
&lt;h2&gt;Features&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Plugin manager&lt;/li&gt;
&lt;li&gt;Predefined application frame&lt;/li&gt;
&lt;li&gt;Navigation bar, toolbar, main menu, status bar&lt;/li&gt;
&lt;li&gt;Support for application themes&lt;/li&gt;
&lt;li&gt;Product line support&lt;/li&gt;
&lt;li&gt;Configuration mode for configuring database changes or system updates&lt;/li&gt;
&lt;li&gt;Best practices / generic design patterns for business application&lt;/li&gt;
&lt;li&gt;Support for NHibernate&lt;/li&gt;&lt;/ul&gt;

&lt;h2&gt;Download&lt;/h2&gt;Click on the &amp;quot;Downloads&amp;quot; tab at the top of this page to access downloads for AiFrame.&lt;br /&gt;
&lt;h2&gt;Requirements&lt;/h2&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ab99342f-5d1a-413d-8319-81da479ab0d7" class="externalLink"&gt;Microsoft .NET Framework 3.5 SP1&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0a391abd-25c1-4fc0-919f-b21f31ab88b7&amp;amp;displaylang=en" class="externalLink"&gt;Microsoft .NET Framework 4.0&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http&amp;#58;&amp;#47;&amp;#47;www.aiframe.brilliantvision.de"&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=162548" alt="Aiframe&amp;#32;Website" title="Aiframe&amp;#32;Website" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;h1&gt;Usage instructions&lt;/h1&gt;
For your first business application we&amp;#39;ve set up a demo application which shows you some features like the plugin manager, the usage of the navigation bar and theming with AiFrame.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=198577" alt="Demo" title="Demo" /&gt;&lt;br /&gt;&lt;br /&gt;The first steps when using this framework are:
&lt;ol&gt;&lt;li&gt;Initializing AiFrame&lt;/li&gt;
&lt;li&gt;Creating a product line definition and a program theme&lt;/li&gt;
&lt;li&gt;Implementing the core logic and GUI of a plugin and adding the plugin in the Plugins.PluginManager.xml&lt;/li&gt;&lt;/ol&gt;
&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=198578" alt="AiFrame&amp;#32;Overview" title="AiFrame&amp;#32;Overview" /&gt;&lt;br /&gt;
&lt;h2&gt;1. Initializing AiFrame&lt;/h2&gt;
&lt;ul&gt;&lt;li&gt;Add a reference to the Base.Core assembly and initialize the framework.&lt;/li&gt;&lt;/ul&gt;
&lt;pre&gt;
public class CoreInitialization
    {
        public static void Initialize()
        {
            ConfigurationProxy.ApplicationName = &amp;quot;AiFrameDemo&amp;quot;;
            ConfigurationProxy.CompanyName = &amp;quot;MyCompany&amp;quot;;
            DatabaseConnection.Instance.HostAddress = &amp;quot;server&amp;quot;;
            DatabaseConnection.Instance.Database = &amp;quot;aiframe_demo&amp;quot;;
            DatabaseConnection.Instance.Username = &amp;quot;user&amp;quot;;
            DatabaseConnection.Instance.Password = &amp;quot;password&amp;quot;;
        }
    }
&lt;/pre&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Add a hibernate.cfg.xml to your project and activate the &amp;quot;Copy to output directory&amp;quot; property.&lt;/li&gt;&lt;/ul&gt;
&lt;pre&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; ?&amp;gt;
&amp;lt;hibernate-configuration xmlns=&amp;quot;urn:nhibernate-configuration-2.2&amp;quot;&amp;gt;
  &amp;lt;session-factory&amp;gt;
    &amp;lt;property name=&amp;quot;connection.provider&amp;quot;&amp;gt;NHibernate.Connection.DriverConnectionProvider&amp;lt;/property&amp;gt;
    &amp;lt;property name=&amp;quot;dialect&amp;quot;&amp;gt;NHibernate.Dialect.MsSql2005Dialect&amp;lt;/property&amp;gt;
    &amp;lt;property name=&amp;quot;connection.driver_class&amp;quot;&amp;gt;NHibernate.Driver.SqlClientDriver&amp;lt;/property&amp;gt;    
    &amp;lt;property name=&amp;quot;show_sql&amp;quot;&amp;gt;false&amp;lt;/property&amp;gt;
  &amp;lt;/session-factory&amp;gt;
&amp;lt;/hibernate-configuration&amp;gt;
&lt;/pre&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;In your executing assembly you have to reference the assemblies Base.Core, Base.WinUI and InterfaceLib. After that you can get your program running with&lt;/li&gt;&lt;/ul&gt;
&lt;pre&gt;
BaseInitialization baseInitialization = new BaseInitialization(args);
baseInitialization.PreInitialize();

CoreInitialization.Initialize();

baseInitialization.PostInitialize(new DefaultStartupView());
&lt;/pre&gt;&lt;br /&gt;The &lt;i&gt;PreInitialize&lt;/i&gt; method initializes the framework and loads all registered plugins, the &lt;i&gt;PostInitialize&lt;/i&gt; method opens the main window.&lt;br /&gt;
&lt;h2&gt;2. Product Line and Theme information&lt;/h2&gt;
In order to get the program starting properly you need the following two assemblies in your application directory:
&lt;ul&gt;&lt;li&gt;Policy.Productline.dll: Requires a public class which implements the IProductLine interface&lt;/li&gt;
&lt;li&gt;Windows.Theme.dll: Requires a public class which implements the ITheme interface&lt;/li&gt;&lt;/ul&gt;

&lt;h2&gt;3. Implementing the core logic and GUI of a plugin and adding the plugin in the Plugins.PluginManager.xml&lt;/h2&gt;
&lt;ul&gt;&lt;li&gt;Add another assembly to your solution and create a public class implementing the IPlugin interface.&lt;/li&gt;
&lt;li&gt;Add the assembly to the Plugins.PluginManager.xml&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>brilliantvision</author><pubDate>Mon, 17 Jan 2011 10:05:16 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110117100516A</guid></item><item><title>Updated Wiki: Home</title><link>http://aiframe.codeplex.com/wikipage?version=33</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Welcome to the AiFrame community site&lt;/h1&gt;AiFrame &amp;#40;Application Infrastructure Framework&amp;#41; is a framework for business applications. It was created to improve the productivity of the development process and provides best practices like a plugin manager, an application frame, support for nhibernate and a navigation bar.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=155506" alt="Architecture-Overview.jpg" title="Architecture-Overview.jpg" /&gt;&lt;br /&gt;
&lt;h2&gt;Features&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Plugin manager&lt;/li&gt;
&lt;li&gt;Predefined application frame&lt;/li&gt;
&lt;li&gt;Navigation bar, toolbar, main menu, status bar&lt;/li&gt;
&lt;li&gt;Support for application themes&lt;/li&gt;
&lt;li&gt;Product line support&lt;/li&gt;
&lt;li&gt;Configuration mode for configuring database changes or system updates&lt;/li&gt;
&lt;li&gt;Best practices / generic design patterns for business application&lt;/li&gt;
&lt;li&gt;Support for NHibernate&lt;/li&gt;&lt;/ul&gt;

&lt;h2&gt;Download&lt;/h2&gt;Click on the &amp;quot;Downloads&amp;quot; tab at the top of this page to access downloads for AiFrame.&lt;br /&gt;
&lt;h2&gt;Requirements&lt;/h2&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ab99342f-5d1a-413d-8319-81da479ab0d7" class="externalLink"&gt;Microsoft .NET Framework 3.5 SP1&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0a391abd-25c1-4fc0-919f-b21f31ab88b7&amp;amp;displaylang=en" class="externalLink"&gt;Microsoft .NET Framework 4.0&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http&amp;#58;&amp;#47;&amp;#47;www.aiframe.brilliantvision.de"&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=162548" alt="Aiframe&amp;#32;Website" title="Aiframe&amp;#32;Website" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;h1&gt;Usage instructions&lt;/h1&gt;
For your first business application we&amp;#39;ve set up a demo application which shows you some features like the plugin manager, the usage of the navigation bar and theming with AiFrame.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=198577" alt="Demo" title="Demo" /&gt;&lt;br /&gt;&lt;br /&gt;The first steps when using this framework are:
&lt;ol&gt;&lt;li&gt;Initializing AiFrame&lt;/li&gt;
&lt;li&gt;Creating a product line definition and a program theme&lt;/li&gt;
&lt;li&gt;Implementing the core logic and GUI of a plugin&lt;/li&gt;
&lt;li&gt;Adding the plugin in the Plugins.PluginManager.xml&lt;/li&gt;&lt;/ol&gt;
&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=198578" alt="AiFrame&amp;#32;Overview" title="AiFrame&amp;#32;Overview" /&gt;&lt;br /&gt;
&lt;h2&gt;1. Initializing AiFrame&lt;/h2&gt;
&lt;ul&gt;&lt;li&gt;Add a reference to the Base.Core assembly and initialize the framework.&lt;/li&gt;&lt;/ul&gt;
&lt;pre&gt;
public class CoreInitialization
    {
        public static void Initialize()
        {
            ConfigurationProxy.ApplicationName = &amp;quot;AiFrameDemo&amp;quot;;
            ConfigurationProxy.CompanyName = &amp;quot;MyCompany&amp;quot;;
            DatabaseConnection.Instance.HostAddress = &amp;quot;server&amp;quot;;
            DatabaseConnection.Instance.Database = &amp;quot;aiframe_demo&amp;quot;;
            DatabaseConnection.Instance.Username = &amp;quot;user&amp;quot;;
            DatabaseConnection.Instance.Password = &amp;quot;password&amp;quot;;
        }
    }
&lt;/pre&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Add a hibernate.cfg.xml to your project and activate the &amp;quot;Copy to output directory&amp;quot; property.&lt;/li&gt;&lt;/ul&gt;
&lt;pre&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; ?&amp;gt;
&amp;lt;hibernate-configuration xmlns=&amp;quot;urn:nhibernate-configuration-2.2&amp;quot;&amp;gt;
  &amp;lt;session-factory&amp;gt;
    &amp;lt;property name=&amp;quot;connection.provider&amp;quot;&amp;gt;NHibernate.Connection.DriverConnectionProvider&amp;lt;/property&amp;gt;
    &amp;lt;property name=&amp;quot;dialect&amp;quot;&amp;gt;NHibernate.Dialect.MsSql2005Dialect&amp;lt;/property&amp;gt;
    &amp;lt;property name=&amp;quot;connection.driver_class&amp;quot;&amp;gt;NHibernate.Driver.SqlClientDriver&amp;lt;/property&amp;gt;    
    &amp;lt;property name=&amp;quot;show_sql&amp;quot;&amp;gt;false&amp;lt;/property&amp;gt;
  &amp;lt;/session-factory&amp;gt;
&amp;lt;/hibernate-configuration&amp;gt;
&lt;/pre&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;In your executing assembly you have to reference the assemblies Base.Core, Base.WinUI and InterfaceLib. After that you can get your program running with&lt;/li&gt;&lt;/ul&gt;
&lt;pre&gt;
BaseInitialization baseInitialization = new BaseInitialization(args);
baseInitialization.PreInitialize();

CoreInitialization.Initialize();

baseInitialization.PostInitialize(new DefaultStartupView());
&lt;/pre&gt;&lt;br /&gt;The &lt;i&gt;PreInitialize&lt;/i&gt; method initializes the framework and loads all registered plugins, the &lt;i&gt;PostInitialize&lt;/i&gt; method opens the main window.&lt;br /&gt;
&lt;h2&gt;2. Product Line and Theme information&lt;/h2&gt;
In order to get the program starting properly you need the following two assemblies in your application directory:
&lt;ul&gt;&lt;li&gt;Policy.Productline.dll: Requires a public class which implements the IProductLine interface&lt;/li&gt;
&lt;li&gt;Windows.Theme.dll: Requires a public class which implements the ITheme interface&lt;/li&gt;&lt;/ul&gt;

&lt;h2&gt;3. Implementing the core logic and GUI of a plugin&lt;/h2&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>brilliantvision</author><pubDate>Mon, 17 Jan 2011 09:56:15 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110117095615A</guid></item><item><title>Updated Wiki: Home</title><link>http://aiframe.codeplex.com/wikipage?version=32</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Welcome to the AiFrame community site&lt;/h1&gt;AiFrame &amp;#40;Application Infrastructure Framework&amp;#41; is a framework for business applications. It was created to improve the productivity of the development process and provides best practices like a plugin manager, an application frame, support for nhibernate and a navigation bar.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=155506" alt="Architecture-Overview.jpg" title="Architecture-Overview.jpg" /&gt;&lt;br /&gt;
&lt;h2&gt;Features&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Plugin manager&lt;/li&gt;
&lt;li&gt;Predefined application frame&lt;/li&gt;
&lt;li&gt;Navigation bar, toolbar, main menu, status bar&lt;/li&gt;
&lt;li&gt;Support for application themes&lt;/li&gt;
&lt;li&gt;Product line support&lt;/li&gt;
&lt;li&gt;Configuration mode for configuring database changes or system updates&lt;/li&gt;
&lt;li&gt;Best practices / generic design patterns for business application&lt;/li&gt;
&lt;li&gt;Support for NHibernate&lt;/li&gt;&lt;/ul&gt;

&lt;h2&gt;Download&lt;/h2&gt;Click on the &amp;quot;Downloads&amp;quot; tab at the top of this page to access downloads for AiFrame.&lt;br /&gt;
&lt;h2&gt;Requirements&lt;/h2&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ab99342f-5d1a-413d-8319-81da479ab0d7" class="externalLink"&gt;Microsoft .NET Framework 3.5 SP1&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0a391abd-25c1-4fc0-919f-b21f31ab88b7&amp;amp;displaylang=en" class="externalLink"&gt;Microsoft .NET Framework 4.0&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http&amp;#58;&amp;#47;&amp;#47;www.aiframe.brilliantvision.de"&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=162548" alt="Aiframe&amp;#32;Website" title="Aiframe&amp;#32;Website" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;h1&gt;Usage instructions&lt;/h1&gt;
For your first business application we&amp;#39;ve set up a demo application which shows you some features like the plugin manager, the usage of the navigation bar and theming with AiFrame.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=198577" alt="Demo" title="Demo" /&gt;&lt;br /&gt;&lt;br /&gt;The first steps when using this framework are:
&lt;ol&gt;&lt;li&gt;Initializing AiFrame&lt;/li&gt;
&lt;li&gt;Creating a product line definition and a program theme&lt;/li&gt;
&lt;li&gt;Implementing the core logic and GUI of a plugin&lt;/li&gt;
&lt;li&gt;Adding the plugin in the Plugins.PluginManager.xml&lt;/li&gt;&lt;/ol&gt;
&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=198578" alt="AiFrame&amp;#32;Overview" title="AiFrame&amp;#32;Overview" /&gt;&lt;br /&gt;
&lt;h2&gt;1. Initializing AiFrame&lt;/h2&gt;
&lt;ul&gt;&lt;li&gt;Add a reference to the Base.Core assembly and initialize the framework.&lt;/li&gt;&lt;/ul&gt;
&lt;pre&gt;
public class CoreInitialization
    {
        public static void Initialize()
        {
            ConfigurationProxy.ApplicationName = &amp;quot;AiFrameDemo&amp;quot;;
            ConfigurationProxy.CompanyName = &amp;quot;MyCompany&amp;quot;;
            DatabaseConnection.Instance.HostAddress = &amp;quot;server&amp;quot;;
            DatabaseConnection.Instance.Database = &amp;quot;aiframe_demo&amp;quot;;
            DatabaseConnection.Instance.Username = &amp;quot;user&amp;quot;;
            DatabaseConnection.Instance.Password = &amp;quot;password&amp;quot;;
        }
    }
&lt;/pre&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Add a hibernate.cfg.xml to your project and activate the &amp;quot;Copy to output directory&amp;quot; property.&lt;/li&gt;&lt;/ul&gt;
&lt;pre&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; ?&amp;gt;
&amp;lt;hibernate-configuration xmlns=&amp;quot;urn:nhibernate-configuration-2.2&amp;quot;&amp;gt;
  &amp;lt;session-factory&amp;gt;
    &amp;lt;property name=&amp;quot;connection.provider&amp;quot;&amp;gt;NHibernate.Connection.DriverConnectionProvider&amp;lt;/property&amp;gt;
    &amp;lt;property name=&amp;quot;dialect&amp;quot;&amp;gt;NHibernate.Dialect.MsSql2005Dialect&amp;lt;/property&amp;gt;
    &amp;lt;property name=&amp;quot;connection.driver_class&amp;quot;&amp;gt;NHibernate.Driver.SqlClientDriver&amp;lt;/property&amp;gt;    
    &amp;lt;property name=&amp;quot;show_sql&amp;quot;&amp;gt;false&amp;lt;/property&amp;gt;
  &amp;lt;/session-factory&amp;gt;
&amp;lt;/hibernate-configuration&amp;gt;
&lt;/pre&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;In your executing assembly you have to reference the assemblies Base.Core, Base.WinUI and InterfaceLib. After that you can get your program running with&lt;/li&gt;&lt;/ul&gt;
&lt;pre&gt;
BaseInitialization baseInitialization = new BaseInitialization(args);
                baseInitialization.PreInitialize();

                CoreInitialization.Initialize();

                baseInitialization.PostInitialize(new DefaultStartupView());
&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;The &lt;i&gt;PreInitialize&lt;/i&gt; method initializes the framework and loads all registered plugins, the &lt;i&gt;PostInitialize&lt;/i&gt; method opens the main window.&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>brilliantvision</author><pubDate>Mon, 17 Jan 2011 09:49:12 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110117094912A</guid></item><item><title>Updated Wiki: Home</title><link>http://aiframe.codeplex.com/wikipage?version=31</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Welcome to the AiFrame community site&lt;/h1&gt;AiFrame &amp;#40;Application Infrastructure Framework&amp;#41; is a framework for business applications. It was created to improve the productivity of the development process and provides best practices like a plugin manager, an application frame, support for nhibernate and a navigation bar.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=155506" alt="Architecture-Overview.jpg" title="Architecture-Overview.jpg" /&gt;&lt;br /&gt;
&lt;h2&gt;Features&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Plugin manager&lt;/li&gt;
&lt;li&gt;Predefined application frame&lt;/li&gt;
&lt;li&gt;Navigation bar, toolbar, main menu, status bar&lt;/li&gt;
&lt;li&gt;Support for application themes&lt;/li&gt;
&lt;li&gt;Product line support&lt;/li&gt;
&lt;li&gt;Configuration mode for configuring database changes or system updates&lt;/li&gt;
&lt;li&gt;Best practices / generic design patterns for business application&lt;/li&gt;
&lt;li&gt;Support for NHibernate&lt;/li&gt;&lt;/ul&gt;

&lt;h2&gt;Download&lt;/h2&gt;Click on the &amp;quot;Downloads&amp;quot; tab at the top of this page to access downloads for AiFrame.&lt;br /&gt;
&lt;h2&gt;Requirements&lt;/h2&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ab99342f-5d1a-413d-8319-81da479ab0d7" class="externalLink"&gt;Microsoft .NET Framework 3.5 SP1&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0a391abd-25c1-4fc0-919f-b21f31ab88b7&amp;amp;displaylang=en" class="externalLink"&gt;Microsoft .NET Framework 4.0&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http&amp;#58;&amp;#47;&amp;#47;www.aiframe.brilliantvision.de"&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=162548" alt="Aiframe&amp;#32;Website" title="Aiframe&amp;#32;Website" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;h1&gt;Usage instructions&lt;/h1&gt;
For your first business application we&amp;#39;ve set up a demo application which shows you some features like the plugin manager, the usage of the navigation bar and theming with AiFrame.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=198577" alt="Demo" title="Demo" /&gt;&lt;br /&gt;&lt;br /&gt;The first steps when using this framework are:
&lt;ol&gt;&lt;li&gt;Initializing AiFrame&lt;/li&gt;
&lt;li&gt;Creating a product line definition and a program theme&lt;/li&gt;
&lt;li&gt;Implementing the core logic and GUI of a plugin&lt;/li&gt;
&lt;li&gt;Adding the plugin in the Plugins.PluginManager.xml&lt;/li&gt;&lt;/ol&gt;
&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=198578" alt="AiFrame&amp;#32;Overview" title="AiFrame&amp;#32;Overview" /&gt;&lt;br /&gt;
&lt;h2&gt;1. Initializing AiFrame&lt;/h2&gt;
&lt;ul&gt;&lt;li&gt;Add a reference to the Base.Core assembly and initialize the framework.&lt;/li&gt;&lt;/ul&gt;
&lt;pre&gt;
public class CoreInitialization
    {
        public static void Initialize()
        {
            ConfigurationProxy.ApplicationName = &amp;quot;AiFrameDemo&amp;quot;;
            ConfigurationProxy.CompanyName = &amp;quot;MyCompany&amp;quot;;
            DatabaseConnection.Instance.HostAddress = &amp;quot;server&amp;quot;;
            DatabaseConnection.Instance.Database = &amp;quot;aiframe_demo&amp;quot;;
            DatabaseConnection.Instance.Username = &amp;quot;user&amp;quot;;
            DatabaseConnection.Instance.Password = &amp;quot;password&amp;quot;;
        }
    }
&lt;/pre&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Add a hibernate.cfg.xml to your project and activate the &amp;quot;Copy to output directory&amp;quot; property.&lt;/li&gt;&lt;/ul&gt;
&lt;pre&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; ?&amp;gt;
&amp;lt;hibernate-configuration xmlns=&amp;quot;urn:nhibernate-configuration-2.2&amp;quot;&amp;gt;
  &amp;lt;session-factory&amp;gt;
    &amp;lt;property name=&amp;quot;connection.provider&amp;quot;&amp;gt;NHibernate.Connection.DriverConnectionProvider&amp;lt;/property&amp;gt;
    &amp;lt;property name=&amp;quot;dialect&amp;quot;&amp;gt;NHibernate.Dialect.MsSql2005Dialect&amp;lt;/property&amp;gt;
    &amp;lt;property name=&amp;quot;connection.driver_class&amp;quot;&amp;gt;NHibernate.Driver.SqlClientDriver&amp;lt;/property&amp;gt;    
    &amp;lt;property name=&amp;quot;show_sql&amp;quot;&amp;gt;false&amp;lt;/property&amp;gt;
  &amp;lt;/session-factory&amp;gt;
&amp;lt;/hibernate-configuration&amp;gt;
&lt;/pre&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>brilliantvision</author><pubDate>Mon, 17 Jan 2011 08:53:14 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110117085314A</guid></item><item><title>Updated Wiki: Home</title><link>http://aiframe.codeplex.com/wikipage?version=30</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Welcome to the AiFrame community site&lt;/h1&gt;AiFrame &amp;#40;Application Infrastructure Framework&amp;#41; is a framework for business applications. It was created to improve the productivity of the development process and provides best practices like a plugin manager, an application frame, support for nhibernate and a navigation bar.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=155506" alt="Architecture-Overview.jpg" title="Architecture-Overview.jpg" /&gt;&lt;br /&gt;
&lt;h2&gt;Features&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Plugin manager&lt;/li&gt;
&lt;li&gt;Predefined application frame&lt;/li&gt;
&lt;li&gt;Navigation bar, toolbar, main menu, status bar&lt;/li&gt;
&lt;li&gt;Support for application themes&lt;/li&gt;
&lt;li&gt;Product line support&lt;/li&gt;
&lt;li&gt;Configuration mode for configuring database changes or system updates&lt;/li&gt;
&lt;li&gt;Best practices / generic design patterns for business application&lt;/li&gt;
&lt;li&gt;Support for NHibernate&lt;/li&gt;&lt;/ul&gt;

&lt;h2&gt;Download&lt;/h2&gt;Click on the &amp;quot;Downloads&amp;quot; tab at the top of this page to access downloads for AiFrame.&lt;br /&gt;
&lt;h2&gt;Requirements&lt;/h2&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ab99342f-5d1a-413d-8319-81da479ab0d7" class="externalLink"&gt;Microsoft .NET Framework 3.5 SP1&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0a391abd-25c1-4fc0-919f-b21f31ab88b7&amp;amp;displaylang=en" class="externalLink"&gt;Microsoft .NET Framework 4.0&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http&amp;#58;&amp;#47;&amp;#47;www.aiframe.brilliantvision.de"&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=162548" alt="Aiframe&amp;#32;Website" title="Aiframe&amp;#32;Website" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;h1&gt;Usage instructions&lt;/h1&gt;
For your first business application we&amp;#39;ve set up a demo application which shows you some features like the plugin manager, the usage of the navigation bar and theming with AiFrame.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=198577" alt="Demo" title="Demo" /&gt;&lt;br /&gt;&lt;br /&gt;The first steps when using this framework are:
&lt;ol&gt;&lt;li&gt;Initializing AiFrame&lt;/li&gt;
&lt;li&gt;Creating a product line definition and a program theme&lt;/li&gt;
&lt;li&gt;Implementing the core logic and GUI of a plugin&lt;/li&gt;
&lt;li&gt;Adding the plugin in the Plugins.PluginManager.xml&lt;/li&gt;&lt;/ol&gt;
&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=198578" alt="AiFrame&amp;#32;Overview" title="AiFrame&amp;#32;Overview" /&gt;&lt;br /&gt;
&lt;h2&gt;1. Initializing AiFrame&lt;/h2&gt;
&lt;ul&gt;&lt;li&gt;Add a reference to the Base.Core assembly and initialize the framework.&lt;/li&gt;&lt;/ul&gt;
&lt;pre&gt;
            ConfigurationProxy.ApplicationName = &amp;quot;AiFrameDemo&amp;quot;;
            ConfigurationProxy.CompanyName = &amp;quot;MyCompany&amp;quot;;
            DatabaseConnection.Instance.HostAddress = &amp;quot;server&amp;quot;;
            DatabaseConnection.Instance.Database = &amp;quot;aiframe_demo&amp;quot;;
            DatabaseConnection.Instance.Username = &amp;quot;user&amp;quot;;
            DatabaseConnection.Instance.Password = &amp;quot;password&amp;quot;;
&lt;/pre&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Add a hibernate.cfg.xml to your project and activate the &amp;quot;Copy to output directory&amp;quot; property.&lt;/li&gt;&lt;/ul&gt;
&lt;pre&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; ?&amp;gt;
&amp;lt;hibernate-configuration xmlns=&amp;quot;urn:nhibernate-configuration-2.2&amp;quot;&amp;gt;
  &amp;lt;session-factory&amp;gt;
    &amp;lt;property name=&amp;quot;connection.provider&amp;quot;&amp;gt;NHibernate.Connection.DriverConnectionProvider&amp;lt;/property&amp;gt;
    &amp;lt;property name=&amp;quot;dialect&amp;quot;&amp;gt;NHibernate.Dialect.MsSql2005Dialect&amp;lt;/property&amp;gt;
    &amp;lt;property name=&amp;quot;connection.driver_class&amp;quot;&amp;gt;NHibernate.Driver.SqlClientDriver&amp;lt;/property&amp;gt;    
    &amp;lt;property name=&amp;quot;show_sql&amp;quot;&amp;gt;false&amp;lt;/property&amp;gt;
  &amp;lt;/session-factory&amp;gt;
&amp;lt;/hibernate-configuration&amp;gt;
&lt;/pre&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>brilliantvision</author><pubDate>Mon, 17 Jan 2011 08:51:12 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110117085112A</guid></item><item><title>Updated Wiki: Home</title><link>http://aiframe.codeplex.com/wikipage?version=29</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Welcome to the AiFrame community site&lt;/h1&gt;AiFrame &amp;#40;Application Infrastructure Framework&amp;#41; is a framework for business applications. It was created to improve the productivity of the development process and provides best practices like a plugin manager, an application frame, support for nhibernate and a navigation bar.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=155506" alt="Architecture-Overview.jpg" title="Architecture-Overview.jpg" /&gt;&lt;br /&gt;
&lt;h2&gt;Features&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Plugin manager&lt;/li&gt;
&lt;li&gt;Predefined application frame&lt;/li&gt;
&lt;li&gt;Navigation bar, toolbar, main menu, status bar&lt;/li&gt;
&lt;li&gt;Support for application themes&lt;/li&gt;
&lt;li&gt;Product line support&lt;/li&gt;
&lt;li&gt;Configuration mode for configuring database changes or system updates&lt;/li&gt;
&lt;li&gt;Best practices / generic design patterns for business application&lt;/li&gt;
&lt;li&gt;Support for NHibernate&lt;/li&gt;&lt;/ul&gt;

&lt;h2&gt;Download&lt;/h2&gt;Click on the &amp;quot;Downloads&amp;quot; tab at the top of this page to access downloads for AiFrame.&lt;br /&gt;
&lt;h2&gt;Requirements&lt;/h2&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ab99342f-5d1a-413d-8319-81da479ab0d7" class="externalLink"&gt;Microsoft .NET Framework 3.5 SP1&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0a391abd-25c1-4fc0-919f-b21f31ab88b7&amp;amp;displaylang=en" class="externalLink"&gt;Microsoft .NET Framework 4.0&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http&amp;#58;&amp;#47;&amp;#47;www.aiframe.brilliantvision.de"&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=162548" alt="Aiframe&amp;#32;Website" title="Aiframe&amp;#32;Website" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;h1&gt;Usage instructions&lt;/h1&gt;
For your first business application we&amp;#39;ve set up a demo application which shows you some features like the plugin manager, the usage of the navigation bar and theming with AiFrame.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=198577" alt="Demo" title="Demo" /&gt;&lt;br /&gt;&lt;br /&gt;The first steps when using this framework are:
&lt;ol&gt;&lt;li&gt;Initializing AiFrame&lt;/li&gt;
&lt;li&gt;Creating a product line definition and a program theme&lt;/li&gt;
&lt;li&gt;Implementing the core logic and GUI of a plugin&lt;/li&gt;
&lt;li&gt;Adding the plugin in the Plugins.PluginManager.xml&lt;/li&gt;&lt;/ol&gt;
&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=198578" alt="AiFrame&amp;#32;Overview" title="AiFrame&amp;#32;Overview" /&gt;&lt;br /&gt;
&lt;h2&gt;1. Initializing AiFrame&lt;/h2&gt;
&lt;ul&gt;&lt;li&gt;Add a reference to the Base.Core assembly and initialize the framework.&lt;/li&gt;&lt;/ul&gt;
&lt;pre&gt;
            ConfigurationProxy.ApplicationName = &amp;quot;AiFrameDemo&amp;quot;;
            ConfigurationProxy.CompanyName = &amp;quot;MyCompany&amp;quot;;
            DatabaseConnection.Instance.HostAddress = &amp;quot;server&amp;quot;;
            DatabaseConnection.Instance.Database = &amp;quot;aiframe_demo&amp;quot;;
            DatabaseConnection.Instance.Username = &amp;quot;user&amp;quot;;
            DatabaseConnection.Instance.Password = &amp;quot;password&amp;quot;;
&lt;/pre&gt;&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;Add a hibernate.cfg.xml to your project and activate the &amp;quot;Copy to output directory&amp;quot; property.&lt;/li&gt;&lt;/ul&gt;
&lt;pre&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;utf-8&amp;quot; ?&amp;gt;
&amp;lt;hibernate-configuration xmlns=&amp;quot;urn:nhibernate-configuration-2.2&amp;quot;&amp;gt;
  &amp;lt;session-factory&amp;gt;
    
    &amp;lt;property name=&amp;quot;connection.provider&amp;quot;&amp;gt;NHibernate.Connection.DriverConnectionProvider&amp;lt;/property&amp;gt;
    &amp;lt;property name=&amp;quot;dialect&amp;quot;&amp;gt;NHibernate.Dialect.MsSql2005Dialect&amp;lt;/property&amp;gt;
    &amp;lt;property name=&amp;quot;connection.driver_class&amp;quot;&amp;gt;NHibernate.Driver.SqlClientDriver&amp;lt;/property&amp;gt;    
    &amp;lt;property name=&amp;quot;show_sql&amp;quot;&amp;gt;false&amp;lt;/property&amp;gt;
  &amp;lt;/session-factory&amp;gt;
&amp;lt;/hibernate-configuration&amp;gt;
&lt;/pre&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>brilliantvision</author><pubDate>Mon, 17 Jan 2011 08:50:54 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110117085054A</guid></item><item><title>Updated Wiki: Home</title><link>http://aiframe.codeplex.com/wikipage?version=28</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Welcome to the AiFrame community site&lt;/h1&gt;AiFrame &amp;#40;Application Infrastructure Framework&amp;#41; is a framework for business applications. It was created to improve the productivity of the development process and provides best practices like a plugin manager, an application frame, support for nhibernate and a navigation bar.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=155506" alt="Architecture-Overview.jpg" title="Architecture-Overview.jpg" /&gt;&lt;br /&gt;
&lt;h2&gt;Features&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Plugin manager&lt;/li&gt;
&lt;li&gt;Predefined application frame&lt;/li&gt;
&lt;li&gt;Navigation bar, toolbar, main menu, status bar&lt;/li&gt;
&lt;li&gt;Support for application themes&lt;/li&gt;
&lt;li&gt;Product line support&lt;/li&gt;
&lt;li&gt;Configuration mode for configuring database changes or system updates&lt;/li&gt;
&lt;li&gt;Best practices / generic design patterns for business application&lt;/li&gt;
&lt;li&gt;Support for NHibernate&lt;/li&gt;&lt;/ul&gt;

&lt;h2&gt;Download&lt;/h2&gt;Click on the &amp;quot;Downloads&amp;quot; tab at the top of this page to access downloads for AiFrame.&lt;br /&gt;
&lt;h2&gt;Requirements&lt;/h2&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ab99342f-5d1a-413d-8319-81da479ab0d7" class="externalLink"&gt;Microsoft .NET Framework 3.5 SP1&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0a391abd-25c1-4fc0-919f-b21f31ab88b7&amp;amp;displaylang=en" class="externalLink"&gt;Microsoft .NET Framework 4.0&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http&amp;#58;&amp;#47;&amp;#47;www.aiframe.brilliantvision.de"&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=162548" alt="Aiframe&amp;#32;Website" title="Aiframe&amp;#32;Website" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;h1&gt;Usage instructions&lt;/h1&gt;
For your first business application we&amp;#39;ve set up a demo application which shows you some features like the plugin manager, the usage of the navigation bar and theming with AiFrame.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=198577" alt="Demo" title="Demo" /&gt;&lt;br /&gt;&lt;br /&gt;The first steps when using this framework are:
&lt;ol&gt;&lt;li&gt;Initializing AiFrame&lt;/li&gt;
&lt;li&gt;Creating a product line definition and a program theme&lt;/li&gt;
&lt;li&gt;Implementing the core logic and GUI of a plugin&lt;/li&gt;
&lt;li&gt;Adding the plugin in the Plugins.PluginManager.xml&lt;/li&gt;&lt;/ol&gt;
&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=198578" alt="AiFrame&amp;#32;Overview" title="AiFrame&amp;#32;Overview" /&gt;&lt;br /&gt;
&lt;h2&gt;1. Initializing AiFrame&lt;/h2&gt;
&lt;ul&gt;&lt;li&gt;Add a reference to the Base.Core assembly and initialize the framework.&lt;/li&gt;&lt;/ul&gt;
&lt;pre&gt;
            ConfigurationProxy.ApplicationName = &amp;quot;AiFrameDemo&amp;quot;;
            ConfigurationProxy.CompanyName = &amp;quot;MyCompany&amp;quot;;
            DatabaseConnection.Instance.HostAddress = &amp;quot;server&amp;quot;;
            DatabaseConnection.Instance.Database = &amp;quot;aiframe_demo&amp;quot;;
            DatabaseConnection.Instance.Username = &amp;quot;user&amp;quot;;
            DatabaseConnection.Instance.Password = &amp;quot;password&amp;quot;;
&lt;/pre&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>brilliantvision</author><pubDate>Mon, 17 Jan 2011 08:49:22 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110117084922A</guid></item><item><title>Updated Wiki: Home</title><link>http://aiframe.codeplex.com/wikipage?version=27</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Welcome to the AiFrame community site&lt;/h1&gt;AiFrame &amp;#40;Application Infrastructure Framework&amp;#41; is a framework for business applications. It was created to improve the productivity of the development process and provides best practices like a plugin manager, an application frame, support for nhibernate and a navigation bar.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=155506" alt="Architecture-Overview.jpg" title="Architecture-Overview.jpg" /&gt;&lt;br /&gt;
&lt;h2&gt;Features&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Plugin manager&lt;/li&gt;
&lt;li&gt;Predefined application frame&lt;/li&gt;
&lt;li&gt;Navigation bar, toolbar, main menu, status bar&lt;/li&gt;
&lt;li&gt;Support for application themes&lt;/li&gt;
&lt;li&gt;Product line support&lt;/li&gt;
&lt;li&gt;Configuration mode for configuring database changes or system updates&lt;/li&gt;
&lt;li&gt;Best practices / generic design patterns for business application&lt;/li&gt;
&lt;li&gt;Support for NHibernate&lt;/li&gt;&lt;/ul&gt;

&lt;h2&gt;Download&lt;/h2&gt;Click on the &amp;quot;Downloads&amp;quot; tab at the top of this page to access downloads for AiFrame.&lt;br /&gt;
&lt;h2&gt;Requirements&lt;/h2&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ab99342f-5d1a-413d-8319-81da479ab0d7" class="externalLink"&gt;Microsoft .NET Framework 3.5 SP1&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0a391abd-25c1-4fc0-919f-b21f31ab88b7&amp;amp;displaylang=en" class="externalLink"&gt;Microsoft .NET Framework 4.0&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http&amp;#58;&amp;#47;&amp;#47;www.aiframe.brilliantvision.de"&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=162548" alt="Aiframe&amp;#32;Website" title="Aiframe&amp;#32;Website" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;h1&gt;Usage instructions&lt;/h1&gt;
For your first business application we&amp;#39;ve set up a demo application which shows you some features like the plugin manager, the usage of the navigation bar and theming with AiFrame.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=198577" alt="Demo" title="Demo" /&gt;&lt;br /&gt;&lt;br /&gt;The first steps when using this framework are:
&lt;ol&gt;&lt;li&gt;Initializing AiFrame&lt;/li&gt;
&lt;li&gt;Creating a product line definition and a program theme&lt;/li&gt;
&lt;li&gt;Implementing the core logic and GUI of a plugin&lt;/li&gt;
&lt;li&gt;Adding the plugin in the Plugins.PluginManager.xml&lt;/li&gt;&lt;/ol&gt;
&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=198578" alt="AiFrame&amp;#32;Overview" title="AiFrame&amp;#32;Overview" /&gt;&lt;br /&gt;
&lt;h2&gt;1. Initializing AiFrame&lt;/h2&gt;
&lt;ul&gt;&lt;li&gt;Add a reference to the Base.Core assembly and initialize the framework.&lt;/li&gt;&lt;/ul&gt;
&lt;pre&gt;
            ConfigurationProxy.ApplicationName = &amp;quot;AiFrameDemo&amp;quot;;
            ConfigurationProxy.CompanyName = &amp;quot;MyCompany&amp;quot;;
            DatabaseConnection.Instance.HostAddress = &amp;quot;192.168.1.2&amp;quot;;
            DatabaseConnection.Instance.Database = &amp;quot;aiframe_demo&amp;quot;;
            DatabaseConnection.Instance.Username = &amp;quot;user&amp;quot;;
            DatabaseConnection.Instance.Password = &amp;quot;password&amp;quot;;
&lt;/pre&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>brilliantvision</author><pubDate>Mon, 17 Jan 2011 08:49:06 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110117084906A</guid></item><item><title>Updated Wiki: Home</title><link>http://aiframe.codeplex.com/wikipage?version=26</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Welcome to the AiFrame community site&lt;/h1&gt;AiFrame &amp;#40;Application Infrastructure Framework&amp;#41; is a framework for business applications. It was created to improve the productivity of the development process and provides best practices like a plugin manager, an application frame, support for nhibernate and a navigation bar.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=155506" alt="Architecture-Overview.jpg" title="Architecture-Overview.jpg" /&gt;&lt;br /&gt;
&lt;h2&gt;Features&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Plugin manager&lt;/li&gt;
&lt;li&gt;Predefined application frame&lt;/li&gt;
&lt;li&gt;Navigation bar, toolbar, main menu, status bar&lt;/li&gt;
&lt;li&gt;Support for application themes&lt;/li&gt;
&lt;li&gt;Product line support&lt;/li&gt;
&lt;li&gt;Configuration mode for configuring database changes or system updates&lt;/li&gt;
&lt;li&gt;Best practices / generic design patterns for business application&lt;/li&gt;
&lt;li&gt;Support for NHibernate&lt;/li&gt;&lt;/ul&gt;

&lt;h2&gt;Download&lt;/h2&gt;Click on the &amp;quot;Downloads&amp;quot; tab at the top of this page to access downloads for AiFrame.&lt;br /&gt;
&lt;h2&gt;Requirements&lt;/h2&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ab99342f-5d1a-413d-8319-81da479ab0d7" class="externalLink"&gt;Microsoft .NET Framework 3.5 SP1&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0a391abd-25c1-4fc0-919f-b21f31ab88b7&amp;amp;displaylang=en" class="externalLink"&gt;Microsoft .NET Framework 4.0&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http&amp;#58;&amp;#47;&amp;#47;www.aiframe.brilliantvision.de"&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=162548" alt="Aiframe&amp;#32;Website" title="Aiframe&amp;#32;Website" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;h1&gt;Usage instructions&lt;/h1&gt;
For your first business application we&amp;#39;ve set up a demo application which shows you some features like the plugin manager, the usage of the navigation bar and theming with AiFrame.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=198577" alt="Demo" title="Demo" /&gt;&lt;br /&gt;&lt;br /&gt;The first steps when using this framework are:
&lt;ol&gt;&lt;li&gt;Initializing AiFrame&lt;/li&gt;
&lt;li&gt;Creating a product line definition and a program theme&lt;/li&gt;
&lt;li&gt;Implementing the core logic and GUI of a plugin&lt;/li&gt;
&lt;li&gt;Adding the plugin in the Plugins.PluginManager.xml&lt;/li&gt;&lt;/ol&gt;
&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=198578" alt="AiFrame&amp;#32;Overview" title="AiFrame&amp;#32;Overview" /&gt;&lt;br /&gt;
&lt;h2&gt;1. Initializing AiFrame&lt;/h2&gt;
&lt;ul&gt;&lt;li&gt;Add a reference to the Base.Core assembly and initialize the framework.&lt;/li&gt;&lt;/ul&gt;
&lt;pre&gt;
            ConfigurationProxy.ApplicationName = &amp;quot;AiFrameDemo&amp;quot;;
            ConfigurationProxy.CompanyName = &amp;quot;MyCompany&amp;quot;;
            DatabaseConnection.Instance.HostAddress = &amp;quot;192.168.1.2&amp;quot;;
            DatabaseConnection.Instance.Database = &amp;quot;aiframe_demo&amp;quot;;
            DatabaseConnection.Instance.Username = &amp;quot;sa&amp;quot;;
            DatabaseConnection.Instance.Password = &amp;quot;Netcontrol2k&amp;quot;;
&lt;/pre&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>brilliantvision</author><pubDate>Mon, 17 Jan 2011 08:48:50 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110117084850A</guid></item><item><title>Updated Wiki: Home</title><link>http://aiframe.codeplex.com/wikipage?version=25</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Welcome to the AiFrame community site&lt;/h1&gt;AiFrame &amp;#40;Application Infrastructure Framework&amp;#41; is a framework for business applications. It was created to improve the productivity of the development process and provides best practices like a plugin manager, an application frame, support for nhibernate and a navigation bar.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=155506" alt="Architecture-Overview.jpg" title="Architecture-Overview.jpg" /&gt;&lt;br /&gt;
&lt;h2&gt;Features&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Plugin manager&lt;/li&gt;
&lt;li&gt;Predefined application frame&lt;/li&gt;
&lt;li&gt;Navigation bar, toolbar, main menu, status bar&lt;/li&gt;
&lt;li&gt;Support for application themes&lt;/li&gt;
&lt;li&gt;Product line support&lt;/li&gt;
&lt;li&gt;Configuration mode for configuring database changes or system updates&lt;/li&gt;
&lt;li&gt;Best practices / generic design patterns for business application&lt;/li&gt;
&lt;li&gt;Support for NHibernate&lt;/li&gt;&lt;/ul&gt;

&lt;h2&gt;Download&lt;/h2&gt;Click on the &amp;quot;Downloads&amp;quot; tab at the top of this page to access downloads for AiFrame.&lt;br /&gt;
&lt;h2&gt;Requirements&lt;/h2&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ab99342f-5d1a-413d-8319-81da479ab0d7" class="externalLink"&gt;Microsoft .NET Framework 3.5 SP1&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0a391abd-25c1-4fc0-919f-b21f31ab88b7&amp;amp;displaylang=en" class="externalLink"&gt;Microsoft .NET Framework 4.0&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http&amp;#58;&amp;#47;&amp;#47;www.aiframe.brilliantvision.de"&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=162548" alt="Aiframe&amp;#32;Website" title="Aiframe&amp;#32;Website" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;h1&gt;Usage instructions&lt;/h1&gt;
For your first business application we&amp;#39;ve set up a demo application which shows you some features like the plugin manager, the usage of the navigation bar and theming with AiFrame.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=198577" alt="Demo" title="Demo" /&gt;&lt;br /&gt;&lt;br /&gt;The first steps when using this framework are:
&lt;ol&gt;&lt;li&gt;Initializing AiFrame&lt;/li&gt;
&lt;li&gt;Creating a product line definition and a program theme&lt;/li&gt;
&lt;li&gt;Implementing the core logic and GUI of a plugin&lt;/li&gt;
&lt;li&gt;Adding the plugin in the Plugins.PluginManager.xml&lt;/li&gt;&lt;/ol&gt;
&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=198578" alt="AiFrame&amp;#32;Overview" title="AiFrame&amp;#32;Overview" /&gt;&lt;br /&gt;
&lt;h2&gt;1. Initializing AiFrame&lt;/h2&gt;
&lt;ul&gt;&lt;li&gt;Add a reference to the Base.Core assembly and initialize the framework.&lt;/li&gt;&lt;/ul&gt;
&lt;pre&gt;
ConfigurationProxy.ApplicationName = &amp;quot;AiFrameDemo&amp;quot;;
            ConfigurationProxy.CompanyName = &amp;quot;MyCompany&amp;quot;;
DatabaseConnection.Instance.HostAddress = &amp;quot;192.168.1.2&amp;quot;;
            DatabaseConnection.Instance.Database = &amp;quot;aiframe_demo&amp;quot;;
            DatabaseConnection.Instance.Username = &amp;quot;sa&amp;quot;;
            DatabaseConnection.Instance.Password = &amp;quot;Netcontrol2k&amp;quot;;
&lt;/pre&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>brilliantvision</author><pubDate>Mon, 17 Jan 2011 08:48:25 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110117084825A</guid></item><item><title>Updated Wiki: Home</title><link>http://aiframe.codeplex.com/wikipage?version=24</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Welcome to the AiFrame community site&lt;/h1&gt;AiFrame &amp;#40;Application Infrastructure Framework&amp;#41; is a framework for business applications. It was created to improve the productivity of the development process and provides best practices like a plugin manager, an application frame, support for nhibernate and a navigation bar.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=155506" alt="Architecture-Overview.jpg" title="Architecture-Overview.jpg" /&gt;&lt;br /&gt;
&lt;h2&gt;Features&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Plugin manager&lt;/li&gt;
&lt;li&gt;Predefined application frame&lt;/li&gt;
&lt;li&gt;Navigation bar, toolbar, main menu, status bar&lt;/li&gt;
&lt;li&gt;Support for application themes&lt;/li&gt;
&lt;li&gt;Product line support&lt;/li&gt;
&lt;li&gt;Configuration mode for configuring database changes or system updates&lt;/li&gt;
&lt;li&gt;Best practices / generic design patterns for business application&lt;/li&gt;
&lt;li&gt;Support for NHibernate&lt;/li&gt;&lt;/ul&gt;

&lt;h2&gt;Download&lt;/h2&gt;Click on the &amp;quot;Downloads&amp;quot; tab at the top of this page to access downloads for AiFrame.&lt;br /&gt;
&lt;h2&gt;Requirements&lt;/h2&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ab99342f-5d1a-413d-8319-81da479ab0d7" class="externalLink"&gt;Microsoft .NET Framework 3.5 SP1&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0a391abd-25c1-4fc0-919f-b21f31ab88b7&amp;amp;displaylang=en" class="externalLink"&gt;Microsoft .NET Framework 4.0&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http&amp;#58;&amp;#47;&amp;#47;www.aiframe.brilliantvision.de"&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=162548" alt="Aiframe&amp;#32;Website" title="Aiframe&amp;#32;Website" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;h1&gt;Usage instructions&lt;/h1&gt;
For your first business application we&amp;#39;ve set up a demo application which shows you some features like the plugin manager, the usage of the navigation bar and theming with AiFrame.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=198577" alt="Demo" title="Demo" /&gt;&lt;br /&gt;&lt;br /&gt;The first steps when using this framework are:
&lt;ol&gt;&lt;li&gt;Initializing AiFrame&lt;/li&gt;
&lt;li&gt;Creating a product line definition and a program theme&lt;/li&gt;
&lt;li&gt;Implementing the core logic and GUI of a plugin&lt;/li&gt;
&lt;li&gt;Adding the plugin in the Plugins.PluginManager.xml&lt;/li&gt;&lt;/ol&gt;
&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=198578" alt="AiFrame&amp;#32;Overview" title="AiFrame&amp;#32;Overview" /&gt;&lt;br /&gt;
&lt;h2&gt;1. Initializing AiFrame&lt;/h2&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>brilliantvision</author><pubDate>Mon, 17 Jan 2011 08:45:40 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110117084540A</guid></item><item><title>Updated Wiki: Home</title><link>http://aiframe.codeplex.com/wikipage?version=23</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Welcome to the AiFrame community site&lt;/h1&gt;AiFrame &amp;#40;Application Infrastructure Framework&amp;#41; is a framework for business applications. It was created to improve the productivity of the development process and provides best practices like a plugin manager, an application frame, support for nhibernate and a navigation bar.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=155506" alt="Architecture-Overview.jpg" title="Architecture-Overview.jpg" /&gt;&lt;br /&gt;
&lt;h2&gt;Features&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Plugin manager&lt;/li&gt;
&lt;li&gt;Predefined application frame&lt;/li&gt;
&lt;li&gt;Navigation bar, toolbar, main menu, status bar&lt;/li&gt;
&lt;li&gt;Support for application themes&lt;/li&gt;
&lt;li&gt;Product line support&lt;/li&gt;
&lt;li&gt;Configuration mode for configuring database changes or system updates&lt;/li&gt;
&lt;li&gt;Best practices / generic design patterns for business application&lt;/li&gt;
&lt;li&gt;Support for NHibernate&lt;/li&gt;&lt;/ul&gt;

&lt;h2&gt;Download&lt;/h2&gt;Click on the &amp;quot;Downloads&amp;quot; tab at the top of this page to access downloads for AiFrame.&lt;br /&gt;
&lt;h2&gt;Requirements&lt;/h2&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ab99342f-5d1a-413d-8319-81da479ab0d7" class="externalLink"&gt;Microsoft .NET Framework 3.5 SP1&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0a391abd-25c1-4fc0-919f-b21f31ab88b7&amp;amp;displaylang=en" class="externalLink"&gt;Microsoft .NET Framework 4.0&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http&amp;#58;&amp;#47;&amp;#47;www.aiframe.brilliantvision.de"&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=162548" alt="Aiframe&amp;#32;Website" title="Aiframe&amp;#32;Website" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;h1&gt;Usage instructions&lt;/h1&gt;
For your first business application we&amp;#39;ve set up a demo application which shows you some features like the plugin manager, the usage of the navigation bar and theming with AiFrame.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=198577" alt="Demo" title="Demo" /&gt;&lt;br /&gt;&lt;br /&gt;The first steps when using this framework are:
&lt;ol&gt;&lt;li&gt;Initializing AiFrame&lt;/li&gt;
&lt;li&gt;Creating a product line definition and a program theme&lt;/li&gt;
&lt;li&gt;Implementing the core logic and GUI of a plugin&lt;/li&gt;
&lt;li&gt;Adding the plugin in the Plugins.PluginManager.xml&lt;/li&gt;&lt;/ol&gt;
&lt;br /&gt;&lt;a href="http://aiframe.codeplex.com/wikipage?title=aiframe_initializing.jpg&amp;referringTitle=Home"&gt;img&amp;#58;AiFrame Overview&lt;/a&gt;&lt;br /&gt;
&lt;h2&gt;1. Initializing AiFrame&lt;/h2&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>brilliantvision</author><pubDate>Mon, 17 Jan 2011 08:45:14 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110117084514A</guid></item><item><title>Updated Wiki: Home</title><link>http://aiframe.codeplex.com/wikipage?version=22</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Welcome to the AiFrame community site&lt;/h1&gt;AiFrame &amp;#40;Application Infrastructure Framework&amp;#41; is a framework for business applications. It was created to improve the productivity of the development process and provides best practices like a plugin manager, an application frame, support for nhibernate and a navigation bar.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=155506" alt="Architecture-Overview.jpg" title="Architecture-Overview.jpg" /&gt;&lt;br /&gt;
&lt;h2&gt;Features&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Plugin manager&lt;/li&gt;
&lt;li&gt;Predefined application frame&lt;/li&gt;
&lt;li&gt;Navigation bar, toolbar, main menu, status bar&lt;/li&gt;
&lt;li&gt;Support for application themes&lt;/li&gt;
&lt;li&gt;Product line support&lt;/li&gt;
&lt;li&gt;Configuration mode for configuring database changes or system updates&lt;/li&gt;
&lt;li&gt;Best practices / generic design patterns for business application&lt;/li&gt;
&lt;li&gt;Support for NHibernate&lt;/li&gt;&lt;/ul&gt;

&lt;h2&gt;Download&lt;/h2&gt;Click on the &amp;quot;Downloads&amp;quot; tab at the top of this page to access downloads for AiFrame.&lt;br /&gt;
&lt;h2&gt;Requirements&lt;/h2&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ab99342f-5d1a-413d-8319-81da479ab0d7" class="externalLink"&gt;Microsoft .NET Framework 3.5 SP1&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0a391abd-25c1-4fc0-919f-b21f31ab88b7&amp;amp;displaylang=en" class="externalLink"&gt;Microsoft .NET Framework 4.0&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http&amp;#58;&amp;#47;&amp;#47;www.aiframe.brilliantvision.de"&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=162548" alt="Aiframe&amp;#32;Website" title="Aiframe&amp;#32;Website" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;h1&gt;Usage instructions&lt;/h1&gt;
For your first business application we&amp;#39;ve set up a demo application which shows you some features like the plugin manager, the usage of the navigation bar and theming with AiFrame.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=198577" alt="Demo" title="Demo" /&gt;&lt;br /&gt;&lt;br /&gt;The first steps when using this framework are:
&lt;ol&gt;&lt;li&gt;Initializing AiFrame&lt;/li&gt;
&lt;li&gt;Creating a product line definition and a program theme&lt;/li&gt;
&lt;li&gt;Implementing the core logic and GUI of a plugin&lt;/li&gt;
&lt;li&gt;Adding the plugin in the Plugins.PluginManager.xml&lt;/li&gt;&lt;/ol&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>brilliantvision</author><pubDate>Mon, 17 Jan 2011 08:30:36 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110117083036A</guid></item><item><title>Updated Wiki: Home</title><link>http://aiframe.codeplex.com/wikipage?version=21</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Welcome to the AiFrame community site&lt;/h1&gt;AiFrame &amp;#40;Application Infrastructure Framework&amp;#41; is a framework for business applications. It was created to improve the productivity of the development process and provides best practices like a plugin manager, an application frame, support for nhibernate and a navigation bar.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=155506" alt="Architecture-Overview.jpg" title="Architecture-Overview.jpg" /&gt;&lt;br /&gt;
&lt;h2&gt;Features&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Plugin manager&lt;/li&gt;
&lt;li&gt;Predefined application frame&lt;/li&gt;
&lt;li&gt;Navigation bar, toolbar, main menu, status bar&lt;/li&gt;
&lt;li&gt;Support for application themes&lt;/li&gt;
&lt;li&gt;Product line support&lt;/li&gt;
&lt;li&gt;Configuration mode for configuring database changes or system updates&lt;/li&gt;
&lt;li&gt;Best practices / generic design patterns for business application&lt;/li&gt;
&lt;li&gt;Support for NHibernate&lt;/li&gt;&lt;/ul&gt;

&lt;h2&gt;Download&lt;/h2&gt;Click on the &amp;quot;Downloads&amp;quot; tab at the top of this page to access downloads for AiFrame.&lt;br /&gt;
&lt;h2&gt;Requirements&lt;/h2&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ab99342f-5d1a-413d-8319-81da479ab0d7" class="externalLink"&gt;Microsoft .NET Framework 3.5 SP1&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0a391abd-25c1-4fc0-919f-b21f31ab88b7&amp;amp;displaylang=en" class="externalLink"&gt;Microsoft .NET Framework 4.0&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http&amp;#58;&amp;#47;&amp;#47;www.aiframe.brilliantvision.de"&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=162548" alt="Aiframe&amp;#32;Website" title="Aiframe&amp;#32;Website" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;h1&gt;Usage instructions&lt;/h1&gt;
For your first business application we&amp;#39;ve set up a demo application which shows you some features like the plugin manager, the usage of the navigation bar and theming with AiFrame.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=198577" alt="Demo" title="Demo" /&gt;&lt;br /&gt;&lt;br /&gt;The first steps when using this framework are:&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>brilliantvision</author><pubDate>Mon, 17 Jan 2011 08:18:16 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110117081816A</guid></item><item><title>Updated Wiki: Home</title><link>http://aiframe.codeplex.com/wikipage?version=20</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Welcome to the AiFrame community site&lt;/h1&gt;AiFrame &amp;#40;Application Infrastructure Framework&amp;#41; is a framework for business applications. It was created to improve the productivity of the development process and provides best practices like a plugin manager, an application frame, support for nhibernate and a navigation bar.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=155506" alt="Architecture-Overview.jpg" title="Architecture-Overview.jpg" /&gt;&lt;br /&gt;
&lt;h2&gt;Features&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Plugin manager&lt;/li&gt;
&lt;li&gt;Predefined application frame&lt;/li&gt;
&lt;li&gt;Navigation bar, toolbar, main menu, status bar&lt;/li&gt;
&lt;li&gt;Support for application themes&lt;/li&gt;
&lt;li&gt;Product line support&lt;/li&gt;
&lt;li&gt;Configuration mode for configuring database changes or system updates&lt;/li&gt;
&lt;li&gt;Best practices / generic design patterns for business application&lt;/li&gt;
&lt;li&gt;Support for NHibernate&lt;/li&gt;&lt;/ul&gt;

&lt;h2&gt;Download&lt;/h2&gt;Click on the &amp;quot;Downloads&amp;quot; tab at the top of this page to access downloads for AiFrame.&lt;br /&gt;
&lt;h2&gt;Requirements&lt;/h2&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ab99342f-5d1a-413d-8319-81da479ab0d7" class="externalLink"&gt;Microsoft .NET Framework 3.5 SP1&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0a391abd-25c1-4fc0-919f-b21f31ab88b7&amp;amp;displaylang=en" class="externalLink"&gt;Microsoft .NET Framework 4.0&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http&amp;#58;&amp;#47;&amp;#47;www.aiframe.brilliantvision.de"&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=162548" alt="Aiframe&amp;#32;Website" title="Aiframe&amp;#32;Website" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;h1&gt;Usage instructions&lt;/h1&gt;
&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=198577" alt="Demo" title="Demo" /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>brilliantvision</author><pubDate>Mon, 17 Jan 2011 08:09:06 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110117080906A</guid></item><item><title>Updated Wiki: Home</title><link>http://aiframe.codeplex.com/wikipage?version=19</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Welcome to the AiFrame community site&lt;/h1&gt;AiFrame &amp;#40;Application Infrastructure Framework&amp;#41; is a framework for business applications. It was created to improve the productivity of the development process and provides best practices like a plugin manager, an application frame, support for nhibernate and a navigation bar.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=155506" alt="Architecture-Overview.jpg" title="Architecture-Overview.jpg" /&gt;&lt;br /&gt;
&lt;h2&gt;Features&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Plugin manager&lt;/li&gt;
&lt;li&gt;Predefined application frame&lt;/li&gt;
&lt;li&gt;Navigation bar, toolbar, main menu, status bar&lt;/li&gt;
&lt;li&gt;Support for application themes&lt;/li&gt;
&lt;li&gt;Product line support&lt;/li&gt;
&lt;li&gt;Configuration mode for configuring database changes or system updates&lt;/li&gt;
&lt;li&gt;Best practices / generic design patterns for business application&lt;/li&gt;
&lt;li&gt;Support for NHibernate&lt;/li&gt;&lt;/ul&gt;

&lt;h2&gt;Download&lt;/h2&gt;Click on the &amp;quot;Downloads&amp;quot; tab at the top of this page to access downloads for AiFrame.&lt;br /&gt;
&lt;h2&gt;Requirements&lt;/h2&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ab99342f-5d1a-413d-8319-81da479ab0d7" class="externalLink"&gt;Microsoft .NET Framework 3.5 SP1&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0a391abd-25c1-4fc0-919f-b21f31ab88b7&amp;amp;displaylang=en" class="externalLink"&gt;Microsoft .NET Framework 4.0&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http&amp;#58;&amp;#47;&amp;#47;www.aiframe.brilliantvision.de"&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=162548" alt="Aiframe&amp;#32;Website" title="Aiframe&amp;#32;Website" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;h1&gt;Usage instructions&lt;/h1&gt;
&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=198573" alt="Demo" title="Demo" /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>brilliantvision</author><pubDate>Mon, 17 Jan 2011 08:03:33 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110117080333A</guid></item><item><title>Updated Wiki: Home</title><link>http://aiframe.codeplex.com/wikipage?version=18</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Welcome to the AiFrame community site&lt;/h1&gt;AiFrame &amp;#40;Application Infrastructure Framework&amp;#41; is a framework for business applications. It was created to improve the productivity of the development process and provides best practices like a plugin manager, an application frame, support for nhibernate and a navigation bar.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=155506" alt="Architecture-Overview.jpg" title="Architecture-Overview.jpg" /&gt;&lt;br /&gt;
&lt;h1&gt;Overview&lt;/h1&gt;&lt;h2&gt;Features&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Plugin manager&lt;/li&gt;
&lt;li&gt;Predefined application frame&lt;/li&gt;
&lt;li&gt;Navigation bar, toolbar, main menu, status bar&lt;/li&gt;
&lt;li&gt;Support for application themes&lt;/li&gt;
&lt;li&gt;Product line support&lt;/li&gt;
&lt;li&gt;Configuration mode for configuring database changes or system updates&lt;/li&gt;
&lt;li&gt;Best practices / generic design patterns for business application&lt;/li&gt;
&lt;li&gt;Support for NHibernate&lt;/li&gt;&lt;/ul&gt;

&lt;h1&gt;Download&lt;/h1&gt;Click on the &amp;quot;Downloads&amp;quot; tab at the top of this page to access downloads for AiFrame.&lt;br /&gt;
&lt;h1&gt;Requirements&lt;/h1&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ab99342f-5d1a-413d-8319-81da479ab0d7" class="externalLink"&gt;Microsoft .NET Framework 3.5 SP1&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0a391abd-25c1-4fc0-919f-b21f31ab88b7&amp;amp;displaylang=en" class="externalLink"&gt;Microsoft .NET Framework 4.0&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http&amp;#58;&amp;#47;&amp;#47;www.aiframe.brilliantvision.de"&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=162548" alt="Aiframe&amp;#32;Website" title="Aiframe&amp;#32;Website" /&gt;&lt;/a&gt;&lt;br /&gt;
&lt;h1&gt;Usage instructions&lt;/h1&gt;
&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=198573" alt="Demo" title="Demo" /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>brilliantvision</author><pubDate>Mon, 17 Jan 2011 08:02:43 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20110117080243A</guid></item><item><title>Updated Wiki: Home</title><link>http://aiframe.codeplex.com/wikipage?version=17</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Welcome to the AiFrame community site&lt;/h1&gt;AiFrame &amp;#40;Application Infrastructure Framework&amp;#41; is a framework for business applications. It was created to improve the productivity of the development process and provides best practices like a plugin manager, an application frame, support for nhibernate and a navigation bar.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=155506" alt="Architecture-Overview.jpg" title="Architecture-Overview.jpg" /&gt;&lt;br /&gt;
&lt;h1&gt;Overview&lt;/h1&gt;&lt;h2&gt;Features&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Plugin manager&lt;/li&gt;
&lt;li&gt;Predefined application frame&lt;/li&gt;
&lt;li&gt;Navigation bar, toolbar, main menu, status bar&lt;/li&gt;
&lt;li&gt;Support for application themes&lt;/li&gt;
&lt;li&gt;Product line support&lt;/li&gt;
&lt;li&gt;Configuration mode for configuring database changes or system updates&lt;/li&gt;
&lt;li&gt;Best practices / generic design patterns for business application&lt;/li&gt;
&lt;li&gt;Support for NHibernate&lt;/li&gt;&lt;/ul&gt;

&lt;h1&gt;Download&lt;/h1&gt;Click on the &amp;quot;Downloads&amp;quot; tab at the top of this page to access downloads for AiFrame.&lt;br /&gt;
&lt;h1&gt;Requirements&lt;/h1&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ab99342f-5d1a-413d-8319-81da479ab0d7" class="externalLink"&gt;Microsoft .NET Framework 3.5 SP1&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0a391abd-25c1-4fc0-919f-b21f31ab88b7&amp;amp;displaylang=en" class="externalLink"&gt;Microsoft .NET Framework 4.0&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http&amp;#58;&amp;#47;&amp;#47;www.aiframe.brilliantvision.de"&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=162548" alt="Aiframe&amp;#32;Website" title="Aiframe&amp;#32;Website" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>brilliantvision</author><pubDate>Mon, 01 Nov 2010 10:16:08 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20101101101608A</guid></item><item><title>Updated Wiki: Home</title><link>http://aiframe.codeplex.com/wikipage?version=16</link><description>&lt;div class="wikidoc"&gt;&lt;h1&gt;Welcome to the AiFrame community site&lt;/h1&gt;AiFrame &amp;#40;Application Infrastructure Framework&amp;#41; is a framework for business applications. It was created to improve the productivity of the development process and provides best practices like a plugin manager, an application frame, support for nhibernate and a navigation bar.&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=155506" alt="Architecture-Overview.jpg" title="Architecture-Overview.jpg" /&gt;&lt;br /&gt;
&lt;h1&gt;Overview&lt;/h1&gt;&lt;h2&gt;Features&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Plugin manager&lt;/li&gt;
&lt;li&gt;Predefined application frame&lt;/li&gt;
&lt;li&gt;Navigation bar, toolbar, main menu, status bar&lt;/li&gt;
&lt;li&gt;Support for application themes&lt;/li&gt;
&lt;li&gt;Product line support&lt;/li&gt;
&lt;li&gt;Configuration mode for configuring database changes or system updates&lt;/li&gt;
&lt;li&gt;Best practices / generic design patterns for business application&lt;/li&gt;
&lt;li&gt;Support for NHibernate&lt;/li&gt;&lt;/ul&gt;

&lt;h1&gt;Download&lt;/h1&gt;Click on the &amp;quot;Downloads&amp;quot; tab at the top of this page to access downloads for AiFrame.&lt;br /&gt;
&lt;h1&gt;Requirements&lt;/h1&gt;&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=ab99342f-5d1a-413d-8319-81da479ab0d7" class="externalLink"&gt;Microsoft .NET Framework 3.5 SP1&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt; or &lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=0a391abd-25c1-4fc0-919f-b21f31ab88b7&amp;amp;displaylang=en" class="externalLink"&gt;Microsoft .NET Framework 4.0&lt;span class="externalLinkIcon"&gt;&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http&amp;#58;&amp;#47;&amp;#47;www.aiframe.brilliantvision.de"&gt;&lt;img src="http://i3.codeplex.com/Project/Download/FileDownload.aspx?ProjectName=aiframe&amp;DownloadId=162546" alt="Aiframe&amp;#32;Website" title="Aiframe&amp;#32;Website" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>brilliantvision</author><pubDate>Mon, 01 Nov 2010 10:15:16 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20101101101516A</guid></item></channel></rss>