Updates to logging and v1.0.3 release.
This commit is contained in:
@@ -135,6 +135,26 @@ namespace BodyshopPartner.ViewModels
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
private ICommand _installUpdatesCommand;
|
||||
public ICommand InstallUpdatesCommand
|
||||
{
|
||||
get
|
||||
{
|
||||
if (_installUpdatesCommand == null)
|
||||
{
|
||||
_installUpdatesCommand = new RelayCommand(
|
||||
p => UpdateAvailable,
|
||||
async p =>
|
||||
{
|
||||
await InstallUpdates();
|
||||
});
|
||||
}
|
||||
return _installUpdatesCommand;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
private ICommand _quitCommand;
|
||||
public ICommand QuitCommand
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user