aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Synchronization/packages.config
blob: 3f608c9829d7c476360f404b83b679f7c6bfa1d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="utf-8"?>
<packages>
  <package id="CommonServiceLocator" version="1.3" targetFramework="net46" />
  <package id="EntityFramework" version="6.0.0" targetFramework="net46" />
  <package id="Expression.Blend.Sdk" version="1.0.2" targetFramework="net46" />
  <package id="FontAwesome.WPF" version="4.7.0.9" targetFramework="net46" />
  <package id="Google.Protobuf" version="3.4.1" targetFramework="net46" />
  <package id="MahApps.Metro" version="1.5.0" targetFramework="net46" />
  <package id="MaterialDesignColors" version="1.1.2" targetFramework="net46" />
  <package id="MaterialDesignThemes" version="2.3.1.953" targetFramework="net46" />
  <package id="System.Reactive" version="3.1.1" targetFramework="net46" />
  <package id="System.Reactive.Core" version="3.1.1" targetFramework="net46" />
  <package id="System.Reactive.Interfaces" version="3.1.1" targetFramework="net46" />
  <package id="System.Reactive.Linq" version="3.1.1" targetFramework="net46" />
  <package id="System.Reactive.PlatformServices" version="3.1.1" targetFramework="net46" />
  <package id="System.Reactive.Windows.Threading" version="3.1.1" targetFramework="net46" />
</packages>
an class="w"> System.Threading.Tasks; using Tango.Core; namespace Tango.MachineStudio.HardwareDesigner.Comparison { /// <summary> /// class HardwareComponentCompareResult contains collection of HardwareComponentPropertyResult /// </summary> /// <seealso cref="Tango.MachineStudio.HardwareDesigner.Comparison.IHasDifference" /> public class HardwareComponentCompareResult: IHasDifference { public String ComponentName { get; set; } /// <summary> /// Gets or sets a value indicating whether this instance has component1 of a hardware version ( from left panel). /// </summary> /// <value> /// <c>true</c> if this instance has component1; otherwise, <c>false</c>. /// </value> public bool HasComponent1 { get; set; } /// <summary> /// Gets or sets a value indicating whether this instance has component2 of a hardware version ( from right panel). /// </summary> /// <value> /// <c>true</c> if this instance has component2; otherwise, <c>false</c>. /// </value> public bool HasComponent2 { get; set; } public SynchronizedObservableCollection<HardwareComponentPropertyResult> Properties { get; set; } public bool HasDifferences { get { return Properties.Any(item => item.HasDifferences); } } public HardwareComponentCompareResult() { Properties = new SynchronizedObservableCollection<HardwareComponentPropertyResult>(); } } }