Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Scheduling.JSSP/HeuristicLab.Scheduling.JSSP.csproj @ 552

Last change on this file since 552 was 269, checked in by mkofler, 16 years ago

Fixed small bug in OperationUpdater (scheduled operation was not deleted from all predecessor lists)

File size: 7.2 KB
Line 
1<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
2  <PropertyGroup>
3    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
4    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
5    <ProductVersion>9.0.21022</ProductVersion>
6    <SchemaVersion>2.0</SchemaVersion>
7    <ProjectGuid>{4C0EF782-CC94-4A94-BC3E-661D2600559B}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Scheduling.JSSP</RootNamespace>
11    <AssemblyName>HeuristicLab.Scheduling.JSSP</AssemblyName>
12    <SignAssembly>true</SignAssembly>
13    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
14    <StartupObject>
15    </StartupObject>
16    <FileUpgradeFlags>
17    </FileUpgradeFlags>
18    <OldToolsVersion>2.0</OldToolsVersion>
19    <UpgradeBackupLocation>
20    </UpgradeBackupLocation>
21    <PublishUrl>http://localhost/HeuristicLab.Scheduling.JSSP/</PublishUrl>
22    <Install>true</Install>
23    <InstallFrom>Web</InstallFrom>
24    <UpdateEnabled>true</UpdateEnabled>
25    <UpdateMode>Foreground</UpdateMode>
26    <UpdateInterval>7</UpdateInterval>
27    <UpdateIntervalUnits>Days</UpdateIntervalUnits>
28    <UpdatePeriodically>false</UpdatePeriodically>
29    <UpdateRequired>false</UpdateRequired>
30    <MapFileExtensions>true</MapFileExtensions>
31    <ApplicationRevision>0</ApplicationRevision>
32    <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
33    <IsWebBootstrapper>true</IsWebBootstrapper>
34    <UseApplicationTrust>false</UseApplicationTrust>
35    <BootstrapperEnabled>true</BootstrapperEnabled>
36  </PropertyGroup>
37  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
38    <DebugSymbols>true</DebugSymbols>
39    <DebugType>pdbonly</DebugType>
40    <Optimize>false</Optimize>
41    <OutputPath>bin\Debug\</OutputPath>
42    <DefineConstants>DEBUG;TRACE</DefineConstants>
43    <ErrorReport>prompt</ErrorReport>
44    <WarningLevel>4</WarningLevel>
45  </PropertyGroup>
46  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
47    <DebugType>pdbonly</DebugType>
48    <Optimize>true</Optimize>
49    <OutputPath>bin\Release\</OutputPath>
50    <DefineConstants>TRACE</DefineConstants>
51    <ErrorReport>prompt</ErrorReport>
52    <WarningLevel>4</WarningLevel>
53    <DocumentationFile>bin\Release\HeuristicLab.Scheduling.JSSP.XML</DocumentationFile>
54  </PropertyGroup>
55  <ItemGroup>
56    <Reference Include="System" />
57    <Reference Include="System.Data" />
58    <Reference Include="System.Drawing" />
59    <Reference Include="System.Windows.Forms" />
60    <Reference Include="System.Xml" />
61  </ItemGroup>
62  <ItemGroup>
63    <Compile Include="ItemListIndexer.cs" />
64    <Compile Include="JSSPInjectorView.cs">
65      <SubType>UserControl</SubType>
66    </Compile>
67    <Compile Include="JSSPInjectorView.Designer.cs">
68      <DependentUpon>JSSPInjectorView.cs</DependentUpon>
69    </Compile>
70    <Compile Include="JSSPInjector.cs" />
71    <Compile Include="ConditionalSelector.cs" />
72    <Compile Include="CopyVariableFromSubScope.cs" />
73    <Compile Include="IsSchedulable.cs" />
74    <Compile Include="Scores\RemainingNrOfOperations.cs" />
75    <Compile Include="Operation.cs" />
76    <Compile Include="OperationScheduler.cs" />
77    <Compile Include="Scores\OperationScoreBase.cs" />
78    <Compile Include="OperationUpdater.cs" />
79    <Compile Include="OperationView.cs">
80      <SubType>UserControl</SubType>
81    </Compile>
82    <Compile Include="OperationView.Designer.cs">
83      <DependentUpon>OperationView.cs</DependentUpon>
84    </Compile>
85    <Compile Include="Scores\ProcessingTime.cs" />
86    <Compile Include="Scores\RemainingProcessingTime.cs" />
87    <Compile Include="Schedule.cs" />
88    <Compile Include="ScheduleInjector.cs" />
89    <Compile Include="ScheduleTree.cs" />
90    <Compile Include="HeuristicLabJSSPPlugin.cs" />
91    <Compile Include="JSSPParser.cs" />
92    <Compile Include="TimeSlot.cs" />
93    <Compile Include="Properties\AssemblyInfo.cs" />
94  </ItemGroup>
95  <ItemGroup>
96    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
97      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
98      <Name>HeuristicLab.Core</Name>
99    </ProjectReference>
100    <ProjectReference Include="..\HeuristicLab.Data\HeuristicLab.Data.csproj">
101      <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
102      <Name>HeuristicLab.Data</Name>
103    </ProjectReference>
104    <ProjectReference Include="..\HeuristicLab.Functions\HeuristicLab.Functions.csproj">
105      <Project>{B95CA6E2-34BC-4430-994D-BD6E99375319}</Project>
106      <Name>HeuristicLab.Functions</Name>
107    </ProjectReference>
108    <ProjectReference Include="..\HeuristicLab.Operators\HeuristicLab.Operators.csproj">
109      <Project>{A9983BA2-B3B2-475E-8E2C-62050B71D1C5}</Project>
110      <Name>HeuristicLab.Operators</Name>
111    </ProjectReference>
112    <ProjectReference Include="..\HeuristicLab.Permutation\HeuristicLab.Permutation.csproj">
113      <Project>{55FDCFB3-3E8C-4FB0-837C-0CF06BEDED39}</Project>
114      <Name>HeuristicLab.Permutation</Name>
115    </ProjectReference>
116    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
117      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
118      <Name>HeuristicLab.PluginInfrastructure</Name>
119    </ProjectReference>
120    <ProjectReference Include="..\HeuristicLab.Selection\HeuristicLab.Selection.csproj">
121      <Project>{F7CF0571-25CB-43D5-8443-0843A1E2861A}</Project>
122      <Name>HeuristicLab.Selection</Name>
123    </ProjectReference>
124  </ItemGroup>
125  <ItemGroup>
126    <None Include="HeuristicLab.snk" />
127    <None Include="Properties\AssemblyInfo.frame" />
128  </ItemGroup>
129  <ItemGroup>
130    <EmbeddedResource Include="JSSPInjectorView.resx">
131      <DependentUpon>JSSPInjectorView.cs</DependentUpon>
132      <SubType>Designer</SubType>
133    </EmbeddedResource>
134    <EmbeddedResource Include="OperationView.resx">
135      <DependentUpon>OperationView.cs</DependentUpon>
136      <SubType>Designer</SubType>
137    </EmbeddedResource>
138  </ItemGroup>
139  <ItemGroup>
140    <BootstrapperPackage Include="Microsoft.Net.Framework.2.0">
141      <Visible>False</Visible>
142      <ProductName>.NET Framework 2.0 %28x86%29</ProductName>
143      <Install>true</Install>
144    </BootstrapperPackage>
145    <BootstrapperPackage Include="Microsoft.Net.Framework.3.0">
146      <Visible>False</Visible>
147      <ProductName>.NET Framework 3.0 %28x86%29</ProductName>
148      <Install>false</Install>
149    </BootstrapperPackage>
150    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5">
151      <Visible>False</Visible>
152      <ProductName>.NET Framework 3.5</ProductName>
153      <Install>false</Install>
154    </BootstrapperPackage>
155  </ItemGroup>
156  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
157  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
158       Other similar extension points exist, see Microsoft.Common.targets.
159  <Target Name="BeforeBuild">
160  </Target>
161  <Target Name="AfterBuild">
162  </Target>
163  -->
164  <PropertyGroup>
165    <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
166  </PropertyGroup>
167</Project>
Note: See TracBrowser for help on using the repository browser.