Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 852 was 852, checked in by swagner, 15 years ago

Integrated ConfigMerger into build process (#403).
Refactored pre- and post-build scripts (#403).

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