Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Core/HeuristicLab.Core.csproj @ 445

Last change on this file since 445 was 187, checked in by mkofler, 16 years ago

Added ItemDictionary and related classes (View, KeyValueEventArgs, EditKeyValueDialog) to the Core and Data projects as per Andreas' request.

File size: 14.4 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>{F43B59AB-2B8C-4570-BC1E-15592086517C}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Core</RootNamespace>
11    <AssemblyName>HeuristicLab.Core</AssemblyName>
12    <SignAssembly>true</SignAssembly>
13    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
14    <FileUpgradeFlags>
15    </FileUpgradeFlags>
16    <OldToolsVersion>2.0</OldToolsVersion>
17    <UpgradeBackupLocation>
18    </UpgradeBackupLocation>
19    <PublishUrl>http://localhost/HeuristicLab.Core/</PublishUrl>
20    <Install>true</Install>
21    <InstallFrom>Web</InstallFrom>
22    <UpdateEnabled>true</UpdateEnabled>
23    <UpdateMode>Foreground</UpdateMode>
24    <UpdateInterval>7</UpdateInterval>
25    <UpdateIntervalUnits>Days</UpdateIntervalUnits>
26    <UpdatePeriodically>false</UpdatePeriodically>
27    <UpdateRequired>false</UpdateRequired>
28    <MapFileExtensions>true</MapFileExtensions>
29    <ApplicationRevision>0</ApplicationRevision>
30    <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
31    <IsWebBootstrapper>true</IsWebBootstrapper>
32    <UseApplicationTrust>false</UseApplicationTrust>
33    <BootstrapperEnabled>true</BootstrapperEnabled>
34  </PropertyGroup>
35  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
36    <DebugSymbols>true</DebugSymbols>
37    <DebugType>full</DebugType>
38    <Optimize>false</Optimize>
39    <OutputPath>bin\Debug\</OutputPath>
40    <DefineConstants>DEBUG;TRACE</DefineConstants>
41    <ErrorReport>prompt</ErrorReport>
42    <WarningLevel>4</WarningLevel>
43    <DocumentationFile>
44    </DocumentationFile>
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.Core.XML</DocumentationFile>
54    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
55  </PropertyGroup>
56  <ItemGroup>
57    <Reference Include="System" />
58    <Reference Include="System.Data" />
59    <Reference Include="System.Drawing" />
60    <Reference Include="System.Windows.Forms" />
61    <Reference Include="System.Xml" />
62  </ItemGroup>
63  <ItemGroup>
64    <Compile Include="Auxiliary.cs" />
65    <Compile Include="ChooseItemDialog.cs">
66      <SubType>Form</SubType>
67    </Compile>
68    <Compile Include="ChooseItemDialog.Designer.cs">
69      <DependentUpon>ChooseItemDialog.cs</DependentUpon>
70    </Compile>
71    <Compile Include="ChooseOperatorDialog.cs">
72      <SubType>Form</SubType>
73    </Compile>
74    <Compile Include="ChooseOperatorDialog.Designer.cs">
75      <DependentUpon>ChooseOperatorDialog.cs</DependentUpon>
76    </Compile>
77    <Compile Include="ConstrainedItemBase.cs" />
78    <Compile Include="ConstrainedItemBaseView.cs">
79      <SubType>UserControl</SubType>
80    </Compile>
81    <Compile Include="ConstrainedItemBaseView.Designer.cs">
82      <DependentUpon>ConstrainedItemBaseView.cs</DependentUpon>
83    </Compile>
84    <Compile Include="ConstraintEventArgs.cs" />
85    <Compile Include="AtomicOperation.cs" />
86    <Compile Include="CompositeOperation.cs" />
87    <Compile Include="ChooseTypeDialog.cs">
88      <SubType>Form</SubType>
89    </Compile>
90    <Compile Include="ChooseTypeDialog.Designer.cs">
91      <DependentUpon>ChooseTypeDialog.cs</DependentUpon>
92    </Compile>
93    <Compile Include="AliasEventArgs.cs" />
94    <Compile Include="KeyValueEventArgs.cs" />
95    <Compile Include="OperatorBaseDescriptionView.cs">
96      <SubType>UserControl</SubType>
97    </Compile>
98    <Compile Include="OperatorBaseDescriptionView.Designer.cs">
99      <DependentUpon>OperatorBaseDescriptionView.cs</DependentUpon>
100    </Compile>
101    <Compile Include="Interfaces\IOperation.cs" />
102    <Compile Include="Interfaces\IOperatorLibrary.cs" />
103    <Compile Include="Interfaces\IVisualizationItem.cs" />
104    <Compile Include="NameChangingEventArgs.cs" />
105    <Compile Include="OperationEventArgs.cs" />
106    <Compile Include="OperatorBaseVariablesView.cs">
107      <SubType>UserControl</SubType>
108    </Compile>
109    <Compile Include="OperatorBaseVariablesView.Designer.cs">
110      <DependentUpon>OperatorBaseVariablesView.cs</DependentUpon>
111    </Compile>
112    <Compile Include="OperatorBaseVariableInfosView.cs">
113      <SubType>UserControl</SubType>
114    </Compile>
115    <Compile Include="OperatorBaseVariableInfosView.Designer.cs">
116      <DependentUpon>OperatorBaseVariableInfosView.cs</DependentUpon>
117    </Compile>
118    <Compile Include="ExceptionEventArgs.cs" />
119    <Compile Include="Interfaces\IConstrainedItem.cs" />
120    <Compile Include="Interfaces\IConstraint.cs" />
121    <Compile Include="Interfaces\IItem.cs" />
122    <Compile Include="ItemBase.cs" />
123    <Compile Include="ItemBaseView.cs">
124      <SubType>UserControl</SubType>
125    </Compile>
126    <Compile Include="ItemBaseView.Designer.cs">
127      <DependentUpon>ItemBaseView.cs</DependentUpon>
128    </Compile>
129    <Compile Include="ItemEventArgs.cs" />
130    <Compile Include="ItemIndexEventArgs.cs" />
131    <Compile Include="OperatorLibrary.cs" />
132    <Compile Include="OperatorLibraryEditor.cs">
133      <SubType>UserControl</SubType>
134    </Compile>
135    <Compile Include="OperatorLibraryEditor.Designer.cs">
136      <DependentUpon>OperatorLibraryEditor.cs</DependentUpon>
137    </Compile>
138    <Compile Include="Properties\Resources.Designer.cs">
139      <AutoGen>True</AutoGen>
140      <DesignTime>True</DesignTime>
141      <DependentUpon>Resources.resx</DependentUpon>
142    </Compile>
143    <Compile Include="ScopeIndexEventArgs.cs" />
144    <Compile Include="EngineBaseEditor.cs">
145      <SubType>UserControl</SubType>
146    </Compile>
147    <Compile Include="EngineBaseEditor.Designer.cs">
148      <DependentUpon>EngineBaseEditor.cs</DependentUpon>
149    </Compile>
150    <Compile Include="VariableInfoEventArgs.cs" />
151    <Compile Include="VariableEventArgs.cs" />
152    <Compile Include="Interfaces\IOperatorGroup.cs" />
153    <Compile Include="Interfaces\IOperatorGraph.cs" />
154    <Compile Include="Interfaces\IScope.cs" />
155    <Compile Include="Interfaces\IVariable.cs" />
156    <Compile Include="Interfaces\IVariableInfo.cs" />
157    <Compile Include="OperatorEventArgs.cs" />
158    <Compile Include="OperatorGroup.cs">
159      <SubType>Code</SubType>
160    </Compile>
161    <Compile Include="OperatorIndexEventArgs.cs" />
162    <Compile Include="ScopeEventArgs.cs" />
163    <Compile Include="OperatorBaseView.cs">
164      <SubType>UserControl</SubType>
165    </Compile>
166    <Compile Include="OperatorBaseView.Designer.cs">
167      <DependentUpon>OperatorBaseView.cs</DependentUpon>
168    </Compile>
169    <Compile Include="OperatorGraphView.cs">
170      <SubType>UserControl</SubType>
171    </Compile>
172    <Compile Include="OperatorGraphView.Designer.cs">
173      <DependentUpon>OperatorGraphView.cs</DependentUpon>
174    </Compile>
175    <Compile Include="ScopeView.cs">
176      <SubType>UserControl</SubType>
177    </Compile>
178    <Compile Include="ScopeView.Designer.cs">
179      <DependentUpon>ScopeView.cs</DependentUpon>
180    </Compile>
181    <Compile Include="VariableInfoView.cs">
182      <SubType>UserControl</SubType>
183    </Compile>
184    <Compile Include="VariableInfoView.Designer.cs">
185      <DependentUpon>VariableInfoView.cs</DependentUpon>
186    </Compile>
187    <Compile Include="VariableView.cs">
188      <SubType>UserControl</SubType>
189    </Compile>
190    <Compile Include="VariableView.Designer.cs">
191      <DependentUpon>VariableView.cs</DependentUpon>
192    </Compile>
193    <Compile Include="ViewBase.cs">
194      <SubType>UserControl</SubType>
195    </Compile>
196    <Compile Include="ViewBase.Designer.cs">
197      <DependentUpon>ViewBase.cs</DependentUpon>
198    </Compile>
199    <Compile Include="Interfaces\IViewable.cs" />
200    <Compile Include="Interfaces\IView.cs" />
201    <Compile Include="EditorBase.cs">
202      <SubType>UserControl</SubType>
203    </Compile>
204    <Compile Include="EditorBase.Designer.cs">
205      <DependentUpon>EditorBase.cs</DependentUpon>
206    </Compile>
207    <Compile Include="Interfaces\IEditable.cs" />
208    <Compile Include="Interfaces\IEditor.cs" />
209    <Compile Include="OperatorBase.cs" />
210    <Compile Include="Interfaces\IRandom.cs" />
211    <Compile Include="OperatorGraph.cs" />
212    <Compile Include="StorableBase.cs" />
213    <Compile Include="Scope.cs" />
214    <Compile Include="EngineBase.cs" />
215    <Compile Include="Interfaces\IEngine.cs" />
216    <Compile Include="Interfaces\IOperator.cs" />
217    <Compile Include="Interfaces\IStorable.cs" />
218    <Compile Include="PersistenceManager.cs" />
219    <Compile Include="HeuristicLabCorePlugin.cs" />
220    <Compile Include="Properties\AssemblyInfo.cs" />
221    <Compile Include="Variable.cs" />
222    <Compile Include="VariableInfo.cs" />
223    <Compile Include="VariableKind.cs" />
224    <Compile Include="VariablesScopeView.cs">
225      <SubType>UserControl</SubType>
226    </Compile>
227    <Compile Include="VariablesScopeView.Designer.cs">
228      <DependentUpon>VariablesScopeView.cs</DependentUpon>
229    </Compile>
230  </ItemGroup>
231  <ItemGroup>
232    <None Include="HeuristicLab.snk" />
233    <None Include="Properties\AssemblyInfo.frame" />
234  </ItemGroup>
235  <ItemGroup>
236    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
237      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
238      <Name>HeuristicLab.PluginInfrastructure</Name>
239    </ProjectReference>
240  </ItemGroup>
241  <ItemGroup>
242    <EmbeddedResource Include="ChooseItemDialog.resx">
243      <DependentUpon>ChooseItemDialog.cs</DependentUpon>
244      <SubType>Designer</SubType>
245    </EmbeddedResource>
246    <EmbeddedResource Include="ChooseOperatorDialog.resx">
247      <DependentUpon>ChooseOperatorDialog.cs</DependentUpon>
248      <SubType>Designer</SubType>
249    </EmbeddedResource>
250    <EmbeddedResource Include="ConstrainedItemBaseView.resx">
251      <DependentUpon>ConstrainedItemBaseView.cs</DependentUpon>
252      <SubType>Designer</SubType>
253    </EmbeddedResource>
254    <EmbeddedResource Include="ChooseTypeDialog.resx">
255      <DependentUpon>ChooseTypeDialog.cs</DependentUpon>
256      <SubType>Designer</SubType>
257    </EmbeddedResource>
258    <EmbeddedResource Include="OperatorBaseDescriptionView.resx">
259      <DependentUpon>OperatorBaseDescriptionView.cs</DependentUpon>
260      <SubType>Designer</SubType>
261    </EmbeddedResource>
262    <EmbeddedResource Include="OperatorBaseVariablesView.resx">
263      <DependentUpon>OperatorBaseVariablesView.cs</DependentUpon>
264      <SubType>Designer</SubType>
265    </EmbeddedResource>
266    <EmbeddedResource Include="OperatorBaseVariableInfosView.resx">
267      <DependentUpon>OperatorBaseVariableInfosView.cs</DependentUpon>
268      <SubType>Designer</SubType>
269    </EmbeddedResource>
270    <EmbeddedResource Include="EditorBase.resx">
271      <SubType>Designer</SubType>
272      <DependentUpon>EditorBase.cs</DependentUpon>
273    </EmbeddedResource>
274    <EmbeddedResource Include="ItemBaseView.resx">
275      <DependentUpon>ItemBaseView.cs</DependentUpon>
276      <SubType>Designer</SubType>
277    </EmbeddedResource>
278    <EmbeddedResource Include="OperatorBaseView.resx">
279      <DependentUpon>OperatorBaseView.cs</DependentUpon>
280      <SubType>Designer</SubType>
281    </EmbeddedResource>
282    <EmbeddedResource Include="OperatorGraphView.resx">
283      <DependentUpon>OperatorGraphView.cs</DependentUpon>
284      <SubType>Designer</SubType>
285    </EmbeddedResource>
286    <EmbeddedResource Include="OperatorLibraryEditor.resx">
287      <DependentUpon>OperatorLibraryEditor.cs</DependentUpon>
288      <SubType>Designer</SubType>
289    </EmbeddedResource>
290    <EmbeddedResource Include="Properties\Resources.resx">
291      <SubType>Designer</SubType>
292      <Generator>ResXFileCodeGenerator</Generator>
293      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
294    </EmbeddedResource>
295    <EmbeddedResource Include="ScopeView.resx">
296      <DependentUpon>ScopeView.cs</DependentUpon>
297      <SubType>Designer</SubType>
298    </EmbeddedResource>
299    <EmbeddedResource Include="EngineBaseEditor.resx">
300      <DependentUpon>EngineBaseEditor.cs</DependentUpon>
301      <SubType>Designer</SubType>
302    </EmbeddedResource>
303    <EmbeddedResource Include="VariableInfoView.resx">
304      <DependentUpon>VariableInfoView.cs</DependentUpon>
305      <SubType>Designer</SubType>
306    </EmbeddedResource>
307    <EmbeddedResource Include="VariablesScopeView.resx">
308      <DependentUpon>VariablesScopeView.cs</DependentUpon>
309      <SubType>Designer</SubType>
310    </EmbeddedResource>
311    <EmbeddedResource Include="VariableView.resx">
312      <DependentUpon>VariableView.cs</DependentUpon>
313      <SubType>Designer</SubType>
314    </EmbeddedResource>
315  </ItemGroup>
316  <ItemGroup>
317    <Content Include="Resources\CombinedOperator.bmp" />
318    <Content Include="Resources\HeuristicLab.ico" />
319    <Content Include="Resources\Operator.bmp" />
320    <Content Include="Resources\ProgrammableOperator.bmp" />
321  </ItemGroup>
322  <ItemGroup>
323    <BootstrapperPackage Include="Microsoft.Net.Framework.2.0">
324      <Visible>False</Visible>
325      <ProductName>.NET Framework 2.0 %28x86%29</ProductName>
326      <Install>true</Install>
327    </BootstrapperPackage>
328    <BootstrapperPackage Include="Microsoft.Net.Framework.3.0">
329      <Visible>False</Visible>
330      <ProductName>.NET Framework 3.0 %28x86%29</ProductName>
331      <Install>false</Install>
332    </BootstrapperPackage>
333    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5">
334      <Visible>False</Visible>
335      <ProductName>.NET Framework 3.5</ProductName>
336      <Install>false</Install>
337    </BootstrapperPackage>
338  </ItemGroup>
339  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
340  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
341       Other similar extension points exist, see Microsoft.Common.targets.
342  <Target Name="BeforeBuild">
343  </Target>
344  <Target Name="AfterBuild">
345  </Target>
346  -->
347  <PropertyGroup>
348    <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
349  </PropertyGroup>
350</Project>
Note: See TracBrowser for help on using the repository browser.