aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2019-09-16 15:10:09 +0300
committerRoy Ben-Shabat <Roy@Twine-s.com>2019-09-16 15:10:09 +0300
commite161c0471aa5703882e321b8e6661579dc4e0533 (patch)
tree6c0ea156ec9f9949a40ef933e3607782ef8e317f /Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI
parent1c74b1f3e6fd3f64936df890de14e162303ee1fb (diff)
downloadTango-e161c0471aa5703882e321b8e6661579dc4e0533.tar.gz
Tango-e161c0471aa5703882e321b8e6661579dc4e0533.zip
Implemented bug reporting Machine SN & Embedded Version.
Implemented ProcessParameters.DryerBufferLengthMeters.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI')
-rw-r--r--Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/TFS/TeamFoundationServiceExtendedClient.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/TFS/TeamFoundationServiceExtendedClient.cs b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/TFS/TeamFoundationServiceExtendedClient.cs
index fba037a6e..31b330c3f 100644
--- a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/TFS/TeamFoundationServiceExtendedClient.cs
+++ b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.UI/TFS/TeamFoundationServiceExtendedClient.cs
@@ -245,6 +245,12 @@ namespace Tango.MachineStudio.UI.TFS
}
}
+ if (app.Machine != null && app.ConnectedMachine != null && app.ConnectedMachine.DeviceInformation != null)
+ {
+ item.EmbeddedVersion = app.ConnectedMachine.DeviceInformation.Version;
+ item.MachineSerialNumber = app.Machine.SerialNumber;
+ }
+
String html = String.Empty;
using (var stream = EmbeddedResourceHelper.GetEmbeddedResourceStream("Tango.MachineStudio.UI.TFS.SystemInformationTemplate.cshtml"))