Free cookie consent management tool by TermsFeed Policy Generator

Changeset 560 for trunk/sources


Ignore:
Timestamp:
09/12/08 21:59:53 (16 years ago)
Author:
gkronber
Message:
  • added strong name key to CEDMA.Charting.
  • moved classes related to charting from CEDMA.Core to CEDMA.Charting

#268

Location:
trunk/sources
Files:
6 added
5 deleted
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.CEDMA.Charting/HeuristicLab.CEDMA.Charting.csproj

    r558 r560  
    1313    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
    1414    <FileAlignment>512</FileAlignment>
     15    <SignAssembly>true</SignAssembly>
     16    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
    1517  </PropertyGroup>
    1618  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
     
    3638      <RequiredTargetFramework>3.5</RequiredTargetFramework>
    3739    </Reference>
     40    <Reference Include="System.Drawing" />
     41    <Reference Include="System.Windows.Forms" />
    3842    <Reference Include="System.Xml.Linq">
    3943      <RequiredTargetFramework>3.5</RequiredTargetFramework>
     
    4751  <ItemGroup>
    4852    <Compile Include="HeuristicLabCedmaChartingPlugin.cs" />
     53    <Compile Include="Histogram.cs" />
    4954    <Compile Include="Properties\AssemblyInfo.cs" />
     55    <Compile Include="ResultList.cs" />
     56    <Compile Include="ResultListView.cs">
     57      <SubType>UserControl</SubType>
     58    </Compile>
     59    <Compile Include="ResultListView.Designer.cs">
     60      <DependentUpon>ResultListView.cs</DependentUpon>
     61    </Compile>
    5062  </ItemGroup>
    5163  <ItemGroup>
     64    <ProjectReference Include="..\HeuristicLab.CEDMA.DB.Interfaces\HeuristicLab.CEDMA.DB.Interfaces.csproj">
     65      <Project>{4F9BB789-D561-436B-B226-2BF44B7D0804}</Project>
     66      <Name>HeuristicLab.CEDMA.DB.Interfaces</Name>
     67    </ProjectReference>
     68    <ProjectReference Include="..\HeuristicLab.Charting.Data\HeuristicLab.Charting.Data.csproj">
     69      <Project>{E0740131-AA3E-4A3F-BA03-C9FF8327F4EE}</Project>
     70      <Name>HeuristicLab.Charting.Data</Name>
     71    </ProjectReference>
    5272    <ProjectReference Include="..\HeuristicLab.Charting\HeuristicLab.Charting.csproj">
    5373      <Project>{B462D3CC-8866-42F0-9832-AD0967613B72}</Project>
    5474      <Name>HeuristicLab.Charting</Name>
     75    </ProjectReference>
     76    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
     77      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
     78      <Name>HeuristicLab.Core</Name>
    5579    </ProjectReference>
    5680    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
     
    6084  </ItemGroup>
    6185  <ItemGroup>
     86    <None Include="HeuristicLab.snk" />
    6287    <None Include="Properties\AssemblyInfo.frame" />
     88  </ItemGroup>
     89  <ItemGroup>
     90    <EmbeddedResource Include="ResultListView.resx">
     91      <DependentUpon>ResultListView.cs</DependentUpon>
     92      <SubType>Designer</SubType>
     93    </EmbeddedResource>
    6394  </ItemGroup>
    6495  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  • trunk/sources/HeuristicLab.CEDMA.Charting/HeuristicLabCedmaChartingPlugin.cs

    r558 r560  
    2929  [PluginFile(Filename = "HeuristicLab.CEDMA.Charting.dll", Filetype = PluginFileType.Assembly)]
    3030  [Dependency(Dependency = "HeuristicLab.Charting")]
     31  [Dependency(Dependency = "HeuristicLab.Charting.Data")]
     32  [Dependency(Dependency = "HeuristicLab.Core")]
     33  [Dependency(Dependency = "HeuristicLab.CEDMA.DB.Interfaces")]
    3134  public class HeuristicLabCedmaCorePlugin : PluginBase {
    3235  }
  • trunk/sources/HeuristicLab.CEDMA.Core/Console.cs

    r553 r560  
    2929using System.ServiceModel.Description;
    3030using HeuristicLab.CEDMA.DB.Interfaces;
     31using HeuristicLab.CEDMA.Charting;
    3132
    3233namespace HeuristicLab.CEDMA.Core {
  • trunk/sources/HeuristicLab.CEDMA.Core/ConsoleEditor.cs

    r553 r560  
    2828using System.ServiceModel;
    2929using HeuristicLab.PluginInfrastructure;
    30 using HeuristicLab.Charting;
    3130using System.Drawing;
    3231using HeuristicLab.CEDMA.DB.Interfaces;
  • trunk/sources/HeuristicLab.CEDMA.Core/HeuristicLab.CEDMA.Core.csproj

    r554 r560  
    44    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    55    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    6     <ProductVersion>9.0.30729</ProductVersion>
     6    <ProductVersion>9.0.21022</ProductVersion>
    77    <SchemaVersion>2.0</SchemaVersion>
    88    <ProjectGuid>{C27DDF6C-84DF-45EF-B82F-57A28DD51166}</ProjectGuid>
     
    5050  </PropertyGroup>
    5151  <ItemGroup>
    52     <Reference Include="HeuristicLab.Charting, Version=3.0.0.91, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
    53       <SpecificVersion>False</SpecificVersion>
    54       <HintPath>..\HeuristicLab.Charting\bin\Debug\HeuristicLab.Charting.dll</HintPath>
    55     </Reference>
    5652    <Reference Include="System" />
    5753    <Reference Include="System.Core">
     
    8278      <SubType>UserControl</SubType>
    8379    </Compile>
    84     <Compile Include="Histogram.cs" />
    85     <Compile Include="ResultList.cs" />
    8680    <Compile Include="ResultTable.cs" />
    8781    <Compile Include="ResultExporter.cs" />
     
    114108      <DependentUpon>AgentView.cs</DependentUpon>
    115109    </Compile>
    116     <Compile Include="ResultListView.cs">
    117       <SubType>UserControl</SubType>
    118     </Compile>
    119     <Compile Include="ResultListView.Designer.cs">
    120       <DependentUpon>ResultListView.cs</DependentUpon>
    121     </Compile>
    122110  </ItemGroup>
    123111  <ItemGroup>
     
    125113  </ItemGroup>
    126114  <ItemGroup>
     115    <ProjectReference Include="..\HeuristicLab.CEDMA.Charting\HeuristicLab.CEDMA.Charting.csproj">
     116      <Project>{1BF17271-5350-476A-8F6D-FC74FA3E82CA}</Project>
     117      <Name>HeuristicLab.CEDMA.Charting</Name>
     118    </ProjectReference>
    127119    <ProjectReference Include="..\HeuristicLab.CEDMA.DB.Interfaces\HeuristicLab.CEDMA.DB.Interfaces.csproj">
    128120      <Project>{4F9BB789-D561-436B-B226-2BF44B7D0804}</Project>
    129121      <Name>HeuristicLab.CEDMA.DB.Interfaces</Name>
    130     </ProjectReference>
    131     <ProjectReference Include="..\HeuristicLab.Charting.Data\HeuristicLab.Charting.Data.csproj">
    132       <Project>{E0740131-AA3E-4A3F-BA03-C9FF8327F4EE}</Project>
    133       <Name>HeuristicLab.Charting.Data</Name>
    134122    </ProjectReference>
    135123    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
     
    163151      <SubType>Designer</SubType>
    164152    </EmbeddedResource>
    165     <EmbeddedResource Include="ResultListView.resx">
    166       <DependentUpon>ResultListView.cs</DependentUpon>
    167       <SubType>Designer</SubType>
    168     </EmbeddedResource>
    169153  </ItemGroup>
    170154  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  • trunk/sources/HeuristicLab.CEDMA.Core/HeuristicLabCedmaCorePlugin.cs

    r418 r560  
    2828  [ClassInfo(Name = "HeuristicLab.CEDMA.Core")]
    2929  [PluginFile(Filename = "HeuristicLab.CEDMA.Core.dll", Filetype = PluginFileType.Assembly)]
     30  [Dependency(Dependency = "HeuristicLab.CEDMA.Charting")]
    3031  [Dependency(Dependency = "HeuristicLab.Core")]
    3132  [Dependency(Dependency = "HeuristicLab.CEDMA.DB.Interfaces")]
Note: See TracChangeset for help on using the changeset viewer.