diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-02-10 13:32:03 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2019-02-10 13:32:03 +0200 |
| commit | e245356c722792f8c23aa483cb323f4c47b54fb6 (patch) | |
| tree | b6861fa22f2b5a476aa486ab7056297ff5621302 /Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Publisher/MainWindowVM.cs | |
| parent | 85be4860a445cd2cb5dcc01a582fbea5fe21c200 (diff) | |
| download | Tango-e245356c722792f8c23aa483cb323f4c47b54fb6.tar.gz Tango-e245356c722792f8c23aa483cb323f4c47b54fb6.zip | |
Added new event types.
Remove IsStable and AcceptBetaRelease from machine studio.
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Publisher/MainWindowVM.cs')
| -rw-r--r-- | Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Publisher/MainWindowVM.cs | 18 |
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()) |
