Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.DataImporter/HeuristicLab.DataImporter/UpdateLocalInstallation.cmd @ 6134

Last change on this file since 6134 was 6134, checked in by gkronber, 13 years ago

#1471: added plugin for DbExplorer interfaces, deleted .resx files, set svn:ignore properties, and added license header

File size: 1.2 KB
Line 
1set target=C:\Program Files\HeuristicLab 3.3\
2
3copy "%SolutionDir%\HeuristicLab.DataImporter.Backend.Csv\%Outdir%\HeuristicLab.DataImporter.Backend.Csv-1.0.dll" "%target%"
4copy "%SolutionDir%\HeuristicLab.DataImporter.Backend.Hl2ImporterFormat\%Outdir%\HeuristicLab.DataImporter.Backend.Hl2ImporterFormat-1.0.dll" "%target%"
5copy "%SolutionDir%\HeuristicLab.DataImporter.Command\%Outdir%\HeuristicLab.DataImporter.Command-1.0.dll" "%target%"
6copy "%SolutionDir%\HeuristicLab.DataImporter.Data\%Outdir%\HeuristicLab.DataImporter.Data-1.0.dll" "%target%"
7copy "%SolutionDir%\HeuristicLab.DataImporter.DataProcessor\%Outdir%\HeuristicLab.DataImporter.DataProcessor-1.0.dll" "%target%"
8copy "%SolutionDir%\HeuristicLab.DataImporter.DbExplorer.Interfaces\%Outdir%\HeuristicLab.DataImporter.DbExplorer.Interfaces-1.0.dll" "%target%"
9
10echo "Platform: %Platform%, architecture: %PROCESSOR_ARCHITECTURE%"
11if "%Platform%" == "x86" (
12  copy "%SolutionDir%\HeuristicLab.DataImporter.OracleInstantClient\32bit\*" "%target%"
13) else if "%Platform%" == "x64" (
14  copy "%SolutionDir%\HeuristicLab.DataImporter.OracleInstantClient\64bit\*" "%target%"
15) else (
16  echo "ERROR: unknown platform: %Platform%"
17)
Note: See TracBrowser for help on using the repository browser.