Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Visualization/HeuristicLab.Visualization.csproj @ 761

Last change on this file since 761 was 761, checked in by mstoeger, 15 years ago

changed interface between model and view (#316)

  • Property svn:needs-lock set to needs lock
File size: 5.2 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.30729</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{E392A1E2-DC95-4E33-B82E-8ED690EDA1AB}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Visualization</RootNamespace>
12    <AssemblyName>HeuristicLab.Visualization-3.2</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    <DocumentationFile>bin\Release\HeuristicLab.Visualization-3.2.XML</DocumentationFile>
35  </PropertyGroup>
36  <ItemGroup>
37    <Reference Include="System" />
38    <Reference Include="System.Core">
39      <RequiredTargetFramework>3.5</RequiredTargetFramework>
40    </Reference>
41    <Reference Include="System.Drawing" />
42    <Reference Include="System.Windows.Forms" />
43    <Reference Include="System.Xml.Linq">
44      <RequiredTargetFramework>3.5</RequiredTargetFramework>
45    </Reference>
46    <Reference Include="System.Data.DataSetExtensions">
47      <RequiredTargetFramework>3.5</RequiredTargetFramework>
48    </Reference>
49    <Reference Include="System.Data" />
50    <Reference Include="System.Xml" />
51  </ItemGroup>
52  <ItemGroup>
53    <Compile Include="Canvas.cs" />
54    <Compile Include="CanvasUI.cs">
55      <SubType>Component</SubType>
56    </Compile>
57    <Compile Include="CanvasUI.Designer.cs">
58      <DependentUpon>CanvasUI.cs</DependentUpon>
59    </Compile>
60    <Compile Include="ChangeType.cs" />
61    <Compile Include="ChartDataModelBase.cs" />
62    <Compile Include="ChartDataRowsModel.cs" />
63    <Compile Include="ChartDataRowsModelDummy.cs" />
64    <Compile Include="CompositeShape.cs" />
65    <Compile Include="DataRow.cs" />
66    <Compile Include="DrawingStyle.cs" />
67    <Compile Include="HeuristicLabVisualizationPlugin.cs" />
68    <Compile Include="ICanvas.cs" />
69    <Compile Include="IChartDataModel.cs" />
70    <Compile Include="IChartDataRowsModel.cs" />
71    <Compile Include="IDataRow.cs" />
72    <Compile Include="IShape.cs" />
73    <Compile Include="LineChart.cs">
74      <SubType>UserControl</SubType>
75    </Compile>
76    <Compile Include="LineChart.Designer.cs">
77      <DependentUpon>LineChart.cs</DependentUpon>
78    </Compile>
79    <Compile Include="LineShape.cs" />
80    <Compile Include="MouseEventListener.cs" />
81    <Compile Include="Offset.cs" />
82    <Compile Include="PointD.cs" />
83    <Compile Include="Properties\AssemblyInfo.cs" />
84    <Compile Include="RectangleD.cs" />
85    <Compile Include="RectangleShape.cs" />
86    <Compile Include="SizeD.cs" />
87    <Compile Include="Transform.cs" />
88    <Compile Include="WorldShape.cs" />
89  </ItemGroup>
90  <ItemGroup>
91    <None Include="HeuristicLab.snk" />
92    <None Include="Properties\AssemblyInfo.frame" />
93  </ItemGroup>
94  <ItemGroup>
95    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
96      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
97      <Name>HeuristicLab.Core</Name>
98    </ProjectReference>
99    <ProjectReference Include="..\HeuristicLab.Data\HeuristicLab.Data.csproj">
100      <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
101      <Name>HeuristicLab.Data</Name>
102    </ProjectReference>
103    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
104      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
105      <Name>HeuristicLab.PluginInfrastructure</Name>
106    </ProjectReference>
107  </ItemGroup>
108  <ItemGroup>
109    <EmbeddedResource Include="LineChart.resx">
110      <DependentUpon>LineChart.cs</DependentUpon>
111    </EmbeddedResource>
112  </ItemGroup>
113  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
114  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
115       Other similar extension points exist, see Microsoft.Common.targets.
116  <Target Name="BeforeBuild">
117  </Target>
118  <Target Name="AfterBuild">
119  </Target>
120  -->
121  <PropertyGroup>
122    <PreBuildEvent>cmd /c ""$(SolutionDir)PreBuildEvent.cmd" "$(ProjectDir).""</PreBuildEvent>
123  </PropertyGroup>
124</Project>
Note: See TracBrowser for help on using the repository browser.