diff options
| author | Roy <Roy.mail.net@gmail.com> | 2022-11-19 05:44:57 +0200 |
|---|---|---|
| committer | Roy <Roy.mail.net@gmail.com> | 2022-11-19 05:44:57 +0200 |
| commit | aa2170bb476e627ae3aaccb8f5835b1b9331c82a (patch) | |
| tree | 7e556d6b01b813071acb42cfc51aa0e254edf327 /Software/Visual_Studio/Azure/Tango.AzureUtils.UI | |
| parent | d391dd73fc06f996c08455e6dc2e26aec2e489c3 (diff) | |
| download | Tango-aa2170bb476e627ae3aaccb8f5835b1b9331c82a.tar.gz Tango-aa2170bb476e627ae3aaccb8f5835b1b9331c82a.zip | |
Twine RSM
Diffstat (limited to 'Software/Visual_Studio/Azure/Tango.AzureUtils.UI')
3 files changed, 10 insertions, 10 deletions
diff --git a/Software/Visual_Studio/Azure/Tango.AzureUtils.UI/Controls/WebAppPropertiesControl.xaml b/Software/Visual_Studio/Azure/Tango.AzureUtils.UI/Controls/WebAppPropertiesControl.xaml index 209a4c1aa..aadd7a6d8 100644 --- a/Software/Visual_Studio/Azure/Tango.AzureUtils.UI/Controls/WebAppPropertiesControl.xaml +++ b/Software/Visual_Studio/Azure/Tango.AzureUtils.UI/Controls/WebAppPropertiesControl.xaml @@ -65,8 +65,8 @@ <TextBlock FontWeight="SemiBold">Tango FSE Version:</TextBlock> <TextBlock Text="{Binding ElementName=control,Path=FseVersion.Version}"></TextBlock> - <TextBlock FontWeight="SemiBold">Twine Studio Version:</TextBlock> - <TextBlock Text="{Binding ElementName=control,Path=TwineStudioVersion.Version}"></TextBlock> + <TextBlock FontWeight="SemiBold">Twine RSM Version:</TextBlock> + <TextBlock Text="{Binding ElementName=control,Path=TwineRSMVersion.Version}"></TextBlock> <TextBlock FontWeight="SemiBold">Machine Service Version:</TextBlock> <TextBlock Text="{Binding ElementName=control,Path=MachineServiceVersion}"></TextBlock> diff --git a/Software/Visual_Studio/Azure/Tango.AzureUtils.UI/Controls/WebAppPropertiesControl.xaml.cs b/Software/Visual_Studio/Azure/Tango.AzureUtils.UI/Controls/WebAppPropertiesControl.xaml.cs index a6b0d12d7..a0e01e160 100644 --- a/Software/Visual_Studio/Azure/Tango.AzureUtils.UI/Controls/WebAppPropertiesControl.xaml.cs +++ b/Software/Visual_Studio/Azure/Tango.AzureUtils.UI/Controls/WebAppPropertiesControl.xaml.cs @@ -60,13 +60,13 @@ namespace Tango.AzureUtils.UI.Controls - public FseVersion TwineStudioVersion + public FseVersion TwineRSMVersion { - get { return (FseVersion)GetValue(TwineStudioVersionProperty); } - set { SetValue(TwineStudioVersionProperty, value); } + get { return (FseVersion)GetValue(TwineRSMVersionProperty); } + set { SetValue(TwineRSMVersionProperty, value); } } - public static readonly DependencyProperty TwineStudioVersionProperty = - DependencyProperty.Register("TwineStudioVersion", typeof(FseVersion), typeof(WebAppPropertiesControl), new PropertyMetadata(null)); + public static readonly DependencyProperty TwineRSMVersionProperty = + DependencyProperty.Register("TwineRSMVersion", typeof(FseVersion), typeof(WebAppPropertiesControl), new PropertyMetadata(null)); @@ -127,7 +127,7 @@ namespace Tango.AzureUtils.UI.Controls TangoVersion = await databaseManager.GetLatestPPCVersion(app); MachineStudioVersion = await databaseManager.GetLatestMachineStudioVersion(app); FseVersion = await databaseManager.GetLatestFSEVersion(app, FSEBuildVariants.FSE); - TwineStudioVersion = await databaseManager.GetLatestFSEVersion(app, FSEBuildVariants.TwineStudio); + TwineRSMVersion = await databaseManager.GetLatestFSEVersion(app, FSEBuildVariants.TwineRSM); FtpManager ftpManager = new FtpManager(azure); MachineServiceVersion = await ftpManager.GetMachineServiceVersion(app); diff --git a/Software/Visual_Studio/Azure/Tango.AzureUtils.UI/Views/EnvironmentUpgradeView.xaml b/Software/Visual_Studio/Azure/Tango.AzureUtils.UI/Views/EnvironmentUpgradeView.xaml index 2dfab2ff6..249dbabc6 100644 --- a/Software/Visual_Studio/Azure/Tango.AzureUtils.UI/Views/EnvironmentUpgradeView.xaml +++ b/Software/Visual_Studio/Azure/Tango.AzureUtils.UI/Views/EnvironmentUpgradeView.xaml @@ -49,8 +49,8 @@ <CheckBox Click="OnConfigChanged" Margin="0 5 0 0" IsChecked="{Binding Config.UpgradePPCDatabaseVersion}" >Upgrade PPC Database Version</CheckBox> <CheckBox Click="OnConfigChanged" Margin="0 5 0 0" IsChecked="{Binding Config.CopyFSEStorageBlobs}" >Upgrade FSE Blob Storage</CheckBox> <CheckBox Click="OnConfigChanged" Margin="0 5 0 0" IsChecked="{Binding Config.UpgradeFSEDatabaseVersion}" >Upgrade FSE Database Version</CheckBox> - <CheckBox Click="OnConfigChanged" Margin="0 5 0 0" IsChecked="{Binding Config.CopyTwineStudioStorageBlobs}" >Upgrade Twine Studio Blob Storage</CheckBox> - <CheckBox Click="OnConfigChanged" Margin="0 5 0 0" IsChecked="{Binding Config.UpgradeTwineStudioDatabaseVersion}" >Upgrade Twine Studio Database Version</CheckBox> + <CheckBox Click="OnConfigChanged" Margin="0 5 0 0" IsChecked="{Binding Config.CopyTwineRSMStorageBlobs}" >Upgrade Twine RSM Blob Storage</CheckBox> + <CheckBox Click="OnConfigChanged" Margin="0 5 0 0" IsChecked="{Binding Config.UpgradeTwineRSMDatabaseVersion}" >Upgrade Twine RSM Database Version</CheckBox> <CheckBox Click="OnConfigChanged" Margin="0 5 0 0" IsChecked="{Binding Config.CopyMachineServiceFiles}" >Upgrade Machine Service</CheckBox> </StackPanel> </GroupBox> |
