Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HL-3.2-MonoMigration/HeuristicLab.Charting.Data/HeuristicLab.Charting.Data.csproj @ 4384

Last change on this file since 4384 was 582, checked in by swagner, 16 years ago

Added major and minor version number to assembly names (#274)

File size: 4.6 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>{E0740131-AA3E-4A3F-BA03-C9FF8327F4EE}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Charting.Data</RootNamespace>
11    <AssemblyName>HeuristicLab.Charting.Data-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.Data-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.Data-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="Datachart.cs" />
66    <Compile Include="DataChartControl.cs">
67      <SubType>UserControl</SubType>
68    </Compile>
69    <Compile Include="DataChartControl.Designer.cs">
70      <DependentUpon>DataChartControl.cs</DependentUpon>
71    </Compile>
72    <Compile Include="DataRowType.cs" />
73    <Compile Include="HeuristicLabChartingDataPlugin.cs" />
74    <Compile Include="Properties\AssemblyInfo.cs" />
75  </ItemGroup>
76  <ItemGroup>
77    <ProjectReference Include="..\HeuristicLab.Charting\HeuristicLab.Charting.csproj">
78      <Project>{B462D3CC-8866-42F0-9832-AD0967613B72}</Project>
79      <Name>HeuristicLab.Charting</Name>
80    </ProjectReference>
81    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
82      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
83      <Name>HeuristicLab.PluginInfrastructure</Name>
84    </ProjectReference>
85  </ItemGroup>
86  <ItemGroup>
87    <None Include="HeuristicLab.snk" />
88    <None Include="Properties\AssemblyInfo.frame" />
89  </ItemGroup>
90  <ItemGroup>
91    <EmbeddedResource Include="DataChartControl.resx">
92      <SubType>Designer</SubType>
93      <DependentUpon>DataChartControl.cs</DependentUpon>
94    </EmbeddedResource>
95  </ItemGroup>
96  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
97  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
98       Other similar extension points exist, see Microsoft.Common.targets.
99  <Target Name="BeforeBuild">
100  </Target>
101  <Target Name="AfterBuild">
102  </Target>
103  -->
104  <PropertyGroup>
105    <PreBuildEvent>cmd /c ""$(SolutionDir)PreBuildEvent.cmd" "$(ProjectDir).""</PreBuildEvent>
106  </PropertyGroup>
107</Project>
Note: See TracBrowser for help on using the repository browser.