Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Data/HeuristicLab.Data.csproj @ 817

Last change on this file since 817 was 763, checked in by gkronber, 16 years ago

removed visitor interfaces and methods in HeuristicLab.Data and fixed classes in HeuristicLab.Random to work without visitor methods. #343 (Rethink about usefulness of visitors for ObjectData and Constraints)

File size: 12.5 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.30729</ProductVersion>
6    <SchemaVersion>2.0</SchemaVersion>
7    <ProjectGuid>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Data</RootNamespace>
11    <AssemblyName>HeuristicLab.Data-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.Data/</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.Data-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.Data-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="ArrayDataBaseView.cs">
82      <SubType>UserControl</SubType>
83    </Compile>
84    <Compile Include="ArrayDataBaseView.Designer.cs">
85      <DependentUpon>ArrayDataBaseView.cs</DependentUpon>
86    </Compile>
87    <Compile Include="BoolArrayData.cs" />
88    <Compile Include="BoolArrayDataView.cs">
89      <SubType>UserControl</SubType>
90    </Compile>
91    <Compile Include="BoolArrayDataView.Designer.cs">
92      <DependentUpon>BoolArrayDataView.cs</DependentUpon>
93    </Compile>
94    <Compile Include="BoolData.cs" />
95    <Compile Include="BoolDataView.cs">
96      <SubType>UserControl</SubType>
97    </Compile>
98    <Compile Include="BoolDataView.Designer.cs">
99      <DependentUpon>BoolDataView.cs</DependentUpon>
100    </Compile>
101    <Compile Include="BoolMatrixData.cs" />
102    <Compile Include="ArrayDataBase.cs" />
103    <Compile Include="BoolMatrixDataView.cs">
104      <SubType>UserControl</SubType>
105    </Compile>
106    <Compile Include="BoolMatrixDataView.Designer.cs">
107      <DependentUpon>BoolMatrixDataView.cs</DependentUpon>
108    </Compile>
109    <Compile Include="ConstrainedItemList.cs" />
110    <Compile Include="ConstrainedItemListView.cs">
111      <SubType>UserControl</SubType>
112    </Compile>
113    <Compile Include="ConstrainedItemListView.Designer.cs">
114      <DependentUpon>ConstrainedItemListView.cs</DependentUpon>
115    </Compile>
116    <Compile Include="ConstrainedObjectData.cs" />
117    <Compile Include="ConstrainedIntData.cs" />
118    <Compile Include="ConstrainedIntDataView.cs">
119      <SubType>UserControl</SubType>
120    </Compile>
121    <Compile Include="ConstrainedIntDataView.Designer.cs">
122      <DependentUpon>ConstrainedIntDataView.cs</DependentUpon>
123    </Compile>
124    <Compile Include="ConstrainedDoubleData.cs" />
125    <Compile Include="ConstrainedDoubleDataView.cs">
126      <SubType>UserControl</SubType>
127    </Compile>
128    <Compile Include="ConstrainedDoubleDataView.Designer.cs">
129      <DependentUpon>ConstrainedDoubleDataView.cs</DependentUpon>
130    </Compile>
131    <Compile Include="EditKeyValueDialog.cs">
132      <SubType>Form</SubType>
133    </Compile>
134    <Compile Include="EditKeyValueDialog.designer.cs">
135      <DependentUpon>EditKeyValueDialog.cs</DependentUpon>
136    </Compile>
137    <Compile Include="ItemDictionaryView_T.cs">
138      <SubType>UserControl</SubType>
139    </Compile>
140    <Compile Include="ItemDictionaryView_T.designer.cs">
141      <DependentUpon>ItemDictionaryView_T.cs</DependentUpon>
142    </Compile>
143    <Compile Include="ItemDictionary_T.cs" />
144    <Compile Include="NullData.cs" />
145    <Compile Include="IntMatrixDataView.cs">
146      <SubType>UserControl</SubType>
147    </Compile>
148    <Compile Include="IntMatrixDataView.Designer.cs">
149      <DependentUpon>IntMatrixDataView.cs</DependentUpon>
150    </Compile>
151    <Compile Include="DoubleMatrixDataView.cs">
152      <SubType>UserControl</SubType>
153    </Compile>
154    <Compile Include="DoubleMatrixDataView.Designer.cs">
155      <DependentUpon>DoubleMatrixDataView.cs</DependentUpon>
156    </Compile>
157    <Compile Include="IntArrayDataView.cs">
158      <SubType>UserControl</SubType>
159    </Compile>
160    <Compile Include="IntArrayDataView.Designer.cs">
161      <DependentUpon>IntArrayDataView.cs</DependentUpon>
162    </Compile>
163    <Compile Include="DoubleArrayDataView.cs">
164      <SubType>UserControl</SubType>
165    </Compile>
166    <Compile Include="DoubleArrayDataView.Designer.cs">
167      <DependentUpon>DoubleArrayDataView.cs</DependentUpon>
168    </Compile>
169    <Compile Include="DoubleDataView.cs">
170      <SubType>UserControl</SubType>
171    </Compile>
172    <Compile Include="DoubleDataView.Designer.cs">
173      <DependentUpon>DoubleDataView.cs</DependentUpon>
174    </Compile>
175    <Compile Include="IntDataView.cs">
176      <SubType>UserControl</SubType>
177    </Compile>
178    <Compile Include="IntDataView.Designer.cs">
179      <DependentUpon>IntDataView.cs</DependentUpon>
180    </Compile>
181    <Compile Include="IObjectData.cs" />
182    <Compile Include="ItemList.cs" />
183    <Compile Include="ItemListView.cs">
184      <SubType>UserControl</SubType>
185    </Compile>
186    <Compile Include="ItemListView_T.cs">
187      <SubType>UserControl</SubType>
188    </Compile>
189    <Compile Include="ItemListView_T.Designer.cs">
190      <DependentUpon>ItemListView_T.cs</DependentUpon>
191    </Compile>
192    <Compile Include="ItemList_T.cs">
193    </Compile>
194    <Compile Include="MatrixDataBaseView.cs">
195      <SubType>UserControl</SubType>
196    </Compile>
197    <Compile Include="MatrixDataBaseView.Designer.cs">
198      <DependentUpon>MatrixDataBaseView.cs</DependentUpon>
199    </Compile>
200    <Compile Include="ObjectData.cs" />
201    <Compile Include="StringDataView.cs">
202      <SubType>UserControl</SubType>
203    </Compile>
204    <Compile Include="StringDataView.Designer.cs">
205      <DependentUpon>StringDataView.cs</DependentUpon>
206    </Compile>
207    <Compile Include="DoubleArrayData.cs" />
208    <Compile Include="DoubleData.cs" />
209    <Compile Include="DoubleMatrixData.cs" />
210    <Compile Include="HeuristicLabDataPlugin.cs" />
211    <Compile Include="IntArrayData.cs" />
212    <Compile Include="IntData.cs" />
213    <Compile Include="IntMatrixData.cs" />
214    <Compile Include="Properties\AssemblyInfo.cs" />
215    <Compile Include="StringData.cs" />
216  </ItemGroup>
217  <ItemGroup>
218    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
219      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
220      <Name>HeuristicLab.Core</Name>
221    </ProjectReference>
222    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
223      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
224      <Name>HeuristicLab.PluginInfrastructure</Name>
225    </ProjectReference>
226  </ItemGroup>
227  <ItemGroup>
228    <None Include="HeuristicLab.snk" />
229    <None Include="Properties\AssemblyInfo.frame" />
230  </ItemGroup>
231  <ItemGroup>
232    <EmbeddedResource Include="ArrayDataBaseView.resx">
233      <DependentUpon>ArrayDataBaseView.cs</DependentUpon>
234      <SubType>Designer</SubType>
235    </EmbeddedResource>
236    <EmbeddedResource Include="BoolDataView.resx">
237      <DependentUpon>BoolDataView.cs</DependentUpon>
238      <SubType>Designer</SubType>
239    </EmbeddedResource>
240    <EmbeddedResource Include="ConstrainedIntDataView.resx">
241      <DependentUpon>ConstrainedIntDataView.cs</DependentUpon>
242      <SubType>Designer</SubType>
243    </EmbeddedResource>
244    <EmbeddedResource Include="ConstrainedDoubleDataView.resx">
245      <DependentUpon>ConstrainedDoubleDataView.cs</DependentUpon>
246      <SubType>Designer</SubType>
247    </EmbeddedResource>
248    <EmbeddedResource Include="ConstrainedItemListView.resx">
249      <DependentUpon>ConstrainedItemListView.cs</DependentUpon>
250      <SubType>Designer</SubType>
251    </EmbeddedResource>
252    <EmbeddedResource Include="DoubleDataView.resx">
253      <DependentUpon>DoubleDataView.cs</DependentUpon>
254      <SubType>Designer</SubType>
255    </EmbeddedResource>
256    <EmbeddedResource Include="EditKeyValueDialog.resx">
257      <DependentUpon>EditKeyValueDialog.cs</DependentUpon>
258      <SubType>Designer</SubType>
259    </EmbeddedResource>
260    <EmbeddedResource Include="IntDataView.resx">
261      <DependentUpon>IntDataView.cs</DependentUpon>
262      <SubType>Designer</SubType>
263    </EmbeddedResource>
264    <EmbeddedResource Include="ItemDictionaryView_T.resx">
265      <DependentUpon>ItemDictionaryView_T.cs</DependentUpon>
266      <SubType>Designer</SubType>
267    </EmbeddedResource>
268    <EmbeddedResource Include="ItemListView_T.resx">
269      <DependentUpon>ItemListView_T.cs</DependentUpon>
270      <SubType>Designer</SubType>
271    </EmbeddedResource>
272    <EmbeddedResource Include="MatrixDataBaseView.resx">
273      <DependentUpon>MatrixDataBaseView.cs</DependentUpon>
274      <SubType>Designer</SubType>
275    </EmbeddedResource>
276    <EmbeddedResource Include="StringDataView.resx">
277      <DependentUpon>StringDataView.cs</DependentUpon>
278      <SubType>Designer</SubType>
279    </EmbeddedResource>
280  </ItemGroup>
281  <ItemGroup>
282    <BootstrapperPackage Include="Microsoft.Net.Framework.2.0">
283      <Visible>False</Visible>
284      <ProductName>.NET Framework 2.0 %28x86%29</ProductName>
285      <Install>true</Install>
286    </BootstrapperPackage>
287    <BootstrapperPackage Include="Microsoft.Net.Framework.3.0">
288      <Visible>False</Visible>
289      <ProductName>.NET Framework 3.0 %28x86%29</ProductName>
290      <Install>false</Install>
291    </BootstrapperPackage>
292    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5">
293      <Visible>False</Visible>
294      <ProductName>.NET Framework 3.5</ProductName>
295      <Install>false</Install>
296    </BootstrapperPackage>
297  </ItemGroup>
298  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
299  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
300       Other similar extension points exist, see Microsoft.Common.targets.
301  <Target Name="BeforeBuild">
302  </Target>
303  <Target Name="AfterBuild">
304  </Target>
305  -->
306  <PropertyGroup>
307    <PreBuildEvent>cmd /c ""$(SolutionDir)PreBuildEvent.cmd" "$(ProjectDir).""</PreBuildEvent>
308  </PropertyGroup>
309</Project>
Note: See TracBrowser for help on using the repository browser.