Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Data/3.3/HeuristicLab.Data-3.3.csproj @ 2694

Last change on this file since 2694 was 2694, checked in by swagner, 14 years ago

Operator architecture refactoring (#95)

  • finished implemented ideas which came up during yesterday's presentation of HeuristicLab.Core and related plugins
File size: 8.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.30729</ProductVersion>
6    <SchemaVersion>2.0</SchemaVersion>
7    <ProjectGuid>{BBAB9DF5-5EF3-4BA8-ADE9-B36E82114937}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Data</RootNamespace>
11    <AssemblyName>HeuristicLab.Data-3.3</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    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
35  </PropertyGroup>
36  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
37    <DebugSymbols>true</DebugSymbols>
38    <DebugType>full</DebugType>
39    <Optimize>false</Optimize>
40    <OutputPath>bin\Debug\</OutputPath>
41    <DefineConstants>DEBUG;TRACE</DefineConstants>
42    <ErrorReport>prompt</ErrorReport>
43    <WarningLevel>4</WarningLevel>
44    <DocumentationFile>
45    </DocumentationFile>
46  </PropertyGroup>
47  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
48    <DebugType>pdbonly</DebugType>
49    <Optimize>true</Optimize>
50    <OutputPath>bin\Release\</OutputPath>
51    <DefineConstants>TRACE</DefineConstants>
52    <ErrorReport>prompt</ErrorReport>
53    <WarningLevel>4</WarningLevel>
54    <DocumentationFile>bin\Release\HeuristicLab.Data-3.3.xml</DocumentationFile>
55    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
56  </PropertyGroup>
57  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
58    <DebugSymbols>true</DebugSymbols>
59    <OutputPath>bin\x86\Debug\</OutputPath>
60    <DefineConstants>DEBUG;TRACE</DefineConstants>
61    <DebugType>full</DebugType>
62    <PlatformTarget>x86</PlatformTarget>
63    <ErrorReport>prompt</ErrorReport>
64  </PropertyGroup>
65  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
66    <OutputPath>bin\x86\Release\</OutputPath>
67    <DefineConstants>TRACE</DefineConstants>
68    <DocumentationFile>bin\Release\HeuristicLab.Data-3.2.XML</DocumentationFile>
69    <Optimize>true</Optimize>
70    <DebugType>pdbonly</DebugType>
71    <PlatformTarget>x86</PlatformTarget>
72    <ErrorReport>prompt</ErrorReport>
73  </PropertyGroup>
74  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
75    <DebugSymbols>true</DebugSymbols>
76    <OutputPath>bin\x64\Debug\</OutputPath>
77    <DefineConstants>DEBUG;TRACE</DefineConstants>
78    <DebugType>full</DebugType>
79    <PlatformTarget>x64</PlatformTarget>
80    <ErrorReport>prompt</ErrorReport>
81  </PropertyGroup>
82  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
83    <OutputPath>bin\x64\Release\</OutputPath>
84    <DefineConstants>TRACE</DefineConstants>
85    <DocumentationFile>bin\Release\HeuristicLab.Data-3.2.XML</DocumentationFile>
86    <Optimize>true</Optimize>
87    <DebugType>pdbonly</DebugType>
88    <PlatformTarget>x64</PlatformTarget>
89    <ErrorReport>prompt</ErrorReport>
90  </PropertyGroup>
91  <ItemGroup>
92    <Reference Include="System" />
93    <Reference Include="System.Core">
94      <RequiredTargetFramework>3.5</RequiredTargetFramework>
95    </Reference>
96    <Reference Include="System.Data" />
97    <Reference Include="System.Drawing" />
98    <Reference Include="System.Windows.Forms" />
99    <Reference Include="System.Xml" />
100  </ItemGroup>
101  <ItemGroup>
102    <Compile Include="BoolData.cs">
103      <SubType>Code</SubType>
104    </Compile>
105    <Compile Include="BoolArrayData.cs" />
106    <Compile Include="BoolMatrixData.cs" />
107    <Compile Include="StringMatrixData.cs" />
108    <Compile Include="StringArrayData.cs" />
109    <Compile Include="FormatPatterns.cs" />
110    <Compile Include="DoubleArrayData.cs" />
111    <Compile Include="DoubleMatrixData.cs" />
112    <Compile Include="IntMatrixData.cs" />
113    <Compile Include="ValueTypeMatrixData.cs" />
114    <Compile Include="StringConvertibleMatrixDataDimensions.cs" />
115    <Compile Include="IStringConvertibleMatrixData.cs" />
116    <Compile Include="ValueTypeArrayData.cs" />
117    <Compile Include="IntArrayData.cs" />
118    <Compile Include="StringData.cs">
119      <SubType>Code</SubType>
120    </Compile>
121    <Compile Include="TimeSpanData.cs" />
122    <Compile Include="DateTimeData.cs" />
123    <Compile Include="DoubleData.cs">
124      <SubType>Code</SubType>
125    </Compile>
126    <Compile Include="IStringConvertibleData.cs" />
127    <Compile Include="ValueTypeData.cs">
128      <SubType>Code</SubType>
129    </Compile>
130    <Compile Include="HeuristicLabDataPlugin.cs" />
131    <Compile Include="IntData.cs">
132      <SubType>Code</SubType>
133    </Compile>
134    <Compile Include="Properties\AssemblyInfo.cs" />
135  </ItemGroup>
136  <ItemGroup>
137    <ProjectReference Include="..\..\HeuristicLab.Common.Resources\3.2\HeuristicLab.Common.Resources-3.2.csproj">
138      <Project>{0E27A536-1C4A-4624-A65E-DC4F4F23E3E1}</Project>
139      <Name>HeuristicLab.Common.Resources-3.2</Name>
140    </ProjectReference>
141    <ProjectReference Include="..\..\HeuristicLab.Common\3.2\HeuristicLab.Common-3.2.csproj">
142      <Project>{1FC004FC-59AF-4249-B1B6-FF25873A20E4}</Project>
143      <Name>HeuristicLab.Common-3.2</Name>
144    </ProjectReference>
145    <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj">
146      <Project>{C36BD924-A541-4A00-AFA8-41701378DDC5}</Project>
147      <Name>HeuristicLab.Core-3.3</Name>
148    </ProjectReference>
149    <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj">
150      <Project>{102BC7D3-0EF9-439C-8F6D-96FF0FDB8E1B}</Project>
151      <Name>HeuristicLab.Persistence-3.3</Name>
152    </ProjectReference>
153    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
154      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
155      <Name>HeuristicLab.PluginInfrastructure</Name>
156    </ProjectReference>
157  </ItemGroup>
158  <ItemGroup>
159    <None Include="HeuristicLab.snk" />
160    <None Include="Properties\AssemblyInfo.frame" />
161  </ItemGroup>
162  <ItemGroup>
163    <BootstrapperPackage Include="Microsoft.Net.Framework.2.0">
164      <Visible>False</Visible>
165      <ProductName>.NET Framework 2.0 %28x86%29</ProductName>
166      <Install>true</Install>
167    </BootstrapperPackage>
168    <BootstrapperPackage Include="Microsoft.Net.Framework.3.0">
169      <Visible>False</Visible>
170      <ProductName>.NET Framework 3.0 %28x86%29</ProductName>
171      <Install>false</Install>
172    </BootstrapperPackage>
173    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5">
174      <Visible>False</Visible>
175      <ProductName>.NET Framework 3.5</ProductName>
176      <Install>false</Install>
177    </BootstrapperPackage>
178  </ItemGroup>
179  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
180  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
181       Other similar extension points exist, see Microsoft.Common.targets.
182  <Target Name="BeforeBuild">
183  </Target>
184  <Target Name="AfterBuild">
185  </Target>
186  -->
187  <PropertyGroup>
188    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
189set ProjectDir=$(ProjectDir)
190set SolutionDir=$(SolutionDir)
191set Outdir=$(Outdir)
192
193call PreBuildEvent.cmd</PreBuildEvent>
194  </PropertyGroup>
195</Project>
Note: See TracBrowser for help on using the repository browser.