Changeset 11993
- Timestamp:
- 02/12/15 20:23:42 (10 years ago)
- Location:
- trunk/sources
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.ParameterlessPopulationPyramid/3.3/HeuristicLab.Algorithms.ParameterlessPopulationPyramid-3.3.csproj
r11987 r11993 162 162 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 163 163 <PropertyGroup> 164 <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir) 165 set ProjectDir=$(ProjectDir) 166 set SolutionDir=$(SolutionDir) 167 set Outdir=$(Outdir) 164 <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' "> 165 set Path=%25Path%25;$(ProjectDir);$(SolutionDir) 166 set ProjectDir=$(ProjectDir) 167 set SolutionDir=$(SolutionDir) 168 set Outdir=$(Outdir) 168 169 169 call PreBuildEvent.cmd</PreBuildEvent> 170 call PreBuildEvent.cmd 171 </PreBuildEvent> 172 <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' "> 173 export ProjectDir=$(ProjectDir) 174 export SolutionDir=$(SolutionDir) 175 176 $SolutionDir/PreBuildEvent.sh 177 </PreBuildEvent> 170 178 </PropertyGroup> 171 179 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. -
trunk/sources/HeuristicLab.Problems.Binary/3.3/HeuristicLab.Problems.Binary-3.3.csproj
r11990 r11993 17 17 <DebugType>full</DebugType> 18 18 <Optimize>false</Optimize> 19 <OutputPath> ..\..\bin\</OutputPath>19 <OutputPath>$(SolutionDir)\bin\</OutputPath> 20 20 <DefineConstants>DEBUG;TRACE</DefineConstants> 21 21 <ErrorReport>prompt</ErrorReport> … … 25 25 <DebugType>pdbonly</DebugType> 26 26 <Optimize>true</Optimize> 27 <OutputPath> ..\..\bin\</OutputPath>27 <OutputPath>$(SolutionDir)\bin\</OutputPath> 28 28 <DefineConstants>TRACE</DefineConstants> 29 29 <ErrorReport>prompt</ErrorReport> … … 38 38 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'"> 39 39 <DebugSymbols>true</DebugSymbols> 40 <OutputPath> bin\x64\Debug\</OutputPath>40 <OutputPath>$(SolutionDir)\bin\</OutputPath> 41 41 <DefineConstants>DEBUG;TRACE</DefineConstants> 42 42 <DebugType>full</DebugType> … … 46 46 </PropertyGroup> 47 47 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'"> 48 <OutputPath> bin\x64\Release\</OutputPath>48 <OutputPath>$(SolutionDir)\bin\</OutputPath> 49 49 <DefineConstants>TRACE</DefineConstants> 50 50 <Optimize>true</Optimize> … … 56 56 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'"> 57 57 <DebugSymbols>true</DebugSymbols> 58 <OutputPath> bin\x86\Debug\</OutputPath>58 <OutputPath>$(SolutionDir)\bin\</OutputPath> 59 59 <DefineConstants>DEBUG;TRACE</DefineConstants> 60 60 <DebugType>full</DebugType> … … 64 64 </PropertyGroup> 65 65 <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'"> 66 <OutputPath> bin\x86\Release\</OutputPath>66 <OutputPath>$(SolutionDir)\bin\</OutputPath> 67 67 <DefineConstants>TRACE</DefineConstants> 68 68 <Optimize>true</Optimize> … … 149 149 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 150 150 <PropertyGroup> 151 <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir) 152 set ProjectDir=$(ProjectDir) 153 set SolutionDir=$(SolutionDir) 154 set Outdir=$(Outdir) 151 <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' "> 152 set Path=%25Path%25;$(ProjectDir);$(SolutionDir) 153 set ProjectDir=$(ProjectDir) 154 set SolutionDir=$(SolutionDir) 155 set Outdir=$(Outdir) 155 156 156 call PreBuildEvent.cmd 157 </PreBuildEvent> 158 </PropertyGroup> 157 call PreBuildEvent.cmd 158 </PreBuildEvent> 159 <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' "> 160 export ProjectDir=$(ProjectDir) 161 export SolutionDir=$(SolutionDir) 162 163 $SolutionDir/PreBuildEvent.sh 164 </PreBuildEvent> 165 </PropertyGroup> 159 166 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 160 167 Other similar extension points exist, see Microsoft.Common.targets.
Note: See TracChangeset
for help on using the changeset viewer.