Free cookie consent management tool by TermsFeed Policy Generator

Changeset 8374


Ignore:
Timestamp:
08/01/12 13:42:00 (12 years ago)
Author:
ascheibe
Message:

#1861 applied patch 0005 and 0059

Location:
branches/HeuristicLab.Mono
Files:
17 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Mono/HeuristicLab.Analysis.Views/3.3/HeuristicLab.Analysis.Views-3.3.csproj

    r8280 r8374  
    104104    </Reference>
    105105    <Reference Include="System.Drawing" />
    106     <Reference Include="System.Windows.Forms" />
    107     <Reference Include="System.Windows.Forms.DataVisualization" />
     106    <Reference Include="System.Windows.Forms" />   
    108107    <Reference Include="System.Xml.Linq">
    109108      <RequiredTargetFramework>3.5</RequiredTargetFramework>
     
    202201      <Private>False</Private>
    203202    </ProjectReference>
     203    <Reference Include="System.Windows.Forms.DataVisualization">
     204      <HintPath>..\..\bin\System.Windows.Forms.DataVisualization.dll</HintPath>
     205    </Reference>
    204206    <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
    205207      <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project>
  • branches/HeuristicLab.Mono/HeuristicLab.Clients.Hive.Administrator/3.3/HeuristicLab.Clients.Hive.Administrator-3.3.csproj

    r8056 r8374  
    9191    <Reference Include="System.Runtime.Serialization" />
    9292    <Reference Include="System.ServiceModel" />
    93     <Reference Include="System.Windows.Forms" />
    94     <Reference Include="System.Windows.Forms.DataVisualization" />
     93    <Reference Include="System.Windows.Forms" />   
    9594    <Reference Include="System.Xml" />
    9695    <Reference Include="System.Xml.Linq" />
     
    142141  </ItemGroup>
    143142  <ItemGroup>
     143   <Reference Include="System.Windows.Forms.DataVisualization">
     144      <HintPath>..\..\bin\System.Windows.Forms.DataVisualization.dll</HintPath>
     145    </Reference>
    144146    <ProjectReference Include="..\..\HeuristicLab.Clients.Access.Views\3.3\HeuristicLab.Clients.Access.Views-3.3.csproj">
    145147      <Project>{FE856595-64CD-46DA-9CD2-FFF3E6B0D4F2}</Project>
  • branches/HeuristicLab.Mono/HeuristicLab.Clients.Hive.JobManager/3.3/HeuristicLab.Clients.Hive.JobManager-3.3.csproj

    r7910 r8374  
    9090    <Reference Include="System.Runtime.Serialization" />
    9191    <Reference Include="System.ServiceModel" />
    92     <Reference Include="System.Windows.Forms" />
    93     <Reference Include="System.Windows.Forms.DataVisualization" />
     92    <Reference Include="System.Windows.Forms" />   
    9493    <Reference Include="System.Xml" />
    9594    <Reference Include="System.Xml.Linq" />
     
    149148  </ItemGroup>
    150149  <ItemGroup>
     150   <Reference Include="System.Windows.Forms.DataVisualization">
     151      <HintPath>..\..\bin\System.Windows.Forms.DataVisualization.dll</HintPath>
     152    </Reference>
    151153    <ProjectReference Include="..\..\HeuristicLab.Clients.Hive.Views\3.3\HeuristicLab.Clients.Hive.Views-3.3.csproj">
    152154      <Project>{E1D6C801-892A-406A-B606-F158E36DD3C3}</Project>
  • branches/HeuristicLab.Mono/HeuristicLab.Clients.Hive.Slave.Views/3.3/HeuristicLab.Clients.Hive.Slave.Views-3.3.csproj

    r6983 r8374  
    140140    <Reference Include="System.ServiceModel" />
    141141    <Reference Include="System.ServiceProcess" />
    142     <Reference Include="System.Windows.Forms" />
    143     <Reference Include="System.Windows.Forms.DataVisualization" />
     142    <Reference Include="System.Windows.Forms" />   
    144143    <Reference Include="System.Xml.Linq" />
    145144    <Reference Include="System.Data.DataSetExtensions" />
     
    279278  </ItemGroup>
    280279  <ItemGroup>
     280   <Reference Include="System.Windows.Forms.DataVisualization">
     281      <HintPath>..\..\bin\System.Windows.Forms.DataVisualization.dll</HintPath>
     282    </Reference>
    281283    <ProjectReference Include="..\..\HeuristicLab.Clients.Hive.Slave\3.3\HeuristicLab.Clients.Hive.Slave-3.3.csproj">
    282284      <Project>{989FE92B-484E-41EE-87E2-6A24AF0381D8}</Project>
  • branches/HeuristicLab.Mono/HeuristicLab.Clients.Hive.Views/3.3/HeuristicLab.Clients.Hive.Views-3.3.csproj

    r7582 r8374  
    8787    <Reference Include="System.Drawing" />
    8888    <Reference Include="System.Runtime.Serialization" />
    89     <Reference Include="System.Windows.Forms" />
    90     <Reference Include="System.Windows.Forms.DataVisualization" />
     89    <Reference Include="System.Windows.Forms" />   
    9190    <Reference Include="System.Xml.Linq" />
    9291    <Reference Include="System.Data.DataSetExtensions" />
     
    177176  </ItemGroup>
    178177  <ItemGroup>
     178   <Reference Include="System.Windows.Forms.DataVisualization">
     179      <HintPath>..\..\bin\System.Windows.Forms.DataVisualization.dll</HintPath>
     180    </Reference>
    179181    <ProjectReference Include="..\..\HeuristicLab.Clients.Hive\3.3\HeuristicLab.Clients.Hive-3.3.csproj">
    180182      <Project>{B5EF1E5A-9F3D-40B9-B4B0-30AADF2E2CEB}</Project>
  • branches/HeuristicLab.Mono/HeuristicLab.Data/3.3/ValueTypeArray.cs

    r7259 r8374  
    4343    public virtual int Length {
    4444      get { return array.Length; }
    45       protected set {
     45      set {
    4646        if (ReadOnly) throw new NotSupportedException("Length cannot be set. ValueTypeArray is read-only.");
    4747        if (value != Length) {
  • branches/HeuristicLab.Mono/HeuristicLab.Encodings.PermutationEncoding.Views/3.3/HeuristicLab.Encodings.PermutationEncoding.Views-3.3.csproj

    r7021 r8374  
    9999    <Reference Include="System.Drawing" />
    100100    <Reference Include="System.Windows.Forms" />
    101     <Reference Include="System.Windows.Forms.DataVisualization" />
    102101    <Reference Include="System.Xml.Linq">
    103102      <RequiredTargetFramework>3.5</RequiredTargetFramework>
     
    131130  </ItemGroup>
    132131  <ItemGroup>
     132   <Reference Include="System.Windows.Forms.DataVisualization">
     133      <HintPath>..\..\bin\System.Windows.Forms.DataVisualization.dll</HintPath>
     134    </Reference>
    133135    <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
    134136      <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project>
  • branches/HeuristicLab.Mono/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views/3.4/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Views-3.4.csproj

    r6866 r8374  
    9898    </Reference>
    9999    <Reference Include="System.Drawing" />
    100     <Reference Include="System.Windows.Forms" />
    101     <Reference Include="System.Windows.Forms.DataVisualization" />
     100    <Reference Include="System.Windows.Forms" />   
    102101    <Reference Include="System.Xml.Linq">
    103102      <RequiredTargetFramework>3.5</RequiredTargetFramework>
     
    164163  </ItemGroup>
    165164  <ItemGroup>
     165   <Reference Include="System.Windows.Forms.DataVisualization">
     166      <HintPath>..\..\bin\System.Windows.Forms.DataVisualization.dll</HintPath>
     167    </Reference>
    166168    <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
    167169      <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project>
  • branches/HeuristicLab.Mono/HeuristicLab.Operators.Views/3.3/HeuristicLab.Operators.Views-3.3.csproj

    r7395 r8374  
    104104    </Reference>
    105105    <Reference Include="System.Drawing" />
    106     <Reference Include="System.Windows.Forms" />
    107     <Reference Include="System.Windows.Forms.DataVisualization" />
     106    <Reference Include="System.Windows.Forms" />   
    108107    <Reference Include="System.Xml.Linq">
    109108      <RequiredTargetFramework>3.5</RequiredTargetFramework>
     
    161160  </ItemGroup>
    162161  <ItemGroup>
     162   <Reference Include="System.Windows.Forms.DataVisualization">
     163      <HintPath>..\..\bin\System.Windows.Forms.DataVisualization.dll</HintPath>
     164    </Reference>
    163165    <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
    164166      <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project>
  • branches/HeuristicLab.Mono/HeuristicLab.Optimization.Views/3.3/HeuristicLab.Optimization.Views-3.3.csproj

    r8370 r8374  
    105105    </Reference>
    106106    <Reference Include="System.Drawing" />
    107     <Reference Include="System.Windows.Forms" />
    108     <Reference Include="System.Windows.Forms.DataVisualization" />
     107    <Reference Include="System.Windows.Forms" />   
    109108    <Reference Include="System.Xml.Linq">
    110109      <RequiredTargetFramework>3.5</RequiredTargetFramework>
     
    308307  </ItemGroup>
    309308  <ItemGroup>
     309   <Reference Include="System.Windows.Forms.DataVisualization">
     310      <HintPath>..\..\bin\System.Windows.Forms.DataVisualization.dll</HintPath>
     311    </Reference>
    310312    <ProjectReference Include="..\..\HeuristicLab.Analysis.Views\3.3\HeuristicLab.Analysis.Views-3.3.csproj">
    311313      <Project>{76945D76-CA61-4147-9DC2-0ACDCDDF87F9}</Project>
  • branches/HeuristicLab.Mono/HeuristicLab.Problems.DataAnalysis.Symbolic.Classification.Views/3.4/HeuristicLab.Problems.DataAnalysis.Symbolic.Classification.Views-3.4.csproj

    r6866 r8374  
    9898    </Reference>
    9999    <Reference Include="System.Drawing" />
    100     <Reference Include="System.Windows.Forms" />
    101     <Reference Include="System.Windows.Forms.DataVisualization" />
     100    <Reference Include="System.Windows.Forms" />   
    102101    <Reference Include="System.Xml.Linq">
    103102      <RequiredTargetFramework>3.5</RequiredTargetFramework>
     
    129128  </ItemGroup>
    130129  <ItemGroup>
     130   <Reference Include="System.Windows.Forms.DataVisualization">
     131      <HintPath>..\..\bin\System.Windows.Forms.DataVisualization.dll</HintPath>
     132    </Reference>
    131133    <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
    132134      <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project>
  • branches/HeuristicLab.Mono/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression.Views/3.4/HeuristicLab.Problems.DataAnalysis.Symbolic.Regression.Views-3.4.csproj

    r7122 r8374  
    9898    </Reference>
    9999    <Reference Include="System.Drawing" />
    100     <Reference Include="System.Windows.Forms" />
    101     <Reference Include="System.Windows.Forms.DataVisualization" />
     100    <Reference Include="System.Windows.Forms" />   
    102101    <Reference Include="System.Xml.Linq">
    103102      <RequiredTargetFramework>3.5</RequiredTargetFramework>
     
    147146  </ItemGroup>
    148147  <ItemGroup>
     148   <Reference Include="System.Windows.Forms.DataVisualization">
     149      <HintPath>..\..\bin\System.Windows.Forms.DataVisualization.dll</HintPath>
     150    </Reference>
    149151    <ProjectReference Include="..\..\HeuristicLab.Algorithms.DataAnalysis\3.4\HeuristicLab.Algorithms.DataAnalysis-3.4.csproj">
    150152      <Project>{2E782078-FA81-4B70-B56F-74CE38DAC6C8}</Project>
  • branches/HeuristicLab.Mono/HeuristicLab.Problems.DataAnalysis.Symbolic.Views/3.4/HeuristicLab.Problems.DataAnalysis.Symbolic.Views-3.4.csproj

    r7675 r8374  
    102102    </Reference>
    103103    <Reference Include="System.Drawing" />
    104     <Reference Include="System.Windows.Forms" />
    105     <Reference Include="System.Windows.Forms.DataVisualization" />
     104    <Reference Include="System.Windows.Forms" />   
    106105    <Reference Include="System.Xml.Linq">
    107106      <RequiredTargetFramework>3.5</RequiredTargetFramework>
     
    181180  </ItemGroup>
    182181  <ItemGroup>
     182   <Reference Include="System.Windows.Forms.DataVisualization">
     183      <HintPath>..\..\bin\System.Windows.Forms.DataVisualization.dll</HintPath>
     184    </Reference>
    183185    <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
    184186      <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project>
  • branches/HeuristicLab.Mono/HeuristicLab.Problems.DataAnalysis.Views/3.4/HeuristicLab.Problems.DataAnalysis.Views-3.4.csproj

    r7823 r8374  
    9898    </Reference>
    9999    <Reference Include="System.Drawing" />
    100     <Reference Include="System.Windows.Forms" />
    101     <Reference Include="System.Windows.Forms.DataVisualization" />
     100    <Reference Include="System.Windows.Forms" />   
    102101    <Reference Include="System.Xml.Linq">
    103102      <RequiredTargetFramework>3.5</RequiredTargetFramework>
     
    263262  </ItemGroup>
    264263  <ItemGroup>
     264   <Reference Include="System.Windows.Forms.DataVisualization">
     265      <HintPath>..\..\bin\System.Windows.Forms.DataVisualization.dll</HintPath>
     266    </Reference>
    265267    <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
    266268      <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project>
  • branches/HeuristicLab.Mono/HeuristicLab.Problems.QuadraticAssignment.Views/3.3/HeuristicLab.Problems.QuadraticAssignment.Views-3.3.csproj

    r7825 r8374  
    108108    <Reference Include="System.Runtime.Serialization" />
    109109    <Reference Include="System.ServiceModel" />
    110     <Reference Include="System.Windows.Forms" />
    111     <Reference Include="System.Windows.Forms.DataVisualization" />
     110    <Reference Include="System.Windows.Forms" />   
    112111  </ItemGroup>
    113112  <ItemGroup>
     
    139138  </ItemGroup>
    140139  <ItemGroup>
     140   <Reference Include="System.Windows.Forms.DataVisualization">
     141      <HintPath>..\..\bin\System.Windows.Forms.DataVisualization.dll</HintPath>
     142    </Reference>
    141143    <ProjectReference Include="..\..\HeuristicLab.Analysis\3.3\HeuristicLab.Analysis-3.3.csproj">
    142144      <Project>{887425B4-4348-49ED-A457-B7D2C26DDBF9}</Project>
  • branches/HeuristicLab.Mono/HeuristicLab.Problems.TestFunctions/3.3/MoveEvaluators/RealVectorAdditiveMoveWrapper.cs

    r7259 r8374  
    6666        return vector.Length;
    6767      }
    68       protected set {
     68      set {
    6969        throw new System.NotSupportedException("Error: Setting the lenght of the wrapper is not allowed.");
    7070      }
  • branches/HeuristicLab.Mono/HeuristicLab.Visualization.ChartControlsExtensions/3.3/HeuristicLab.Visualization.ChartControlsExtensions-3.3.csproj

    r7410 r8374  
    107107    <Reference Include="System.Core" />
    108108    <Reference Include="System.Drawing" />
    109     <Reference Include="System.Windows.Forms" />
    110     <Reference Include="System.Windows.Forms.DataVisualization" />
     109    <Reference Include="System.Windows.Forms" />   
    111110    <Reference Include="System.Xml.Linq" />
    112111    <Reference Include="System.Data.DataSetExtensions" />
     
    153152      <Private>False</Private>
    154153    </ProjectReference>
     154  <Reference Include="System.Windows.Forms.DataVisualization">
     155      <HintPath>..\..\bin\System.Windows.Forms.DataVisualization.dll</HintPath>
     156    </Reference>
    155157  </ItemGroup>
    156158  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Note: See TracChangeset for help on using the changeset viewer.