aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Publisher/MainWindowVM.cs
diff options
context:
space:
mode:
authorShlomo Hecht <shlomo@twine-s.com>2019-02-10 18:28:41 +0200
committerShlomo Hecht <shlomo@twine-s.com>2019-02-10 18:28:41 +0200
commita65868d1d77b1929b855abd0c19bdc08bc9cee9d (patch)
tree09486bed718fb096914780f33313fb82a0207c87 /Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Publisher/MainWindowVM.cs
parent82179e1b69b62b971a04af571979e7d10c60fd7a (diff)
parentac9678197fc6142595089155d98442239a64e6d7 (diff)
downloadTango-a65868d1d77b1929b855abd0c19bdc08bc9cee9d.tar.gz
Tango-a65868d1d77b1929b855abd0c19bdc08bc9cee9d.zip
merge
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Publisher/MainWindowVM.cs')
-rw-r--r--Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Publisher/MainWindowVM.cs18
1 files changed, 0 insertions, 18 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Publisher/MainWindowVM.cs b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Publisher/MainWindowVM.cs
index 6cfa96a18..206a2d31b 100644
--- a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Publisher/MainWindowVM.cs
+++ b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Publisher/MainWindowVM.cs
@@ -54,22 +54,6 @@ namespace Tango.MachineStudio.Publisher
set { _comments = value; RaisePropertyChangedAuto(); }
}
- private bool _forcesUpdate;
-
- public bool ForcedUpdate
- {
- get { return _forcesUpdate; }
- set { _forcesUpdate = value; RaisePropertyChangedAuto(); }
- }
-
- private bool _isStable;
-
- public bool IsStable
- {
- get { return _isStable; }
- set { _isStable = value; RaisePropertyChangedAuto(); }
- }
-
private DeploymentSlot _deploymentSlot;
public DeploymentSlot DeploymentSlot
{
@@ -176,8 +160,6 @@ namespace Tango.MachineStudio.Publisher
Password = _hashGenerator.Encrypt(Password),
Version = CurrentVersion.ToString(),
Comments = Comments,
- ForcedUpdate = ForcedUpdate,
- IsStable = IsStable,
}).Result;
using (ZipFile zip = new ZipFile())