Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/30/09 12:06:59 (15 years ago)
Author:
swagner
Message:

Added mechanism for executing custom post build scripts (#640)

Location:
trunk/sources/HeuristicLab
Files:
2 edited
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab

    • Property svn:ignore
      •  

        old new  
        22obj
        33*.user
         4CustomPostBuild.cmd
  • trunk/sources/HeuristicLab/CustomPostBuildTemplate_UpdateLocalInstallation.cmd

    r1966 r1970  
    77copy "ICSharpCode.SharpZipLib.dll" "%target%"
    88copy "ICSharpCode.SharpZipLib License.txt" "%target%"
    9 copy "plugins\*.*" "%target%\plugins"
     9rmdir /s /q "%target%\plugins"
     10xcopy "plugins" "%target%\plugins" /e /i
  • trunk/sources/HeuristicLab/HeuristicLab.csproj

    r1887 r1970  
    136136    <Content Include="Resources\HeuristicLab.ico" />
    137137    <None Include="app.config" />
     138    <None Include="CustomPostBuild.cmd" />
    138139    <None Include="CopyAssemblies.cmd" />
     140    <None Include="CustomPostBuildTemplate_UpdateLocalInstallation.cmd" />
    139141    <None Include="MergeConfigs.cmd" />
    140142    <None Include="Properties\AssemblyInfo.frame" />
     
    143145    <None Include="Resources\List.gif" />
    144146    <None Include="Resources\Logo_white.gif" />
    145     <None Include="UpdateLocalInstallation.cmd" />
    146147  </ItemGroup>
    147148  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
     
    159160set Outdir=$(Outdir)
    160161set Platform=$(PlatformName)
     162set Configuration=$(ConfigurationName)
    161163
    162164call MergeConfigs.cmd
    163 call CopyAssemblies.cmd</PostBuildEvent>
     165call CopyAssemblies.cmd
     166if exist "%25ProjectDir%25CustomPostBuild.cmd" call CustomPostBuild.cmd</PostBuildEvent>
    164167    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
    165168set ProjectDir=$(ProjectDir)
    166169set SolutionDir=$(SolutionDir)
    167170set Outdir=$(Outdir)
     171set Configuration=$(ConfigurationName)
    168172
    169173call PreBuildEvent.cmd</PreBuildEvent>
Note: See TracChangeset for help on using the changeset viewer.