Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 1488 was 1474, checked in by abeham, 15 years ago

Added x64 and x86 configurations to all projects
Removed "Release x64" configuration from HeuristicLab.csproj (is covered by Release|x64)

File size: 7.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>{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-3.3</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  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
36    <DebugSymbols>true</DebugSymbols>
37    <OutputPath>bin\x86\Debug\</OutputPath>
38    <DefineConstants>DEBUG;TRACE</DefineConstants>
39    <DebugType>full</DebugType>
40    <PlatformTarget>x86</PlatformTarget>
41    <ErrorReport>prompt</ErrorReport>
42  </PropertyGroup>
43  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
44    <OutputPath>bin\x86\Release\</OutputPath>
45    <DefineConstants>TRACE</DefineConstants>
46    <Optimize>true</Optimize>
47    <DebugType>pdbonly</DebugType>
48    <PlatformTarget>x86</PlatformTarget>
49    <ErrorReport>prompt</ErrorReport>
50  </PropertyGroup>
51  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
52    <DebugSymbols>true</DebugSymbols>
53    <OutputPath>bin\x64\Debug\</OutputPath>
54    <DefineConstants>DEBUG;TRACE</DefineConstants>
55    <DebugType>full</DebugType>
56    <PlatformTarget>x64</PlatformTarget>
57    <ErrorReport>prompt</ErrorReport>
58  </PropertyGroup>
59  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
60    <OutputPath>bin\x64\Release\</OutputPath>
61    <DefineConstants>TRACE</DefineConstants>
62    <Optimize>true</Optimize>
63    <DebugType>pdbonly</DebugType>
64    <PlatformTarget>x64</PlatformTarget>
65    <ErrorReport>prompt</ErrorReport>
66  </PropertyGroup>
67  <ItemGroup>
68    <Reference Include="System" />
69    <Reference Include="System.Core">
70      <RequiredTargetFramework>3.5</RequiredTargetFramework>
71    </Reference>
72    <Reference Include="System.Drawing" />
73    <Reference Include="System.Windows.Forms" />
74    <Reference Include="System.Xml.Linq">
75      <RequiredTargetFramework>3.5</RequiredTargetFramework>
76    </Reference>
77    <Reference Include="System.Data.DataSetExtensions">
78      <RequiredTargetFramework>3.5</RequiredTargetFramework>
79    </Reference>
80    <Reference Include="System.Data" />
81    <Reference Include="System.Xml" />
82  </ItemGroup>
83  <ItemGroup>
84    <Compile Include="BubbleChart.cs" />
85    <Compile Include="BubbleChartControl.cs">
86      <SubType>UserControl</SubType>
87    </Compile>
88    <Compile Include="BubbleChartControl.Designer.cs">
89      <DependentUpon>BubbleChartControl.cs</DependentUpon>
90    </Compile>
91    <Compile Include="BubbleChartView.cs">
92      <SubType>UserControl</SubType>
93    </Compile>
94    <Compile Include="BubbleChartView.Designer.cs">
95      <DependentUpon>BubbleChartView.cs</DependentUpon>
96    </Compile>
97    <Compile Include="HeuristicLabCedmaChartingPlugin.cs" />
98    <Compile Include="Properties\AssemblyInfo.cs" />
99  </ItemGroup>
100  <ItemGroup>
101    <ProjectReference Include="..\HeuristicLab.CEDMA.Core\HeuristicLab.CEDMA.Core.csproj">
102      <Project>{C27DDF6C-84DF-45EF-B82F-57A28DD51166}</Project>
103      <Name>HeuristicLab.CEDMA.Core</Name>
104    </ProjectReference>
105    <ProjectReference Include="..\HeuristicLab.CEDMA.DB.Interfaces\HeuristicLab.CEDMA.DB.Interfaces.csproj">
106      <Project>{4F9BB789-D561-436B-B226-2BF44B7D0804}</Project>
107      <Name>HeuristicLab.CEDMA.DB.Interfaces</Name>
108    </ProjectReference>
109    <ProjectReference Include="..\HeuristicLab.Charting.Data\HeuristicLab.Charting.Data.csproj">
110      <Project>{E0740131-AA3E-4A3F-BA03-C9FF8327F4EE}</Project>
111      <Name>HeuristicLab.Charting.Data</Name>
112    </ProjectReference>
113    <ProjectReference Include="..\HeuristicLab.Charting\HeuristicLab.Charting.csproj">
114      <Project>{B462D3CC-8866-42F0-9832-AD0967613B72}</Project>
115      <Name>HeuristicLab.Charting</Name>
116    </ProjectReference>
117    <ProjectReference Include="..\HeuristicLab.Core\HeuristicLab.Core.csproj">
118      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
119      <Name>HeuristicLab.Core</Name>
120    </ProjectReference>
121    <ProjectReference Include="..\HeuristicLab.DataAnalysis\HeuristicLab.DataAnalysis.csproj">
122      <Project>{7DD3A97A-56E9-462F-90E2-A351FE7AF5C2}</Project>
123      <Name>HeuristicLab.DataAnalysis</Name>
124    </ProjectReference>
125    <ProjectReference Include="..\HeuristicLab.Data\HeuristicLab.Data.csproj">
126      <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
127      <Name>HeuristicLab.Data</Name>
128    </ProjectReference>
129    <ProjectReference Include="..\HeuristicLab.Logging\HeuristicLab.Logging.csproj">
130      <Project>{4095C92C-5A4C-44BC-9963-5F384CF5CC3F}</Project>
131      <Name>HeuristicLab.Logging</Name>
132    </ProjectReference>
133    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
134      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
135      <Name>HeuristicLab.PluginInfrastructure</Name>
136    </ProjectReference>
137  </ItemGroup>
138  <ItemGroup>
139    <None Include="HeuristicLab.snk" />
140    <None Include="Properties\AssemblyInfo.frame" />
141  </ItemGroup>
142  <ItemGroup>
143    <EmbeddedResource Include="BubbleChartControl.resx">
144      <DependentUpon>BubbleChartControl.cs</DependentUpon>
145    </EmbeddedResource>
146    <EmbeddedResource Include="BubbleChartView.resx">
147      <DependentUpon>BubbleChartView.cs</DependentUpon>
148    </EmbeddedResource>
149  </ItemGroup>
150  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
151  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
152       Other similar extension points exist, see Microsoft.Common.targets.
153  <Target Name="BeforeBuild">
154  </Target>
155  <Target Name="AfterBuild">
156  </Target>
157  -->
158  <PropertyGroup>
159    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
160set ProjectDir=$(ProjectDir)
161set SolutionDir=$(SolutionDir)
162set Outdir=$(Outdir)
163
164call PreBuildEvent.cmd</PreBuildEvent>
165  </PropertyGroup>
166</Project>
Note: See TracBrowser for help on using the repository browser.