aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/MachineSetupSteps.cs
diff options
context:
space:
mode:
authorShlomo Hecht <shlomo@twine-s.com>2018-08-08 18:45:09 +0300
committerShlomo Hecht <shlomo@twine-s.com>2018-08-08 18:45:09 +0300
commit965a7bd752315653d710d16651f34d66d4d80d0a (patch)
tree957a2a8844f1ce848c98df987c3911bae9bb0d52 /Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/MachineSetupSteps.cs
parent6456de92a4f6d2f9e6367e92ebefd9b49d578952 (diff)
parenta5f9c99d51f7e096ff612da6605ab4d4f5067009 (diff)
downloadTango-965a7bd752315653d710d16651f34d66d4d80d0a.tar.gz
Tango-965a7bd752315653d710d16651f34d66d4d80d0a.zip
Merge branch 'master' of https://twinetfs.visualstudio.com/_git/Tango
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/MachineSetupSteps.cs')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/MachineSetupSteps.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/MachineSetupSteps.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/MachineSetupSteps.cs
new file mode 100644
index 000000000..1262eb248
--- /dev/null
+++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/MachineSetupSteps.cs
@@ -0,0 +1,21 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace Tango.PPC.Common.MachineSetup
+{
+ public enum MachineSetupSteps
+ {
+ [Description("Downloading Package")]
+ UpdatingPackages,
+ [Description("Synchronizing Schema")]
+ SynchronizingSchema,
+ [Description("Synchronizing Data")]
+ SynchronizingData,
+ [Description("Configuring Machine")]
+ SynchronizingMachineConfiguration
+ }
+}