Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.TestFunctions/HeuristicLab.TestFunctions.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: 3.6 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3  <PropertyGroup>
4    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6    <ProductVersion>9.0.21022</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{9A781B2F-A58D-4270-A28A-3B14BBC11F4A}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.TestFunctions</RootNamespace>
12    <AssemblyName>HeuristicLab.TestFunctions</AssemblyName>
13    <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <SignAssembly>true</SignAssembly>
16    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
17  </PropertyGroup>
18  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
19    <DebugSymbols>true</DebugSymbols>
20    <DebugType>full</DebugType>
21    <Optimize>false</Optimize>
22    <OutputPath>bin\Debug\</OutputPath>
23    <DefineConstants>DEBUG;TRACE</DefineConstants>
24    <ErrorReport>prompt</ErrorReport>
25    <WarningLevel>4</WarningLevel>
26  </PropertyGroup>
27  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28    <DebugType>pdbonly</DebugType>
29    <Optimize>true</Optimize>
30    <OutputPath>bin\Release\</OutputPath>
31    <DefineConstants>TRACE</DefineConstants>
32    <ErrorReport>prompt</ErrorReport>
33    <WarningLevel>4</WarningLevel>
34    <DocumentationFile>bin\Release\HeuristicLab.TestFunctions.XML</DocumentationFile>
35  </PropertyGroup>
36  <ItemGroup>
37    <Reference Include="System" />
38    <Reference Include="System.Data" />
39    <Reference Include="System.Xml" />
40  </ItemGroup>
41  <ItemGroup>
42    <Compile Include="AckleyEvaluator.cs" />
43    <Compile Include="GriewangkEvaluator.cs" />
44    <Compile Include="SchwefelEvaluator.cs" />
45    <Compile Include="RosenbrockEvaluator.cs" />
46    <Compile Include="RastriginEvaluator.cs" />
47    <Compile Include="SphereEvaluator.cs" />
48    <Compile Include="HeuristicLabTestFunctionsPlugin.cs" />
49    <Compile Include="Properties\AssemblyInfo.cs" />
50    <Compile Include="TestFunctionEvaluatorBase.cs" />
51  </ItemGroup>
52  <ItemGroup>
53    <None Include="HeuristicLab.snk" />
54  </ItemGroup>
55  <ItemGroup>
56    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
57      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
58      <Name>HeuristicLab.Core</Name>
59    </ProjectReference>
60    <ProjectReference Include="..\HeuristicLab.Data\HeuristicLab.Data.csproj">
61      <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
62      <Name>HeuristicLab.Data</Name>
63    </ProjectReference>
64    <ProjectReference Include="..\HeuristicLab.Operators\HeuristicLab.Operators.csproj">
65      <Project>{A9983BA2-B3B2-475E-8E2C-62050B71D1C5}</Project>
66      <Name>HeuristicLab.Operators</Name>
67    </ProjectReference>
68    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
69      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
70      <Name>HeuristicLab.PluginInfrastructure</Name>
71    </ProjectReference>
72  </ItemGroup>
73  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
74  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
75       Other similar extension points exist, see Microsoft.Common.targets.
76  <Target Name="BeforeBuild">
77  </Target>
78  <Target Name="AfterBuild">
79  </Target>
80  -->
81</Project>
Note: See TracBrowser for help on using the repository browser.