Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Collections/sources/HeuristicLab.Functions/HeuristicLab.Functions.csproj @ 755

Last change on this file since 755 was 365, checked in by gkronber, 16 years ago

implemented #195

File size: 6.0 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>{B95CA6E2-34BC-4430-994D-BD6E99375319}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Functions</RootNamespace>
11    <AssemblyName>HeuristicLab.Functions</AssemblyName>
12    <SignAssembly>true</SignAssembly>
13    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
14    <FileUpgradeFlags>
15    </FileUpgradeFlags>
16    <OldToolsVersion>2.0</OldToolsVersion>
17    <UpgradeBackupLocation>
18    </UpgradeBackupLocation>
19    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
20  </PropertyGroup>
21  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
22    <DebugSymbols>true</DebugSymbols>
23    <DebugType>full</DebugType>
24    <Optimize>false</Optimize>
25    <OutputPath>bin\Debug\</OutputPath>
26    <DefineConstants>DEBUG;TRACE</DefineConstants>
27    <ErrorReport>prompt</ErrorReport>
28    <WarningLevel>4</WarningLevel>
29  </PropertyGroup>
30  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
31    <DebugType>pdbonly</DebugType>
32    <Optimize>true</Optimize>
33    <OutputPath>bin\Release\</OutputPath>
34    <DefineConstants>TRACE</DefineConstants>
35    <ErrorReport>prompt</ErrorReport>
36    <WarningLevel>4</WarningLevel>
37    <DocumentationFile>bin\Release\HeuristicLab.Functions.XML</DocumentationFile>
38  </PropertyGroup>
39  <ItemGroup>
40    <Reference Include="System" />
41    <Reference Include="System.Core">
42      <RequiredTargetFramework>3.5</RequiredTargetFramework>
43    </Reference>
44    <Reference Include="System.Data" />
45    <Reference Include="System.Drawing" />
46    <Reference Include="System.Windows.Forms" />
47    <Reference Include="System.Xml" />
48  </ItemGroup>
49  <ItemGroup>
50    <Compile Include="Addition.cs" />
51    <Compile Include="And.cs">
52      <SubType>Code</SubType>
53    </Compile>
54    <Compile Include="Average.cs" />
55    <Compile Include="BakedFunctionTree.cs" />
56    <Compile Include="BakedTreeEvaluator.cs" />
57    <Compile Include="Constant.cs" />
58    <Compile Include="Differential.cs" />
59    <Compile Include="GreaterThan.cs" />
60    <Compile Include="IfThenElse.cs">
61      <SubType>Code</SubType>
62    </Compile>
63    <Compile Include="IFunctionTree.cs" />
64    <Compile Include="ModelAnalyzerExporter.cs" />
65    <Compile Include="Or.cs">
66      <SubType>Code</SubType>
67    </Compile>
68    <Compile Include="ProgrammableFunction.cs" />
69    <Compile Include="Equal.cs" />
70    <Compile Include="FunctionView.cs">
71      <SubType>UserControl</SubType>
72    </Compile>
73    <Compile Include="FunctionView.Designer.cs">
74      <DependentUpon>FunctionView.cs</DependentUpon>
75    </Compile>
76    <Compile Include="IFunctionVisitor.cs" />
77    <Compile Include="LessThan.cs" />
78    <Compile Include="Not.cs" />
79    <Compile Include="Signum.cs" />
80    <Compile Include="Logarithm.cs" />
81    <Compile Include="Exponential.cs" />
82    <Compile Include="Sqrt.cs" />
83    <Compile Include="Power.cs" />
84    <Compile Include="Division.cs" />
85    <Compile Include="Subtraction.cs" />
86    <Compile Include="SymbolTable.cs" />
87    <Compile Include="Tangens.cs" />
88    <Compile Include="Cosinus.cs" />
89    <Compile Include="Sinus.cs" />
90    <Compile Include="Multiplication.cs" />
91    <Compile Include="FunctionBase.cs" />
92    <Compile Include="HeuristicLabFunctionsPlugin.cs" />
93    <Compile Include="IFunction.cs" />
94    <Compile Include="Properties\AssemblyInfo.cs" />
95    <Compile Include="Variable.cs" />
96    <Compile Include="Xor.cs" />
97  </ItemGroup>
98  <ItemGroup>
99    <ProjectReference Include="..\HeuristicLab.Constraints\HeuristicLab.Constraints.csproj">
100      <Project>{FCD62C6F-4793-4593-AE9A-0BDCA256EE99}</Project>
101      <Name>HeuristicLab.Constraints</Name>
102    </ProjectReference>
103    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
104      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
105      <Name>HeuristicLab.Core</Name>
106    </ProjectReference>
107    <ProjectReference Include="..\HeuristicLab.DataAnalysis\HeuristicLab.DataAnalysis.csproj">
108      <Project>{7DD3A97A-56E9-462F-90E2-A351FE7AF5C2}</Project>
109      <Name>HeuristicLab.DataAnalysis</Name>
110    </ProjectReference>
111    <ProjectReference Include="..\HeuristicLab.Data\HeuristicLab.Data.csproj">
112      <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
113      <Name>HeuristicLab.Data</Name>
114    </ProjectReference>
115    <ProjectReference Include="..\HeuristicLab.Operators.Programmable\HeuristicLab.Operators.Programmable.csproj">
116      <Project>{E3CCBFC6-900C-41B6-AFB8-6646DB097435}</Project>
117      <Name>HeuristicLab.Operators.Programmable</Name>
118    </ProjectReference>
119    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
120      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
121      <Name>HeuristicLab.PluginInfrastructure</Name>
122    </ProjectReference>
123  </ItemGroup>
124  <ItemGroup>
125    <None Include="HeuristicLab.snk" />
126    <None Include="Properties\AssemblyInfo.frame" />
127  </ItemGroup>
128  <ItemGroup>
129    <EmbeddedResource Include="FunctionView.resx">
130      <DependentUpon>FunctionView.cs</DependentUpon>
131      <SubType>Designer</SubType>
132    </EmbeddedResource>
133  </ItemGroup>
134  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
135  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
136       Other similar extension points exist, see Microsoft.Common.targets.
137  <Target Name="BeforeBuild">
138  </Target>
139  <Target Name="AfterBuild">
140  </Target>
141  -->
142  <PropertyGroup>
143    <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
144  </PropertyGroup>
145</Project>
Note: See TracBrowser for help on using the repository browser.