aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/Tango.MachineStudio.DB.csproj
blob: a6b278fe1e653391263001a333bd2b28ece73685 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
3
// Copyright (c) AlphaSierraPapa for the SharpDevelop Team (for details please see \doc\copyright.txt)
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)

using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Diagnostics.CodeAnalysis;

using Tango.Scripting.Editors.Utils;

namespace Tango.Scripting.Editors.Document
{
	/// <summary>
	/// Contains predefined offset change mapping types.
	/// </summary>
	public enum OffsetChangeMappingType
	{
		/// <summary>
		/// Normal replace.
		/// Anchors in front of the replaced region will stay in front, anchors after the replaced region will stay after.
		/// Anchors in the middle of the removed region will be deleted. If they survive deletion,
		/// they move depending on their AnchorMovementType.
		/// </summary>
		/// <remarks>
		/// This is the default implementation of DocumentChangeEventArgs when OffsetChangeMap is null,
		/// so using this option usually works without creating an OffsetChangeMap instance.
		/// This is equivalent to an OffsetChangeMap with a single entry describing the replace operation.
		/// </remarks>
		Normal,
		/// <summary>
		/// First the old text is removed, then the new text is inserted.
		/// Anchors immediately in front (or after) the replaced region may move to the other side of the insertion,
		/// depending on the AnchorMovementType.
		/// </summary>
		/// <remarks>
		/// This is implemented as an OffsetChangeMap with two entries: the removal, and the insertion.
		/// </remarks>
		RemoveAndInsert,
		/// <summary>
		/// The text is replaced character-by-character.
		/// Anchors keep their position inside the replaced text.
		/// Anchors after the replaced region will move accordingly if the replacement text has a different length than the replaced text.
		/// If the new text is shorter than the old text, anchors inside the old text that would end up behind the replacement text
		/// will be moved so that they point to the end of the replacement text.
		/// </summary>
		/// <remarks>
		/// On the OffsetChangeMap level, growing text is implemented by replacing the last character in the replaced text
		/// with itself and the additional text segment. A simple insertion of the additional text would have the undesired
		/// effect of moving anchors immediately after the replaced text into the replacement text if they used
		/// AnchorMovementStyle.BeforeInsertion.
		/// Shrinking text is implemented by removing the text segment that's too long; but in a special mode that
		/// causes anchors to always survive irrespective of their <see cref="TextAnchor.SurviveDeletion"/> setting.
		/// If the text keeps its old size, this is implemented as OffsetChangeMap.Empty.
		/// </remarks>
		CharacterReplace,
		/// <summary>
		/// Like 'Normal', but anchors with <see cref="TextAnchor.MovementType"/> = Default will stay in front of the
		/// insertion instead of being moved behind it.
		/// </summary>
		KeepAnchorBeforeInsertion
	}
	
