External/OxyPlot/OxyPlot.WindowsForms/OxyPlot.WindowsForms.csproj
author moel.mich
Sat, 08 Jun 2013 17:06:00 +0000
changeset 392 4b43228a9894
parent 391 5be8f2773237
child 445 fe4c711fd7f8
permissions -rw-r--r--
Some modifications to the OxyPlot library to back-port to .NET 2.0. Added the LINQBridge library for the LINQ based code in OxyPlot (the original .NET LINQ is not available in .NET 2.0).
moel@391
     1
<?xml version="1.0" encoding="utf-8"?>
moel@391
     2
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
moel@391
     3
  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
moel@391
     4
  <PropertyGroup>
moel@391
     5
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
moel@391
     6
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
moel@391
     7
    <ProjectGuid>{D4554296-094E-4CAC-8EAE-44EB250666C6}</ProjectGuid>
moel@391
     8
    <OutputType>Library</OutputType>
moel@391
     9
    <AppDesignerFolder>Properties</AppDesignerFolder>
moel@391
    10
    <RootNamespace>OxyPlot.WindowsForms</RootNamespace>
moel@391
    11
    <AssemblyName>OxyPlot.WindowsForms</AssemblyName>
moel@392
    12
    <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
moel@392
    13
    <TargetFrameworkProfile>
moel@392
    14
    </TargetFrameworkProfile>
moel@391
    15
    <FileAlignment>512</FileAlignment>
moel@391
    16
  </PropertyGroup>
moel@391
    17
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
moel@391
    18
    <DebugSymbols>true</DebugSymbols>
moel@391
    19
    <DebugType>full</DebugType>
moel@391
    20
    <Optimize>false</Optimize>
moel@392
    21
    <OutputPath>Bin\Debug\</OutputPath>
moel@391
    22
    <IntermediateOutputPath>obj\Debug\NET40\</IntermediateOutputPath>
moel@392
    23
    <DefineConstants>TRACE;DEBUG</DefineConstants>
moel@391
    24
    <ErrorReport>prompt</ErrorReport>
moel@391
    25
    <WarningLevel>4</WarningLevel>
moel@391
    26
  </PropertyGroup>
moel@391
    27
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
moel@391
    28
    <DebugType>pdbonly</DebugType>
moel@391
    29
    <Optimize>true</Optimize>
moel@392
    30
    <OutputPath>Bin\Release\</OutputPath>
moel@391
    31
    <IntermediateOutputPath>obj\Release\NET40\</IntermediateOutputPath>
moel@391
    32
    <DefineConstants>TRACE</DefineConstants>
moel@391
    33
    <ErrorReport>prompt</ErrorReport>
moel@391
    34
    <WarningLevel>4</WarningLevel>
moel@392
    35
    <DocumentationFile>
moel@392
    36
    </DocumentationFile>
moel@391
    37
  </PropertyGroup>
moel@391
    38
  <PropertyGroup>
moel@391
    39
    <SignAssembly>true</SignAssembly>
moel@391
    40
  </PropertyGroup>
moel@391
    41
  <PropertyGroup>
moel@392
    42
    <AssemblyOriginatorKeyFile>
moel@392
    43
    </AssemblyOriginatorKeyFile>
moel@391
    44
  </PropertyGroup>
moel@391
    45
  <ItemGroup>
moel@391
    46
    <Reference Include="System" />
moel@391
    47
    <Reference Include="System.Drawing" />
moel@391
    48
    <Reference Include="System.Windows.Forms" />
moel@391
    49
  </ItemGroup>
moel@391
    50
  <ItemGroup>
moel@391
    51
    <Compile Include="..\GlobalAssemblyInfo.cs">
moel@391
    52
      <Link>Properties\GlobalAssemblyInfo.cs</Link>
moel@391
    53
    </Compile>
moel@392
    54
    <Compile Include="HashSet.cs" />
moel@391
    55
    <Compile Include="Helpers\ConverterExtensions.cs" />
moel@391
    56
    <Compile Include="GraphicsRenderContext.cs" />
moel@391
    57
    <Compile Include="NamespaceDoc.cs" />
moel@391
    58
    <Compile Include="Plot.cs">
moel@391
    59
      <SubType>Component</SubType>
moel@391
    60
    </Compile>
moel@391
    61
    <Compile Include="PngExporter.cs" />
moel@391
    62
    <Compile Include="Properties\AssemblyInfo.cs" />
moel@391
    63
    <Service Include="{94E38DFF-614B-4cbd-B67C-F211BB35CE8B}" />
moel@391
    64
  </ItemGroup>
moel@391
    65
  <ItemGroup>
moel@391
    66
    <ProjectReference Include="..\OxyPlot\OxyPlot.csproj">
moel@391
    67
      <Project>{7a0b35c0-dd17-4964-8e9a-44d6cecdc692}</Project>
moel@391
    68
      <Name>OxyPlot</Name>
moel@391
    69
    </ProjectReference>
moel@391
    70
  </ItemGroup>
moel@391
    71
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
moel@391
    72
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
moel@391
    73
       Other similar extension points exist, see Microsoft.Common.targets.
moel@391
    74
  <Target Name="BeforeBuild">
moel@391
    75
  </Target>
moel@391
    76
  <Target Name="AfterBuild">
moel@391
    77
  </Target>
moel@391
    78
  -->
moel@391
    79
</Project>