Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/02/12 15:17:51 (12 years ago)
Author:
ascheibe
Message:

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Mono/CopyAssemblies.cmd

    r8383 r8389  
    11for /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
    23for /f "delims=" %%i in ('dir /s/b *.dll.config') do copy %%i bin
    34copy "HeuristicLab\3.3\$(SolutionDir)\bin\HeuristicLab 3.3.exe" bin
    45copy "HeuristicLab\3.3\$(SolutionDir)\bin\HeuristicLab 3.3.pdb" bin
    5 MergeConfigs.cmd
     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 TracChangeset for help on using the changeset viewer.