Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 2506 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: 984 bytes
Line 
1<?xml version="1.0" encoding="utf-8" ?>
2<configuration>
3    <configSections>
4    </configSections>
5  <connectionStrings>
6  </connectionStrings>
7  <runtime>
8    <gcServer enabled="true" />
9  </runtime> 
10  <system.data>
11    <DbProviderFactories>
12      <remove invariant="System.Data.SQLite"/>
13      <add name="SQLite Data Provider" invariant="System.Data.SQLite"
14           description=".Net Framework Data Provider for SQLite"
15           type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite" />
16      <remove invariant="System.Data.SqlServerCe.3.5" />
17      <add name="Microsoft SQL Server Compact Data Provider" invariant="System.Data.SqlServerCe.3.5"
18           description=".NET Framework Data Provider for Microsoft SQL Server Compact"
19           type="System.Data.SqlServerCe.SqlCeProviderFactory, System.Data.SqlServerCe, Version=3.5.1.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91"/>
20    </DbProviderFactories>
21  </system.data>
22</configuration>
Note: See TracBrowser for help on using the repository browser.