Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.CEDMA.Charting/HeuristicLab.CEDMA.Charting.csproj @ 561

Last change on this file since 561 was 561, checked in by gkronber, 16 years ago
  • asynchronous downloading of agents and results from the CEDMA server
  • created a chart that displays points as bubbles (scatter-plot + optional third dimension for the size of the bubble, larger bubbles are more transparent than smaller bubbles)

ticket #268 (Possibility to open the function-tree of any model (represented as point in the scatter-plot))

File size: 4.8 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>{1BF17271-5350-476A-8F6D-FC74FA3E82CA}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.CEDMA.Charting</RootNamespace>
12    <AssemblyName>HeuristicLab.CEDMA.Charting</AssemblyName>
13    <TargetFrameworkVersion>v3.5</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  </PropertyGroup>
35  <ItemGroup>
36    <Reference Include="System" />
37    <Reference Include="System.Core">
38      <RequiredTargetFramework>3.5</RequiredTargetFramework>
39    </Reference>
40    <Reference Include="System.Drawing" />
41    <Reference Include="System.Windows.Forms" />
42    <Reference Include="System.Xml.Linq">
43      <RequiredTargetFramework>3.5</RequiredTargetFramework>
44    </Reference>
45    <Reference Include="System.Data.DataSetExtensions">
46      <RequiredTargetFramework>3.5</RequiredTargetFramework>
47    </Reference>
48    <Reference Include="System.Data" />
49    <Reference Include="System.Xml" />
50  </ItemGroup>
51  <ItemGroup>
52    <Compile Include="BubbleChart.cs" />
53    <Compile Include="BubbleChartControl.cs">
54      <SubType>UserControl</SubType>
55    </Compile>
56    <Compile Include="BubbleChartControl.Designer.cs">
57      <DependentUpon>BubbleChartControl.cs</DependentUpon>
58    </Compile>
59    <Compile Include="HeuristicLabCedmaChartingPlugin.cs" />
60    <Compile Include="Histogram.cs" />
61    <Compile Include="Properties\AssemblyInfo.cs" />
62    <Compile Include="ResultList.cs" />
63    <Compile Include="ResultListView.cs">
64      <SubType>UserControl</SubType>
65    </Compile>
66    <Compile Include="ResultListView.Designer.cs">
67      <DependentUpon>ResultListView.cs</DependentUpon>
68    </Compile>
69  </ItemGroup>
70  <ItemGroup>
71    <ProjectReference Include="..\HeuristicLab.CEDMA.DB.Interfaces\HeuristicLab.CEDMA.DB.Interfaces.csproj">
72      <Project>{4F9BB789-D561-436B-B226-2BF44B7D0804}</Project>
73      <Name>HeuristicLab.CEDMA.DB.Interfaces</Name>
74    </ProjectReference>
75    <ProjectReference Include="..\HeuristicLab.Charting\HeuristicLab.Charting.csproj">
76      <Project>{B462D3CC-8866-42F0-9832-AD0967613B72}</Project>
77      <Name>HeuristicLab.Charting</Name>
78    </ProjectReference>
79    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
80      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
81      <Name>HeuristicLab.Core</Name>
82    </ProjectReference>
83    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
84      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
85      <Name>HeuristicLab.PluginInfrastructure</Name>
86    </ProjectReference>
87  </ItemGroup>
88  <ItemGroup>
89    <None Include="HeuristicLab.snk" />
90    <None Include="Properties\AssemblyInfo.frame" />
91  </ItemGroup>
92  <ItemGroup>
93    <EmbeddedResource Include="BubbleChartControl.resx">
94      <DependentUpon>BubbleChartControl.cs</DependentUpon>
95      <SubType>Designer</SubType>
96    </EmbeddedResource>
97    <EmbeddedResource Include="ResultListView.resx">
98      <DependentUpon>ResultListView.cs</DependentUpon>
99      <SubType>Designer</SubType>
100    </EmbeddedResource>
101  </ItemGroup>
102  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
103  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
104       Other similar extension points exist, see Microsoft.Common.targets.
105  <Target Name="BeforeBuild">
106  </Target>
107  <Target Name="AfterBuild">
108  </Target>
109  -->
110  <PropertyGroup>
111    <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
112  </PropertyGroup>
113</Project>
Note: See TracBrowser for help on using the repository browser.