Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Mono/CopyAssemblies.cmd @ 8573

Last change on this file since 8573 was 8389, checked in by ascheibe, 12 years ago

#1861 changed HeuristicLab project file to be able to use it as startup project

File size: 1020 bytes
Line 
1for /f "delims=" %%i in ('dir /s/b *.dll') do copy %%i bin
2for /f "delims=" %%i in ('dir /s/b *.pdb') do copy %%i bin
3for /f "delims=" %%i in ('dir /s/b *.dll.config') do copy %%i bin
4copy "HeuristicLab\3.3\$(SolutionDir)\bin\HeuristicLab 3.3.exe" bin
5copy "HeuristicLab\3.3\$(SolutionDir)\bin\HeuristicLab 3.3.pdb" bin
6
7
8
9SET Outdir=bin\
10echo Recreating HeuristicLab 3.3.exe.config...
11copy /Y "%Outdir%app.config" "%Outdir%HeuristicLab 3.3.exe.config"
12
13echo Merging...
14FOR /F "tokens=*" %%A IN ('dir /B "%Outdir%*.dll.config"') DO (
15  ConfigMerger "%Outdir%%%A" "%Outdir%HeuristicLab 3.3.exe.config"
16)
17
18for /f "delims=" %%i in ('dir /s/b bin\*.dll') do copy %%i HeuristicLab\3.3\$(SolutionDir)\bin
19for /f "delims=" %%i in ('dir /s/b bin\*.pdb') do copy %%i HeuristicLab\3.3\$(SolutionDir)\bin
20for /f "delims=" %%i in ('dir /s/b bin\*.dll.config') do copy %%i HeuristicLab\3.3\$(SolutionDir)\bin
21copy "bin\HeuristicLab 3.3.exe.config" "HeuristicLab\3.3\$(SolutionDir)\bin\HeuristicLab 3.3.exe.config"
Note: See TracBrowser for help on using the repository browser.