Rework how to read and execute command line to fix issues introduced in last version. Now command line is completely separate from GUI.

This commit is contained in:
rlv-dan
2020-04-29 19:04:45 +02:00
parent fa80b22ad0
commit 8156351973
4 changed files with 117 additions and 94 deletions

View File

@ -15,6 +15,15 @@ namespace Snap2HTML
public bool openInBrowser { get; set; }
public bool linkFiles { get; set; }
public string linkRoot { get; set; }
public SnapSettings()
{
this.skipHiddenItems = true;
this.skipSystemItems = true;
this.openInBrowser = false;
this.linkFiles = false;
this.linkRoot = "";
}
}