mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-03-07 10:10:49 +08:00
180 lines
9.3 KiB
XML
180 lines
9.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
|
<PropertyGroup>
|
|
<MinimumVisualStudioVersion>10.0</MinimumVisualStudioVersion>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
<ProjectGuid>{D447642C-A85F-4AB0-96D9-C66CFF91AADA}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
<RootNamespace>LiveCharts</RootNamespace>
|
|
<AssemblyName>LiveCharts</AssemblyName>
|
|
<DefaultLanguage>en-US</DefaultLanguage>
|
|
<FileAlignment>512</FileAlignment>
|
|
<ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
|
<TargetFrameworkProfile>Profile78</TargetFrameworkProfile>
|
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>full</DebugType>
|
|
<Optimize>false</Optimize>
|
|
<OutputPath>bin\Debug\</OutputPath>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
<DefineConstants Condition=" '$(TargetFrameworkVersion)' == 'v4.0' ">NET40</DefineConstants>
|
|
<DefineConstants Condition=" '$(TargetFrameworkVersion)' == 'v4.5' ">NET45</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<DocumentationFile>bin\Debug\LiveCharts.XML</DocumentationFile>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<DebugType>pdbonly</DebugType>
|
|
<Optimize>true</Optimize>
|
|
<OutputPath>bin\Release\</OutputPath>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<DefineConstants Condition=" '$(TargetFrameworkVersion)' == 'v4.0' ">NET40</DefineConstants>
|
|
<DefineConstants Condition=" '$(TargetFrameworkVersion)' == 'v4.5' ">NET45</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<DocumentationFile>bin\Release\LiveCharts.XML</DocumentationFile>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<SignAssembly>false</SignAssembly>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<AssemblyOriginatorKeyFile>sign.pfx</AssemblyOriginatorKeyFile>
|
|
</PropertyGroup>
|
|
<PropertyGroup>
|
|
<DelaySign>false</DelaySign>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Compile Include="AxisCore.cs" />
|
|
<Compile Include="AxisOrientation.cs" />
|
|
<Compile Include="AxisPosition.cs" />
|
|
<Compile Include="AxisSectionCore.cs" />
|
|
<Compile Include="BarLabelPosition.cs" />
|
|
<Compile Include="ChartFunctions.cs" />
|
|
<Compile Include="Charting.cs" />
|
|
<Compile Include="ChartPoint.cs" />
|
|
<Compile Include="Charts\CartesianChartCore.cs" />
|
|
<Compile Include="Charts\ChartCore.cs" />
|
|
<Compile Include="Charts\PieChartCore.cs" />
|
|
<Compile Include="ChartUpdater.cs" />
|
|
<Compile Include="ChartValues.cs" />
|
|
<Compile Include="Configurations\CartesianMapper.cs" />
|
|
<Compile Include="Configurations\FinancialMapper.cs" />
|
|
<Compile Include="Configurations\GanttMapper.cs" />
|
|
<Compile Include="Configurations\IPointEvaluator.cs" />
|
|
<Compile Include="Configurations\Mappers.cs" />
|
|
<Compile Include="Configurations\PieMapper.cs" />
|
|
<Compile Include="Configurations\PolarMapper.cs" />
|
|
<Compile Include="Configurations\WeightedMapper.cs" />
|
|
<Compile Include="DataLabelViewModel.cs" />
|
|
<Compile Include="Defaults\AxisLimits.cs" />
|
|
<Compile Include="Defaults\DateTimePoint.cs" />
|
|
<Compile Include="Defaults\GanttPoint.cs" />
|
|
<Compile Include="Defaults\HeatPoint.cs" />
|
|
<Compile Include="Defaults\ObservablePoint.cs" />
|
|
<Compile Include="Defaults\ObservableValue.cs" />
|
|
<Compile Include="Defaults\OHLCPoint.cs" />
|
|
<Compile Include="Defaults\PolarPoint.cs" />
|
|
<Compile Include="Defaults\ScatterPoint.cs" />
|
|
<Compile Include="Definitions\Charts\IAxisSectionView.cs" />
|
|
<Compile Include="Definitions\Charts\IAxisView.cs" />
|
|
<Compile Include="Definitions\Charts\ICartesianChart.cs" />
|
|
<Compile Include="Definitions\Charts\ICartesianVisualElement.cs" />
|
|
<Compile Include="Definitions\Charts\IChartView.cs" />
|
|
<Compile Include="Definitions\Charts\ILogarithmicAxisView.cs" />
|
|
<Compile Include="Definitions\Charts\IPieChart.cs" />
|
|
<Compile Include="Definitions\Charts\ISeparatorElementView.cs" />
|
|
<Compile Include="Definitions\Charts\ISeparatorView.cs" />
|
|
<Compile Include="Definitions\Points\IBezierPointView.cs" />
|
|
<Compile Include="Definitions\Points\IChartPointView.cs" />
|
|
<Compile Include="Definitions\Points\IHeatPointView.cs" />
|
|
<Compile Include="Definitions\Points\IOhlcPointView.cs" />
|
|
<Compile Include="Definitions\Points\IPieSlicePointView.cs" />
|
|
<Compile Include="Definitions\Points\IRectanglePointView.cs" />
|
|
<Compile Include="Definitions\Points\IScatterPointView.cs" />
|
|
<Compile Include="Definitions\Points\IStepPointView.cs" />
|
|
<Compile Include="Definitions\Series\IAreaPoint.cs" />
|
|
<Compile Include="Definitions\Series\ICartesianSeries.cs" />
|
|
<Compile Include="Definitions\Series\IColumnSeriesView.cs" />
|
|
<Compile Include="Definitions\Series\IFinancialSeriesView.cs" />
|
|
<Compile Include="Definitions\Series\IHeatSeriesView.cs" />
|
|
<Compile Include="Definitions\Series\ILineSeriesView.cs" />
|
|
<Compile Include="Definitions\Series\IPieSeries.cs" />
|
|
<Compile Include="Definitions\Series\IPieSeriesView.cs" />
|
|
<Compile Include="Definitions\Series\IRowSeriesView.cs" />
|
|
<Compile Include="Definitions\Series\IScatterSeriesView.cs" />
|
|
<Compile Include="Definitions\Series\ISeriesView.cs" />
|
|
<Compile Include="Definitions\Series\IStackedAreaSeriesView.cs" />
|
|
<Compile Include="Definitions\Series\IStackedColumnSeriesView.cs" />
|
|
<Compile Include="Definitions\Series\IStackedRowSeriesView.cs" />
|
|
<Compile Include="Definitions\Series\IStackModelableSeriesView.cs" />
|
|
<Compile Include="Definitions\Series\IVerticalStackedAreaSeriesView.cs" />
|
|
<Compile Include="Dtos\BezierData.cs" />
|
|
<Compile Include="Dtos\CoreColor.cs" />
|
|
<Compile Include="Dtos\CoreGradientStop.cs" />
|
|
<Compile Include="Dtos\CoreLimit.cs" />
|
|
<Compile Include="Dtos\CoreMargin.cs" />
|
|
<Compile Include="Dtos\CorePoint.cs" />
|
|
<Compile Include="Dtos\CoreRectangle.cs" />
|
|
<Compile Include="Dtos\CoreSize.cs" />
|
|
<Compile Include="Dtos\LabelEvaluation.cs" />
|
|
<Compile Include="Dtos\StackedSum.cs" />
|
|
<Compile Include="Dtos\TooltipDataViewModel.cs" />
|
|
<Compile Include="Events\Delegates.cs" />
|
|
<Compile Include="Events\PreviewRangeChangedEventArgs.cs" />
|
|
<Compile Include="Events\RangeChangedEventArgs.cs" />
|
|
<Compile Include="Helpers\Extentions.cs" />
|
|
<Compile Include="Helpers\LiveChartsException.cs" />
|
|
<Compile Include="Helpers\NoisyCollection.cs" />
|
|
<Compile Include="IChartValues.cs" />
|
|
<Compile Include="IObservableChartPoint.cs" />
|
|
<Compile Include="LegendLocation.cs" />
|
|
<Compile Include="LogarithmicAxisCore.cs" />
|
|
<Compile Include="Maps\MapData.cs" />
|
|
<Compile Include="PanningOptions.cs" />
|
|
<Compile Include="PieLabelPosition.cs" />
|
|
<Compile Include="PointTracker.cs" />
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
<Compile Include="ScrollMode.cs" />
|
|
<Compile Include="SeparationState.cs" />
|
|
<Compile Include="SeparatorConfigurationCore.cs" />
|
|
<Compile Include="SeparatorElementCore.cs" />
|
|
<Compile Include="Seriesalgorithm.cs" />
|
|
<Compile Include="SeriesAlgorithms\CandleAlgorithm.cs" />
|
|
<Compile Include="SeriesAlgorithms\ColumnAlgorithm.cs" />
|
|
<Compile Include="SeriesAlgorithms\HeatAlgorithm.cs" />
|
|
<Compile Include="SeriesAlgorithms\LineAlgorithm.cs" />
|
|
<Compile Include="SeriesAlgorithms\OhlcAlgorithm.cs" />
|
|
<Compile Include="SeriesAlgorithms\PieAlgorithm.cs" />
|
|
<Compile Include="SeriesAlgorithms\RowAlgorithm.cs" />
|
|
<Compile Include="SeriesAlgorithms\ScatterAlgorithm.cs" />
|
|
<Compile Include="SeriesAlgorithms\StackedAreaAlgorithm.cs" />
|
|
<Compile Include="SeriesAlgorithms\StackedColumnAlgorithm.cs" />
|
|
<Compile Include="SeriesAlgorithms\StackedRowAlgorithm.cs" />
|
|
<Compile Include="SeriesAlgorithms\StepLineAlgorithm.cs" />
|
|
<Compile Include="SeriesAlgorithms\VerticalLineAlgorithm.cs" />
|
|
<Compile Include="SeriesAlgorithms\VerticalStackedAreaAlgorithm.cs" />
|
|
<Compile Include="SeriesCollection.cs" />
|
|
<Compile Include="SeriesOrientation.cs" />
|
|
<Compile Include="StackMode.cs" />
|
|
<Compile Include="TooltipSelectionMode.cs" />
|
|
<Compile Include="UpdaterState.cs" />
|
|
<Compile Include="VisualElementsCollection.cs" />
|
|
<Compile Include="ZoomingOptions.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="sign.pfx" />
|
|
</ItemGroup>
|
|
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\Portable\$(TargetFrameworkVersion)\Microsoft.Portable.CSharp.targets" />
|
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
|
Other similar extension points exist, see Microsoft.Common.targets.
|
|
<Target Name="BeforeBuild">
|
|
</Target>
|
|
<Target Name="AfterBuild">
|
|
</Target>
|
|
-->
|
|
</Project> |