forked from baaron4/GW2-Elite-Insights-Parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
swap everything to use file scoped namespaces
- Loading branch information
1 parent
f4c1458
commit 232ebc1
Showing
616 changed files
with
72,112 additions
and
72,772 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
namespace GW2EIBuilders | ||
namespace GW2EIBuilders; | ||
|
||
public class CSVSettings | ||
{ | ||
public class CSVSettings | ||
public string Delimiter { get; } | ||
public CSVSettings(string delimiter) | ||
{ | ||
public string Delimiter { get; } | ||
public CSVSettings(string delimiter) | ||
{ | ||
Delimiter = delimiter; | ||
} | ||
Delimiter = delimiter; | ||
} | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,31 @@ | ||
namespace GW2EIBuilders | ||
namespace GW2EIBuilders; | ||
|
||
public class HTMLSettings | ||
{ | ||
public class HTMLSettings | ||
{ | ||
|
||
public bool HTMLLightTheme { get; } | ||
public bool HTMLLightTheme { get; } | ||
|
||
public bool ExternalHTMLScripts { get; } | ||
public bool ExternalHTMLScripts { get; } | ||
|
||
public string ExternalHtmlScriptsPath { get; } | ||
public string ExternalHtmlScriptsPath { get; } | ||
|
||
public string ExternalHtmlScriptsCdn { get; } | ||
public bool CompressJson { get; } | ||
public string ExternalHtmlScriptsCdn { get; } | ||
public bool CompressJson { get; } | ||
|
||
public HTMLSettings(bool htmlLightTheme, bool externalHTMLScripts) | ||
{ | ||
HTMLLightTheme = htmlLightTheme; | ||
ExternalHTMLScripts = externalHTMLScripts; | ||
} | ||
public HTMLSettings(bool htmlLightTheme, bool externalHTMLScripts) | ||
{ | ||
HTMLLightTheme = htmlLightTheme; | ||
ExternalHTMLScripts = externalHTMLScripts; | ||
} | ||
|
||
public HTMLSettings(bool htmlLightTheme, bool externalHTMLScripts, string externalHTMLScriptsPath, string externalHTMLScriptsCdn) : this(htmlLightTheme, externalHTMLScripts) | ||
{ | ||
ExternalHtmlScriptsPath = externalHTMLScriptsPath; | ||
ExternalHtmlScriptsCdn = externalHTMLScriptsCdn; | ||
} | ||
public HTMLSettings(bool htmlLightTheme, bool externalHTMLScripts, string externalHTMLScriptsPath, string externalHTMLScriptsCdn) : this(htmlLightTheme, externalHTMLScripts) | ||
{ | ||
ExternalHtmlScriptsPath = externalHTMLScriptsPath; | ||
ExternalHtmlScriptsCdn = externalHTMLScriptsCdn; | ||
} | ||
|
||
public HTMLSettings(bool htmlLightTheme, bool externalHTMLScripts, string externalHTMLScriptsPath, string externalHTMLScriptsCdn, bool compressJson) : this(htmlLightTheme, externalHTMLScripts, externalHTMLScriptsPath, externalHTMLScriptsCdn) | ||
{ | ||
CompressJson = compressJson; | ||
} | ||
public HTMLSettings(bool htmlLightTheme, bool externalHTMLScripts, string externalHTMLScriptsPath, string externalHTMLScriptsCdn, bool compressJson) : this(htmlLightTheme, externalHTMLScripts, externalHTMLScriptsPath, externalHTMLScriptsCdn) | ||
{ | ||
CompressJson = compressJson; | ||
} | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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
Oops, something went wrong.