Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Charting/HeuristicLab.Charting.csproj @ 852

Last change on this file since 852 was 852, checked in by swagner, 15 years ago

Integrated ConfigMerger into build process (#403).
Refactored pre- and post-build scripts (#403).

File size: 5.8 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.30729</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-3.2</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-3.2.XML</DocumentationFile>
39  </PropertyGroup>
40  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
41    <DebugSymbols>true</DebugSymbols>
42    <OutputPath>bin\x86\Debug\</OutputPath>
43    <DefineConstants>DEBUG;TRACE</DefineConstants>
44    <DebugType>full</DebugType>
45    <PlatformTarget>x86</PlatformTarget>
46    <ErrorReport>prompt</ErrorReport>
47  </PropertyGroup>
48  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
49    <OutputPath>bin\x86\Release\</OutputPath>
50    <DefineConstants>TRACE</DefineConstants>
51    <DocumentationFile>bin\Release\HeuristicLab.Charting-3.2.XML</DocumentationFile>
52    <Optimize>true</Optimize>
53    <DebugType>pdbonly</DebugType>
54    <PlatformTarget>x86</PlatformTarget>
55    <ErrorReport>prompt</ErrorReport>
56  </PropertyGroup>
57  <ItemGroup>
58    <Reference Include="System" />
59    <Reference Include="System.Data" />
60    <Reference Include="System.Drawing" />
61    <Reference Include="System.Windows.Forms" />
62    <Reference Include="System.Xml" />
63  </ItemGroup>
64  <ItemGroup>
65    <Compile Include="Chart.cs" />
66    <Compile Include="ChartControl.cs">
67      <SubType>UserControl</SubType>
68    </Compile>
69    <Compile Include="ChartControl.designer.cs">
70      <DependentUpon>ChartControl.cs</DependentUpon>
71    </Compile>
72    <Compile Include="ChartMode.cs" />
73    <Compile Include="AxisType.cs" />
74    <Compile Include="HeuristicLabChartingPlugin.cs" />
75    <Compile Include="Interfaces\IGroup.cs" />
76    <Compile Include="Interfaces\IChart.cs" />
77    <Compile Include="Interfaces\IPrimitive.cs" />
78    <Compile Include="Primitives\Axis.cs" />
79    <Compile Include="Primitives\AxisPrimitiveBase.cs" />
80    <Compile Include="Primitives\LinearPrimitiveBase.cs" />
81    <Compile Include="Primitives\RectangularPrimitiveBase.cs" />
82    <Compile Include="Primitives\Ellipse.cs" />
83    <Compile Include="Primitives\FixedSizeCircle.cs" />
84    <Compile Include="Primitives\FixedSizePrimitiveBase.cs" />
85    <Compile Include="Primitives\FixedSizeRectangle.cs" />
86    <Compile Include="Primitives\Group.cs" />
87    <Compile Include="Primitives\Line.cs" />
88    <Compile Include="Primitives\PrimitiveBase.cs" />
89    <Compile Include="Primitives\Rectangle.cs" />
90    <Compile Include="Primitives\SelectionRectangle.cs" />
91    <Compile Include="PropertiesDialog.cs">
92      <SubType>Form</SubType>
93    </Compile>
94    <Compile Include="PropertiesDialog.designer.cs">
95      <DependentUpon>PropertiesDialog.cs</DependentUpon>
96    </Compile>
97    <Compile Include="Properties\AssemblyInfo.cs" />
98    <Compile Include="Structs\Offset.cs" />
99    <Compile Include="Structs\PointD.cs" />
100    <Compile Include="Structs\SizeD.cs" />
101  </ItemGroup>
102  <ItemGroup>
103    <EmbeddedResource Include="ChartControl.resx">
104      <DependentUpon>ChartControl.cs</DependentUpon>
105      <SubType>Designer</SubType>
106    </EmbeddedResource>
107    <EmbeddedResource Include="PropertiesDialog.resx">
108      <DependentUpon>PropertiesDialog.cs</DependentUpon>
109      <SubType>Designer</SubType>
110    </EmbeddedResource>
111  </ItemGroup>
112  <ItemGroup>
113    <None Include="ClassDiagram.cd" />
114    <None Include="HeuristicLab.snk" />
115    <None Include="Properties\AssemblyInfo.frame" />
116  </ItemGroup>
117  <ItemGroup>
118    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
119      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
120      <Name>HeuristicLab.PluginInfrastructure</Name>
121    </ProjectReference>
122  </ItemGroup>
123  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
124  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
125       Other similar extension points exist, see Microsoft.Common.targets.
126  <Target Name="BeforeBuild">
127  </Target>
128  <Target Name="AfterBuild">
129  </Target>
130  -->
131  <PropertyGroup>
132    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
133set ProjectDir=$(ProjectDir)
134set SolutionDir=$(SolutionDir)
135set Outdir=$(Outdir)
136
137call PreBuildEvent.cmd</PreBuildEvent>
138  </PropertyGroup>
139</Project>
Note: See TracBrowser for help on using the repository browser.