	/// <summary>
	/// Describes a series of offset changes.
	/// </summary>
	[Serializable]
	[SuppressMessage("Microsoft.Naming", "CA1710:IdentifiersShouldHaveCorrectSuffix",
	                 Justification="It's a mapping old offsets -> new offsets")]
	public sealed class OffsetChangeMap : Collection<OffsetChangeMapEntry>
	{
		/// <summary>
		/// Immutable OffsetChangeMap that is empty.
		/// </summary>
		[SuppressMessage("Microsoft.Security", "CA2104:DoNotDeclareReadOnlyMutableReferenceTypes",
		                 Justification="The Empty instance is immutable")]
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProjectGuid>{94F7ACF8-55E1-4A02-B9BC-A818413FDBBF}</ProjectGuid>
    <OutputType>library</OutputType>
    <RootNamespace>Tango.MachineStudio.DB</RootNamespace>
    <AssemblyName>Tango.MachineStudio.DB</AssemblyName>
    <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
    <FileAlignment>512</FileAlignment>
    <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>false</Optimize>
    <OutputPath>..\..\..\Build\Machine Studio\Debug\</OutputPath>
    <DefineConstants>DEBUG;TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <DebugType>pdbonly</DebugType>
    <Optimize>true</Optimize>
    <OutputPath>..\..\..\Build\Machine Studio\Release\</OutputPath>
    <DefineConstants>TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="Dragablz, Version=0.0.3.197, Culture=neutral, processorArchitecture=MSIL">
      <HintPath>..\..\..\packages\Dragablz.0.0.3.197\lib\net45\Dragablz.dll</HintPath>
    </Reference>
    <Reference Include="EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
      <HintPath>..\..\..\packages\EntityFramework.6.2.0\lib\net45\EntityFramework.dll</HintPath>
    </Reference>
    <Reference Include="EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
      <HintPath>..\..\..\packages\EntityFramework.6.2.0\lib\net45\EntityFramework.SqlServer.dll</HintPath>
    </Reference>
    <Reference Include="MahApps.Metro, Version=1.5.0.23, Culture=neutral, PublicKeyToken=f4fb5a3c4d1e5b4f, processorArchitecture=MSIL">
      <HintPath>..\..\..\packages\MahApps.Metro.1.5.0\lib\net45\MahApps.Metro.dll</HintPath>
    </Reference>
    <Reference Include="MaterialDesignColors, Version=1.1.2.0, Culture=neutral, processorArchitecture=MSIL">
      <HintPath>..\..\..\packages\MaterialDesignColors.1.1.2\lib\net45\MaterialDesignColors.dll</HintPath>
    </Reference>
    <Reference Include="MaterialDesignThemes.Wpf, Version=2.3.1.953, Culture=neutral, processorArchitecture=MSIL">
      <HintPath>..\..\..\packages\MaterialDesignThemes.2.3.1.953\lib\net45\MaterialDesignThemes.Wpf.dll</HintPath>
    </Reference>
    <Reference Include="SimpleValidator, Version=0.6.1.0, Culture=neutral, processorArchitecture=MSIL">
      <HintPath>..\..\..\packages\SimpleValidator.0.6.1.0\lib\net40\SimpleValidator.dll</HintPath>
    </Reference>
    <Reference Include="System" />
    <Reference Include="System.ComponentModel.DataAnnotations" />
    <Reference Include="System.Data" />
    <Reference Include="System.Windows.Interactivity, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
      <HintPath>..\..\..\packages\Expression.Blend.Sdk.1.0.2\lib\net45\System.Windows.Interactivity.dll</HintPath>
    </Reference>
    <Reference Include="System.Xml" />
    <Reference Include="Microsoft.CSharp" />
    <Reference Include="System.Core" />
    <Reference Include="System.Xml.Linq" />
    <Reference Include="System.Data.DataSetExtensions" />
    <Reference Include="System.Net.Http" />
    <Reference Include="System.Xaml">
      <RequiredTargetFramework>4.0</RequiredTargetFramework>
    </Reference>
    <Reference Include="WindowsBase" />
    <Reference Include="PresentationCore" />
    <Reference Include="PresentationFramework" />
    <Reference Include="WriteableBitmapEx.Wpf, Version=1.5.0.0, Culture=neutral, PublicKeyToken=50375ca6144f1c69, processorArchitecture=MSIL">
      <HintPath>..\..\..\packages\WriteableBitmapEx.1.5.0.0\lib\net40\WriteableBitmapEx.Wpf.dll</HintPath>
    </Reference>
  </ItemGroup>
  <ItemGroup>
    <Compile Include="..\..\..\Versioning\GlobalVersionInfo.cs">
      <Link>GlobalVersionInfo.cs</Link>
    </Compile>
    <Compile Include="Converters\ByteArrayToFileSizeConverter.cs" />
    <Compile Include="Converters\EntityFieldNameToFriendlyStringConverter.cs" />
    <Compile Include="Converters\LiquidTypeRmlsToStringConverter.cs" />
    <Compile Include="Converters\RolesPermissionsToStringConverter.cs" />
    <Compile Include="DBModule.cs" />
    <Compile Include="Messages\CloseEntityEditViewMessage.cs" />
    <Compile Include="Messages\OpenEntityEditViewMessage.cs" />
    <Compile Include="ViewModels\AddressesViewVM.cs" />
    <Compile Include="ViewModels\ApplicationDisplayPanelVersionsViewVM.cs" />
    <Compile Include="ViewModels\ApplicationFirmwareVersionsViewVM.cs" />
    <Compile Include="ViewModels\ApplicationOsVersionsViewVM.cs" />
    <Compile Include="ViewModels\CartridgeTypesViewVM.cs" />
    <Compile Include="ViewModels\CatsViewVM.cs" />
    <Compile Include="ViewModels\CctsViewVM.cs" />
    <Compile Include="ViewModels\ConfigurationsViewVM.cs" />
    <Compile Include="ViewModels\ContactsViewVM.cs" />
    <Compile Include="ViewModels\HardwareDancerTypesViewVM.cs" />
    <Compile Include="ViewModels\DbTableViewModel.cs" />
    <Compile Include="ViewModels\DialogOpenMode.cs" />
    <Compile Include="ViewModels\DispenserTypesViewVM.cs" />
    <Compile Include="ViewModels\EmbeddedFirmwareVersionsViewVM.cs" />
    <Compile Include="ViewModels\FiberShapesViewVM.cs" />
    <Compile Include="ViewModels\FiberSynthsViewVM.cs" />
    <Compile Include="ViewModels\HardwareVersionsViewVM.cs" />
    <Compile Include="ViewModels\IdsPackFormulasViewVM.cs" />
    <Compile Include="ViewModels\IdsPacksViewVM.cs" />
    <Compile Include="ViewModels\LinearMassDensityUnitsViewVM.cs" />
    <Compile Include="ViewModels\LiquidTypesRmlsViewVM.cs" />
    <Compile Include="ViewModels\LiquidTypesViewVM.cs" />
    <Compile Include="ViewModels\MachinesViewVM.cs" />
    <Compile Include="ViewModels\MachineVersionsViewVM.cs" />
    <Compile Include="ViewModels\MediaConditionsViewVM.cs" />
    <Compile Include="ViewModels\MediaMaterialsViewVM.cs" />
    <Compile Include="ViewModels\MediaPurposesViewVM.cs" />
    <Compile Include="ViewModels\MidTankTypesViewVM.cs" />
    <Compile Include="ViewModels\HardwareMotorTypesViewVM.cs" />
    <Compile Include="ViewModels\MultiComboVM.cs" />
    <Compile Include="ViewModels\OrganizationsViewVM.cs" />
    <Compile Include="ViewModels\PermissionsViewVM.cs" />
    <Compile Include="ViewModels\HardwarePidControlTypesViewVM.cs" />
    <Compile Include="ViewModels\ProcessParametersTablesViewVM.cs" />
    <Compile Include="ViewModels\ProcessParametersTablesGroupsViewVM.cs" />
    <Compile Include="ViewModels\RmlsViewVM.cs" />
    <Compile Include="ViewModels\RolesViewVM.cs" />
    <Compile Include="ViewModels\SpoolTypesViewVM.cs" />
    <Compile Include="ViewModels\UsersViewVM.cs" />
    <Compile Include="ViewModels\EntityViewModel.cs" />
    <Compile Include="ViewModels\MainViewVM.cs" />
    <Compile Include="ViewModelLocator.cs" />
    <Compile Include="Views\DBViews\SpoolTypesView.xaml.cs">
      <DependentUpon>SpoolTypesView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\SpoolTypeView.xaml.cs">
      <DependentUpon>SpoolTypeView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\HardwarePidControlTypesView.xaml.cs">
      <DependentUpon>HardwarePidControlTypesView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\HardwareDancerTypesView.xaml.cs">
      <DependentUpon>HardwareDancerTypesView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\HardwarePidControlTypeView.xaml.cs">
      <DependentUpon>HardwarePidControlTypeView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\HardwareDancerTypeView.xaml.cs">
      <DependentUpon>HardwareDancerTypeView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\HardwareMotorTypeView.xaml.cs">
      <DependentUpon>HardwareMotorTypeView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\HardwareMotorTypesView.xaml.cs">
      <DependentUpon>HardwareMotorTypesView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\IdsPackFormulasView.xaml.cs">
      <DependentUpon>IdsPackFormulasView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\IdsPackFormulaView.xaml.cs">
      <DependentUpon>IdsPackFormulaView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\ProcessParametersTablesGroupsView.xaml.cs">
      <DependentUpon>ProcessParametersTablesGroupsView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\ProcessParametersTablesGroupView.xaml.cs">
      <DependentUpon>ProcessParametersTablesGroupView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\ProcessParametersTablesView.xaml.cs">
      <DependentUpon>ProcessParametersTablesView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\ProcessParametersTableView.xaml.cs">
      <DependentUpon>ProcessParametersTableView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\MidTankTypesView.xaml.cs">
      <DependentUpon>MidTankTypesView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\MidTankTypeView.xaml.cs">
      <DependentUpon>MidTankTypeView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\CatsView.xaml.cs">
      <DependentUpon>CatsView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\CctsView.xaml.cs">
      <DependentUpon>CctsView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\CatView.xaml.cs">
      <DependentUpon>CatView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\CctView.xaml.cs">
      <DependentUpon>CctView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\RmlView.xaml.cs">
      <DependentUpon>RmlView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\RmlsView.xaml.cs">
      <DependentUpon>RmlsView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\ContactView.xaml.cs">
      <DependentUpon>ContactView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\ContactsView.xaml.cs">
      <DependentUpon>ContactsView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\MediaConditionsView.xaml.cs">
      <DependentUpon>MediaConditionsView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\MediaConditionView.xaml.cs">
      <DependentUpon>MediaConditionView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\LinearMassDensityUnitsView.xaml.cs">
      <DependentUpon>LinearMassDensityUnitsView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\LinearMassDensityUnitView.xaml.cs">
      <DependentUpon>LinearMassDensityUnitView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\FiberShapesView.xaml.cs">
      <DependentUpon>FiberShapesView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\FiberShapeView.xaml.cs">
      <DependentUpon>FiberShapeView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\FiberSynthsView.xaml.cs">
      <DependentUpon>FiberSynthsView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\FiberSynthView.xaml.cs">
      <DependentUpon>FiberSynthView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\MediaPurposesView.xaml.cs">
      <DependentUpon>MediaPurposesView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\MediaMaterialsView.xaml.cs">
      <DependentUpon>MediaMaterialsView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\MediaPurposView.xaml.cs">
      <DependentUpon>MediaPurposView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\MediaMaterialView.xaml.cs">
      <DependentUpon>MediaMaterialView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\IdsPacksView.xaml.cs">
      <DependentUpon>IdsPacksView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\CartridgeTypesView.xaml.cs">
      <DependentUpon>CartridgeTypesView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\DispenserTypesView.xaml.cs">
      <DependentUpon>DispenserTypesView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\CartridgeTypeView.xaml.cs">
      <DependentUpon>CartridgeTypeView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\DispenserTypeView.xaml.cs">
      <DependentUpon>DispenserTypeView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\IdsPackView.xaml.cs">
      <DependentUpon>IdsPackView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\LiquidTypeView.xaml.cs">
      <DependentUpon>LiquidTypeView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\LiquidTypesView.xaml.cs">
      <DependentUpon>LiquidTypesView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\HardwareVersionView.xaml.cs">
      <DependentUpon>HardwareVersionView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\EmbeddedFirmwareVersionView.xaml.cs">
      <DependentUpon>EmbeddedFirmwareVersionView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\ApplicationOsVersionView.xaml.cs">
      <DependentUpon>ApplicationOsVersionView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\ApplicationFirmwareVersionView.xaml.cs">
      <DependentUpon>ApplicationFirmwareVersionView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\HardwareVersionsView.xaml.cs">
      <DependentUpon>HardwareVersionsView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\EmbeddedFirmwareVersionsView.xaml.cs">
      <DependentUpon>EmbeddedFirmwareVersionsView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\ApplicationOsVersionsView.xaml.cs">
      <DependentUpon>ApplicationOsVersionsView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\ApplicationFirmwareVersionsView.xaml.cs">
      <DependentUpon>ApplicationFirmwareVersionsView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\ConfigurationsView.xaml.cs">
      <DependentUpon>ConfigurationsView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\ApplicationDisplayPanelVersionsView.xaml.cs">
      <DependentUpon>ApplicationDisplayPanelVersionsView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\MachineVersionsView.xaml.cs">
      <DependentUpon>MachineVersionsView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\ApplicationDisplayPanelVersionView.xaml.cs">
      <DependentUpon>ApplicationDisplayPanelVersionView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\MachineVersionView.xaml.cs">
      <DependentUpon>MachineVersionView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\ConfigurationView.xaml.cs">
      <DependentUpon>ConfigurationView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\PermissionView.xaml.cs">
      <DependentUpon>PermissionView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\PermissionsView.xaml.cs">
      <DependentUpon>PermissionsView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\RoleView.xaml.cs">
      <DependentUpon>RoleView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\RolesView.xaml.cs">
      <DependentUpon>RolesView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\AddressesView.xaml.cs">
      <DependentUpon>AddressesView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\AddressView.xaml.cs">
      <DependentUpon>AddressView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\MachinesView.xaml.cs">
      <DependentUpon>MachinesView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\MachineView.xaml.cs">
      <DependentUpon>MachineView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\OrganizationsView.xaml.cs">
      <DependentUpon>OrganizationsView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\OrganizationView.xaml.cs">
      <DependentUpon>OrganizationView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\LiquidTypesRmlsView.xaml.cs">
      <DependentUpon>LiquidTypesRmlsView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\UsersView.xaml.cs">
      <DependentUpon>UsersView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\LiquidTypesRmlView.xaml.cs">
      <DependentUpon>LiquidTypesRmlView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\DBViews\UserView.xaml.cs">
      <DependentUpon>UserView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\MainDBView.xaml.cs">
      <DependentUpon>MainDBView.xaml</DependentUpon>
    </Compile>
    <Page Include="App.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
    <Page Include="Controls\DbTableView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Compile Include="Controls\DbTableView.xaml.cs">
      <DependentUpon>DbTableView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Controls\TableGrid.cs" />
    <Compile Include="Converters\UsersRolesToStringConverter.cs" />
    <Compile Include="CustomAttributes\DBViewAttribute.cs" />
    <Compile Include="Managers\RegisteredView.cs" />
    <Compile Include="Managers\ViewsManager.cs" />
    <Page Include="Views\DBViews\SpoolTypesView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\SpoolTypeView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\HardwarePidControlTypesView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\HardwareDancerTypesView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\HardwarePidControlTypeView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\HardwareDancerTypeView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\HardwareMotorTypeView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\HardwareMotorTypesView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\IdsPackFormulasView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\IdsPackFormulaView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\ProcessParametersTablesGroupsView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\ProcessParametersTablesGroupView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\ProcessParametersTablesView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\ProcessParametersTableView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\MidTankTypesView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\MidTankTypeView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\CatsView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\CctsView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\CatView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\CctView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\RmlView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\RmlsView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\ContactView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\ContactsView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\MediaConditionsView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\MediaConditionView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\LinearMassDensityUnitsView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\LinearMassDensityUnitView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\FiberShapesView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\FiberShapeView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\FiberSynthsView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\FiberSynthView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\MediaPurposesView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\MediaMaterialsView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\MediaPurposView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\MediaMaterialView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\IdsPacksView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\CartridgeTypesView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\DispenserTypesView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\CartridgeTypeView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\DispenserTypeView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\IdsPackView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\LiquidTypeView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\LiquidTypesView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\HardwareVersionView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\EmbeddedFirmwareVersionView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\ApplicationOsVersionView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\ApplicationFirmwareVersionView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\HardwareVersionsView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\EmbeddedFirmwareVersionsView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\ApplicationOsVersionsView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\ApplicationFirmwareVersionsView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\ConfigurationsView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\ApplicationDisplayPanelVersionsView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\MachineVersionsView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\ApplicationDisplayPanelVersionView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\MachineVersionView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\ConfigurationView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\PermissionView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\PermissionsView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\RoleView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\RolesView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\AddressesView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\AddressView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\MachinesView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\MachineView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\OrganizationsView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\OrganizationView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\LiquidTypesRmlsView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\UsersView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\LiquidTypesRmlView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\DBViews\UserView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\MainDBView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
  </ItemGroup>
  <ItemGroup>
    <Compile Include="Properties\AssemblyInfo.cs">
      <SubType>Code</SubType>
    </Compile>
    <Compile Include="Properties\Resources.Designer.cs">
      <AutoGen>True</AutoGen>
      <DesignTime>True</DesignTime>
      <DependentUpon>Resources.resx</DependentUpon>
    </Compile>
    <Compile Include="Properties\Settings.Designer.cs">
      <AutoGen>True</AutoGen>
      <DependentUpon>Settings.settings</DependentUpon>
      <DesignTimeSharedInput>True</DesignTimeSharedInput>
    </Compile>
    <EmbeddedResource Include="Properties\Resources.resx">
      <Generator>ResXFileCodeGenerator</Generator>
      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
    </EmbeddedResource>
    <None Include="App.config" />
    <None Include="packages.config" />
    <None Include="Properties\Settings.settings">
      <Generator>SettingsSingleFileGenerator</Generator>
      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
    </None>
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\..\..\Tango.BL\Tango.BL.csproj">
      <Project>{f441feee-322a-4943-b566-110e12fd3b72}</Project>
      <Name>Tango.BL</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\..\Tango.ColorPicker\Tango.ColorPicker.csproj">
      <Project>{a2f5af44-29ff-45d6-9d25-ecda5cce88b5}</Project>
      <Name>Tango.ColorPicker</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\..\Tango.Core\Tango.Core.csproj">
      <Project>{a34ee0f0-649d-41c8-8489-b6f1cc6924ee}</Project>
      <Name>Tango.Core</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\..\Tango.DAL.Remote\Tango.DAL.Remote.csproj">
      <Project>{38197109-8610-4d3f-92b9-16d48df94d7c}</Project>
      <Name>Tango.DAL.Remote</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\..\Tango.Integration\Tango.Integration.csproj">
      <Project>{4206ac58-3b57-4699-8835-90bf6db01a61}</Project>
      <Name>Tango.Integration</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\..\Tango.SharedUI\Tango.SharedUI.csproj">
      <Project>{8491d07b-c1f6-4b62-a412-41b9fd2d6538}</Project>
      <Name>Tango.SharedUI</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\Tango.MachineStudio.Common\Tango.MachineStudio.Common.csproj">
      <Project>{cb0b0aa2-bb24-4bca-a720-45e397684e12}</Project>
      <Name>Tango.MachineStudio.Common</Name>
    </ProjectReference>
  </ItemGroup>
  <ItemGroup>
    <Resource Include="Images\moduleImage.png" />
  </ItemGroup>
  <ItemGroup>
    <Resource Include="Images\db.png" />
  </ItemGroup>
  <ItemGroup>
    <Resource Include="Images\seamless-grid.jpg" />
  </ItemGroup>
  <ItemGroup />
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  <ProjectExtensions>
    <VisualStudio>
      <UserProperties BuildVersion_StartDate="2000/1/1" BuildVersion_UseGlobalSettings="False" BuildVersion_BuildVersioningStyle="None.None.Increment.TimeStamp" BuildVersion_UpdateAssemblyVersion="True" BuildVersion_AssemblyInfoFilename="Properties\AssemblyInfo.cs" />
    </VisualStudio>
  </ProjectExtensions>
</Project>