aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Azure/Tango.AzureUtils.UI/ViewModels/EnvironmentFirmwareUpgradeViewVM.cs
diff options
context:
space:
mode:
authorRoy <Roy.mail.net@gmail.com>2022-11-20 19:06:28 +0200
committerRoy <Roy.mail.net@gmail.com>2022-11-20 19:06:28 +0200
commit7c7e27fad7deb4c82a5ca7e5cb19184fa324b8d5 (patch)
tree4ebd799531535c2415e9640d2a17e9763c83e2df /Software/Visual_Studio/Azure/Tango.AzureUtils.UI/ViewModels/EnvironmentFirmwareUpgradeViewVM.cs
parentfa2c00989b50258d1195925030ed1da2a1d6d040 (diff)
downloadTango-7c7e27fad7deb4c82a5ca7e5cb19184fa324b8d5.tar.gz
Tango-7c7e27fad7deb4c82a5ca7e5cb19184fa324b8d5.zip
AzureUtils PPC VersionTag kind of working.
Diffstat (limited to 'Software/Visual_Studio/Azure/Tango.AzureUtils.UI/ViewModels/EnvironmentFirmwareUpgradeViewVM.cs')
-rw-r--r--Software/Visual_Studio/Azure/Tango.AzureUtils.UI/ViewModels/EnvironmentFirmwareUpgradeViewVM.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Software/Visual_Studio/Azure/Tango.AzureUtils.UI/ViewModels/EnvironmentFirmwareUpgradeViewVM.cs b/Software/Visual_Studio/Azure/Tango.AzureUtils.UI/ViewModels/EnvironmentFirmwareUpgradeViewVM.cs
index 964febbd8..931182c90 100644
--- a/Software/Visual_Studio/Azure/Tango.AzureUtils.UI/ViewModels/EnvironmentFirmwareUpgradeViewVM.cs
+++ b/Software/Visual_Studio/Azure/Tango.AzureUtils.UI/ViewModels/EnvironmentFirmwareUpgradeViewVM.cs
@@ -51,7 +51,7 @@ namespace Tango.AzureUtils.UI.ViewModels
public EnvironmentFirmwareUpgradeViewVM()
{
- UpgradeFirmwareCommand = new RelayCommand(UpgradeFirmware,() => FilePath != null);
+ UpgradeFirmwareCommand = new RelayCommand(UpgradeFirmware, () => FilePath != null);
BrowseFileCommand = new RelayCommand(BrowseFile);
}
@@ -93,7 +93,7 @@ namespace Tango.AzureUtils.UI.ViewModels
IsFree = false;
- await _firmwareManager.InjectFirmwarePackage(SelectedDeploymentSlot, FilePath);
+ await _firmwareManager.InjectFirmwarePackage(SelectedDeploymentSlot, FilePath, null);
}
catch (Exception ex)
{