mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-10-26 18:41:18 +00:00
Update MainForm.cs
This commit is contained in:
parent
aacc2414f2
commit
91ce125c7f
|
|
@ -18,12 +18,16 @@ namespace WelsonJS.Launcher
|
||||||
{
|
{
|
||||||
private const string _entryFileName = "bootstrap.bat";
|
private const string _entryFileName = "bootstrap.bat";
|
||||||
|
|
||||||
|
private readonly string _dateTimeFormat;
|
||||||
|
|
||||||
private string _workingDirectory;
|
private string _workingDirectory;
|
||||||
private string _instanceId;
|
private string _instanceId;
|
||||||
private string _scriptName;
|
private string _scriptName;
|
||||||
|
|
||||||
public MainForm()
|
public MainForm()
|
||||||
{
|
{
|
||||||
|
_dateTimeFormat = Program.GetAppConfig("DateTimeFormat");
|
||||||
|
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
|
|
||||||
if (IsInAdministrator())
|
if (IsInAdministrator())
|
||||||
|
|
@ -181,7 +185,7 @@ namespace WelsonJS.Launcher
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
string filePath = Path.Combine(directory, ".welsonjs_first_deploy_time");
|
string filePath = Path.Combine(directory, ".welsonjs_first_deploy_time");
|
||||||
string text = now.ToString("yyyy-MM-dd HH:mm:ss");
|
string text = now.ToString(_dateTimeFormat);
|
||||||
File.WriteAllText(filePath, text);
|
File.WriteAllText(filePath, text);
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user