Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Functions/HeuristicLab.Functions.csproj @ 2

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

Added HeuristicLab 3.0 sources from former SVN repository at revision 52

File size: 5.1 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  </PropertyGroup>
38  <ItemGroup>
39    <Reference Include="System" />
40    <Reference Include="System.Core">
41      <RequiredTargetFramework>3.5</RequiredTargetFramework>
42    </Reference>
43    <Reference Include="System.Data" />
44    <Reference Include="System.Drawing" />
45    <Reference Include="System.Windows.Forms" />
46    <Reference Include="System.Xml" />
47  </ItemGroup>
48  <ItemGroup>
49    <Compile Include="Addition.cs" />
50    <Compile Include="And.cs" />
51    <Compile Include="Average.cs" />
52    <Compile Include="Constant.cs" />
53    <Compile Include="Equal.cs" />
54    <Compile Include="FunctionView.cs">
55      <SubType>UserControl</SubType>
56    </Compile>
57    <Compile Include="FunctionView.Designer.cs">
58      <DependentUpon>FunctionView.cs</DependentUpon>
59    </Compile>
60    <Compile Include="IfThenElse.cs" />
61    <Compile Include="IFunctionVisitor.cs" />
62    <Compile Include="LessThan.cs" />
63    <Compile Include="Not.cs" />
64    <Compile Include="Or.cs" />
65    <Compile Include="Signum.cs" />
66    <Compile Include="Logarithm.cs" />
67    <Compile Include="Exponential.cs" />
68    <Compile Include="Sqrt.cs" />
69    <Compile Include="Substraction.cs" />
70    <Compile Include="Power.cs" />
71    <Compile Include="Division.cs" />
72    <Compile Include="Tangens.cs" />
73    <Compile Include="Cosinus.cs" />
74    <Compile Include="Sinus.cs" />
75    <Compile Include="Multiplication.cs" />
76    <Compile Include="FunctionBase.cs" />
77    <Compile Include="HeuristicLabFunctionsPlugin.cs" />
78    <Compile Include="IFunction.cs" />
79    <Compile Include="Properties\AssemblyInfo.cs" />
80    <Compile Include="Variable.cs" />
81    <Compile Include="Xor.cs" />
82  </ItemGroup>
83  <ItemGroup>
84    <ProjectReference Include="..\HeuristicLab.Constraints\HeuristicLab.Constraints.csproj">
85      <Project>{FCD62C6F-4793-4593-AE9A-0BDCA256EE99}</Project>
86      <Name>HeuristicLab.Constraints</Name>
87    </ProjectReference>
88    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
89      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
90      <Name>HeuristicLab.Core</Name>
91    </ProjectReference>
92    <ProjectReference Include="..\HeuristicLab.DataAnalysis\HeuristicLab.DataAnalysis.csproj">
93      <Project>{7DD3A97A-56E9-462F-90E2-A351FE7AF5C2}</Project>
94      <Name>HeuristicLab.DataAnalysis</Name>
95    </ProjectReference>
96    <ProjectReference Include="..\HeuristicLab.Data\HeuristicLab.Data.csproj">
97      <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
98      <Name>HeuristicLab.Data</Name>
99    </ProjectReference>
100    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
101      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
102      <Name>HeuristicLab.PluginInfrastructure</Name>
103    </ProjectReference>
104  </ItemGroup>
105  <ItemGroup>
106    <None Include="HeuristicLab.snk" />
107  </ItemGroup>
108  <ItemGroup>
109    <EmbeddedResource Include="FunctionView.resx">
110      <DependentUpon>FunctionView.cs</DependentUpon>
111      <SubType>Designer</SubType>
112    </EmbeddedResource>
113  </ItemGroup>
114  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
115  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
116       Other similar extension points exist, see Microsoft.Common.targets.
117  <Target Name="BeforeBuild">
118  </Target>
119  <Target Name="AfterBuild">
120  </Target>
121  -->
122</Project>
Note: See TracBrowser for help on using the repository browser.