Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataAnalysisService/HeuristicLab.Encodings.ParameterConfigurationTreeEncoding/3.3/HeuristicLab.Encodings.ParameterConfigurationTreeEncoding.csproj @ 7938

Last change on this file since 7938 was 7938, checked in by spimming, 12 years ago

#1853:

  • allow to set range constraints
  • when parameterizing, special case for fixed value parameters
File size: 6.7 KB
RevLine 
[7838]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>{8BF5F8CB-C876-4EA6-B6D7-F0D8B14DDF6E}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Encodings.ParameterConfigurationTreeEncoding</RootNamespace>
12    <AssemblyName>HeuristicLab.Encodings.ParameterConfigurationTreeEncoding-3.3</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>..\..\..\..\trunk\sources\bin\</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>
[7840]40    <Reference Include="HeuristicLab.Analysis-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />
41    <Reference Include="HeuristicLab.Collections-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />
42    <Reference Include="HeuristicLab.Common-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />
43    <Reference Include="HeuristicLab.Core-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />
44    <Reference Include="HeuristicLab.Data-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />
45    <Reference Include="HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4, Version=3.4.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />
46    <Reference Include="HeuristicLab.Operators-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />
47    <Reference Include="HeuristicLab.Optimization-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />
48    <Reference Include="HeuristicLab.Parameters-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />
49    <Reference Include="HeuristicLab.Persistence-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />
50    <Reference Include="HeuristicLab.PluginInfrastructure-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />
51    <Reference Include="HeuristicLab.Problems.DataAnalysis.Symbolic-3.4, Version=3.4.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />
52    <Reference Include="HeuristicLab.SequentialEngine-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL" />
[7838]53    <Reference Include="System" />
54    <Reference Include="System.Core" />
[7840]55    <Reference Include="System.Drawing" />
[7838]56    <Reference Include="System.Xml.Linq" />
57    <Reference Include="System.Data.DataSetExtensions" />
58    <Reference Include="Microsoft.CSharp" />
59    <Reference Include="System.Data" />
60    <Reference Include="System.Xml" />
61  </ItemGroup>
62  <ItemGroup>
[7840]63    <Compile Include="AlgorithmProblemItem.cs" />
64    <Compile Include="Interfaces\ICheckedValueConfigurationCollection.cs" />
65    <Compile Include="Interfaces\IOptimizable.cs" />
66    <Compile Include="Interfaces\IParameterConfiguration.cs" />
67    <Compile Include="Interfaces\IRange.cs" />
68    <Compile Include="Interfaces\IValueConfiguration.cs" />
69    <Compile Include="MetaOptimizationUtil.cs" />
70    <Compile Include="NullValue.cs" />
71    <Compile Include="ParameterCombinationsEnumerator.cs" />
72    <Compile Include="ParameterConfigurations\ParameterConfiguration.cs" />
73    <Compile Include="ParameterConfigurations\SingleValuedParameterConfiguration.cs" />
74    <Compile Include="ParameterConfigurationTree.cs" />
75    <Compile Include="Plugin.cs" />
[7838]76    <Compile Include="Properties\AssemblyInfo.cs" />
[7840]77    <Compile Include="RangeConstraints\ConstrainedValue.cs" />
[7938]78    <Compile Include="RangeConstraints\IntValueFactorRange.cs" />
[7911]79    <Compile Include="RangeConstraints\DoubleValueFactorRange.cs" />
[7840]80    <Compile Include="RangeConstraints\DoubleValueRange.cs" />
81    <Compile Include="RangeConstraints\IntValueRange.cs" />
82    <Compile Include="RangeConstraints\PercentValueRange.cs" />
83    <Compile Include="RangeConstraints\Range.cs" />
84    <Compile Include="SymbolicExpressionGrammer\SymbolicExpressionGrammarValueConfiguration.cs" />
85    <Compile Include="SymbolicExpressionGrammer\SymbolValueConfiguration.cs" />
86    <Compile Include="ValueConfigurations\CheckedValueConfigurationCollection.cs" />
87    <Compile Include="ValueConfigurations\NullValueConfiguration.cs" />
88    <Compile Include="ValueConfigurations\ParameterizedValueConfiguration.cs" />
89    <Compile Include="ValueConfigurations\RangeValueConfiguration.cs" />
90    <Compile Include="ValueConfigurations\ValueConfiguration.cs" />
[7838]91  </ItemGroup>
92  <ItemGroup>
93    <None Include="HeuristicLab.snk" />
[7840]94    <None Include="Plugin.cs.frame" />
[7838]95    <None Include="Properties\AssemblyInfo.cs.frame" />
96  </ItemGroup>
97  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
98  <PropertyGroup>
99    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
100set ProjectDir=$(ProjectDir)
101set SolutionDir=$(SolutionDir)
102set Outdir=$(Outdir)
103
104call PreBuildEvent.cmd
105</PreBuildEvent>
106  </PropertyGroup>
107  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
108       Other similar extension points exist, see Microsoft.Common.targets.
109  <Target Name="BeforeBuild">
110  </Target>
111  <Target Name="AfterBuild">
112  </Target>
113  -->
114</Project>
Note: See TracBrowser for help on using the repository browser.