Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/27/18 01:42:07 (6 years ago)
Author:
swagner
Message:

#2877: Generalized MergeConfigs scripts, cleaned app.config files, corrected post-build events

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2877_HiveImprovements/HeuristicLab.Clients.Hive.Slave.WindowsService/3.3/HeuristicLab.Clients.Hive.Slave.WindowsService-3.3.csproj

    r11623 r15660  
    185185</PreBuildEvent>
    186186  </PropertyGroup>
     187  <PropertyGroup>
     188    <PostBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">
     189set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
     190set ProjectDir=$(ProjectDir)
     191set SolutionDir=$(SolutionDir)
     192set OutDir=$(OutDir)
     193set TargetDir=$(TargetDir)
     194set TargetPath=$(TargetPath)
     195set Platform=$(PlatformName)
     196set Configuration=$(ConfigurationName)
     197
     198call "$(SolutionDir)MergeConfigs.cmd"
     199    </PostBuildEvent>
     200    <PostBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
     201export ProjectDir=$(ProjectDir)
     202export SolutionDir=$(SolutionDir)
     203export OutDir=$(OutDir)
     204export TargetDir=$(TargetDir)
     205export TargetPath=$(TargetPath)
     206export Platform=$(PlatformName)
     207export Configuration=$(ConfigurationName)
     208
     209$SolutionDir/MergeConfigs.sh
     210</PostBuildEvent>
     211  </PropertyGroup>
    187212  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
    188213       Other similar extension points exist, see Microsoft.Common.targets.
Note: See TracChangeset for help on using the changeset viewer.