Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3.0/sources/HeuristicLab.Charting/HeuristicLab.Charting.csproj @ 11733

Last change on this file since 11733 was 30, checked in by swagner, 16 years ago

Fixed ticket #26

  • added automatic generation of version strings for all projects using the SVN tool SubWCRev
File size: 4.9 KB
Line 
1<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
2  <PropertyGroup>
3    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
4    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
5    <ProductVersion>9.0.21022</ProductVersion>
6    <SchemaVersion>2.0</SchemaVersion>
7    <ProjectGuid>{B462D3CC-8866-42F0-9832-AD0967613B72}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Charting</RootNamespace>
11    <AssemblyName>HeuristicLab.Charting</AssemblyName>
12    <SignAssembly>true</SignAssembly>
13    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
14    <FileUpgradeFlags>
15    </FileUpgradeFlags>
16    <OldToolsVersion>2.0</OldToolsVersion>
17    <UpgradeBackupLocation>
18    </UpgradeBackupLocation>
19  </PropertyGroup>
20  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
21    <DebugSymbols>true</DebugSymbols>
22    <DebugType>full</DebugType>
23    <Optimize>false</Optimize>
24    <OutputPath>bin\Debug\</OutputPath>
25    <DefineConstants>DEBUG;TRACE</DefineConstants>
26    <ErrorReport>prompt</ErrorReport>
27    <WarningLevel>4</WarningLevel>
28    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
29  </PropertyGroup>
30  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
31    <DebugType>pdbonly</DebugType>
32    <Optimize>true</Optimize>
33    <OutputPath>bin\Release\</OutputPath>
34    <DefineConstants>TRACE</DefineConstants>
35    <ErrorReport>prompt</ErrorReport>
36    <WarningLevel>4</WarningLevel>
37    <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
38    <DocumentationFile>bin\Release\HeuristicLab.Charting.XML</DocumentationFile>
39  </PropertyGroup>
40  <ItemGroup>
41    <Reference Include="System" />
42    <Reference Include="System.Data" />
43    <Reference Include="System.Drawing" />
44    <Reference Include="System.Windows.Forms" />
45    <Reference Include="System.Xml" />
46  </ItemGroup>
47  <ItemGroup>
48    <Compile Include="Chart.cs" />
49    <Compile Include="ChartControl.cs">
50      <SubType>UserControl</SubType>
51    </Compile>
52    <Compile Include="ChartControl.designer.cs">
53      <DependentUpon>ChartControl.cs</DependentUpon>
54    </Compile>
55    <Compile Include="ChartMode.cs" />
56    <Compile Include="AxisType.cs" />
57    <Compile Include="HeuristicLabChartingPlugin.cs" />
58    <Compile Include="Interfaces\IGroup.cs" />
59    <Compile Include="Interfaces\IChart.cs" />
60    <Compile Include="Interfaces\IPrimitive.cs" />
61    <Compile Include="Primitives\Axis.cs" />
62    <Compile Include="Primitives\AxisPrimitiveBase.cs" />
63    <Compile Include="Primitives\LinearPrimitiveBase.cs" />
64    <Compile Include="Primitives\RectangularPrimitiveBase.cs" />
65    <Compile Include="Primitives\Ellipse.cs" />
66    <Compile Include="Primitives\FixedSizeCircle.cs" />
67    <Compile Include="Primitives\FixedSizePrimitiveBase.cs" />
68    <Compile Include="Primitives\FixedSizeRectangle.cs" />
69    <Compile Include="Primitives\Group.cs" />
70    <Compile Include="Primitives\Line.cs" />
71    <Compile Include="Primitives\PrimitiveBase.cs" />
72    <Compile Include="Primitives\Rectangle.cs" />
73    <Compile Include="Primitives\SelectionRectangle.cs" />
74    <Compile Include="PropertiesDialog.cs">
75      <SubType>Form</SubType>
76    </Compile>
77    <Compile Include="PropertiesDialog.designer.cs">
78      <DependentUpon>PropertiesDialog.cs</DependentUpon>
79    </Compile>
80    <Compile Include="Properties\AssemblyInfo.cs" />
81    <Compile Include="Structs\Offset.cs" />
82    <Compile Include="Structs\PointD.cs" />
83    <Compile Include="Structs\SizeD.cs" />
84  </ItemGroup>
85  <ItemGroup>
86    <EmbeddedResource Include="ChartControl.resx">
87      <DependentUpon>ChartControl.cs</DependentUpon>
88      <SubType>Designer</SubType>
89    </EmbeddedResource>
90    <EmbeddedResource Include="PropertiesDialog.resx">
91      <DependentUpon>PropertiesDialog.cs</DependentUpon>
92      <SubType>Designer</SubType>
93    </EmbeddedResource>
94  </ItemGroup>
95  <ItemGroup>
96    <None Include="ClassDiagram.cd" />
97    <None Include="HeuristicLab.snk" />
98    <None Include="Properties\AssemblyInfo.frame" />
99  </ItemGroup>
100  <ItemGroup>
101    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
102      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
103      <Name>HeuristicLab.PluginInfrastructure</Name>
104    </ProjectReference>
105  </ItemGroup>
106  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
107  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
108       Other similar extension points exist, see Microsoft.Common.targets.
109  <Target Name="BeforeBuild">
110  </Target>
111  <Target Name="AfterBuild">
112  </Target>
113  -->
114  <PropertyGroup>
115    <PreBuildEvent>cmd /c ..\..\..\PreBuildEvent.cmd</PreBuildEvent>
116  </PropertyGroup>
117</Project>
Note: See TracBrowser for help on using the repository browser.