Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PluginInfrastructure Refactoring/HeuristicLab.PluginInfrastructure/app.config @ 2507

Last change on this file since 2507 was 2504, checked in by gkronber, 15 years ago

Worked on core of plugin infrastructure.

  • Collected all classes into a single assembly (HL.PluginInfrastructure)
  • Moved SplashScreen and MainForm from HeuristicLab.exe project into the plugin infrastructure.
  • Introduced namespaces
  • Added strict access modifiers (internal)
  • Fixed most FxCop warnings in plugin infrastructure core.
  • Fixed issues with plugin load/unload events
  • Deleted empty interface IControl

#799

File size: 1.1 KB
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<configuration>
3    <configSections>
4        <sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
5            <section name="HeuristicLab.PluginInfrastructure.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
6        </sectionGroup>
7    </configSections>
8    <applicationSettings>
9        <HeuristicLab.PluginInfrastructure.Properties.Settings>
10            <setting name="PluginDir" serializeAs="String">
11                <value>plugins</value>
12            </setting>
13            <setting name="User" serializeAs="String">
14                <value />
15            </setting>
16            <setting name="Organization" serializeAs="String">
17                <value />
18            </setting>
19        </HeuristicLab.PluginInfrastructure.Properties.Settings>
20    </applicationSettings>
21</configuration>
Note: See TracBrowser for help on using the repository browser.