This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################################################################################################################## | |
# | |
# Backup Themes on Server | |
# Author: Timothy Western | |
# Last Modified: 2019/10/21 15:30 | |
# | |
# This script will backup the Theme designated as ThemeName, masterpages, and styles and javascript to a folder on C Drive | |
# This is part 1 of a 3 Script Process (recommend executing copy_themes_toserver which calls all three parts.) | |
# (This script requires no special permissions) | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// add the following usings | |
using System.Configuration; | |
using System.Diagnostics; | |
// Update the two methods below: | |
// Update Can Login so Login buttin is enabled by default if Debugger is attached | |
public bool CanLogIn | |
{ | |
get |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; | |
using Caliburn.Micro; | |
using TRMDesktopUI.EventModels; | |
namespace TRMDesktopUI.ViewModels |