Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.TestFunctions/HeuristicLab.TestFunctions.csproj @ 237

Last change on this file since 237 was 106, checked in by abeham, 16 years ago

Added TestFunctionInjector with nicer interface (closes ticket #82)

File size: 4.4 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.Drawing" />
40    <Reference Include="System.Windows.Forms" />
41    <Reference Include="System.Xml" />
42  </ItemGroup>
43  <ItemGroup>
44    <Compile Include="AckleyEvaluator.cs" />
45    <Compile Include="GriewangkEvaluator.cs" />
46    <Compile Include="SchwefelEvaluator.cs" />
47    <Compile Include="RosenbrockEvaluator.cs" />
48    <Compile Include="RastriginEvaluator.cs" />
49    <Compile Include="SphereEvaluator.cs" />
50    <Compile Include="HeuristicLabTestFunctionsPlugin.cs" />
51    <Compile Include="Properties\AssemblyInfo.cs" />
52    <Compile Include="TestFunctionEvaluatorBase.cs" />
53    <Compile Include="TestFunctionInjector.cs" />
54    <Compile Include="TestFunctionInjectorView.cs">
55      <SubType>UserControl</SubType>
56    </Compile>
57    <Compile Include="TestFunctionInjectorView.Designer.cs">
58      <DependentUpon>TestFunctionInjectorView.cs</DependentUpon>
59    </Compile>
60  </ItemGroup>
61  <ItemGroup>
62    <None Include="HeuristicLab.snk" />
63    <None Include="Properties\AssemblyInfo.frame" />
64  </ItemGroup>
65  <ItemGroup>
66    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
67      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
68      <Name>HeuristicLab.Core</Name>
69    </ProjectReference>
70    <ProjectReference Include="..\HeuristicLab.Data\HeuristicLab.Data.csproj">
71      <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
72      <Name>HeuristicLab.Data</Name>
73    </ProjectReference>
74    <ProjectReference Include="..\HeuristicLab.Operators\HeuristicLab.Operators.csproj">
75      <Project>{A9983BA2-B3B2-475E-8E2C-62050B71D1C5}</Project>
76      <Name>HeuristicLab.Operators</Name>
77    </ProjectReference>
78    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
79      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
80      <Name>HeuristicLab.PluginInfrastructure</Name>
81    </ProjectReference>
82  </ItemGroup>
83  <ItemGroup>
84    <EmbeddedResource Include="TestFunctionInjectorView.resx">
85      <DependentUpon>TestFunctionInjectorView.cs</DependentUpon>
86    </EmbeddedResource>
87  </ItemGroup>
88  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
89  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
90       Other similar extension points exist, see Microsoft.Common.targets.
91  <Target Name="BeforeBuild">
92  </Target>
93  <Target Name="AfterBuild">
94  </Target>
95  -->
96  <PropertyGroup>
97    <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
98  </PropertyGroup>
99</Project>
Note: See TracBrowser for help on using the repository browser.