aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Integration/Upgrade/FirmwareUpgradeHandler.cs
blob: dd42693c44b8de9c479389730997ad03ccfe11d2 (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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Core;
using Tango.Integration.Storage;

namespace Tango.Integration.Upgrade
{
    public class FirmwareUpgradeHandler : ExtendedObject
    {
        private Action _cancelAction;

        public event EventHandler<FirmwareUpgradeProgressEventArgs> Progress;
        public event EventHandler Completed;
        public event EventHandler Canceled;
        public event EventHandler<Exception> Failed;

        internal FirmwareUpgradeHandler()
        {
            IsIndeterminate = true;
            Total = 100;
            Message = "Initializing...";
        }

        internal FirmwareUpgradeHandler(Action cancelAction) : this()
        {
            _cancelAction = cancelAction;
        }

        private String _message;
        public String Message
        {
            get { return _message; }
            set { _message = value; RaisePropertyChangedAuto(); }
        }

        private FirmwareUpgradeStatus _status;
        public FirmwareUpgradeStatus Status
        {
            get { return _status; }
            private set { _status = value; RaisePropertyChangedAuto(); }
        }

        private double _current;
        public double Current
        {
            get { return _current; }
            internal set
            {
                _current = value; RaisePropertyChangedAuto();
            }
        }

        private double _total;
        public double Total
        {
            get { return _total; }
            internal set { _total = value; RaisePropertyChangedAuto(); }
        }

        private bool _isIndeterminate;
        public bool IsIndeterminate
        {
            get { return _isIndeterminate; }
            set { _isIndeterminate = value; RaisePropertyChangedAuto(); }
        }

        public Task Cancel()
        {
            return Task.Factory.StartNew(() =>
            {
                _cancelAction.Invoke();
                Message = "Canceled.";
                Status = FirmwareUpgradeStatus.Canceled;
                Canceled?.Invoke(this, new EventArgs());
            });
        }

        internal void RaiseCompleted()
        {
            RaiseProgress(FirmwareUpgradeStatus.Completed, "Firmware upgrade completed.", false, 100, 100);
            Completed?.Invoke(this, new EventArgs());
        }

        internal void RaiseCanceled()
        {
            RaiseProgress(FirmwareUpgradeStatus.Canceled, "Firmware upgrade canceled by user.", false, 100, 0);
            Canceled?.Invoke(this, new EventArgs());
        }

        internal void RaiseFailed(Exception ex)
        {
            RaiseProgress(FirmwareUpgradeStatus.Failed, "Firmware upgrade failed.", false, 100, 0);
            Failed?.Invoke(this, ex);
        }

        internal void RaiseProgress(FirmwareUpgradeStatus status, String message, bool isIndeterminate = true, double total = 100, double current = 0)
        {
            Total = total;
            Current = current;
            IsIndeterminate = isIndeterminate;
            Status = status;
            Message = message;

            Progress?.Invoke(this, new FirmwareUpgradeProgressEventArgs()
            {
                Current = Current,
                Status = Status,
                Total = Total,
                Message = Message,
                IsIndeterminate = IsIndeterminate
            });
        }
    }
}
<?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>{654BEDA3-16FB-44FF-ADE7-B52E50B02E63}</ProjectGuid>
    <OutputType>WinExe</OutputType>
    <RootNamespace>Tango.PPC.UI</RootNamespace>
    <AssemblyName>Tango.PPC.UI</AssemblyName>
    <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
    <FileAlignment>512</FileAlignment>
    <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
    <WarningLevel>4</WarningLevel>
    <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
    <NuGetPackageImportStamp>
    </NuGetPackageImportStamp>
    <IsWebBootstrapper>false</IsWebBootstrapper>
    <PublishUrl>publish\</PublishUrl>
    <Install>true</Install>
    <InstallFrom>Disk</InstallFrom>
    <UpdateEnabled>false</UpdateEnabled>
    <UpdateMode>Foreground</UpdateMode>
    <UpdateInterval>7</UpdateInterval>
    <UpdateIntervalUnits>Days</UpdateIntervalUnits>
    <UpdatePeriodically>false</UpdatePeriodically>
    <UpdateRequired>false</UpdateRequired>
    <MapFileExtensions>true</MapFileExtensions>
    <ApplicationRevision>0</ApplicationRevision>
    <ApplicationVersion>1.0.0.%2a</ApplicationVersion>
    <UseApplicationTrust>false</UseApplicationTrust>
    <BootstrapperEnabled>true</BootstrapperEnabled>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <PlatformTarget>AnyCPU</PlatformTarget>
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>false</Optimize>
    <OutputPath>..\..\Build\PPC\Debug\</OutputPath>
    <DefineConstants>TRACE;DEBUG</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <PlatformTarget>AnyCPU</PlatformTarget>
    <DebugType>pdbonly</DebugType>
    <Optimize>true</Optimize>
    <OutputPath>..\..\Build\PPC\Release\</OutputPath>
    <DefineConstants>TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Eureka_Debug|AnyCPU' ">
    <PlatformTarget>AnyCPU</PlatformTarget>
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>false</Optimize>
    <OutputPath>..\..\Build\PPC\Eureka_Debug\</OutputPath>
    <DefineConstants>TRACE;DEBUG;Eureka</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Eureka|AnyCPU' ">
    <PlatformTarget>AnyCPU</PlatformTarget>
    <DebugType>pdbonly</DebugType>
    <Optimize>true</Optimize>
    <OutputPath>..\..\Build\PPC\Eureka\</OutputPath>
    <DefineConstants>TRACE;Eureka</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'X1_Debug|AnyCPU' ">
    <PlatformTarget>AnyCPU</PlatformTarget>
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>false</Optimize>
    <OutputPath>..\..\Build\PPC\X1_Debug\</OutputPath>
    <DefineConstants>TRACE;DEBUG;Eureka;X1</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'X1|AnyCPU' ">
    <PlatformTarget>AnyCPU</PlatformTarget>
    <DebugType>pdbonly</DebugType>
    <Optimize>true</Optimize>
    <OutputPath>..\..\Build\PPC\X1\</OutputPath>
    <DefineConstants>TRACE;Eureka;X1</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
  </PropertyGroup>
  <PropertyGroup>
    <ApplicationManifest>app.manifest</ApplicationManifest>
  </PropertyGroup>
  <PropertyGroup>
    <ApplicationIcon>Icon.ico</ApplicationIcon>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="ControlzEx, Version=3.0.2.4, Culture=neutral, processorArchitecture=MSIL">
      <HintPath>..\..\packages\ControlzEx.3.0.2.4\lib\net45\ControlzEx.dll</HintPath>
    </Reference>
    <Reference Include="DotNetty.Buffers, Version=0.4.6.0, Culture=neutral, PublicKeyToken=bc13ca065fa06c29, processorArchitecture=MSIL">
      <HintPath>..\..\packages\DotNetty.Buffers.0.4.6\lib\net45\DotNetty.Buffers.dll</HintPath>
    </Reference>
    <Reference Include="DotNetty.Codecs, Version=0.4.6.0, Culture=neutral, PublicKeyToken=bc13ca065fa06c29, processorArchitecture=MSIL">
      <HintPath>..\..\packages\DotNetty.Codecs.0.4.6\lib\net45\DotNetty.Codecs.dll</HintPath>
    </Reference>
    <Reference Include="DotNetty.Codecs.Mqtt, Version=0.4.6.0, Culture=neutral, PublicKeyToken=bc13ca065fa06c29, processorArchitecture=MSIL">
      <HintPath>..\..\packages\DotNetty.Codecs.Mqtt.0.4.6\lib\net45\DotNetty.Codecs.Mqtt.dll</HintPath>
    </Reference>
    <Reference Include="DotNetty.Common, Version=0.4.6.0, Culture=neutral, PublicKeyToken=bc13ca065fa06c29, processorArchitecture=MSIL">
      <HintPath>..\..\packages\DotNetty.Common.0.4.6\lib\net45\DotNetty.Common.dll</HintPath>
    </Reference>
    <Reference Include="DotNetty.Handlers, Version=0.4.6.0, Culture=neutral, PublicKeyToken=bc13ca065fa06c29, processorArchitecture=MSIL">
      <HintPath>..\..\packages\DotNetty.Handlers.0.4.6\lib\net45\DotNetty.Handlers.dll</HintPath>
    </Reference>
    <Reference Include="DotNetty.Transport, Version=0.4.6.0, Culture=neutral, PublicKeyToken=bc13ca065fa06c29, processorArchitecture=MSIL">
      <HintPath>..\..\packages\DotNetty.Transport.0.4.6\lib\net45\DotNetty.Transport.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="FontAwesome.WPF, Version=4.7.0.37774, Culture=neutral, PublicKeyToken=0758b07a11a4f466, processorArchitecture=MSIL">
      <HintPath>..\..\packages\FontAwesome.WPF.4.7.0.9\lib\net40\FontAwesome.WPF.dll</HintPath>
    </Reference>
    <Reference Include="Google.Protobuf, Version=3.4.1.0, Culture=neutral, PublicKeyToken=a7d26565bac4d604, processorArchitecture=MSIL">
      <HintPath>..\..\packages\Google.Protobuf.3.4.1\lib\net45\Google.Protobuf.dll</HintPath>
    </Reference>
    <Reference Include="Microsoft.Azure.Amqp, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
      <HintPath>..\..\packages\Microsoft.Azure.Amqp.2.0.6\lib\net45\Microsoft.Azure.Amqp.dll</HintPath>
    </Reference>
    <Reference Include="Microsoft.Azure.Devices.Client, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
      <HintPath>..\..\packages\Microsoft.Azure.Devices.Client.1.6.0\lib\net45\Microsoft.Azure.Devices.Client.dll</HintPath>
    </Reference>
    <Reference Include="Microsoft.Azure.Devices.Shared, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
      <HintPath>..\..\packages\Microsoft.Azure.Devices.Shared.1.3.0\lib\net45\Microsoft.Azure.Devices.Shared.dll</HintPath>
    </Reference>
    <Reference Include="Microsoft.Azure.KeyVault.Core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
      <HintPath>..\..\packages\Microsoft.Azure.KeyVault.Core.1.0.0\lib\net40\Microsoft.Azure.KeyVault.Core.dll</HintPath>
    </Reference>
    <Reference Include="Microsoft.Data.Edm, Version=5.6.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
      <HintPath>..\..\packages\Microsoft.Data.Edm.5.6.4\lib\net40\Microsoft.Data.Edm.dll</HintPath>
    </Reference>
    <Reference Include="Microsoft.Data.OData, Version=5.6.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
      <HintPath>..\..\packages\Microsoft.Data.OData.5.6.4\lib\net40\Microsoft.Data.OData.dll</HintPath>
    </Reference>
    <Reference Include="Microsoft.Data.Services.Client, Version=5.6.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
      <HintPath>..\..\packages\Microsoft.Data.Services.Client.5.6.4\lib\net40\Microsoft.Data.Services.Client.dll</HintPath>
    </Reference>
    <Reference Include="Microsoft.Extensions.DependencyInjection.Abstractions, Version=1.1.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
      <HintPath>..\..\packages\Microsoft.Extensions.DependencyInjection.Abstractions.1.1.0\lib\netstandard1.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll</HintPath>
    </Reference>
    <Reference Include="Microsoft.Extensions.Logging, Version=1.1.1.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
      <HintPath>..\..\packages\Microsoft.Extensions.Logging.1.1.1\lib\netstandard1.1\Microsoft.Extensions.Logging.dll</HintPath>
    </Reference>
    <Reference Include="Microsoft.Extensions.Logging.Abstractions, Version=1.1.1.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL">
      <HintPath>..\..\packages\Microsoft.Extensions.Logging.Abstractions.1.1.1\lib\netstandard1.1\Microsoft.Extensions.Logging.Abstractions.dll</HintPath>
    </Reference>
    <Reference Include="Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling, Version=6.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
      <HintPath>..\..\packages\EnterpriseLibrary.TransientFaultHandling.6.0.1304.0\lib\portable-net45+win+wp8\Microsoft.Practices.EnterpriseLibrary.TransientFaultHandling.dll</HintPath>
    </Reference>
    <Reference Include="Microsoft.Win32.Primitives, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
      <HintPath>..\..\packages\Microsoft.Win32.Primitives.4.3.0\lib\net46\Microsoft.Win32.Primitives.dll</HintPath>
      <Private>True</Private>
      <Private>True</Private>
    </Reference>
    <Reference Include="Microsoft.WindowsAPICodePack, Version=1.1.0.0, Culture=neutral, processorArchitecture=MSIL">
      <HintPath>..\..\packages\Microsoft.WindowsAPICodePack-Core.1.1.0.0\lib\Microsoft.WindowsAPICodePack.dll</HintPath>
    </Reference>
    <Reference Include="Microsoft.WindowsAzure.Storage, Version=7.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
      <HintPath>..\..\packages\WindowsAzure.Storage.7.0.0\lib\net40\Microsoft.WindowsAzure.Storage.dll</HintPath>
    </Reference>
    <Reference Include="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
      <HintPath>..\..\packages\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
    </Reference>
    <Reference Include="PCLCrypto, Version=2.0.0.0, Culture=neutral, PublicKeyToken=d4421c8a4786956c, processorArchitecture=MSIL">
      <HintPath>..\..\packages\PCLCrypto.2.0.147\lib\net45\PCLCrypto.dll</HintPath>
    </Reference>
    <Reference Include="PInvoke.BCrypt, Version=0.3.0.0, Culture=neutral, PublicKeyToken=9e300f9f87f04a7a, processorArchitecture=MSIL">
      <HintPath>..\..\packages\PInvoke.BCrypt.0.3.2\lib\net40\PInvoke.BCrypt.dll</HintPath>
    </Reference>
    <Reference Include="PInvoke.Kernel32, Version=0.3.0.0, Culture=neutral, PublicKeyToken=9e300f9f87f04a7a, processorArchitecture=MSIL">
      <HintPath>..\..\packages\PInvoke.Kernel32.0.3.2\lib\net40\PInvoke.Kernel32.dll</HintPath>
    </Reference>
    <Reference Include="PInvoke.NCrypt, Version=0.3.0.0, Culture=neutral, PublicKeyToken=9e300f9f87f04a7a, processorArchitecture=MSIL">
      <HintPath>..\..\packages\PInvoke.NCrypt.0.3.2\lib\net40\PInvoke.NCrypt.dll</HintPath>
    </Reference>
    <Reference Include="PInvoke.Windows.Core, Version=0.3.0.0, Culture=neutral, PublicKeyToken=9e300f9f87f04a7a, processorArchitecture=MSIL">
      <HintPath>..\..\packages\PInvoke.Windows.Core.0.3.2\lib\portable-net45+win+wpa81+MonoAndroid10+xamarinios10+MonoTouch10\PInvoke.Windows.Core.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.AppContext, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
      <HintPath>..\..\packages\System.AppContext.4.3.0\lib\net46\System.AppContext.dll</HintPath>
      <Private>True</Private>
      <Private>True</Private>
    </Reference>
    <Reference Include="System.ComponentModel.Composition" />
    <Reference Include="System.ComponentModel.DataAnnotations" />
    <Reference Include="System.Console, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
      <HintPath>..\..\packages\System.Console.4.3.0\lib\net46\System.Console.dll</HintPath>
      <Private>True</Private>
      <Private>True</Private>
    </Reference>
    <Reference Include="System.Data" />
    <Reference Include="System.Data.SQLite, Version=1.0.108.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=MSIL">
      <HintPath>..\..\packages\System.Data.SQLite.Core.1.0.108.0\lib\net46\System.Data.SQLite.dll</HintPath>
      <Private>True</Private>
    </Reference>
    <Reference Include="System.Data.SQLite.EF6, Version=1.0.108.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=MSIL">
      <HintPath>..\..\packages\System.Data.SQLite.EF6.1.0.108.0\lib\net46\System.Data.SQLite.EF6.dll</HintPath>
      <Private>True</Private>
    </Reference>
    <Reference Include="System.Data.SQLite.Linq, Version=1.0.108.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=MSIL">
      <HintPath>..\..\packages\System.Data.SQLite.Linq.1.0.108.0\lib\net46\System.Data.SQLite.Linq.dll</HintPath>
      <Private>True</Private>
    </Reference>
    <Reference Include="System.Diagnostics.DiagnosticSource, Version=4.0.1.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
      <HintPath>..\..\packages\System.Diagnostics.DiagnosticSource.4.3.0\lib\net46\System.Diagnostics.DiagnosticSource.dll</HintPath>
    </Reference>
    <Reference Include="System.Drawing" />
    <Reference Include="System.Globalization.Calendars, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
      <HintPath>..\..\packages\System.Globalization.Calendars.4.3.0\lib\net46\System.Globalization.Calendars.dll</HintPath>
      <Private>True</Private>
      <Private>True</Private>
    </Reference>
    <Reference Include="System.IO.Compression, Version=4.1.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
      <HintPath>..\..\packages\System.IO.Compression.4.3.0\lib\net46\System.IO.Compression.dll</HintPath>
      <Private>True</Private>
      <Private>True</Private>
    </Reference>
    <Reference Include="System.IO.Compression.FileSystem" />
    <Reference Include="System.IO.Compression.ZipFile, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
      <HintPath>..\..\packages\System.IO.Compression.ZipFile.4.3.0\lib\net46\System.IO.Compression.ZipFile.dll</HintPath>
      <Private>True</Private>
      <Private>True</Private>
    </Reference>
    <Reference Include="System.IO.FileSystem, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
      <HintPath>..\..\packages\System.IO.FileSystem.4.3.0\lib\net46\System.IO.FileSystem.dll</HintPath>
      <Private>True</Private>
      <Private>True</Private>
    </Reference>
    <Reference Include="System.IO.FileSystem.Primitives, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
      <HintPath>..\..\packages\System.IO.FileSystem.Primitives.4.3.0\lib\net46\System.IO.FileSystem.Primitives.dll</HintPath>
      <Private>True</Private>
      <Private>True</Private>
    </Reference>
    <Reference Include="System.Net.Http, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
      <HintPath>..\..\packages\System.Net.Http.4.3.0\lib\net46\System.Net.Http.dll</HintPath>
      <Private>True</Private>
      <Private>True</Private>
    </Reference>
    <Reference Include="System.Net.Http.Formatting, Version=5.2.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
      <HintPath>..\..\packages\Microsoft.AspNet.WebApi.Client.5.2.3\lib\net45\System.Net.Http.Formatting.dll</HintPath>
    </Reference>
    <Reference Include="System.Net.Sockets, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
      <HintPath>..\..\packages\System.Net.Sockets.4.3.0\lib\net46\System.Net.Sockets.dll</HintPath>
      <Private>True</Private>
      <Private>True</Private>
    </Reference>
    <Reference Include="System.Numerics" />
    <Reference Include="System.Runtime.InteropServices.RuntimeInformation, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
      <HintPath>..\..\packages\System.Runtime.InteropServices.RuntimeInformation.4.3.0\lib\net45\System.Runtime.InteropServices.RuntimeInformation.dll</HintPath>
      <Private>True</Private>
      <Private>True</Private>
    </Reference>
    <Reference Include="System.Security.Cryptography.Algorithms, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
      <HintPath>..\..\packages\System.Security.Cryptography.Algorithms.4.3.0\lib\net461\System.Security.Cryptography.Algorithms.dll</HintPath>
      <Private>True</Private>
      <Private>True</Private>
    </Reference>
    <Reference Include="System.Security.Cryptography.Encoding, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
      <HintPath>..\..\packages\System.Security.Cryptography.Encoding.4.3.0\lib\net46\System.Security.Cryptography.Encoding.dll</HintPath>
      <Private>True</Private>
      <Private>True</Private>
    </Reference>
    <Reference Include="System.Security.Cryptography.Primitives, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
      <HintPath>..\..\packages\System.Security.Cryptography.Primitives.4.3.0\lib\net46\System.Security.Cryptography.Primitives.dll</HintPath>
      <Private>True</Private>
      <Private>True</Private>
    </Reference>
    <Reference Include="System.Security.Cryptography.X509Certificates, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
      <HintPath>..\..\packages\System.Security.Cryptography.X509Certificates.4.3.0\lib\net461\System.Security.Cryptography.X509Certificates.dll</HintPath>
      <Private>True</Private>
      <Private>True</Private>
    </Reference>
    <Reference Include="System.Spatial, Version=5.6.4.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
      <HintPath>..\..\packages\System.Spatial.5.6.4\lib\net40\System.Spatial.dll</HintPath>
    </Reference>
    <Reference Include="System.Windows.Forms" />
    <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.Xaml">
      <RequiredTargetFramework>4.0</RequiredTargetFramework>
    </Reference>
    <Reference Include="System.Xml.ReaderWriter, Version=4.1.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
      <HintPath>..\..\packages\System.Xml.ReaderWriter.4.3.0\lib\net46\System.Xml.ReaderWriter.dll</HintPath>
      <Private>True</Private>
      <Private>True</Private>
    </Reference>
    <Reference Include="Validation, Version=2.2.0.0, Culture=neutral, PublicKeyToken=2fc06f0d701809a7, processorArchitecture=MSIL">
      <HintPath>..\..\packages\Validation.2.2.8\lib\dotnet\Validation.dll</HintPath>
    </Reference>
    <Reference Include="WindowsBase" />
    <Reference Include="PresentationCore" />
    <Reference Include="PresentationFramework" />
    <Reference Include="WindowsFormsIntegration" />
    <Reference Include="WPFMediaKit, Version=2.2.0.0, Culture=neutral, processorArchitecture=MSIL">
      <HintPath>..\..\packages\WPFMediaKit.2.2.0\lib\WPFMediaKit.dll</HintPath>
    </Reference>
  </ItemGroup>
  <ItemGroup>
    <ApplicationDefinition Include="App.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </ApplicationDefinition>
    <Compile Include="..\..\Versioning\GlobalVersionInfo.cs">
      <Link>GlobalVersionInfo.cs</Link>
    </Compile>
    <Compile Include="AppBarItems\PowerUpAppBarItem.cs" />
    <Compile Include="AppBarItems\PowerOffAppBarItem.cs" />
    <Compile Include="AppBarItems\PowerUpAppBarItemView.xaml.cs">
      <DependentUpon>PowerUpAppBarItemView.xaml</DependentUpon>
    </Compile>
    <Compile Include="AppBarItems\PowerOffAppBarItemView.xaml.cs">
      <DependentUpon>PowerOffAppBarItemView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Authentication\DefaultAuthenticationProvider.cs" />
    <Compile Include="Bit\DefaultBitManager.cs" />
    <Compile Include="Build\DefaultBuildProvider.cs" />
    <Compile Include="Connectivity\DefaultConnectivityProvider.cs" />
    <Compile Include="Connectivity\WiFiAuthenticationView.xaml.cs">
      <DependentUpon>WiFiAuthenticationView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Connectivity\WiFiAuthenticationViewVM.cs" />
    <Compile Include="Controls\JobOutlineControl.cs" />
    <Compile Include="Controls\MachineStatusControl.xaml.cs">
      <DependentUpon>MachineStatusControl.xaml</DependentUpon>
    </Compile>
    <Compile Include="Controls\RunningJobViewerEureka.xaml.cs">
      <DependentUpon>RunningJobViewerEureka.xaml</DependentUpon>
    </Compile>
    <Compile Include="Converters\AppBarItemConverter.cs" />
    <Compile Include="Converters\CollectionToCountConverter.cs" />
    <Compile Include="Converters\ComapareModulNameConverter.cs" />
    <Compile Include="Converters\DoubleWidthConverter.cs" />
    <Compile Include="Converters\ItemBaseConverter.cs" />
    <Compile Include="Converters\LengthToWeightConverter.cs" />
    <Compile Include="Converters\LengthWithSpoolsConverter.cs" />
    <Compile Include="Converters\LiquidTypeToBrushConverter.cs" />
    <Compile Include="Converters\MidTankLevelToElementRectConverter.cs" />
    <Compile Include="Converters\ProgressBorderWidthConverter.cs" />
    <Compile Include="Converters\ProgressLengthSpoolConverter.cs" />
    <Compile Include="Converters\ProgressUnitSpoolConverter.cs" />
    <Compile Include="Converters\ProgressWeightSpoolConverter.cs" />
    <Compile Include="Converters\StatisticTabToVisibilityConverter.cs" />
    <Compile Include="Dialogs\BitResultsView.xaml.cs">
      <DependentUpon>BitResultsView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Dialogs\BitResultsViewVM.cs" />
    <Compile Include="Dialogs\CartridgeValidationView.xaml.cs">
      <DependentUpon>CartridgeValidationView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Dialogs\GeneralInformationView.xaml.cs">
      <DependentUpon>GeneralInformationView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Dialogs\GeneralInformationViewVM.cs" />
    <Compile Include="Dialogs\InsufficientLiquidQuantityView.xaml.cs">
      <DependentUpon>InsufficientLiquidQuantityView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Dialogs\InsufficientLiquidQuantityViewVM.cs" />
    <Compile Include="Dialogs\PowerEurekaView.xaml.cs">
      <DependentUpon>PowerEurekaView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Dialogs\PowerEurekaViewVM.cs" />
    <Compile Include="Dialogs\SafetyLevelOperationsConfirmationView.xaml.cs">
      <DependentUpon>SafetyLevelOperationsConfirmationView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Dialogs\SafetyLevelOperationsConfirmationViewVM.cs" />
    <Compile Include="Dialogs\JerricanReplaceView.xaml.cs">
      <DependentUpon>JerricanReplaceView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Dialogs\JerricanReplaceViewVM.cs" />
    <Compile Include="Dialogs\FirmwareNotificationView.xaml.cs">
      <DependentUpon>FirmwareNotificationView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Dialogs\FirmwareNotificationViewVM.cs" />
    <Compile Include="Dialogs\WasteReplacementViewVM.cs" />
    <Compile Include="Dialogs\WasteReplacementView.xaml.cs">
      <DependentUpon>WasteReplacementView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Dialogs\SpoolReplaceView.xaml.cs">
      <DependentUpon>SpoolReplaceView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Dialogs\SpoolReplaceViewVM.cs" />
    <Compile Include="Dialogs\ThreadBreakView.xaml.cs">
      <DependentUpon>ThreadBreakView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Dialogs\ThreadBreakViewVM.cs" />
    <Compile Include="Dialogs\ThreadLoadingView.xaml.cs">
      <DependentUpon>ThreadLoadingView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Dialogs\PowerUpView.xaml.cs">
      <DependentUpon>PowerUpView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Dialogs\PowerUpViewVM.cs" />
    <Compile Include="Dialogs\ScreenLockView.xaml.cs">
      <DependentUpon>ScreenLockView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Dialogs\CartridgeValidationViewVM.cs" />
    <Compile Include="Dialogs\TechnicianModeLoginView.xaml.cs">
      <DependentUpon>TechnicianModeLoginView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Dialogs\ScreenLockViewVM.cs" />
    <Compile Include="Dialogs\TechnicianModeLoginViewVM.cs" />
    <Compile Include="Dialogs\ThreadLoadingViewVM.cs" />
    <Compile Include="Dialogs\FirmwareUpgradeFromFileView.xaml.cs">
      <DependentUpon>FirmwareUpgradeFromFileView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Dialogs\UpdateFromFileView.xaml.cs">
      <DependentUpon>UpdateFromFileView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Dialogs\FirmwareUpgradeFromFileViewVM.cs" />
    <Compile Include="Dialogs\UpdateFromFileViewVM.cs" />
    <Compile Include="Graphs\GraphHelper.cs" />
    <Compile Include="Graphs\RealTimeGraph.cs" />
    <Compile Include="Helpers\DpiHelper.cs" />
    <Compile Include="InternalModule.cs" />
    <Compile Include="Models\MachineOverviewErrorStates.cs" />
    <Compile Include="Models\MachineOverviewItem.cs" />
    <Compile Include="Models\MachineOverviewModel.cs" />
    <Compile Include="Models\JerricanLevelModel.cs" />
    <Compile Include="Models\MachineOverviewErrorItem.cs" />
    <Compile Include="Modules\DefaultPPCModuleLoader.cs" />
    <Compile Include="Navigation\EurekaNavigationManager.cs" />
    <Compile Include="Navigation\DefaultNavigationManager.cs" />
    <Compile Include="Notifications\DefaultNotificationProvider.cs" />
    <Compile Include="Notifications\DialogAndView.cs" />
    <Compile Include="Notifications\NotificationItems\UpdateAvailableNotificationItem.cs" />
    <Compile Include="Notifications\NotificationItems\UpdateAvailableNotificationItemView.xaml.cs">
      <DependentUpon>UpdateAvailableNotificationItemView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Notifications\PendingNotification.cs" />
    <Compile Include="PPCApplication\DefaultPPCApplicationManager.cs" />
    <Compile Include="Printing\DefaultPrintingManager.cs" />
    <Compile Include="RemoteActions\DefaultRemoteActionsService.cs" />
    <Compile Include="Telemetry\DefaultTelemetryProvider.cs" />
    <Compile Include="Threading\DefaultDispatcherProvider.cs" />
    <Compile Include="ThreadLoading\DefaultThreadLoadingService.cs" />
    <Compile Include="ViewModelLocator.cs" />
    <Compile Include="ViewModels\EmergencyViewVM.cs" />
    <Compile Include="ViewModels\ExternalBridgeViewVM.cs" />
    <Compile Include="ViewModels\InternalModuleViewVM.cs" />
    <Compile Include="ViewModels\LayoutViewVM.cs" />
    <Compile Include="ViewModels\LoadingErrorViewVM.cs" />
    <Compile Include="ViewModels\LoadingViewVM.cs" />
    <Compile Include="ViewModels\LoginViewVM.cs" />
    <Compile Include="ViewModels\MachineSetupViewVM.cs" />
    <Compile Include="ViewModels\MachineStatusViewVM.cs" />
    <Compile Include="ViewModels\MainViewVM.cs" />
    <Compile Include="ViewModels\MachineUpdateViewVM.cs" />
    <Compile Include="ViewModels\NoPermissionsViewVM.cs" />
    <Compile Include="ViewModels\PowerOffViewVM.cs" />
    <Compile Include="ViewModels\RestartingSystemViewVM.cs" />
    <Compile Include="ViewModels\RestartingViewVM.cs" />
    <Compile Include="ViewsContracts\ILayoutView.cs" />
    <Compile Include="ViewsContracts\IMachineSetupView.cs" />
    <Compile Include="ViewsContracts\IMachineUpdateView.cs" />
    <Compile Include="ViewsContracts\IMainView.cs" />
    <Compile Include="Views\ExternalBridgeView.xaml.cs">
      <DependentUpon>ExternalBridgeView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\InternalModuleView.xaml.cs">
      <DependentUpon>InternalModuleView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\LayoutEurekaView.xaml.cs">
      <DependentUpon>LayoutEurekaView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\LayoutView.xaml.cs">
      <DependentUpon>LayoutView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\EmergencyView.xaml.cs">
      <DependentUpon>EmergencyView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\LoadingErrorView.xaml.cs">
      <DependentUpon>LoadingErrorView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\MachineStatusView.xaml.cs">
      <DependentUpon>MachineStatusView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\MainEurekaView.xaml.cs">
      <DependentUpon>MainEurekaView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\PowerOffView.xaml.cs">
      <DependentUpon>PowerOffView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\RestartingView.xaml.cs">
      <DependentUpon>RestartingView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\LoadingView.xaml.cs">
      <DependentUpon>LoadingView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\LoginView.xaml.cs">
      <DependentUpon>LoginView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\MachineSetupView.xaml.cs">
      <DependentUpon>MachineSetupView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\MainView.xaml.cs">
      <DependentUpon>MainView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\MachineUpdateView.xaml.cs">
      <DependentUpon>MachineUpdateView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\NoPermissionsView.xaml.cs">
      <DependentUpon>NoPermissionsView.xaml</DependentUpon>
    </Compile>
    <Compile Include="Views\RestartingSystemView.xaml.cs">
      <DependentUpon>RestartingSystemView.xaml</DependentUpon>
    </Compile>
    <Page Include="AppBarItems\PowerUpAppBarItemView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="AppBarItems\PowerOffAppBarItemView.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
    <Page Include="Connectivity\WiFiAuthenticationView.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
    <Page Include="Controls\MachineStatusControl.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
    <Page Include="Controls\RunningJobViewerEureka.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
    <Page Include="Dialogs\BitResultsView.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
    <Page Include="Dialogs\CartridgeValidationView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Dialogs\GeneralInformationView.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
    <Page Include="Dialogs\InsufficientLiquidQuantityView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Dialogs\PowerEurekaView.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
    <Page Include="Dialogs\SafetyLevelOperationsConfirmationView.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
    <Page Include="Dialogs\JerricanReplaceView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Dialogs\FirmwareNotificationView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Dialogs\WasteReplacementView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Dialogs\SpoolReplaceView.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
    <Page Include="Dialogs\ThreadBreakView.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
    <Page Include="Dialogs\ThreadLoadingView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Dialogs\PowerUpView.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
    <Page Include="Dialogs\ScreenLockView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Dialogs\TechnicianModeLoginView.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
    <Page Include="Dialogs\FirmwareUpgradeFromFileView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Dialogs\UpdateFromFileView.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
    <Page Include="Graphs\RealTimeGraph.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
    <Page Include="MainWindow.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Compile Include="App.xaml.cs">
      <DependentUpon>App.xaml</DependentUpon>
      <SubType>Code</SubType>
    </Compile>
    <Compile Include="MainWindow.xaml.cs">
      <DependentUpon>MainWindow.xaml</DependentUpon>
      <SubType>Code</SubType>
    </Compile>
    <Page Include="Notifications\NotificationItems\UpdateAvailableNotificationItemView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Resources\Colors.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
    <Page Include="Resources\Fonts.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
    <Page Include="Resources\Graphs.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
    <Page Include="Resources\Styles.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
    <Page Include="Views\ExternalBridgeView.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
    <Page Include="Views\InternalModuleView.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
    <Page Include="Views\LayoutEurekaView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\LayoutView.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
    <Page Include="Views\EmergencyView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\LoadingErrorView.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
    <Page Include="Views\MachineStatusView.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
    <Page Include="Views\MainEurekaView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\PowerOffView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\RestartingView.xaml">
      <Generator>MSBuild:Compile</Generator>
      <SubType>Designer</SubType>
    </Page>
    <Page Include="Views\LoadingView.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
    <Page Include="Views\LoginView.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
    <Page Include="Views\MachineSetupView.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
    <Page Include="Views\MainView.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
    <Page Include="Views\MachineUpdateView.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
    <Page Include="Views\NoPermissionsView.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </Page>
    <Page Include="Views\RestartingSystemView.xaml">
      <SubType>Designer</SubType>
      <Generator>MSBuild:Compile</Generator>
    </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>
    <Resource Include="Images\GlobalStatus\ready-to-dye.png" />
    <Resource Include="Images\Overview Icons\Sensors.png" />
    <Resource Include="Images\user-profile.png" />
    <Resource Include="Images\warning-test.png" />
    <EmbeddedResource Include="Properties\Resources.resx">
      <Generator>ResXFileCodeGenerator</Generator>
      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
    </EmbeddedResource>
    <None Include="app.manifest" />
    <Resource Include="Images\machine.png" />
    <Resource Include="Images\power-machine.png" />
    <Resource Include="Images\power-tablet.png" />
    <Resource Include="Images\Menu\power.png" />
    <Resource Include="Images\Menu\update.png" />
    <Resource Include="Images\technician-mode.png" />
    <Resource Include="Images\GlobalStatus\getting_ready_Anim.gif" />
    <Resource Include="Images\GlobalStatus\dyeing_Anim.gif" />
    <Resource Include="Images\GlobalStatus\error_Anim.gif" />
    <Resource Include="Images\GlobalStatus\machine_off_Anim.gif" />
    <Resource Include="Images\GlobalStatus\Ready_Anim.gif" />
    <Resource Include="Images\GlobalStatus\service_Anim.gif" />
    <Resource Include="Images\GlobalStatus\shutdown_icon_Anim.gif" />
    <Resource Include="Images\GlobalStatus\standby_Anim.gif" />
    <Resource Include="Images\bug.png" />
    <Resource Include="Images\cartridge_validation.png" />
    <Resource Include="Images\machine-image.png" />
    <Resource Include="Images\Menu\backup.png" />
    <Resource Include="Images\backup-restore.png" />
    <Resource Include="Images\restore.png" />
    <Resource Include="Images\backup-big.png" />
    <Resource Include="Images\GlobalStatus\getting-ready.png" />
    <Resource Include="Images\GlobalStatus\shutting-down.png" />
    <Resource Include="Images\GlobalStatus\error.png" />
    <Resource Include="Images\GlobalStatus\service.png" />
    <Resource Include="Images\update_available.png" />
    <Resource Include="Images\powerup.gif" />
    <Resource Include="Images\power_off.gif" />
    <Resource Include="Images\thread_loading.gif" />
    <Resource Include="Images\thread_loading.png" />
    <Resource Include="Images\firmware.png" />
    <Resource Include="Images\power_off_2.gif" />
    <Resource Include="Images\loading_anim.gif" />
    <Resource Include="Images\thread_loading_preview.png" />
    <Resource Include="Images\ThreadLoading\FeedingUnits\1.JPG" />
    <Resource Include="Images\ThreadLoading\FeedingUnits\2.JPG" />
    <Resource Include="Images\ThreadLoading\FeedingUnits\3.JPG" />
    <Resource Include="Images\ThreadLoading\FeedingUnits\4.JPG" />
    <Resource Include="Images\ThreadLoading\GuidingUnits\1.JPG" />
    <Resource Include="Images\ThreadLoading\TheDryer\1.jpg" />
    <Resource Include="Images\ThreadLoading\TheDryer\2.jpg" />
    <Resource Include="Images\ThreadLoading\TheDryer\3.jpg" />
    <Resource Include="Images\ThreadLoading\TheDryer\4.jpg" />
    <Resource Include="Images\ThreadLoading\TheDryer\5.jpg" />
    <Resource Include="Images\ThreadLoading\DryerClose\1.jpg" />
    <Resource Include="Images\ThreadLoading\DryerClose\2.jpg" />
    <Resource Include="Images\ThreadLoading\DryerClose\3.jpg" />
    <Resource Include="Images\ThreadLoading\DryerClose\4.jpg" />
    <Resource Include="Images\ThreadLoading\FeedingUnits\arc\1.jpg" />
    <Resource Include="Images\ThreadLoading\FeedingUnits\arc\2.jpg" />
    <Resource Include="Images\ThreadLoading\FeedingUnits\arc\3.jpg" />
    <Resource Include="Images\ThreadLoading\FeedingUnits\arc\4.jpg" />
    <Resource Include="Images\ThreadLoading\NewThread\TS1800_CloseUp_Feeder_P.jpg" />
    <Resource Include="Images\ThreadLoading\NewThread\ReadyForLoading\arc\1.jpg" />
    <Resource Include="Images\ThreadLoading\NewThread\ReadyForLoading\arc\2.JPG" />
    <Resource Include="Images\ThreadLoading\NewThread\ReadyForLoading\arc\3.JPG" />
    <Resource Include="Images\ThreadLoading\NewThread\ReadyForLoading\arc\4.JPG" />
    <Resource Include="Images\ThreadLoading\NewThread\ReadyForLoading\arc\5.JPG" />
    <Resource Include="Images\ThreadLoading\NewThread\ReadyForLoading\arc\6.JPG" />
    <Resource Include="Images\ThreadLoading\NewThread\ReadyForLoading\arc\7.jpg" />
    <Resource Include="Images\ThreadLoading\NewThread\machine_full.jpg" />
    <Resource Include="Images\bit.png" />
    <Resource Include="Images\bit_new.png" />
    <Resource Include="Images\loading_anim2.gif" />
    <None Include="..\rc.exe">
      <Link>rc.exe</Link>
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </None>
    <Resource Include="Images\waste_replace.png" />
    <Resource Include="Images\JobProgressView\clock.png" />
    <Resource Include="Images\JobProgressView\drop.png" />
    <Resource Include="Images\Job Issues\input.png" />
    <Resource Include="Images\Job Issues\job_copies.png" />
    <Resource Include="Images\Job Issues\job_length.png" />
    <Resource Include="Images\Job Issues\job_weight.png" />
    <Resource Include="Images\Job Issues\output.png" />
    <Resource Include="Images\Job Issues\spools.png" />
    <Resource Include="Images\Job Issues\Thread.png" />
    <Resource Include="Images\Job Issues\ttime_left.png" />
    <Resource Include="Images\Job Issues\thread_type.png" />
    <Resource Include="Images\Job Issues\Events.png" />
    <Resource Include="Images\Job Issues\Machine outline.png" />
    <Resource Include="Images\Menu\restart_t.png" />
    <Resource Include="Images\Menu\Power_image.png" />
    <Resource Include="Manifests\eureka.xml" />
    <Resource Include="Icon.ico" />
    <Resource Include="Images\Overview Icons\Error.png" />
    <Resource Include="Images\Overview Icons\Feeder2.png" />
    <Resource Include="Images\Overview Icons\Feeder3.png" />
    <Resource Include="Images\Overview Icons\Inks.png" />
    <Resource Include="Images\Overview Icons\Feeder1.png" />
    <Resource Include="Images\Overview Icons\Normal.png" />
    <Resource Include="Images\Overview Icons\UpdateInk.png" />
    <Resource Include="Images\Overview Icons\Warning.png" />
    <Resource Include="Images\Overview Icons\Waste.png" />
    <Resource Include="Images\Overview Icons\Feeder4.png" />
    <Resource Include="Manifests\eureka_debug.xml" />
    <Resource Include="Images\Overview Icons\JericanRemoved.png" />
    <Resource Include="Images\Overview Icons\motor.png" />
    <Resource Include="Images\Overview Icons\pressure.png" />
    <Resource Include="Images\Overview Icons\pr_data.png" />
    <Resource Include="Images\Overview Icons\temperature.png" />
    <Resource Include="Images\screw.png" />
    <Resource Include="Images\Menu\AppPower_image.png" />
    <Resource Include="Images\Menu\updateDB.png" />
    <Resource Include="Images\Menu\updateVersion.png" />
    <Resource Include="Images\machine-X4.png" />
    <Resource Include="Images\machine-image-X4.png" />
    <Resource Include="Images\update_x4.png" />
    <Resource Include="Images\machine-image-X1.png" />
    <Content Include="Intro.wmv" />
    <Resource Include="Manifests\x1.xml" />
    <Resource Include="Manifests\x1_debug.xml" />
    <Content Include="Manifests\release.xml" />
    <Content Include="Manifests\debug.xml" />
    <None Include="firmware_package.tfp">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </None>
    <None Include="GetVersionTag.bat">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </None>
    <None Include="packages.config">
      <SubType>Designer</SubType>
    </None>
    <None Include="Properties\Settings.settings">
      <Generator>SettingsSingleFileGenerator</Generator>
      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
    </None>
  </ItemGroup>
  <ItemGroup>
    <None Include="App.config">
      <SubType>Designer</SubType>
    </None>
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\..\SideChains\RealTimeGraphX-master\RealTimeGraphX.WPF\RealTimeGraphX.WPF.csproj">
      <Project>{6b9774f7-960d-438e-ad81-c6b9be328d50}</Project>
      <Name>RealTimeGraphX.WPF</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\SideChains\RealTimeGraphX-master\RealTimeGraphX\RealTimeGraphX.csproj">
      <Project>{f13a489c-80ee-4cd0-bdd4-92d959215646}</Project>
      <Name>RealTimeGraphX</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\Tango.AnimatedGif\Tango.AnimatedGif.csproj">
      <Project>{d129789c-3096-4d0b-8dd7-fe24a4df4b21}</Project>
      <Name>Tango.AnimatedGif</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\Tango.BL\Tango.BL.csproj">
      <Project>{f441feee-322a-4943-b566-110e12fd3b72}</Project>
      <Name>Tango.BL</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\Tango.ColorConversion\Tango.ColorConversion.csproj">
      <Project>{b4fe6485-4161-4b36-bc08-67e0b53d01b7}</Project>
      <Name>Tango.ColorConversion</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\Tango.Core\Tango.Core.csproj">
      <Project>{a34ee0f0-649d-41c8-8489-b6f1cc6924ee}</Project>
      <Name>Tango.Core</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\Tango.DragAndDrop\Tango.DragAndDrop.csproj">
      <Project>{b112d89a-a106-41ae-a0c1-4abc84c477f5}</Project>
      <Name>Tango.DragAndDrop</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\Tango.Explorer\Tango.Explorer.csproj">
      <Project>{4399af76-db52-4cfb-8020-6f85bdb29fd5}</Project>
      <Name>Tango.Explorer</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\Tango.Insights\Tango.Insights.csproj">
      <Project>{4A55C185-3F8D-41B0-8815-C15F6213A14A}</Project>
      <Name>Tango.Insights</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\Tango.Integration\Tango.Integration.csproj">
      <Project>{4206ac58-3b57-4699-8835-90bf6db01a61}</Project>
      <Name>Tango.Integration</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\Tango.Logging\Tango.Logging.csproj">
      <Project>{bc932dbd-7cdb-488c-99e4-f02cf441f55e}</Project>
      <Name>Tango.Logging</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\Tango.PMR\Tango.PMR.csproj">
      <Project>{e4927038-348d-4295-aaf4-861c58cb3943}</Project>
      <Name>Tango.PMR</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\Tango.RemoteDesktop\Tango.RemoteDesktop.csproj">
      <Project>{a78068d4-2061-4376-8ede-583d8d880dec}</Project>
      <Name>Tango.RemoteDesktop</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\Tango.Serialization\Tango.Serialization.csproj">
      <Project>{22f87980-e990-4686-be81-be63d562c4d5}</Project>
      <Name>Tango.Serialization</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\Tango.Settings\Tango.Settings.csproj">
      <Project>{d8f1ad85-526a-4f50-b6dc-d437af63d8d8}</Project>
      <Name>Tango.Settings</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\Tango.SharedUI\Tango.SharedUI.csproj">
      <Project>{8491d07b-c1f6-4b62-a412-41b9fd2d6538}</Project>
      <Name>Tango.SharedUI</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\Tango.SQLExaminer\Tango.SQLExaminer.csproj">
      <Project>{e1e66ed9-597d-45fa-8048-de90a6930484}</Project>
      <Name>Tango.SQLExaminer</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\Tango.Telemetry\Tango.Telemetry.csproj">
      <Project>{af593663-d4e9-4a14-a3f2-fea57f30e9e6}</Project>
      <Name>Tango.Telemetry</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\Tango.TFS\Tango.TFS.csproj">
      <Project>{998f8471-dc1b-41b6-9d96-354e1b4e7a32}</Project>
      <Name>Tango.TFS</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\Tango.Touch\Tango.Touch.csproj">
      <Project>{fd86424c-6e84-491b-8df9-3d0f5c236a2a}</Project>
      <Name>Tango.Touch</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\Tango.Transport\Tango.Transport.csproj">
      <Project>{74e700b0-1156-4126-be40-ee450d3c3026}</Project>
      <Name>Tango.Transport</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\Tango.Web\Tango.Web.csproj">
      <Project>{5001990f-977b-48ff-b217-0236a5022ad8}</Project>
      <Name>Tango.Web</Name>
    </ProjectReference>
    <ProjectReference Include="..\..\Tango.WiFi\Tango.WiFi.csproj">
      <Project>{6aa425c9-ea6a-4b01-aaed-5ff122e8b663}</Project>
      <Name>Tango.WiFi</Name>
    </ProjectReference>
    <ProjectReference Include="..\Modules\Tango.PPC.BackupRestore\Tango.PPC.BackupRestore.csproj">
      <Project>{bc2753f8-c0f7-48f5-a85c-149ec7a2f8c7}</Project>
      <Name>Tango.PPC.BackupRestore</Name>
    </ProjectReference>
    <ProjectReference Include="..\Modules\Tango.PPC.BugReporting\Tango.PPC.BugReporting.csproj">
      <Project>{8146fa0a-0725-4a1a-82e6-696c58f33a2b}</Project>
      <Name>Tango.PPC.BugReporting</Name>
    </ProjectReference>
    <ProjectReference Include="..\Modules\Tango.PPC.Events\Tango.PPC.Events.csproj">
      <Project>{a8077b3e-8dd6-4572-8ec4-a27bdc91b70a}</Project>
      <Name>Tango.PPC.Events</Name>
    </ProjectReference>
    <ProjectReference Include="..\Modules\Tango.PPC.JobsV2\Tango.PPC.JobsV2.csproj">
      <Project>{dbbd90f4-4135-475d-a8f8-6795d3a8f697}</Project>
      <Name>Tango.PPC.JobsV2</Name>
    </ProjectReference>
    <ProjectReference Include="..\Modules\Tango.PPC.MachineSettings\Tango.PPC.MachineSettings.csproj">
      <Project>{91b70e9b-66a7-4873-ae10-400e71cf404f}</Project>
      <Name>Tango.PPC.MachineSettings</Name>
    </ProjectReference>
    <ProjectReference Include="..\Modules\Tango.PPC.Maintenance\Tango.PPC.Maintenance.csproj">
      <Project>{011470ac-6bd6-4366-b5f2-c82c065d4a84}</Project>
      <Name>Tango.PPC.Maintenance</Name>
    </ProjectReference>
    <ProjectReference Include="..\Modules\Tango.PPC.Storage\Tango.PPC.Storage.csproj">
      <Project>{04febb02-f782-4b96-b47d-f6902afa43be}</Project>
      <Name>Tango.PPC.Storage</Name>
    </ProjectReference>
    <ProjectReference Include="..\Modules\Tango.PPC.Technician\Tango.PPC.Technician.csproj">
      <Project>{d2ee865b-b006-487a-9487-60a663636ac3}</Project>
      <Name>Tango.PPC.Technician</Name>
    </ProjectReference>
    <ProjectReference Include="..\Tango.PPC.Common\Tango.PPC.Common.csproj">
      <Project>{0be74eee-22cb-4dba-b896-793b9e1a3ac0}</Project>
      <Name>Tango.PPC.Common</Name>
    </ProjectReference>
    <ProjectReference Include="..\Tango.PPC.Shared\Tango.PPC.Shared.csproj">
      <Project>{208c8bd8-72c6-4e3c-acaa-351091a2acc7}</Project>
      <Name>Tango.PPC.Shared</Name>
    </ProjectReference>
    <!--ColorLib-->
    <ProjectReference Include="..\..\ColorLib\Tango.ColorLib_v6\Tango.ColorLib_v6.vcxproj">
      <Project>{D74E49AA-4C6B-4427-BEFF-D7CE2690D059}</Project>
      <Name>Tango.ColorLib_v6</Name>
      <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
      <OutputItemType>Content</OutputItemType>
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </ProjectReference>
    <ProjectReference Include="..\..\ColorLib\Tango.ColorLib_v5\Tango.ColorLib_v5.vcxproj">
      <Project>{0F87D32E-B65F-4AE8-862C-29F4CCC38240}</Project>
      <Name>Tango.ColorLib_v5</Name>
      <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
      <OutputItemType>Content</OutputItemType>
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </ProjectReference>
    <ProjectReference Include="..\..\ColorLib\Tango.ColorLib_v4\Tango.ColorLib_v4.vcxproj">
      <Project>{E9528353-7D41-4AA8-BBAC-D65B7FE3A0D6}</Project>
      <Name>Tango.ColorLib_v4</Name>
      <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
      <OutputItemType>Content</OutputItemType>
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </ProjectReference>
    <ProjectReference Include="..\..\ColorLib\Tango.ColorLib_v3\Tango.ColorLib_v3.vcxproj">
      <Project>{A3A8ADA0-C150-4E30-A60D-11F291FDBF7A}</Project>
      <Name>Tango.ColorLib_v3</Name>
      <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
      <OutputItemType>Content</OutputItemType>
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </ProjectReference>
    <ProjectReference Include="..\..\ColorLib\Tango.ColorLib_v2\Tango.ColorLib_v2.vcxproj">
      <Project>{1A3FC7FB-403C-4B3D-B705-28FCE11317DD}</Project>
      <Name>Tango.ColorLib_v2</Name>
      <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
      <OutputItemType>Content</OutputItemType>
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </ProjectReference>
    <ProjectReference Include="..\..\ColorLib\Tango.ColorLib_v1\Tango.ColorLib_v1.vcxproj">
      <Project>{CF4C66B0-CD13-4D31-8133-339A01E7E6F2}</Project>
      <Name>Tango.ColorLib_v1</Name>
      <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
      <OutputItemType>Content</OutputItemType>
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </ProjectReference>
    <!--ColorLib-->
  </ItemGroup>
  <ItemGroup>
    <Resource Include="Images\liquid.png" />
  </ItemGroup>
  <ItemGroup>
    <Resource Include="Images\account.png" />
  </ItemGroup>
  <ItemGroup>
    <Resource Include="Images\arrows.png" />
  </ItemGroup>
  <ItemGroup>
    <Resource Include="Images\Job Issues\cyan.png" />
  </ItemGroup>
  <ItemGroup>
    <Resource Include="Images\warning.png" />
  </ItemGroup>
  <ItemGroup>
    <Resource Include="Images\MessageBox Icons\information.png" />
  </ItemGroup>
  <ItemGroup>
    <BootstrapperPackage Include=".NETFramework,Version=v4.6">
      <Visible>False</Visible>
      <ProductName>Microsoft .NET Framework 4.6 %28x86 and x64%29</ProductName>
      <Install>true</Install>
    </BootstrapperPackage>
    <BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
      <Visible>False</Visible>
      <ProductName>.NET Framework 3.5 SP1</ProductName>
      <Install>false</Install>
    </BootstrapperPackage>
  </ItemGroup>
  <ItemGroup>
    <Resource Include="Images\package.png" />
    <Resource Include="Images\setup.png" />
    <Resource Include="Images\machine-trans.png" />
    <Resource Include="Images\Twine_Loading_GIF.gif" />
    <Resource Include="Images\GlobalStatus\standby.png" />
    <Resource Include="Images\GlobalStatus\dyeing.png" />
    <Resource Include="Images\preloader_rectangles.gif" />
    <Resource Include="Images\logo.png" />
  </ItemGroup>
  <ItemGroup>
    <Resource Include="Images\environment.png" />
    <Resource Include="Images\time-zone.png" />
    <Resource Include="Images\no-permissions.png" />
    <Resource Include="Images\GlobalStatus\machine-off.png" />
    <Resource Include="Images\machine-update-firmware.png" />
    <Resource Include="Images\chip_128px.png" />
    <Resource Include="Images\warning-red.png" />
    <Resource Include="Images\update.png" />
    <Resource Include="Images\flash-drive.png" />
    <Resource Include="Images\right-arrow-64.png" />
    <Resource Include="Images\machine-update.png" />
    <Resource Include="Images\home.png" />
  </ItemGroup>
  <ItemGroup />
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  <Import Project="..\..\packages\System.Data.SQLite.Core.1.0.108.0\build\net46\System.Data.SQLite.Core.targets" Condition="Exists('..\..\packages\System.Data.SQLite.Core.1.0.108.0\build\net46\System.Data.SQLite.Core.targets')" />
  <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
    <PropertyGroup>
      <ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them.  For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
    </PropertyGroup>
    <Error Condition="!Exists('..\..\packages\System.Data.SQLite.Core.1.0.108.0\build\net46\System.Data.SQLite.Core.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\System.Data.SQLite.Core.1.0.108.0\build\net46\System.Data.SQLite.Core.targets'))" />
    <Error Condition="!Exists('..\..\packages\WPFMediaKit.2.2.0\build\WPFMediaKit.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\packages\WPFMediaKit.2.2.0\build\WPFMediaKit.targets'))" />
  </Target>
  <PropertyGroup>
    <PostBuildEvent>RD /S /Q "$(TargetDir)cs\"
RD /S /Q "$(TargetDir)da\"
RD /S /Q "$(TargetDir)de\"
RD /S /Q "$(TargetDir)es\"
RD /S /Q "$(TargetDir)fa\"
RD /S /Q "$(TargetDir)fi\"
RD /S /Q "$(TargetDir)fr\"
RD /S /Q "$(TargetDir)it\"
RD /S /Q "$(TargetDir)ko\"
RD /S /Q "$(TargetDir)mk\"
RD /S /Q "$(TargetDir)nl\"
RD /S /Q "$(TargetDir)pl\"
RD /S /Q "$(TargetDir)pt\"
RD /S /Q "$(TargetDir)ru\"
RD /S /Q "$(TargetDir)sv\"
RD /S /Q "$(TargetDir)tr\"
RD /S /Q "$(TargetDir)zh-CN\"
RD /S /Q "$(TargetDir)af\"
RD /S /Q "$(TargetDir)ar\"
RD /S /Q "$(TargetDir)dn-BD\"
RD /S /Q "$(TargetDir)el\"
RD /S /Q "$(TargetDir)fi-FI\"
RD /S /Q "$(TargetDir)fr-BE\"
RD /S /Q "$(TargetDir)he\"
RD /S /Q "$(TargetDir)hr\"
RD /S /Q "$(TargetDir)hu\"
RD /S /Q "$(TargetDir)id\"
RD /S /Q "$(TargetDir)ja\"
RD /S /Q "$(TargetDir)lv\"
RD /S /Q "$(TargetDir)nb\"
RD /S /Q "$(TargetDir)ro\"
RD /S /Q "$(TargetDir)sk\"
RD /S /Q "$(TargetDir)sl\"
RD /S /Q "$(TargetDir)sr\"
RD /S /Q "$(TargetDir)sr-Latn\"
RD /S /Q "$(TargetDir)uk\"
RD /S /Q "$(TargetDir)uz-Cyrl-UZ\"
RD /S /Q "$(TargetDir)uz-Latn-UZ\"
RD /S /Q "$(TargetDir)vi\"
RD /S /Q "$(TargetDir)zh-Hans\"
RD /S /Q "$(TargetDir)zh-Hant\"
RD /S /Q "$(TargetDir)bg\"
RD /S /Q "$(TargetDir)bn-BD\"
RD /S /Q "$(TargetDir)nb-NO\"
RD /S /Q "$(TargetDir)pt-BR\"

RD /S /Q "$(TargetDir)roslyn\"
RD /S /Q "$(TargetDir)ProtoCompilers\"
RD /S /Q "$(TargetDir)Packages\ProtoCompilers\"
if $(ConfigurationName) == Release RD /S /Q "$(TargetDir)x86\"
if $(ConfigurationName) == Release RD /S /Q "$(TargetDir)x64\"
if $(ConfigurationName) == Eureka RD /S /Q "$(TargetDir)x86\"
if $(ConfigurationName) == Eureka RD /S /Q "$(TargetDir)x64\"
if $(ConfigurationName) == X1 RD /S /Q "$(TargetDir)x86\"
if $(ConfigurationName) == X1 RD /S /Q "$(TargetDir)x64\"

if $(ConfigurationName) == Release RD /S /Q "$(TargetDir)lib\"
if $(ConfigurationName) == Eureka RD /S /Q "$(TargetDir)lib\"
if $(ConfigurationName) == X1 RD /S /Q "$(TargetDir)lib\"

copy /Y "$(SolutionDir)Referenced Assemblies\mscoree.dll" "$(TargetDir)"
copy /Y "$(SolutionDir)Referenced Assemblies\msvcp140d.dll" "$(TargetDir)"
copy /Y "$(SolutionDir)Referenced Assemblies\ucrtbased.dll" "$(TargetDir)"
copy /Y "$(SolutionDir)Referenced Assemblies\vcruntime140.dll" "$(TargetDir)"
copy /Y "$(SolutionDir)Referenced Assemblies\vcruntime140d.dll" "$(TargetDir)"
copy /Y "$(SolutionDir)Referenced Assemblies\Microsoft.WITDataStore32.dll" "$(TargetDir)"

if $(ConfigurationName) == Release del "$(TargetDir)firmware_package.tfp"
if $(ConfigurationName) == Eureka del "$(TargetDir)firmware_package.tfp"
if $(ConfigurationName) == X1 del "$(TargetDir)firmware_package.tfp"

if $(ConfigurationName) == Release del *.xml
if $(ConfigurationName) == Eureka del *.xml
if $(ConfigurationName) == X1 del *.xml

if $(ConfigurationName) == Release del WebRtc.NET.pdb
if $(ConfigurationName) == Eureka del WebRtc.NET.pdb
if $(ConfigurationName) == X1 del WebRtc.NET.pdb

if $(ConfigurationName) == Debug copy /Y "$(TargetDir)Packages" "$(TargetDir)"

if $(ConfigurationName) == Debug "rc.exe" "$(TargetPath)" --set-version-string "Comments" "Debug Tag"

if $(ConfigurationName) == Eureka_Debug copy /Y "$(ProjectDir)Intro.wmv" "$(TargetDir)"
if $(ConfigurationName) == Eureka copy /Y "$(ProjectDir)Intro.wmv" "$(TargetDir)"
if $(ConfigurationName) == X1_Debug copy /Y "$(ProjectDir)Intro.wmv" "$(TargetDir)"
if $(ConfigurationName) == X1 copy /Y "$(ProjectDir)Intro.wmv" "$(TargetDir)"
</PostBuildEvent>
  </PropertyGroup>
  <PropertyGroup>
    <PreBuildEvent>copy /Y "$(ProjectDir)Manifests\$(ConfigurationName).xml" "$(ProjectDir)app.manifest"
</PreBuildEvent>
  </PropertyGroup>
  <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>
  <Import Project="..\..\packages\WPFMediaKit.2.2.0\build\WPFMediaKit.targets" Condition="Exists('..\..\packages\WPFMediaKit.2.2.0\build\WPFMediaKit.targets')" />
</Project>