Changeset 2223 for trunk/sources/HeuristicLab
- Timestamp:
- 08/03/09 14:23:54 (16 years ago)
- Location:
- trunk/sources/HeuristicLab
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab/CopyAssemblies.cmd
r2222 r2223 77 77 copy "%SolutionDir%\HeuristicLab.Modeling\3.2\%Outdir%\HeuristicLab.Modeling-3.2.dll" .\plugins 78 78 copy "%SolutionDir%\HeuristicLab.Modeling\3.3\%Outdir%\HeuristicLab.Modeling-3.3.dll" .\plugins 79 copy "%SolutionDir%\HeuristicLab.Modeling.Database\3.2\%Outdir%\HeuristicLab.Modeling.Database-3.2.dll" .\plugins 80 copy "%SolutionDir%\HeuristicLab.Modeling.Database.SQLServerCompact\3.2\%Outdir%\HeuristicLab.Modeling.Database.SQLServerCompact-3.2.dll" .\plugins 79 81 copy "%SolutionDir%\HeuristicLab.Operators\3.2\%Outdir%\HeuristicLab.Operators-3.2.dll" .\plugins 80 82 copy "%SolutionDir%\HeuristicLab.Operators\3.3\%Outdir%\HeuristicLab.Operators-3.3.dll" .\plugins … … 110 112 copy "%SolutionDir%\HeuristicLab.SQLite\3.2\SQLite License.txt" .\plugins 111 113 copy "%SolutionDir%\HeuristicLab.SQLite\3.2\SQLite.NET.chm" .\plugins 114 copy "%SolutionDir%\HeuristicLAb.SQLServerCompact\3.2\%Outdir%\HeuristicLab.SQLServerCompact-3.2.dll" .\plugins 115 copy "%SolutionDir%\HeuristicLAb.SQLServerCompact\3.2\%Outdir%\System.Data.SqlServerCe.dll" .\plugins 112 116 copy "%SolutionDir%\HeuristicLab.StatisticalAnalysis\3.2\%Outdir%\HeuristicLab.StatisticalAnalysis-3.2.dll" .\plugins 113 117 copy "%SolutionDir%\HeuristicLab.SupportVectorMachines\3.2\%Outdir%\HeuristicLab.SupportVectorMachines-3.2.dll" .\plugins … … 132 136 if "%Platform%" == "x86" ( 133 137 copy /B /Y "%SolutionDir%\HeuristicLab.SQLite\3.2\System.Data.SQLite.dll" .\plugins 138 xcopy "%SolutionDir%\HeuristicLab.SQLServerCompact\3.2\x86\*" .\plugins /e /i 134 139 ) else if "%Platform%" == "x64" ( 135 140 copy /B /Y "%SolutionDir%\HeuristicLab.SQLite\3.2\System.Data.SQLite.x64.dll" .\plugins\System.Data.SQLite.dll 141 xcopy "%SolutionDir%\HeuristicLab.SQLServerCompact\3.2\x64\*" .\plugins /e /i 136 142 ) else if "%Platform%" == "AnyCPU" ( 137 143 if "%PROCESSOR_ARCHITECTURE%" == "x64" ( 138 144 copy /B /Y "%SolutionDir%\HeuristicLab.SQLite\3.2\System.Data.SQLite.x64.dll" .\plugins\System.Data.SQLite.dll 145 xcopy "%SolutionDir%\HeuristicLab.SQLServerCompact\3.2\x64\*" .\plugins /e /i 139 146 ) else if "%PROCESSOR_ARCHITECTURE%" == "x86" ( 140 147 copy /B /Y "%SolutionDir%\HeuristicLab.SQLite\3.2\System.Data.SQLite.dll" .\plugins 148 xcopy "%SolutionDir%\HeuristicLab.SQLServerCompact\3.2\x86\*" .\plugins /e /i 141 149 ) else ( 142 150 echo "ERROR: unknown architecture: "%PROCESSOR_ARCHITECTURE%" -
trunk/sources/HeuristicLab/app.config
r1143 r2223 15 15 <remove invariant="System.Data.SQLite"/> 16 16 <add name="SQLite Data Provider" invariant="System.Data.SQLite" 17 description=".Net Framework Data Provider for SQLite" type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite" /> 17 description=".Net Framework Data Provider for SQLite" 18 type="System.Data.SQLite.SQLiteFactory, System.Data.SQLite" /> 19 <remove invariant="System.Data.SqlServerCe.3.5" /> 20 <add name="Microsoft SQL Server Compact Data Provider" invariant="System.Data.SqlServerCe.3.5" 21 description=".NET Framework Data Provider for Microsoft SQL Server Compact" 22 type="System.Data.SqlServerCe.SqlCeProviderFactory, System.Data.SqlServerCe, Version=3.5.1.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91"/> 18 23 </DbProviderFactories> 19 24 </system.data>
Note: See TracChangeset
for help on using the changeset viewer.