Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Scheduling/HeuristicLab.Encodings.ScheduleEncoding/3.3/HeuristicLab.Encodings.ScheduleEncoding-3.3.csproj @ 6475

Last change on this file since 6475 was 6475, checked in by jhelm, 13 years ago

#1329: Added DirectSchedule-Classes for optimization with the direct-schedule encoding.

File size: 9.3 KB
RevLine 
[6406]1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3  <PropertyGroup>
4    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6    <ProductVersion>8.0.30703</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{17F3EF80-B2C3-4B8D-A4D5-BE9CE3BA2606}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Encodings.ScheduleEncoding</RootNamespace>
12    <AssemblyName>HeuristicLab.Encodings.ScheduleEncoding-3.3</AssemblyName>
13    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15  </PropertyGroup>
16  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17    <DebugSymbols>true</DebugSymbols>
18    <DebugType>full</DebugType>
19    <Optimize>false</Optimize>
20    <OutputPath>bin\Debug\</OutputPath>
21    <DefineConstants>DEBUG;TRACE</DefineConstants>
22    <ErrorReport>prompt</ErrorReport>
23    <WarningLevel>4</WarningLevel>
24  </PropertyGroup>
25  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26    <DebugType>pdbonly</DebugType>
27    <Optimize>true</Optimize>
28    <OutputPath>bin\Release\</OutputPath>
29    <DefineConstants>TRACE</DefineConstants>
30    <ErrorReport>prompt</ErrorReport>
31    <WarningLevel>4</WarningLevel>
32  </PropertyGroup>
33  <PropertyGroup>
34    <SignAssembly>true</SignAssembly>
35  </PropertyGroup>
36  <PropertyGroup>
37    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
38  </PropertyGroup>
39  <ItemGroup>
40    <Reference Include="System" />
41    <Reference Include="System.Core" />
42    <Reference Include="System.Xml.Linq" />
43    <Reference Include="System.Data.DataSetExtensions" />
44    <Reference Include="Microsoft.CSharp" />
45    <Reference Include="System.Data" />
46    <Reference Include="System.Xml" />
47  </ItemGroup>
48  <ItemGroup>
[6475]49    <Compile Include="Interfaces\IDirectScheduleOperator.cs" />
[6406]50    <Compile Include="Interfaces\IScheduleEvaluationAlgorithm.cs" />
51    <Compile Include="Interfaces\IJSMOperator.cs" />
52    <Compile Include="Interfaces\IPRVOperator.cs" />
53    <Compile Include="Interfaces\IPWROperator.cs" />
54    <Compile Include="Interfaces\IScheduleCreator.cs" />
55    <Compile Include="Interfaces\IScheduleCrossover.cs" />
56    <Compile Include="Interfaces\IScheduleDecoder.cs" />
57    <Compile Include="Interfaces\IScheduleEncoding.cs" />
58    <Compile Include="Interfaces\IScheduleEvaluator.cs" />
59    <Compile Include="Interfaces\IScheduleManipulator.cs" />
60    <Compile Include="Interfaces\IScheduleOperator.cs" />
61    <Compile Include="JobSequenceMatrix\Crossovers\JSMCrossover.cs" />
62    <Compile Include="JobSequenceMatrix\Crossovers\JSMJOXCrossover.cs" />
63    <Compile Include="JobSequenceMatrix\Crossovers\JSMOXCrossover.cs" />
64    <Compile Include="JobSequenceMatrix\Crossovers\JSMSXXCrossover.cs" />
65    <Compile Include="JobSequenceMatrix\JSMEncoding.cs" />
66    <Compile Include="JobSequenceMatrix\JSMRandomCreator.cs" />
67    <Compile Include="JobSequenceMatrix\Manipulators\JSMManipulator.cs" />
68    <Compile Include="JobSequenceMatrix\Manipulators\JSMShiftChangeManipulator.cs" />
69    <Compile Include="JobSequenceMatrix\Manipulators\JSMSwapManipulator.cs" />
70    <Compile Include="PermutationWithRepetition\Crossovers\PWRCrossover.cs" />
71    <Compile Include="PermutationWithRepetition\Crossovers\PWRGOXCrossover.cs" />
72    <Compile Include="PermutationWithRepetition\Crossovers\PWRPPXCrossover.cs" />
73    <Compile Include="PermutationWithRepetition\Manipulators\PWRManipulator.cs" />
[6475]74    <Compile Include="PermutationWithRepetition\Manipulators\PWRInsertionManipulator.cs" />
[6406]75    <Compile Include="PermutationWithRepetition\PWREncoding.cs" />
76    <Compile Include="PermutationWithRepetition\PWRRandomCreator.cs" />
77    <Compile Include="Plugin.cs" />
78    <Compile Include="PriorityRulesVector\Crossovers\PRVCrossover.cs" />
79    <Compile Include="PriorityRulesVector\Crossovers\PRVDiscreteCrossover.cs" />
80    <Compile Include="PriorityRulesVector\Crossovers\PRVSinglePointCrossover.cs" />
81    <Compile Include="PriorityRulesVector\Manipulators\PRVManipulator.cs" />
82    <Compile Include="PriorityRulesVector\Manipulators\PRVUniformOnePositionManipulator.cs" />
83    <Compile Include="PriorityRulesVector\PRVEncoding.cs" />
84    <Compile Include="PriorityRulesVector\PRVRandomCreator.cs" />
85    <Compile Include="Properties\AssemblyInfo.cs" />
[6475]86    <Compile Include="ScheduleEncoding\Crossovers\DirectScheduleCrossover.cs" />
87    <Compile Include="ScheduleEncoding\Crossovers\DirectScheduleGTCrossover.cs" />
88    <Compile Include="ScheduleEncoding\GTAlgorithmUtils.cs" />
89    <Compile Include="ScheduleEncoding\Job.cs" />
90    <Compile Include="ScheduleEncoding\Manipulators\DirectScheduleManipulator.cs" />
91    <Compile Include="ScheduleEncoding\Manipulators\ConcreteScheduleManipulator.cs" />
92    <Compile Include="ScheduleEncoding\DirectScheduleRandomCreator.cs" />
[6406]93    <Compile Include="ScheduleEncoding\Resource.cs" />
94    <Compile Include="ScheduleEncoding\Schedule.cs" />
95    <Compile Include="ScheduleEncoding\ScheduledTask.cs" />
96    <Compile Include="ScheduleCreator.cs" />
97    <Compile Include="ScheduleCrossover.cs" />
98    <Compile Include="ScheduleDecoder.cs" />
[6475]99    <Compile Include="ScheduleEncoding\Task.cs" />
[6406]100    <Compile Include="ScheduleManipulator.cs" />
101  </ItemGroup>
102  <ItemGroup>
103    <None Include="HeuristicLab.snk" />
104    <None Include="Plugin.cs.frame" />
105    <None Include="Properties\AssemblyInfo.frame" />
106  </ItemGroup>
107  <ItemGroup>
108    <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
109      <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project>
110      <Name>HeuristicLab.Collections-3.3</Name>
111    </ProjectReference>
112    <ProjectReference Include="..\..\HeuristicLab.Common.Resources\3.3\HeuristicLab.Common.Resources-3.3.csproj">
113      <Project>{0E27A536-1C4A-4624-A65E-DC4F4F23E3E1}</Project>
114      <Name>HeuristicLab.Common.Resources-3.3</Name>
115    </ProjectReference>
116    <ProjectReference Include="..\..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj">
117      <Project>{A9AD58B9-3EF9-4CC1-97E5-8D909039FF5C}</Project>
118      <Name>HeuristicLab.Common-3.3</Name>
119    </ProjectReference>
120    <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj">
121      <Project>{C36BD924-A541-4A00-AFA8-41701378DDC5}</Project>
122      <Name>HeuristicLab.Core-3.3</Name>
123    </ProjectReference>
124    <ProjectReference Include="..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj">
125      <Project>{BBAB9DF5-5EF3-4BA8-ADE9-B36E82114937}</Project>
126      <Name>HeuristicLab.Data-3.3</Name>
127    </ProjectReference>
128    <ProjectReference Include="..\..\HeuristicLab.Encodings.IntegerVectorEncoding\3.3\HeuristicLab.Encodings.IntegerVectorEncoding-3.3.csproj">
129      <Project>{DDFB14DD-2A85-493C-A52D-E69729BBAEB0}</Project>
130      <Name>HeuristicLab.Encodings.IntegerVectorEncoding-3.3</Name>
131    </ProjectReference>
132    <ProjectReference Include="..\..\HeuristicLab.Encodings.PermutationEncoding\3.3\HeuristicLab.Encodings.PermutationEncoding-3.3.csproj">
133      <Project>{DBECB8B0-B166-4133-BAF1-ED67C3FD7FCA}</Project>
134      <Name>HeuristicLab.Encodings.PermutationEncoding-3.3</Name>
135    </ProjectReference>
136    <ProjectReference Include="..\..\HeuristicLab.Operators\3.3\HeuristicLab.Operators-3.3.csproj">
137      <Project>{23DA7FF4-D5B8-41B6-AA96-F0561D24F3EE}</Project>
138      <Name>HeuristicLab.Operators-3.3</Name>
139    </ProjectReference>
140    <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">
141      <Project>{14AB8D24-25BC-400C-A846-4627AA945192}</Project>
142      <Name>HeuristicLab.Optimization-3.3</Name>
143    </ProjectReference>
144    <ProjectReference Include="..\..\HeuristicLab.Parameters\3.3\HeuristicLab.Parameters-3.3.csproj">
145      <Project>{56F9106A-079F-4C61-92F6-86A84C2D84B7}</Project>
146      <Name>HeuristicLab.Parameters-3.3</Name>
147    </ProjectReference>
148    <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj">
149      <Project>{102BC7D3-0EF9-439C-8F6D-96FF0FDB8E1B}</Project>
150      <Name>HeuristicLab.Persistence-3.3</Name>
151    </ProjectReference>
152    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
153      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
154      <Name>HeuristicLab.PluginInfrastructure-3.3</Name>
155    </ProjectReference>
156  </ItemGroup>
157  <ItemGroup />
158  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
159  <PropertyGroup>
160    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
161set ProjectDir=$(ProjectDir)
162set SolutionDir=$(SolutionDir)
163set Outdir=$(Outdir)
164
165call PreBuildEvent.cmd
166SubWCRev "%25ProjectDir%25\" "%25ProjectDir%25\Plugin.cs.frame" "%25ProjectDir%25\Plugin.cs"</PreBuildEvent>
167  </PropertyGroup>
168  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
169       Other similar extension points exist, see Microsoft.Common.targets.
170  <Target Name="BeforeBuild">
171  </Target>
172  <Target Name="AfterBuild">
173  </Target>
174  -->
175</Project>
Note: See TracBrowser for help on using the repository browser.