Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/DynamicDataDisplay/DynamicDataDisplay.csproj @ 12588

Last change on this file since 12588 was 12503, checked in by aballeit, 9 years ago

#2283 added GUI and charts; fixed MCTS

File size: 36.1 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3  <PropertyGroup>
4    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6    <ProductVersion>9.0.30729</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{ECD37682-DF7E-409F-912D-0965634556B5}</ProjectGuid>
9    <OutputType>library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>Microsoft.Research.DynamicDataDisplay</RootNamespace>
12    <AssemblyName>DynamicDataDisplay</AssemblyName>
13    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
16    <WarningLevel>4</WarningLevel>
17    <SccProjectName>
18    </SccProjectName>
19    <SccLocalPath>
20    </SccLocalPath>
21    <SccAuxPath>
22    </SccAuxPath>
23    <SccProvider>
24    </SccProvider>
25    <SignAssembly>true</SignAssembly>
26    <AssemblyOriginatorKeyFile>DynamicDataDisplay.snk</AssemblyOriginatorKeyFile>
27    <ApplicationIcon>
28    </ApplicationIcon>
29    <FileUpgradeFlags>
30    </FileUpgradeFlags>
31    <UpgradeBackupLocation />
32    <IsWebBootstrapper>false</IsWebBootstrapper>
33    <OldToolsVersion>3.5</OldToolsVersion>
34    <PublishUrl>publish\</PublishUrl>
35    <Install>true</Install>
36    <InstallFrom>Disk</InstallFrom>
37    <UpdateEnabled>false</UpdateEnabled>
38    <UpdateMode>Foreground</UpdateMode>
39    <UpdateInterval>7</UpdateInterval>
40    <UpdateIntervalUnits>Days</UpdateIntervalUnits>
41    <UpdatePeriodically>false</UpdatePeriodically>
42    <UpdateRequired>false</UpdateRequired>
43    <MapFileExtensions>true</MapFileExtensions>
44    <ApplicationRevision>0</ApplicationRevision>
45    <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
46    <UseApplicationTrust>false</UseApplicationTrust>
47    <BootstrapperEnabled>true</BootstrapperEnabled>
48    <TargetFrameworkProfile />
49  </PropertyGroup>
50  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
51    <DebugSymbols>true</DebugSymbols>
52    <DebugType>full</DebugType>
53    <Optimize>false</Optimize>
54    <DefineConstants>TRACE;DEBUG;CODE_ANALYSIS</DefineConstants>
55    <ErrorReport>prompt</ErrorReport>
56    <WarningLevel>4</WarningLevel>
57    <RunCodeAnalysis>false</RunCodeAnalysis>
58    <OutputPath>bin\Debug\</OutputPath>
59    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
60  </PropertyGroup>
61  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
62    <DebugType>pdbonly</DebugType>
63    <Optimize>true</Optimize>
64    <DefineConstants>TRACE;CODE_ANALYSIS</DefineConstants>
65    <ErrorReport>prompt</ErrorReport>
66    <WarningLevel>4</WarningLevel>
67    <DocumentationFile>bin\Release\DynamicDataDisplay.XML</DocumentationFile>
68    <OutputPath>bin\Release\</OutputPath>
69    <GenerateSerializationAssemblies>Auto</GenerateSerializationAssemblies>
70    <DebugSymbols>true</DebugSymbols>
71    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
72  </PropertyGroup>
73  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'ReleaseXBAP|AnyCPU' ">
74    <DebugSymbols>true</DebugSymbols>
75    <OutputPath>bin\ReleaseXBAP\</OutputPath>
76    <DefineConstants>TRACE;CODE_ANALYSIS, RELEASEXBAP</DefineConstants>
77    <DocumentationFile>bin\Release\DynamicDataDisplay.XML</DocumentationFile>
78    <Optimize>true</Optimize>
79    <DebugType>pdbonly</DebugType>
80    <PlatformTarget>AnyCPU</PlatformTarget>
81    <CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
82    <CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
83    <ErrorReport>prompt</ErrorReport>
84    <CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
85  </PropertyGroup>
86  <ItemGroup>
87    <Reference Include="System" />
88    <Reference Include="System.Core">
89      <RequiredTargetFramework>3.5</RequiredTargetFramework>
90    </Reference>
91    <Reference Include="System.Data" />
92    <Reference Include="System.Xaml" />
93    <Reference Include="System.XML" />
94    <Reference Include="UIAutomationProvider">
95      <RequiredTargetFramework>3.0</RequiredTargetFramework>
96    </Reference>
97    <Reference Include="WindowsBase">
98      <RequiredTargetFramework>3.0</RequiredTargetFramework>
99    </Reference>
100    <Reference Include="PresentationCore">
101      <RequiredTargetFramework>3.0</RequiredTargetFramework>
102    </Reference>
103    <Reference Include="PresentationFramework">
104      <RequiredTargetFramework>3.0</RequiredTargetFramework>
105    </Reference>
106  </ItemGroup>
107  <ItemGroup>
108    <Compile Include="Charts\Axes\AxisControlBase.cs" />
109    <Compile Include="Charts\Axes\AxisGrid.cs" />
110    <Compile Include="Charts\Axes\DateTime\DateTimeToDoubleConversion.cs" />
111    <Compile Include="Charts\Axes\DateTime\Strategies\ExtendedDaysStrategy.cs" />
112    <Compile Include="Charts\Axes\DateTime\Strategies\IDateTimeTicksStrategy.cs" />
113    <Compile Include="Charts\Axes\DateTime\Strategies\DelegateStrategy.cs" />
114    <Compile Include="Charts\Axes\DateTime\TimePeriodTicksProvider.cs" />
115    <Compile Include="Charts\Axes\DateTime\Strategies\DefaultDateTimeTicksStrategy.cs" />
116    <Compile Include="Charts\Axes\DateTime\DifferenceIn.cs" />
117    <Compile Include="Charts\Axes\DateTime\MinorTimeProviderBase.cs" />
118    <Compile Include="Charts\Axes\DefaultAxisConversions.cs" />
119    <Compile Include="Charts\Axes\GeneralAxis.cs" />
120    <Compile Include="Charts\Axes\GenericLabelProvider.cs" />
121    <Compile Include="Charts\Axes\GenericLocational\GenericLocationalLabelProvider.cs" />
122    <Compile Include="Charts\Axes\GenericLocational\GenericLocationalTicksProvider.cs" />
123    <Compile Include="Charts\Axes\Integer\CollectionLabelProvider.cs" />
124    <Compile Include="Charts\Axes\Integer\HorizontalIntegerAxis.cs" />
125    <Compile Include="Charts\Axes\Integer\IntegerAxis.cs" />
126    <Compile Include="Charts\Axes\Integer\IntegerAxisControl.cs" />
127    <Compile Include="Charts\Axes\Integer\IntegerTicksProvider.cs" />
128    <Compile Include="Charts\Axes\Integer\VerticalIntegerAxis.cs" />
129    <Compile Include="Charts\Axes\ITypedAxis.cs" />
130    <Compile Include="Charts\Axes\IValueConversion.cs" />
131    <Compile Include="Charts\Axes\LabelProvider.cs" />
132    <Compile Include="Charts\Axes\LabelProviderBase.cs" />
133    <Compile Include="Charts\Axes\LabelProviderProperties.cs" />
134    <Compile Include="Charts\Axes\Numeric\CustomBaseNumericLabelProvider.cs" />
135    <Compile Include="Charts\Axes\Numeric\CustomBaseNumericTicksProvider.cs" />
136    <Compile Include="Charts\Axes\Numeric\LogarithmNumericTicksProvider.cs" />
137    <Compile Include="Charts\Axes\Numeric\NumericConversion.cs" />
138    <Compile Include="Charts\Axes\Numeric\UnroundingLabelProvider.cs" />
139    <Compile Include="Charts\Axes\TimeSpan\HorizontalTimeSpanAxis.cs" />
140    <Compile Include="Charts\Axes\TimeSpan\MinorTimeSpanProvider.cs" />
141    <Compile Include="Charts\Axes\TimeSpan\TimeSpanAxis.cs" />
142    <Compile Include="Charts\Axes\TimeSpan\TimeSpanAxisControl.cs" />
143    <Compile Include="Charts\Axes\TimeSpan\TimeSpanLabelProvider.cs" />
144    <Compile Include="Charts\Axes\TimeSpan\TimeSpanTicksProvider.cs" />
145    <Compile Include="Charts\BitmapBasedGraph.cs" />
146    <Compile Include="Charts\DataFollowChart.cs" />
147    <Compile Include="Charts\DataSource2dContext.cs" />
148    <Compile Include="Charts\DebugMenu.cs" />
149    <Compile Include="Charts\Filters\EmptyFilter.cs" />
150    <Compile Include="Charts\Filters\FrequencyFilter2.cs" />
151    <Compile Include="Charts\Filters\IndexWrapper.cs" />
152    <Compile Include="Charts\Filters\IndexWrapperStruct.cs" />
153    <Compile Include="Charts\Isolines\AdditionalLinesDisplay.cs" />
154    <Compile Include="Charts\Isolines\AdditionalLinesRenderer.cs" />
155    <Compile Include="Charts\Isolines\FastIsolineDisplay.xaml.cs">
156      <DependentUpon>FastIsolineDisplay.xaml</DependentUpon>
157    </Compile>
158    <Compile Include="Charts\Isolines\FastIsolineRenderer.cs" />
159    <Compile Include="Charts\Isolines\IsolineRenderer.cs" />
160    <Compile Include="Charts\Legend items\LegendItemsHelper.cs" />
161    <Compile Include="Charts\Legend items\LegendStyles.cs" />
162    <Compile Include="Charts\Legend items\LegendItem.cs" />
163    <Compile Include="Charts\Legend items\LegendBottomButtonIsEnabledConverter.cs" />
164    <Compile Include="Charts\Legend items\LegendTopButtonToIsEnabledConverter.cs" />
165    <Compile Include="Charts\LiveToolTips\LiveToolTip.cs" />
166    <Compile Include="Charts\LiveToolTips\LiveToolTipAdorner.cs" />
167    <Compile Include="Charts\LiveToolTips\LiveToolTipService.cs" />
168    <Compile Include="Charts\NaiveColorMap.cs" />
169    <Compile Include="Charts\Navigation\AxisNavigation.cs" />
170    <Compile Include="Charts\Navigation\HorizontalScrollBar.cs" />
171    <Compile Include="Charts\Navigation\IPlotterContextMenuSource.cs" />
172    <Compile Include="Charts\Navigation\LongOperationsIndicator.cs" />
173    <Compile Include="Charts\Navigation\PlotterScrollBar.cs" />
174    <Compile Include="ChartPlotter.cs" />
175    <Compile Include="Charts\Axes\TimeSpan\TimeSpanTicksProviderBase.cs" />
176    <Compile Include="Charts\Axes\TimeSpan\TimeSpanToDoubleConversion.cs" />
177    <Compile Include="Charts\Axes\TimeSpan\TimeTicksProviderBase.cs" />
178    <Compile Include="Charts\Axes\TimeSpan\VerticalTimeSpanAxis.cs" />
179    <Compile Include="Charts\ContentGraph.cs" />
180    <Compile Include="Charts\FilterCollection.cs" />
181    <Compile Include="Charts\Filters\IPointsFilter.cs" />
182    <Compile Include="Charts\Filters\PointsFilterBase.cs" />
183    <Compile Include="Charts\IOneDimensionalChart.cs" />
184    <Compile Include="Charts\Isolines\CellInfo.cs" />
185    <Compile Include="Charts\Isolines\Enums.cs" />
186    <Compile Include="Charts\Isolines\IsolineBuilder.cs" />
187    <Compile Include="Charts\Isolines\IsolineCollection.cs" />
188    <Compile Include="Charts\Isolines\IsolineGenerationException.cs" />
189    <Compile Include="Charts\Isolines\IsolineGraph.cs" />
190    <Compile Include="Charts\Isolines\IsolineGraphBase.cs" />
191    <Compile Include="Charts\Isolines\IsolineTextAnnotater.cs" />
192    <Compile Include="Charts\Isolines\IsolineTrackingGraph.xaml.cs">
193      <DependentUpon>IsolineTrackingGraph.xaml</DependentUpon>
194    </Compile>
195    <Compile Include="Charts\Isolines\Quad.cs" />
196    <Compile Include="Charts\Navigation\AboutWindow.xaml.cs">
197      <DependentUpon>AboutWindow.xaml</DependentUpon>
198    </Compile>
199    <Compile Include="Charts\Navigation\AxisCursorGraph.cs" />
200    <Compile Include="Charts\Navigation\EndlessRectAnimation.cs" />
201    <Compile Include="Charts\Navigation\InertialMouseNavigation.cs" />
202    <Compile Include="Charts\Navigation\PhysicalNavigation.cs" />
203    <Compile Include="Charts\Navigation\PhysicalRectAnimation.cs" />
204    <Compile Include="Charts\Navigation\SimpleNavigationBar.xaml.cs">
205      <DependentUpon>SimpleNavigationBar.xaml</DependentUpon>
206    </Compile>
207    <Compile Include="Charts\Navigation\CursorCoordinateGraph.xaml.cs">
208      <DependentUpon>CursorCoordinateGraph.xaml</DependentUpon>
209    </Compile>
210    <Compile Include="Charts\Navigation\VerticalScrollBar.cs" />
211    <Compile Include="Charts\Legend items\Legend.cs" />
212    <Compile Include="Charts\Panels\Panels.cs" />
213    <Compile Include="Charts\Panels\PlotterPanelBase.cs" />
214    <Compile Include="Charts\PopupTip.cs" />
215    <Compile Include="Charts\PopupTipElement.cs" />
216    <Compile Include="Charts\Shapes\Arrow.cs" />
217    <Compile Include="Charts\BackgroundRenderer.cs" />
218    <Compile Include="Charts\Shapes\DraggablePoint.xaml.cs">
219      <DependentUpon>DraggablePoint.xaml</DependentUpon>
220    </Compile>
221    <Compile Include="Charts\Shapes\HorizontalLine.cs" />
222    <Compile Include="Charts\Navigation\MouseNavigationBase.cs" />
223    <Compile Include="Charts\Axes\AxisControl.cs" />
224    <Compile Include="Charts\Axes\AxisPlacement.cs" />
225    <Compile Include="Charts\Axes\DateTime\HorizontalDateTimeAxis.cs" />
226    <Compile Include="Charts\Axes\DateTime\DateTimeAxis.cs" />
227    <Compile Include="Charts\Axes\DateTime\DateTimeAxisControl.cs" />
228    <Compile Include="Charts\Axes\DateTime\DateTimeLabelProvider.cs" />
229    <Compile Include="Charts\Axes\DateTime\DateTimeLabelProviderBase.cs" />
230    <Compile Include="Charts\Axes\DateTime\DateTimeTicksProvider.cs" />
231    <Compile Include="Charts\Axes\DateTime\DateTimeTicksProviderBase.cs" />
232    <Compile Include="Charts\Axes\DateTime\MajorDateTimeLabelProvider.cs" />
233    <Compile Include="Charts\Axes\DateTime\VerticalDateTimeAxis.cs" />
234    <Compile Include="Charts\Axes\DefaultTicksProvider.cs" />
235    <Compile Include="Charts\Axes\Numeric\HorizontalAxis.cs" />
236    <Compile Include="Charts\Axes\Numeric\VerticalAxis.cs" />
237    <Compile Include="Charts\Axes\Numeric\NumericAxis.cs" />
238    <Compile Include="Charts\Axes\Numeric\MinorNumericTicksProvider.cs" />
239    <Compile Include="Charts\Axes\Numeric\NumericTicksProvider.cs" />
240    <Compile Include="Charts\Axes\Numeric\NumericAxisControl.cs" />
241    <Compile Include="Charts\Axes\Numeric\ExponentialLabelProvider.cs" />
242    <Compile Include="Charts\Axes\ITicksProvider.cs" />
243    <Compile Include="Charts\Axes\Numeric\NumericLabelProviderBase.cs" />
244    <Compile Include="Charts\Axes\AxisBase.cs" />
245    <Compile Include="Charts\Shapes\PivotSegmentEditor.cs" />
246    <Compile Include="Charts\Shapes\PolylineEditor.cs" />
247    <Compile Include="Charts\Shapes\SimpleGrid.cs" />
248    <Compile Include="Charts\Shapes\TemplateableDraggablePoint.cs" />
249    <Compile Include="Charts\Shapes\ViewportLine.cs" />
250    <Compile Include="Charts\Shapes\ViewportPolyBezierCurve.cs" />
251    <Compile Include="Charts\Shapes\ViewportPolygon.cs" />
252    <Compile Include="Charts\Shapes\ViewportPolyline.cs" />
253    <Compile Include="Charts\Shapes\ViewportPolylineBase.cs" />
254    <Compile Include="Charts\Shapes\ViewportRay.cs" />
255    <Compile Include="Charts\TemplateChart.cs" />
256    <Compile Include="Charts\ViewportHostPanel.cs" />
257    <Compile Include="Charts\ViewportPanel.cs" />
258    <Compile Include="Charts\ViewportPanel.Properties.cs" />
259    <Compile Include="Charts\ViewportUIContainer.cs" />
260    <Compile Include="Charts\VisualDebug.cs" />
261    <Compile Include="Common\Auxiliary\AxisPlacementExtensions.cs" />
262    <Compile Include="Common\Auxiliary\BindingHelper.cs" />
263    <Compile Include="Common\Auxiliary\ColorExtensions.cs" />
264    <Compile Include="Common\Auxiliary\DataSearch\GenericSearcher1d.cs" />
265    <Compile Include="Common\Auxiliary\DataSearch\SearchResult1d.cs" />
266    <Compile Include="Common\Auxiliary\DataSearch\SortedXSearcher1d.cs" />
267    <Compile Include="Common\Auxiliary\DependencyObjectExtensions.cs" />
268    <Compile Include="Common\Auxiliary\NotifyCollectionChangedEventArgsExtensions.cs" />
269    <Compile Include="Converters\GenericLambdaConverter.cs" />
270    <Compile Include="Common\Auxiliary\MarkupExtensions\XbapConditionalExpression.cs" />
271    <Compile Include="Common\Auxiliary\MarkupExtensions\TemplateBinding.cs" />
272    <Compile Include="Common\Auxiliary\MenuItemExtensions.cs" />
273    <Compile Include="Common\Auxiliary\ObservableCollectionHelper.cs" />
274    <Compile Include="Common\Auxiliary\PlotterChildrenCollectionExtensions.cs" />
275    <Compile Include="Common\Auxiliary\RandomExtensions.cs" />
276    <Compile Include="Common\Auxiliary\MarkupExtensions\SelfBinding.cs" />
277    <Compile Include="Common\Auxiliary\SizeExtensions.cs" />
278    <Compile Include="Common\Auxiliary\StreamExtensions.cs" />
279    <Compile Include="Common\Auxiliary\StringExtensions.cs" />
280    <Compile Include="Common\Auxiliary\DisposableTimer.cs" />
281    <Compile Include="Common\Auxiliary\DataRectExtensions.cs" />
282    <Compile Include="Common\Auxiliary\MarkupExtensions\ResourceExtension.cs" />
283    <Compile Include="Common\Auxiliary\IEnumerableExtensions.cs" />
284    <Compile Include="Common\Auxiliary\ResourcePoolExtensions.cs" />
285    <Compile Include="Common\Auxiliary\TaskExtensions.cs" />
286    <Compile Include="Common\Auxiliary\TriangleMath.cs" />
287    <Compile Include="Common\Auxiliary\ValueStore.cs" />
288    <Compile Include="Common\Auxiliary\ValueStoreConverter.cs" />
289    <Compile Include="Common\BezierBuilder.cs" />
290    <Compile Include="Common\ObservableCollectionWrapper.cs" />
291    <Compile Include="Common\Palettes\DiscretePalette.cs" />
292    <Compile Include="Common\Palettes\LinearPalette.cs" />
293    <Compile Include="Common\Palettes\LinearPaletteColorStep.cs" />
294    <Compile Include="Common\Palettes\LinearPalettes.cs" />
295    <Compile Include="Common\Palettes\DecoratorPaletteBase.cs" />
296    <Compile Include="Common\Palettes\MinMaxLoggingPalette.cs" />
297    <Compile Include="Common\Palettes\PaletteColorStep.cs" />
298    <Compile Include="Common\Palettes\PowerPalette.cs" />
299    <Compile Include="Common\Palettes\TransparentLimitsPalette.cs" />
300    <Compile Include="Common\PlotterEventHelper.cs" />
301    <Compile Include="Common\DataRectConverter.cs" />
302    <Compile Include="Common\DataRectSerializer.cs" />
303    <Compile Include="Common\IndividualArrangePanel.cs" />
304    <Compile Include="Common\PlotterAutomationPeer.cs" />
305    <Compile Include="Common\PlotterChangedEventHandler.cs" />
306    <Compile Include="Common\PlotterEvents.cs" />
307    <Compile Include="Common\PlotterPanel.cs" />
308    <Compile Include="Common\RandomExtensions.cs" />
309    <Compile Include="Common\RangeConverter.cs" />
310    <Compile Include="Common\ResourcePool.cs" />
311    <Compile Include="Common\RingDictionary.cs" />
312    <Compile Include="Common\SkipPropertyCheckAttribute.cs" />
313    <Compile Include="Common\TokenizerHelper.cs" />
314    <Compile Include="Common\UIChildrenCollection.cs" />
315    <Compile Include="Common\UndoSystem\CollectionAddAction.cs" />
316    <Compile Include="Common\UndoSystem\CollectionRemoveAction.cs" />
317    <Compile Include="Common\UndoSystem\LambdaUndoAction.cs" />
318    <Compile Include="Common\ValueChangedEventArgs.cs" />
319    <Compile Include="Common\WeakReference.cs" />
320    <Compile Include="Common\WidthSpring.cs" />
321    <Compile Include="Converters\BackgroundToForegroundConverter.cs" />
322    <Compile Include="Converters\BrushHSBConverter.cs" />
323    <Compile Include="Converters\FourValuesMultiConverter.cs" />
324    <Compile Include="Converters\GenericValueConverter.cs" />
325    <Compile Include="Converters\ThreeValuesMultiConverter.cs" />
326    <Compile Include="Converters\TwoValuesMultiConverter.cs" />
327    <Compile Include="DataSources\MultiDimensional\DataSource2DHelper.cs" />
328    <Compile Include="DataSources\MultiDimensional\INonUniformDataSource2D.cs" />
329    <Compile Include="DataSources\MultiDimensional\NonUniformDataSource2D.cs" />
330    <Compile Include="DependentPlotter.cs" />
331    <Compile Include="GenericChartPlotter.cs" />
332    <Compile Include="InjectedPlotter.cs" />
333    <Compile Include="InjectedPlotterBase.cs" />
334    <Compile Include="PlotterLoadMode.cs" />
335    <Compile Include="PointMarkers\RectElementPointMarker.cs" />
336    <Compile Include="Resources\D3IconHelper.cs" />
337    <Compile Include="Common\Auxiliary\DispatcherExtensions.cs" />
338    <Compile Include="Common\Auxiliary\DoubleCollectionHelper.cs" />
339    <Compile Include="Common\Auxiliary\EventExtensions.cs" />
340    <Compile Include="Common\Auxiliary\IPlotterElementExtensions.cs" />
341    <Compile Include="Common\Auxiliary\PlacementExtensions.cs" />
342    <Compile Include="Common\Auxiliary\PlotterExtensions.cs" />
343    <Compile Include="Common\Auxiliary\RangeExtensions.cs" />
344    <Compile Include="Common\Auxiliary\SizeHelper.cs" />
345    <Compile Include="Common\Auxiliary\VectorExtensions.cs" />
346    <Compile Include="Common\Auxiliary\VisualTreeHelperHelper.cs" />
347    <Compile Include="Common\D3Collection.cs" />
348    <Compile Include="Common\NotifyingPanels\INotifyingPanel.cs" />
349    <Compile Include="Common\NotifyingPanels\NotifyingCanvas.cs" />
350    <Compile Include="Common\NotifyingPanels\NotifyingGrid.cs" />
351    <Compile Include="Common\NotifyingPanels\NotifyingStackPanel.cs" />
352    <Compile Include="Common\NotifyingPanels\NotifyingUIElementCollection.cs" />
353    <Compile Include="Common\NotNullAttribute.cs" />
354    <Compile Include="Common\Palettes\DelegatePalette.cs" />
355    <Compile Include="Common\Palettes\UniformLinearPalettes.cs" />
356    <Compile Include="Common\Palettes\PaletteBase.cs" />
357    <Compile Include="Common\Range.cs" />
358    <Compile Include="Charts\Axes\RoundingHelper.cs" />
359    <Compile Include="Charts\Axes\StackCanvas.cs" />
360    <Compile Include="Charts\Axes\Numeric\ToStringLabelProvider.cs" />
361    <Compile Include="Charts\Filters\FrequencyFilter.cs" />
362    <Compile Include="Charts\Filters\InclinationFilter.cs" />
363    <Compile Include="Charts\Navigation\ChartCommands.cs" />
364    <Compile Include="Charts\Navigation\DefaultContextMenu.cs" />
365    <Compile Include="Charts\Navigation\KeyboardNavigation.cs" />
366    <Compile Include="Charts\Navigation\MessagesHelper.cs" />
367    <Compile Include="Charts\Navigation\MouseNavigation.cs" />
368    <Compile Include="Charts\Navigation\NavigationBase.cs" />
369    <Compile Include="Charts\Navigation\RectangleSelectionAdorner.cs" />
370    <Compile Include="Charts\Navigation\TouchPadScroll.cs" />
371    <Compile Include="Charts\Navigation\WindowsMessages.cs" />
372    <Compile Include="Charts\RemoveAll.cs" />
373    <Compile Include="Charts\Shapes\HorizontalRange.cs" />
374    <Compile Include="Charts\Shapes\RangeHighlight.cs" />
375    <Compile Include="Charts\Shapes\RectangleHighlight.cs" />
376    <Compile Include="Charts\Shapes\Segment.cs" />
377    <Compile Include="Charts\Shapes\SimpleLine.cs" />
378    <Compile Include="Charts\Shapes\VerticalRange.cs" />
379    <Compile Include="Charts\Shapes\ViewportShape.cs" />
380    <Compile Include="Charts\Shapes\VerticalLine.cs" />
381    <Compile Include="Charts\Shapes\PositionalViewportUIContainer.cs" />
382    <Compile Include="Common\Auxiliary\ArrayExtensions.cs" />
383    <Compile Include="Common\Auxiliary\BrushHelper.cs" />
384    <Compile Include="Common\Auxiliary\DebugVerify.cs" />
385    <Compile Include="Common\Auxiliary\DictionaryExtensions.cs" />
386    <Compile Include="Common\Auxiliary\IDataSource2DExtensions.cs" />
387    <Compile Include="Common\Auxiliary\IListExtensions.cs" />
388    <Compile Include="Common\Auxiliary\Verify.cs" />
389    <Compile Include="Common\PlotterChildrenCollection.cs" />
390    <Compile Include="Common\DataRect.cs" />
391    <Compile Include="Common\Footer.cs" />
392    <Compile Include="Common\Header.cs" />
393    <Compile Include="Common\Palettes\HsbPalette.cs" />
394    <Compile Include="Common\Palettes\IPalette.cs" />
395    <Compile Include="Common\Palettes\UniformLinearPalette.cs" />
396    <Compile Include="Common\Plotter.cs" />
397    <Compile Include="Common\RingArray.cs" />
398    <Compile Include="Common\UndoSystem\ActionStack.cs" />
399    <Compile Include="Common\UndoSystem\DependencyPropertyChangedUndoAction.cs" />
400    <Compile Include="Common\UndoSystem\UndoAction.cs" />
401    <Compile Include="Common\UndoSystem\UndoProvider.cs" />
402    <Compile Include="Common\VisualBindingCollection.cs" />
403    <Compile Include="GenericRect.cs" />
404    <Compile Include="DataSources\MultiDimensional\EmptyDataSource2D.cs" />
405    <Compile Include="DataSources\MultiDimensional\IDataSource2D.cs" />
406    <Compile Include="DataSources\MultiDimensional\WarpedDataSource2D.cs" />
407    <Compile Include="DataSources\OneDimensional\DataSourceExtensions.cs" />
408    <Compile Include="DataSources\OneDimensional\EnumerableXDataSource.cs" />
409    <Compile Include="DataSources\OneDimensional\EnumerableYDataSource.cs" />
410    <Compile Include="Charts\MagnifyingGlass.xaml.cs">
411      <DependentUpon>MagnifyingGlass.xaml</DependentUpon>
412    </Compile>
413    <Compile Include="DataSources\OneDimensional\EmptyDataSource.cs" />
414    <Compile Include="GlobalSuppressions.cs" />
415    <Compile Include="ExtendedPropertyChangedEventArgs.cs" />
416    <Compile Include="Charts\LineAndMarker.cs" />
417    <Compile Include="Charts\MarkerElementPointGraph.cs" />
418    <Compile Include="Charts\FakePointList.cs" />
419    <Compile Include="Charts\LineGraph.cs" />
420    <Compile Include="Charts\MarkerPointsGraph.cs" />
421    <Compile Include="PointMarkers\CirclePointMarker.cs" />
422    <Compile Include="PointMarkers\ShapePointMarker.cs" />
423    <Compile Include="PointMarkers\ElementPointMarker.cs" />
424    <Compile Include="Strings\Exceptions.Designer.cs">
425      <AutoGen>True</AutoGen>
426      <DesignTime>True</DesignTime>
427      <DependentUpon>Exceptions.resx</DependentUpon>
428    </Compile>
429    <Compile Include="Strings\Exceptions.ru-ru.Designer.cs">
430      <AutoGen>True</AutoGen>
431      <DesignTime>True</DesignTime>
432      <DependentUpon>Exceptions.ru-ru.resx</DependentUpon>
433    </Compile>
434    <Compile Include="Strings\UIResources.Designer.cs">
435      <AutoGen>True</AutoGen>
436      <DesignTime>True</DesignTime>
437      <DependentUpon>UIResources.resx</DependentUpon>
438    </Compile>
439    <Compile Include="Strings\UIResources.ru-ru.Designer.cs">
440      <AutoGen>True</AutoGen>
441      <DesignTime>True</DesignTime>
442      <DependentUpon>UIResources.ru-ru.resx</DependentUpon>
443    </Compile>
444    <Compile Include="TimeChartPlotter.cs" />
445    <Compile Include="Transforms\CoordinateTransformExtensions.cs" />
446    <Compile Include="Transforms\CoordinateTransform.cs" />
447    <Compile Include="Transforms\DataDomains.cs" />
448    <Compile Include="Transforms\DataTransforms.cs" />
449    <Compile Include="Transforms\Log10Transform.cs" />
450    <Compile Include="Transforms\SwapTransform.cs" />
451    <Compile Include="Viewport2D.cs" />
452    <Compile Include="AssemblyInfo.cs" />
453    <Compile Include="Common\Auxiliary\MathHelper.cs" />
454    <Compile Include="Common\Auxiliary\BoundsHelper.cs" />
455    <Compile Include="DataSources\OneDimensional\CompositeDataSource.cs" />
456    <Compile Include="DataSources\OneDimensional\DataSourceHelper.cs" />
457    <Compile Include="DataSources\OneDimensional\EnumerablePointEnumerator.cs" />
458    <Compile Include="DataSources\OneDimensional\EnumerableDataSource.cs" />
459    <Compile Include="DataSources\OneDimensional\EnumerableDataSourceBase.cs" />
460    <Compile Include="DataSources\OneDimensional\IPointDataSource.cs" />
461    <Compile Include="DataSources\OneDimensional\IPointEnumerator.cs" />
462    <Compile Include="Common\Auxiliary\IPointCollectionExtensions.cs" />
463    <Compile Include="Common\Auxiliary\ListGenerator.cs" />
464    <Compile Include="DataSources\OneDimensional\Mapping.cs" />
465    <Compile Include="DataSources\OneDimensional\ObservableDataSource.cs" />
466    <Compile Include="Plotter2D.cs" />
467    <Compile Include="DataSources\OneDimensional\RawPointEnumerator.cs" />
468    <Compile Include="DataSources\OneDimensional\RawDataSource.cs" />
469    <Compile Include="DataSources\OneDimensional\TableDataSource.cs" />
470    <Compile Include="PointMarkers\CenteredTextMarker.cs" />
471    <Compile Include="PointMarkers\CircleElementPointMarker.cs" />
472    <Compile Include="PointMarkers\CompositePointMarker.cs" />
473    <Compile Include="PointMarkers\DelegatePointMarker.cs" />
474    <Compile Include="PointMarkers\PointMarker.cs" />
475    <Compile Include="PointMarkers\ShapeElementPointMarker.cs" />
476    <Compile Include="PointMarkers\TrianglePointMarker.cs" />
477    <Compile Include="Common\Auxiliary\ColorHelper.cs" />
478    <Compile Include="Common\Auxiliary\CoordinateUtils.cs" />
479    <Compile Include="Common\Auxiliary\ScreenshotHelper.cs" />
480    <Compile Include="Common\HorizontalAxisTitle.cs" />
481    <Compile Include="Common\Auxiliary\HsbColor.cs" />
482    <Compile Include="Common\Auxiliary\ListExtensions.cs" />
483    <Compile Include="Common\PlotterElement.cs" />
484    <Compile Include="Common\Auxiliary\RectExtensions.cs" />
485    <Compile Include="Common\RenderState.cs" />
486    <Compile Include="Common\Auxiliary\PointExtensions.cs" />
487    <Compile Include="Charts\PointGraphBase.cs" />
488    <Compile Include="Common\VerticalAxisTitle.cs" />
489    <Compile Include="Properties\AssemblyInfo.cs">
490      <SubType>Code</SubType>
491    </Compile>
492    <Compile Include="Viewport2D.AttachedProperties.cs" />
493    <Compile Include="Viewport2dDeferredPanningProxy.cs" />
494    <Compile Include="Viewport2DExtensions.cs" />
495    <Compile Include="Viewport2DPanningState.cs" />
496    <Compile Include="InjectedViewport2D.cs" />
497    <Compile Include="ViewportConjunctionMode.cs" />
498    <Compile Include="ViewportElement2D.cs" />
499    <Compile Include="ViewportConstraints\DateTimeHorizontalAxisConstraint.cs" />
500    <Compile Include="ViewportConstraints\DateTimeVerticalAxisConstraint.cs" />
501    <Compile Include="ViewportConstraints\InjectionDelegateConstraint.cs" />
502    <Compile Include="ViewportConstraints\DomainConstraint.cs" />
503    <Compile Include="ViewportConstraints\DataHeightConstraint.cs" />
504    <Compile Include="ViewportConstraints\FollowWidthConstraint.cs" />
505    <Compile Include="ViewportConstraints\ISupportAttachToViewport.cs" />
506    <Compile Include="ViewportConstraints\MaximalSizeConstraint.cs" />
507    <Compile Include="ViewportConstraints\MinimalSizeConstraint.cs" />
508    <Compile Include="ViewportConstraints\PhysicalProportionsConstraint.cs" />
509    <Compile Include="ViewportConstraints\ProportionsConstraint.cs" />
510    <Compile Include="ViewportConstraints\ConstraintCollection.cs" />
511    <Compile Include="ViewportConstraints\ScaleInjectionConstraint.cs" />
512    <Compile Include="ViewportConstraints\ViewportConstraint.cs" />
513    <None Include="DynamicDataDisplay.snk" />
514    <AppDesigner Include="Properties\" />
515  </ItemGroup>
516  <ItemGroup>
517    <Page Include="Charts\Isolines\FastIsolineDisplay.xaml">
518      <SubType>Designer</SubType>
519      <Generator>MSBuild:Compile</Generator>
520      <Generator>MSBuild:Compile</Generator>
521      <SubType>Designer</SubType>
522    </Page>
523    <Page Include="Charts\Isolines\IsolineTrackingGraph.xaml">
524      <SubType>Designer</SubType>
525      <Generator>MSBuild:Compile</Generator>
526      <Generator>MSBuild:Compile</Generator>
527      <SubType>Designer</SubType>
528      <Generator>MSBuild:Compile</Generator>
529      <SubType>Designer</SubType>
530    </Page>
531    <Page Include="Charts\Axes\AxisControlStyle.xaml">
532      <SubType>Designer</SubType>
533      <Generator>MSBuild:Compile</Generator>
534      <Generator>MSBuild:Compile</Generator>
535      <SubType>Designer</SubType>
536      <Generator>MSBuild:Compile</Generator>
537      <SubType>Designer</SubType>
538    </Page>
539    <Page Include="Charts\Legend items\LegendResources.xaml">
540      <Generator>MSBuild:Compile</Generator>
541      <SubType>Designer</SubType>
542    </Page>
543    <Page Include="Charts\Navigation\AboutWindow.xaml">
544      <SubType>Designer</SubType>
545      <Generator>MSBuild:Compile</Generator>
546      <Generator>MSBuild:Compile</Generator>
547      <SubType>Designer</SubType>
548      <Generator>MSBuild:Compile</Generator>
549      <SubType>Designer</SubType>
550    </Page>
551    <Page Include="Charts\Navigation\LongOperationsIndicatorResources.xaml">
552      <SubType>Designer</SubType>
553      <Generator>MSBuild:Compile</Generator>
554      <Generator>MSBuild:Compile</Generator>
555      <SubType>Designer</SubType>
556    </Page>
557    <Page Include="Charts\Navigation\SimpleNavigationBar.xaml">
558      <SubType>Designer</SubType>
559      <Generator>MSBuild:Compile</Generator>
560      <Generator>MSBuild:Compile</Generator>
561      <SubType>Designer</SubType>
562      <Generator>MSBuild:Compile</Generator>
563      <SubType>Designer</SubType>
564    </Page>
565    <Page Include="Charts\Navigation\CursorCoordinateGraph.xaml">
566      <SubType>Designer</SubType>
567      <Generator>MSBuild:Compile</Generator>
568      <Generator>MSBuild:Compile</Generator>
569      <SubType>Designer</SubType>
570      <Generator>MSBuild:Compile</Generator>
571      <SubType>Designer</SubType>
572    </Page>
573    <Page Include="Charts\Shapes\DraggablePoint.xaml">
574      <SubType>Designer</SubType>
575      <Generator>MSBuild:Compile</Generator>
576      <Generator>MSBuild:Compile</Generator>
577      <SubType>Designer</SubType>
578      <Generator>MSBuild:Compile</Generator>
579      <SubType>Designer</SubType>
580    </Page>
581    <Page Include="Charts\Shapes\PivotSegmentEditor.xaml">
582      <SubType>Designer</SubType>
583      <Generator>MSBuild:Compile</Generator>
584    </Page>
585    <Page Include="Charts\Shapes\RangeHighlightStyle.xaml">
586      <SubType>Designer</SubType>
587      <Generator>MSBuild:Compile</Generator>
588      <Generator>MSBuild:Compile</Generator>
589      <SubType>Designer</SubType>
590      <Generator>MSBuild:Compile</Generator>
591      <SubType>Designer</SubType>
592    </Page>
593    <Page Include="Common\PlotterStyle.xaml">
594      <Generator>MSBuild:Compile</Generator>
595      <SubType>Designer</SubType>
596      <Generator>MSBuild:Compile</Generator>
597      <SubType>Designer</SubType>
598      <Generator>MSBuild:Compile</Generator>
599      <SubType>Designer</SubType>
600    </Page>
601    <Page Include="Charts\MagnifyingGlass.xaml">
602      <SubType>Designer</SubType>
603      <Generator>MSBuild:Compile</Generator>
604      <Generator>MSBuild:Compile</Generator>
605      <SubType>Designer</SubType>
606      <Generator>MSBuild:Compile</Generator>
607      <SubType>Designer</SubType>
608    </Page>
609    <Page Include="Themes\Generic.xaml">
610      <Generator>MSBuild:Compile</Generator>
611      <SubType>Designer</SubType>
612      <Generator>MSBuild:Compile</Generator>
613      <SubType>Designer</SubType>
614      <Generator>MSBuild:Compile</Generator>
615      <SubType>Designer</SubType>
616    </Page>
617  </ItemGroup>
618  <ItemGroup>
619    <EmbeddedResource Include="Resources\SaveIcon.png" />
620  </ItemGroup>
621  <ItemGroup>
622    <EmbeddedResource Include="Resources\FitToViewIcon.png" />
623  </ItemGroup>
624  <ItemGroup>
625    <EmbeddedResource Include="Resources\CopyScreenshotIcon.png" />
626  </ItemGroup>
627  <ItemGroup>
628    <EmbeddedResource Include="Resources\HelpIcon.png" />
629  </ItemGroup>
630  <ItemGroup>
631    <None Include="DynamicDataDisplay.Readme.txt">
632      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
633    </None>
634  </ItemGroup>
635  <ItemGroup>
636    <EmbeddedResource Include="Resources\D3-icon.ico" />
637  </ItemGroup>
638  <ItemGroup>
639    <EmbeddedResource Include="Resources\D3-icon-white.ico" />
640    <EmbeddedResource Include="Strings\Exceptions.resx">
641      <Generator>ResXFileCodeGenerator</Generator>
642      <LastGenOutput>Exceptions.Designer.cs</LastGenOutput>
643      <SubType>Designer</SubType>
644    </EmbeddedResource>
645    <EmbeddedResource Include="Strings\Exceptions.ru-ru.resx">
646      <SubType>Designer</SubType>
647      <Generator>ResXFileCodeGenerator</Generator>
648      <LastGenOutput>Exceptions.ru-ru.Designer.cs</LastGenOutput>
649    </EmbeddedResource>
650    <EmbeddedResource Include="Strings\UIResources.ru-ru.resx">
651      <SubType>Designer</SubType>
652      <Generator>ResXFileCodeGenerator</Generator>
653      <LastGenOutput>UIResources.ru-ru.Designer.cs</LastGenOutput>
654    </EmbeddedResource>
655    <EmbeddedResource Include="Strings\UIResources.resx">
656      <Generator>ResXFileCodeGenerator</Generator>
657      <LastGenOutput>UIResources.Designer.cs</LastGenOutput>
658      <SubType>Designer</SubType>
659    </EmbeddedResource>
660  </ItemGroup>
661  <ItemGroup>
662    <Resource Include="Changelog.txt" />
663  </ItemGroup>
664  <ItemGroup>
665    <None Include="DynamicDataDisplay.License.txt">
666      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
667    </None>
668  </ItemGroup>
669  <ItemGroup>
670    <BootstrapperPackage Include="Microsoft.Net.Client.3.5">
671      <Visible>False</Visible>
672      <ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
673      <Install>false</Install>
674    </BootstrapperPackage>
675    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
676      <Visible>False</Visible>
677      <ProductName>.NET Framework 3.5 SP1</ProductName>
678      <Install>true</Install>
679    </BootstrapperPackage>
680    <BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
681      <Visible>False</Visible>
682      <ProductName>Windows Installer 3.1</ProductName>
683      <Install>true</Install>
684    </BootstrapperPackage>
685  </ItemGroup>
686  <ItemGroup>
687    <EmbeddedResource Include="Resources\Toolbox\ChartPlotter.Icon.png" />
688  </ItemGroup>
689  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
690  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
691       Other similar extension points exist, see Microsoft.Common.targets.
692  <Target Name="BeforeBuild">
693  </Target>
694  <Target Name="AfterBuild">
695  </Target>
696  -->
697</Project>
Note: See TracBrowser for help on using the repository browser.