Add audible locale setting.

Rename DomainServices => ScrapingDomainServices
This commit is contained in:
Robert McRackan 2019-10-21 12:57:37 -04:00
parent fbc9824f12
commit 410d1a9621
28 changed files with 698 additions and 371 deletions

View file

@ -80,6 +80,12 @@ namespace FileManager
set => persistentDictionary[nameof(DecryptInProgressEnum)] = value;
}
public string LocaleCountryCode
{
get => persistentDictionary[nameof(LocaleCountryCode)];
set => persistentDictionary[nameof(LocaleCountryCode)] = value;
}
// singleton stuff
public static Configuration Instance { get; } = new Configuration();
private Configuration()
@ -135,11 +141,11 @@ namespace FileManager
private static string getNonDevelopmentDir(string path)
{
// examples:
// \Libation\Core2_0\bin\Debug\netcoreapp2.1
// \Libation\StndLib\bin\Debug\netstandard2.0
// \Libation\Core2_0\bin\Debug\netcoreapp3.0
// \Libation\StndLib\bin\Debug\netstandard2.1
// \Libation\MyWnfrm\bin\Debug
// \Libation\Core2_0\bin\Release\netcoreapp2.1
// \Libation\StndLib\bin\Release\netstandard2.0
// \Libation\Core2_0\bin\Release\netcoreapp3.0
// \Libation\StndLib\bin\Release\netstandard2.1
// \Libation\MyWnfrm\bin\Release
var curr = new DirectoryInfo(path);