aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/IMachineSetupManager.cs
diff options
context:
space:
mode:
authorShlomo Hecht <shlomo@twine-s.com>2018-08-13 15:47:59 +0300
committerShlomo Hecht <shlomo@twine-s.com>2018-08-13 15:47:59 +0300
commitc6864d03caa002d590dbe2abc43a931b26fc7b27 (patch)
treeb066b7307aab9af7fd76de4bf26795434fd0ee5e /Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/IMachineSetupManager.cs
parentba3d7e34700be27d5eed1c2a58f6cd146296fd95 (diff)
parentfe8111ccce920b73b47b6af657f1ee4bcac11120 (diff)
downloadTango-c6864d03caa002d590dbe2abc43a931b26fc7b27.tar.gz
Tango-c6864d03caa002d590dbe2abc43a931b26fc7b27.zip
Merge branch 'master' of https://twinetfs.visualstudio.com/Tango/_git/Tango
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/IMachineSetupManager.cs')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/IMachineSetupManager.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/IMachineSetupManager.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/IMachineSetupManager.cs
index 52fc5acd1..8856bcfd4 100644
--- a/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/IMachineSetupManager.cs
+++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/IMachineSetupManager.cs
@@ -10,9 +10,9 @@ namespace Tango.PPC.Common.MachineSetup
{
MachineSetupSteps CurrentStep { get; }
event EventHandler<String> ProgressLog;
- double UpdatingPackagesProgress { get; }
- String UpdatingPackagesStatus { get; }
+ double DownloadingPackagesProgress { get; }
+ String DownloadingPackagesStatus { get; }
event EventHandler<MachineSetupSteps> ProgressStep;
- Task Setup(String serialNumber, String hostAddress);
+ Task<MachineSetupResult> Setup(String serialNumber, String hostAddress);
}
}