Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ProblemInstancesRegressionAndClassification/HeuristicLab.Problems.Instances.Regression/3.4/HeuristicLab.Problems.Instances.Regression-3.4.csproj @ 7603

Last change on this file since 7603 was 7603, checked in by sforsten, 12 years ago

#1784:

  • first implementation of regression problem instances with one instance to test
File size: 4.5 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="4.0" 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>8.0.30703</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{26BF13E1-C8B2-4ACE-862D-EBFD360116B3}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Problems.Instances.Regression</RootNamespace>
12    <AssemblyName>HeuristicLab.Problems.Instances.Regression-3.4</AssemblyName>
13    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15  </PropertyGroup>
16  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17    <DebugSymbols>true</DebugSymbols>
18    <DebugType>full</DebugType>
19    <Optimize>false</Optimize>
20    <OutputPath>bin\Debug\</OutputPath>
21    <DefineConstants>DEBUG;TRACE</DefineConstants>
22    <ErrorReport>prompt</ErrorReport>
23    <WarningLevel>4</WarningLevel>
24  </PropertyGroup>
25  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26    <DebugType>pdbonly</DebugType>
27    <Optimize>true</Optimize>
28    <OutputPath>..\..\..\..\trunk\sources\bin\</OutputPath>
29    <DefineConstants>TRACE</DefineConstants>
30    <ErrorReport>prompt</ErrorReport>
31    <WarningLevel>4</WarningLevel>
32  </PropertyGroup>
33  <PropertyGroup>
34    <SignAssembly>true</SignAssembly>
35  </PropertyGroup>
36  <PropertyGroup>
37    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
38  </PropertyGroup>
39  <ItemGroup>
40    <Reference Include="HeuristicLab.Common-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />
41    <Reference Include="HeuristicLab.Core-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />
42    <Reference Include="HeuristicLab.PluginInfrastructure-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />
43    <Reference Include="HeuristicLab.Random-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />
44    <Reference Include="System" />
45    <Reference Include="System.Core" />
46    <Reference Include="System.Xml.Linq" />
47    <Reference Include="System.Data.DataSetExtensions" />
48    <Reference Include="Microsoft.CSharp" />
49    <Reference Include="System.Data" />
50    <Reference Include="System.Xml" />
51  </ItemGroup>
52  <ItemGroup>
53    <Compile Include="Keijzer\KeijzerFunctionEight.cs" />
54    <Compile Include="ResourceRegressionInstanceProvider.cs" />
55    <Compile Include="ArtificialRegressionInstanceProvider.cs" />
56    <Compile Include="ResourceRegressionDataDescriptor.cs" />
57    <Compile Include="ArtificialRegressionDataDescriptor.cs" />
58    <Compile Include="Keijzer\KeijzerInstanceProvider.cs" />
59    <Compile Include="Properties\AssemblyInfo.cs" />
60    <Compile Include="RegressionInstanceProvider.cs" />
61    <Compile Include="ValueGenerator.cs" />
62  </ItemGroup>
63  <ItemGroup>
64    <None Include="HeuristicLab.snk" />
65    <None Include="Plugin.cs.frame" />
66    <None Include="Properties\AssemblyInfo.cs.frame" />
67  </ItemGroup>
68  <ItemGroup>
69    <ProjectReference Include="..\..\HeuristicLab.Problems.DataAnalysis\3.4\HeuristicLab.Problems.DataAnalysis-3.4.csproj">
70      <Project>{DF87C13E-A889-46FF-8153-66DCAA8C5674}</Project>
71      <Name>HeuristicLab.Problems.DataAnalysis-3.4</Name>
72    </ProjectReference>
73    <ProjectReference Include="..\..\HeuristicLab.Problems.Instances\3.3\HeuristicLab.Problems.Instances-3.3.csproj">
74      <Project>{3540E29E-4793-49E7-8EE2-FEA7F61C3994}</Project>
75      <Name>HeuristicLab.Problems.Instances-3.3</Name>
76    </ProjectReference>
77  </ItemGroup>
78  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
79  <PropertyGroup>
80    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
81set ProjectDir=$(ProjectDir)
82set SolutionDir=$(SolutionDir)
83set Outdir=$(Outdir)
84
85call PreBuildEvent.cmd
86</PreBuildEvent>
87  </PropertyGroup>
88  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
89       Other similar extension points exist, see Microsoft.Common.targets.
90  <Target Name="BeforeBuild">
91  </Target>
92  <Target Name="AfterBuild">
93  </Target>
94  -->
95</Project>
Note: See TracBrowser for help on using the repository browser.