- Timestamp:
- 06/25/15 18:21:19 (9 years ago)
- Location:
- branches/HiveStatistics/sources/HeuristicLab.Problems.Programmable/3.3
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/HiveStatistics/sources/HeuristicLab.Problems.Programmable/3.3/HeuristicLab.Problems.Programmable-3.3.csproj
r11984 r12515 190 190 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 191 191 <PropertyGroup> 192 <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir) 193 set ProjectDir=$(ProjectDir) 194 set SolutionDir=$(SolutionDir) 195 set Outdir=$(Outdir) 192 <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' "> 193 set Path=%25Path%25;$(ProjectDir);$(SolutionDir) 194 set ProjectDir=$(ProjectDir) 195 set SolutionDir=$(SolutionDir) 196 set Outdir=$(Outdir) 196 197 197 call PreBuildEvent.cmd</PreBuildEvent> 198 call PreBuildEvent.cmd 199 </PreBuildEvent> 200 <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' "> 201 export ProjectDir=$(ProjectDir) 202 export SolutionDir=$(SolutionDir) 203 204 $SolutionDir/PreBuildEvent.sh 205 </PreBuildEvent> 198 206 </PropertyGroup> 199 207 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. -
branches/HiveStatistics/sources/HeuristicLab.Problems.Programmable/3.3/MultiObjectiveProgrammableProblem.cs
r12012 r12515 31 31 namespace HeuristicLab.Problems.Programmable { 32 32 [Item("Programmable Problem (multi-objective)", "Represents a multi-objective problem that can be programmed with a script.")] 33 [Creatable( "Problems")]33 [Creatable(CreatableAttribute.Categories.Problems, Priority = 120)] 34 34 [StorableClass] 35 35 public sealed class MultiObjectiveProgrammableProblem : MultiObjectiveBasicProblem<IEncoding> { -
branches/HiveStatistics/sources/HeuristicLab.Problems.Programmable/3.3/SingleObjectiveProgrammableProblem.cs
r12012 r12515 33 33 namespace HeuristicLab.Problems.Programmable { 34 34 [Item("Programmable Problem (single-objective)", "Represents a single-objective problem that can be programmed with a script.")] 35 [Creatable( "Problems")]35 [Creatable(CreatableAttribute.Categories.Problems, Priority = 100)] 36 36 [StorableClass] 37 37 public sealed class SingleObjectiveProgrammableProblem : SingleObjectiveBasicProblem<IEncoding> {
Note: See TracChangeset
for help on using the changeset viewer.