Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 25 was 25, checked in by swagner, 16 years ago

Worked on ticket #26

  • modified project HeuristicLab.Core to automatically update the version string in a pre-build event using SubWCRev
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="OperatorBaseDescriptionView.cs">
94      <SubType>UserControl</SubType>
95    </Compile>
96    <Compile Include="OperatorBaseDescriptionView.Designer.cs">
97      <DependentUpon>OperatorBaseDescriptionView.cs</DependentUpon>
98    </Compile>
99    <Compile Include="Interfaces\IOperation.cs" />
100    <Compile Include="Interfaces\IOperatorLibrary.cs" />
101    <Compile Include="Interfaces\IVisualizationItem.cs" />
102    <Compile Include="NameChangingEventArgs.cs" />
103    <Compile Include="OperationEventArgs.cs" />
104    <Compile Include="OperatorBaseVariablesView.cs">
105      <SubType>UserControl</SubType>
106    </Compile>
107    <Compile Include="OperatorBaseVariablesView.Designer.cs">
108      <DependentUpon>OperatorBaseVariablesView.cs</DependentUpon>
109    </Compile>
110    <Compile Include="OperatorBaseVariableInfosView.cs">
111      <SubType>UserControl</SubType>
112    </Compile>
113    <Compile Include="OperatorBaseVariableInfosView.Designer.cs">
114      <DependentUpon>OperatorBaseVariableInfosView.cs</DependentUpon>
115    </Compile>
116    <Compile Include="ExceptionEventArgs.cs" />
117    <Compile Include="Interfaces\IConstrainedItem.cs" />
118    <Compile Include="Interfaces\IConstraint.cs" />
119    <Compile Include="Interfaces\IItem.cs" />
120    <Compile Include="ItemBase.cs" />
121    <Compile Include="ItemBaseView.cs">
122      <SubType>UserControl</SubType>
123    </Compile>
124    <Compile Include="ItemBaseView.Designer.cs">
125      <DependentUpon>ItemBaseView.cs</DependentUpon>
126    </Compile>
127    <Compile Include="ItemEventArgs.cs" />
128    <Compile Include="ItemIndexEventArgs.cs" />
129    <Compile Include="OperatorLibrary.cs" />
130    <Compile Include="OperatorLibraryEditor.cs">
131      <SubType>UserControl</SubType>
132    </Compile>
133    <Compile Include="OperatorLibraryEditor.Designer.cs">
134      <DependentUpon>OperatorLibraryEditor.cs</DependentUpon>
135    </Compile>
136    <Compile Include="Properties\Resources.Designer.cs">
137      <AutoGen>True</AutoGen>
138      <DesignTime>True</DesignTime>
139      <DependentUpon>Resources.resx</DependentUpon>
140    </Compile>
141    <Compile Include="ScopeIndexEventArgs.cs" />
142    <Compile Include="EngineBaseEditor.cs">
143      <SubType>UserControl</SubType>
144    </Compile>
145    <Compile Include="EngineBaseEditor.Designer.cs">
146      <DependentUpon>EngineBaseEditor.cs</DependentUpon>
147    </Compile>
148    <Compile Include="VariableInfoEventArgs.cs" />
149    <Compile Include="VariableEventArgs.cs" />
150    <Compile Include="Interfaces\IOperatorGroup.cs" />
151    <Compile Include="Interfaces\IOperatorGraph.cs" />
152    <Compile Include="Interfaces\IScope.cs" />
153    <Compile Include="Interfaces\IVariable.cs" />
154    <Compile Include="Interfaces\IVariableInfo.cs" />
155    <Compile Include="OperatorEventArgs.cs" />
156    <Compile Include="OperatorGroup.cs">
157      <SubType>Code</SubType>
158    </Compile>
159    <Compile Include="OperatorIndexEventArgs.cs" />
160    <Compile Include="ScopeEventArgs.cs" />
161    <Compile Include="OperatorBaseView.cs">
162      <SubType>UserControl</SubType>
163    </Compile>
164    <Compile Include="OperatorBaseView.Designer.cs">
165      <DependentUpon>OperatorBaseView.cs</DependentUpon>
166    </Compile>
167    <Compile Include="OperatorGraphView.cs">
168      <SubType>UserControl</SubType>
169    </Compile>
170    <Compile Include="OperatorGraphView.Designer.cs">
171      <DependentUpon>OperatorGraphView.cs</DependentUpon>
172    </Compile>
173    <Compile Include="ScopeView.cs">
174      <SubType>UserControl</SubType>
175    </Compile>
176    <Compile Include="ScopeView.Designer.cs">
177      <DependentUpon>ScopeView.cs</DependentUpon>
178    </Compile>
179    <Compile Include="VariableInfoView.cs">
180      <SubType>UserControl</SubType>
181    </Compile>
182    <Compile Include="VariableInfoView.Designer.cs">
183      <DependentUpon>VariableInfoView.cs</DependentUpon>
184    </Compile>
185    <Compile Include="VariableView.cs">
186      <SubType>UserControl</SubType>
187    </Compile>
188    <Compile Include="VariableView.Designer.cs">
189      <DependentUpon>VariableView.cs</DependentUpon>
190    </Compile>
191    <Compile Include="ViewBase.cs">
192      <SubType>UserControl</SubType>
193    </Compile>
194    <Compile Include="ViewBase.Designer.cs">
195      <DependentUpon>ViewBase.cs</DependentUpon>
196    </Compile>
197    <Compile Include="Interfaces\IViewable.cs" />
198    <Compile Include="Interfaces\IView.cs" />
199    <Compile Include="EditorBase.cs">
200      <SubType>UserControl</SubType>
201    </Compile>
202    <Compile Include="EditorBase.Designer.cs">
203      <DependentUpon>EditorBase.cs</DependentUpon>
204    </Compile>
205    <Compile Include="Interfaces\IEditable.cs" />
206    <Compile Include="Interfaces\IEditor.cs" />
207    <Compile Include="OperatorBase.cs" />
208    <Compile Include="Interfaces\IRandom.cs" />
209    <Compile Include="OperatorGraph.cs" />
210    <Compile Include="StorableBase.cs" />
211    <Compile Include="Scope.cs" />
212    <Compile Include="EngineBase.cs" />
213    <Compile Include="Interfaces\IEngine.cs" />
214    <Compile Include="Interfaces\IOperator.cs" />
215    <Compile Include="Interfaces\IStorable.cs" />
216    <Compile Include="PersistenceManager.cs" />
217    <Compile Include="HeuristicLabCorePlugin.cs" />
218    <Compile Include="Properties\AssemblyInfo.cs" />
219    <Compile Include="Variable.cs" />
220    <Compile Include="VariableInfo.cs" />
221    <Compile Include="VariableKind.cs" />
222    <Compile Include="VariablesScopeView.cs">
223      <SubType>UserControl</SubType>
224    </Compile>
225    <Compile Include="VariablesScopeView.Designer.cs">
226      <DependentUpon>VariablesScopeView.cs</DependentUpon>
227    </Compile>
228  </ItemGroup>
229  <ItemGroup>
230    <None Include="HeuristicLab.snk" />
231    <None Include="Properties\AssemblyInfo.frame" />
232  </ItemGroup>
233  <ItemGroup>
234    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
235      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
236      <Name>HeuristicLab.PluginInfrastructure</Name>
237    </ProjectReference>
238  </ItemGroup>
239  <ItemGroup>
240    <EmbeddedResource Include="ChooseItemDialog.resx">
241      <DependentUpon>ChooseItemDialog.cs</DependentUpon>
242      <SubType>Designer</SubType>
243    </EmbeddedResource>
244    <EmbeddedResource Include="ChooseOperatorDialog.resx">
245      <DependentUpon>ChooseOperatorDialog.cs</DependentUpon>
246      <SubType>Designer</SubType>
247    </EmbeddedResource>
248    <EmbeddedResource Include="ConstrainedItemBaseView.resx">
249      <DependentUpon>ConstrainedItemBaseView.cs</DependentUpon>
250      <SubType>Designer</SubType>
251    </EmbeddedResource>
252    <EmbeddedResource Include="ChooseTypeDialog.resx">
253      <DependentUpon>ChooseTypeDialog.cs</DependentUpon>
254      <SubType>Designer</SubType>
255    </EmbeddedResource>
256    <EmbeddedResource Include="OperatorBaseDescriptionView.resx">
257      <DependentUpon>OperatorBaseDescriptionView.cs</DependentUpon>
258      <SubType>Designer</SubType>
259    </EmbeddedResource>
260    <EmbeddedResource Include="OperatorBaseVariablesView.resx">
261      <DependentUpon>OperatorBaseVariablesView.cs</DependentUpon>
262      <SubType>Designer</SubType>
263    </EmbeddedResource>
264    <EmbeddedResource Include="OperatorBaseVariableInfosView.resx">
265      <DependentUpon>OperatorBaseVariableInfosView.cs</DependentUpon>
266      <SubType>Designer</SubType>
267    </EmbeddedResource>
268    <EmbeddedResource Include="EditorBase.resx">
269      <SubType>Designer</SubType>
270      <DependentUpon>EditorBase.cs</DependentUpon>
271    </EmbeddedResource>
272    <EmbeddedResource Include="ItemBaseView.resx">
273      <DependentUpon>ItemBaseView.cs</DependentUpon>
274      <SubType>Designer</SubType>
275    </EmbeddedResource>
276    <EmbeddedResource Include="OperatorBaseView.resx">
277      <DependentUpon>OperatorBaseView.cs</DependentUpon>
278      <SubType>Designer</SubType>
279    </EmbeddedResource>
280    <EmbeddedResource Include="OperatorGraphView.resx">
281      <DependentUpon>OperatorGraphView.cs</DependentUpon>
282      <SubType>Designer</SubType>
283    </EmbeddedResource>
284    <EmbeddedResource Include="OperatorLibraryEditor.resx">
285      <DependentUpon>OperatorLibraryEditor.cs</DependentUpon>
286      <SubType>Designer</SubType>
287    </EmbeddedResource>
288    <EmbeddedResource Include="Properties\Resources.resx">
289      <SubType>Designer</SubType>
290      <Generator>ResXFileCodeGenerator</Generator>
291      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
292    </EmbeddedResource>
293    <EmbeddedResource Include="ScopeView.resx">
294      <DependentUpon>ScopeView.cs</DependentUpon>
295      <SubType>Designer</SubType>
296    </EmbeddedResource>
297    <EmbeddedResource Include="EngineBaseEditor.resx">
298      <DependentUpon>EngineBaseEditor.cs</DependentUpon>
299      <SubType>Designer</SubType>
300    </EmbeddedResource>
301    <EmbeddedResource Include="VariableInfoView.resx">
302      <DependentUpon>VariableInfoView.cs</DependentUpon>
303      <SubType>Designer</SubType>
304    </EmbeddedResource>
305    <EmbeddedResource Include="VariablesScopeView.resx">
306      <DependentUpon>VariablesScopeView.cs</DependentUpon>
307      <SubType>Designer</SubType>
308    </EmbeddedResource>
309    <EmbeddedResource Include="VariableView.resx">
310      <DependentUpon>VariableView.cs</DependentUpon>
311      <SubType>Designer</SubType>
312    </EmbeddedResource>
313  </ItemGroup>
314  <ItemGroup>
315    <Content Include="Resources\CombinedOperator.bmp" />
316    <Content Include="Resources\HeuristicLab.ico" />
317    <Content Include="Resources\Operator.bmp" />
318    <Content Include="Resources\ProgrammableOperator.bmp" />
319  </ItemGroup>
320  <ItemGroup>
321    <BootstrapperPackage Include="Microsoft.Net.Framework.2.0">
322      <Visible>False</Visible>
323      <ProductName>.NET Framework 2.0 %28x86%29</ProductName>
324      <Install>true</Install>
325    </BootstrapperPackage>
326    <BootstrapperPackage Include="Microsoft.Net.Framework.3.0">
327      <Visible>False</Visible>
328      <ProductName>.NET Framework 3.0 %28x86%29</ProductName>
329      <Install>false</Install>
330    </BootstrapperPackage>
331    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5">
332      <Visible>False</Visible>
333      <ProductName>.NET Framework 3.5</ProductName>
334      <Install>false</Install>
335    </BootstrapperPackage>
336  </ItemGroup>
337  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
338  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
339       Other similar extension points exist, see Microsoft.Common.targets.
340  <Target Name="BeforeBuild">
341  </Target>
342  <Target Name="AfterBuild">
343  </Target>
344  -->
345  <PropertyGroup>
346    <PreBuildEvent>SubWCRev ..\..\ ..\..\Properties\AssemblyInfo.frame ..\..\Properties\AssemblyInfo.cs</PreBuildEvent>
347  </PropertyGroup>
348</Project>
Note: See TracBrowser for help on using the repository browser.