diff --git a/.appveyor.yml b/.appveyor.yml index 65114a4..ea8b7c7 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -15,25 +15,25 @@ environment: SIGNING_POLICY_SLUG: release-signing before_build: - - nuget restore WelsonJS.Toolkit + - nuget restore WelsonJS.Augmented build_script: - - msbuild "C:\projects\welsonjs\WelsonJS.Toolkit\WelsonJS.Toolkit.sln" /verbosity:minimal /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" /p:Configuration=%CONFIGURATION% /p:Platform="x86" + - msbuild "C:\projects\welsonjs\WelsonJS.Augmented\WelsonJS.Augmented.sln" /verbosity:minimal /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" /p:Configuration=%CONFIGURATION% /p:Platform="x86" after_build: - cmd: mkdir artifacts - #- cmd: xcopy /s /y WelsonJS.Toolkit\WelsonJS.Toolkit\bin\x86\%CONFIGURATION%\* artifacts\ - - cmd: xcopy /s /y WelsonJS.Toolkit\WelsonJS.Service\bin\x86\%CONFIGURATION%\* artifacts\ - - cmd: xcopy /s /y WelsonJS.Toolkit\WelsonJS.Launcher\bin\x86\%CONFIGURATION%\* artifacts\ - - cmd: xcopy /s /y WelsonJS.Toolkit\Catswords.Phantomizer\bin\%CONFIGURATION%\netstandard2.0\* artifacts\ - - cmd: nuget pack WelsonJS.Toolkit\WelsonJS.Toolkit\ -properties Configuration=%CONFIGURATION% -properties Platform=x86 -OutputDirectory artifacts\ + #- cmd: xcopy /s /y WelsonJS.Augmented\WelsonJS.Toolkit\bin\x86\%CONFIGURATION%\* artifacts\ + - cmd: xcopy /s /y WelsonJS.Augmented\WelsonJS.Service\bin\x86\%CONFIGURATION%\* artifacts\ + - cmd: xcopy /s /y WelsonJS.Augmented\WelsonJS.Launcher\bin\x86\%CONFIGURATION%\* artifacts\ + - cmd: xcopy /s /y WelsonJS.Augmented\Catswords.Phantomizer\bin\%CONFIGURATION%\netstandard2.0\* artifacts\ + - cmd: nuget pack WelsonJS.Augmented\WelsonJS.Toolkit\ -properties Configuration=%CONFIGURATION% -properties Platform=x86 -OutputDirectory artifacts\ - ps: Start-BitsTransfer -Source "https://catswords.blob.core.windows.net/welsonjs/welsonjs_setup_unsigned.exe" -Destination "artifacts\welsonjs_setup.exe" - ps: Start-BitsTransfer -Source "https://catswords.blob.core.windows.net/welsonjs/chakracore-build/x86_release/ChakraCore.dll" -Destination "artifacts\ChakraCore.dll" - cmd: 7z a artifacts.zip artifacts\* artifacts: - path: artifacts.zip - name: WelsonJS.Toolkit + name: WelsonJS.Augmented deploy: - provider: Webhook diff --git a/.gitmodules b/.gitmodules index 317e9ac..432df93 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,3 +1,3 @@ -[submodule "WelsonJS.Toolkit/ChakraCore"] - path = WelsonJS.Toolkit/ChakraCore +[submodule "WelsonJS.NET/ChakraCore"] + path = WelsonJS.NET/ChakraCore url = https://github.com/chakra-core/ChakraCore diff --git a/WelsonJS.Toolkit/Catswords.Phantomizer/AssemblyLoader.cs b/WelsonJS.Augmented/Catswords.Phantomizer/AssemblyLoader.cs similarity index 85% rename from WelsonJS.Toolkit/Catswords.Phantomizer/AssemblyLoader.cs rename to WelsonJS.Augmented/Catswords.Phantomizer/AssemblyLoader.cs index b5aa2a6..bafaffd 100644 --- a/WelsonJS.Toolkit/Catswords.Phantomizer/AssemblyLoader.cs +++ b/WelsonJS.Augmented/Catswords.Phantomizer/AssemblyLoader.cs @@ -38,14 +38,18 @@ namespace Catswords.Phantomizer public static string AppName { get; set; } = "Catswords"; public static string IntegrityUrl { get; set; } = null; - // Hash whitelist (values only) private static HashSet _integrityHashes = null; private static bool _integrityLoaded = false; - private static readonly object IntegritySyncRoot = new object(); - - private static readonly object SyncRoot = new object(); private static bool _registered; + private static readonly object AllowSchemesSyncRoot = new object(); + private static readonly object IntegritySyncRoot = new object(); + private static readonly object SyncRoot = new object(); + + private static readonly HashSet _allowSchemes = new HashSet(StringComparer.OrdinalIgnoreCase) { + Uri.UriSchemeHttps + }; + private static readonly HttpClientHandler LegacyHttpHandler = new HttpClientHandler { AutomaticDecompression = DecompressionMethods.None @@ -184,15 +188,9 @@ namespace Catswords.Phantomizer if (string.IsNullOrWhiteSpace(BaseUrl)) throw new InvalidOperationException("BaseUrl must be configured before Register()."); - if (Uri.TryCreate(BaseUrl, UriKind.Absolute, out Uri uri)) - { - if (uri.Scheme != Uri.UriSchemeHttps) - throw new InvalidOperationException("BaseUrl must use HTTPS for security."); - } - else - { - throw new InvalidOperationException("BaseUrl is not a valid absolute URI."); - } + TryVerifyUrl(BaseUrl, out bool verified); + if (!verified) + throw new InvalidOperationException("BaseUrl verification failed."); } catch (Exception ex) { @@ -213,8 +211,9 @@ namespace Catswords.Phantomizer /// public static void LoadNativeModules(string ownerAssemblyName, Version version, IList fileNames) { - if (string.IsNullOrWhiteSpace(BaseUrl)) - throw new InvalidOperationException("AssemblyLoader.BaseUrl must be set before loading native modules."); + TryVerifyUrl(BaseUrl, out bool verified); + if (!verified) + throw new InvalidOperationException("BaseUrl verification failed."); if (ownerAssemblyName == null) throw new ArgumentNullException("ownerAssemblyName"); if (version == null) throw new ArgumentNullException("version"); @@ -275,6 +274,43 @@ namespace Catswords.Phantomizer } } + /// + /// Adds an allowed URI scheme for assembly and module loading. + /// Only HTTP and HTTPS schemes are supported. HTTPS is the default. + /// Adding HTTP reduces security and will log a warning. + /// + /// The URI scheme to allow (e.g., "http" or "https"). Trailing colons are automatically removed. + /// Thrown when is null or whitespace. + /// Thrown when the scheme is invalid or not HTTP/HTTPS. + /// + /// This method is thread-safe and can be called before Register() or LoadNativeModules(). + /// + public static void AddAllowedUriScheme(string scheme) + { + if (string.IsNullOrWhiteSpace(scheme)) + throw new ArgumentNullException(nameof(scheme)); + + int colonIndex = scheme.IndexOf(':'); + if (colonIndex > -1) + scheme = scheme.Substring(0, colonIndex); + + scheme = scheme.ToLowerInvariant(); + + if (!Uri.CheckSchemeName(scheme)) + throw new ArgumentException("Invalid URI scheme name.", nameof(scheme)); + + if (!scheme.Equals(Uri.UriSchemeHttps, StringComparison.OrdinalIgnoreCase) && + !scheme.Equals(Uri.UriSchemeHttp, StringComparison.OrdinalIgnoreCase)) + throw new ArgumentException("Only HTTPS or HTTP schemes are supported.", nameof(scheme)); + + if (scheme.Equals(Uri.UriSchemeHttp, StringComparison.OrdinalIgnoreCase)) + Trace.TraceWarning("Warning: Adding 'http' to allowed URI schemes reduces security."); + + lock (AllowSchemesSyncRoot) + { + _allowSchemes.Add(scheme); + } + } public static void LoadNativeModules(Assembly asm, IList fileNames) { @@ -461,7 +497,7 @@ namespace Catswords.Phantomizer } catch (Exception ex) { - Trace.TraceInformation("Failed to delete temporary file {0}: {1}", tempFile, ex.Message); + Trace.TraceInformation("Failed to delete temporary file {0}: {1}", tempFile, ex.Message); } } } @@ -499,23 +535,17 @@ namespace Catswords.Phantomizer try { - if (Uri.TryCreate(IntegrityUrl, UriKind.Absolute, out Uri uri)) - { - if (uri.Scheme != Uri.UriSchemeHttps) - throw new InvalidOperationException("IntegrityUrl must use HTTPS for security."); + TryVerifyUrl(IntegrityUrl, out bool verified); + if (!verified) + throw new InvalidOperationException("IntegrityUrl verification failed."); - using (var res = Http.GetAsync(uri).GetAwaiter().GetResult()) - { - res.EnsureSuccessStatusCode(); - using (var stream = res.Content.ReadAsStreamAsync().GetAwaiter().GetResult()) - { - doc = XDocument.Load(stream); - } - } - } - else + using (var res = Http.GetAsync(IntegrityUrl).GetAwaiter().GetResult()) { - throw new InvalidOperationException("IntegrityUrl is not a valid absolute URI."); + res.EnsureSuccessStatusCode(); + using (var stream = res.Content.ReadAsStreamAsync().GetAwaiter().GetResult()) + { + doc = XDocument.Load(stream); + } } } catch (Exception ex) @@ -648,5 +678,43 @@ namespace Catswords.Phantomizer return sb.ToString(); } } + + private static bool IsValidUriScheme(Uri uri) + { + if (uri == null) + return false; + + lock (AllowSchemesSyncRoot) + { + return _allowSchemes.Contains(uri.Scheme); + } + } + + private static void TryVerifyUrl(string url, out bool verified) + { + try + { + if (string.IsNullOrWhiteSpace(url)) + throw new InvalidOperationException("URL is null or empty."); + + if (Uri.TryCreate(url, UriKind.Absolute, out Uri uri)) + { + if (!IsValidUriScheme(uri)) + throw new InvalidOperationException( + $"URI scheme '{uri.Scheme}' is not allowed. Use AddAllowedUriScheme() to permit additional schemes."); + } + else + { + throw new InvalidOperationException("Not a valid absolute URI."); + } + + verified = true; + } + catch (Exception ex) + { + Trace.TraceError("URL verification failed for {0}: {1}", url, ex.Message); + verified = false; + } + } } } diff --git a/WelsonJS.Toolkit/Catswords.Phantomizer/Catswords.Phantomizer.csproj b/WelsonJS.Augmented/Catswords.Phantomizer/Catswords.Phantomizer.csproj similarity index 96% rename from WelsonJS.Toolkit/Catswords.Phantomizer/Catswords.Phantomizer.csproj rename to WelsonJS.Augmented/Catswords.Phantomizer/Catswords.Phantomizer.csproj index 54aa271..31521e2 100644 --- a/WelsonJS.Toolkit/Catswords.Phantomizer/Catswords.Phantomizer.csproj +++ b/WelsonJS.Augmented/Catswords.Phantomizer/Catswords.Phantomizer.csproj @@ -10,7 +10,7 @@ loader Catswords.Phantomizer is an HTTP-based dynamic-link library (DLL) loader designed for .NET applications. It allows your application to fetch and load assemblies directly from your CDN (Azure Blob, S3, Cloudflare R2, etc.) at runtime, with optional GZip compression support. Namhyeon Go, 2025 Catswords OSS and WelsonJS Contributors - 1.0.0.1 + 1.0.0.2 diff --git a/WelsonJS.Toolkit/Catswords.Phantomizer/LICENSE b/WelsonJS.Augmented/Catswords.Phantomizer/LICENSE similarity index 100% rename from WelsonJS.Toolkit/Catswords.Phantomizer/LICENSE rename to WelsonJS.Augmented/Catswords.Phantomizer/LICENSE diff --git a/WelsonJS.Toolkit/Catswords.Phantomizer/README.md b/WelsonJS.Augmented/Catswords.Phantomizer/README.md similarity index 97% rename from WelsonJS.Toolkit/Catswords.Phantomizer/README.md rename to WelsonJS.Augmented/Catswords.Phantomizer/README.md index 94967d8..6b5d02d 100644 --- a/WelsonJS.Toolkit/Catswords.Phantomizer/README.md +++ b/WelsonJS.Augmented/Catswords.Phantomizer/README.md @@ -71,6 +71,7 @@ private static void InitializeAssemblyLoader() //loaderType.GetProperty("IntegrityUrl")?.SetValue(null, GetAppConfig("IntegrityUrl")); // (Optional) Set the integrity URL loaderType.GetProperty("LoaderNamespace")?.SetValue(null, typeof(Program).Namespace); loaderType.GetProperty("AppName")?.SetValue(null, "WelsonJS"); // Application name + //loaderType.GetMethod("AddAllowedUriScheme")?.Invoke(null, new object[] { Uri.UriSchemeHttp }); // (Optional) Allow insecure HTTP (not recommended) loaderType.GetMethod("Register")?.Invoke(null, null); var loadNativeModulesMethod = loaderType.GetMethod( @@ -104,6 +105,7 @@ static void Main(string[] args) //AssemblyLoader.IntegrityUrl = GetAppConfig("AssemblyIntegrityUrl"); // (Optional) Set the integrity URL AssemblyLoader.LoaderNamespace = typeof(Program).Namespace; AssemblyLoader.AppName = "WelsonJS"; + //AssemblyLoader.AddAllowedUriScheme(Uri.UriSchemeHttp); // (Optional) Allow insecure HTTP (not recommended) AssemblyLoader.Register(); AssemblyLoader.LoadNativeModules( diff --git a/WelsonJS.Toolkit/EsentInterop/Api.cs b/WelsonJS.Augmented/EsentInterop/Api.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Api.cs rename to WelsonJS.Augmented/EsentInterop/Api.cs diff --git a/WelsonJS.Toolkit/EsentInterop/ApiConstants.cs b/WelsonJS.Augmented/EsentInterop/ApiConstants.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/ApiConstants.cs rename to WelsonJS.Augmented/EsentInterop/ApiConstants.cs diff --git a/WelsonJS.Toolkit/EsentInterop/BoolColumnValue.cs b/WelsonJS.Augmented/EsentInterop/BoolColumnValue.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/BoolColumnValue.cs rename to WelsonJS.Augmented/EsentInterop/BoolColumnValue.cs diff --git a/WelsonJS.Toolkit/EsentInterop/BoxedValueCache.cs b/WelsonJS.Augmented/EsentInterop/BoxedValueCache.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/BoxedValueCache.cs rename to WelsonJS.Augmented/EsentInterop/BoxedValueCache.cs diff --git a/WelsonJS.Toolkit/EsentInterop/ByteColumnValue.cs b/WelsonJS.Augmented/EsentInterop/ByteColumnValue.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/ByteColumnValue.cs rename to WelsonJS.Augmented/EsentInterop/ByteColumnValue.cs diff --git a/WelsonJS.Toolkit/EsentInterop/BytesColumnValue.cs b/WelsonJS.Augmented/EsentInterop/BytesColumnValue.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/BytesColumnValue.cs rename to WelsonJS.Augmented/EsentInterop/BytesColumnValue.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Caches.cs b/WelsonJS.Augmented/EsentInterop/Caches.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Caches.cs rename to WelsonJS.Augmented/EsentInterop/Caches.cs diff --git a/WelsonJS.Toolkit/EsentInterop/CallbackWrappers.cs b/WelsonJS.Augmented/EsentInterop/CallbackWrappers.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/CallbackWrappers.cs rename to WelsonJS.Augmented/EsentInterop/CallbackWrappers.cs diff --git a/WelsonJS.Toolkit/EsentInterop/ColumnInfo.cs b/WelsonJS.Augmented/EsentInterop/ColumnInfo.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/ColumnInfo.cs rename to WelsonJS.Augmented/EsentInterop/ColumnInfo.cs diff --git a/WelsonJS.Toolkit/EsentInterop/ColumnInfoEnumerator.cs b/WelsonJS.Augmented/EsentInterop/ColumnInfoEnumerator.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/ColumnInfoEnumerator.cs rename to WelsonJS.Augmented/EsentInterop/ColumnInfoEnumerator.cs diff --git a/WelsonJS.Toolkit/EsentInterop/ColumnStream.cs b/WelsonJS.Augmented/EsentInterop/ColumnStream.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/ColumnStream.cs rename to WelsonJS.Augmented/EsentInterop/ColumnStream.cs diff --git a/WelsonJS.Toolkit/EsentInterop/ColumnValue.cs b/WelsonJS.Augmented/EsentInterop/ColumnValue.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/ColumnValue.cs rename to WelsonJS.Augmented/EsentInterop/ColumnValue.cs diff --git a/WelsonJS.Toolkit/EsentInterop/ColumnValueOfStruct.cs b/WelsonJS.Augmented/EsentInterop/ColumnValueOfStruct.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/ColumnValueOfStruct.cs rename to WelsonJS.Augmented/EsentInterop/ColumnValueOfStruct.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Conversions.cs b/WelsonJS.Augmented/EsentInterop/Conversions.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Conversions.cs rename to WelsonJS.Augmented/EsentInterop/Conversions.cs diff --git a/WelsonJS.Toolkit/EsentInterop/DateTimeColumnValue.cs b/WelsonJS.Augmented/EsentInterop/DateTimeColumnValue.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/DateTimeColumnValue.cs rename to WelsonJS.Augmented/EsentInterop/DateTimeColumnValue.cs diff --git a/WelsonJS.Toolkit/EsentInterop/DoubleColumnValue.cs b/WelsonJS.Augmented/EsentInterop/DoubleColumnValue.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/DoubleColumnValue.cs rename to WelsonJS.Augmented/EsentInterop/DoubleColumnValue.cs diff --git a/WelsonJS.Toolkit/EsentInterop/DurableCommitCallback.cs b/WelsonJS.Augmented/EsentInterop/DurableCommitCallback.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/DurableCommitCallback.cs rename to WelsonJS.Augmented/EsentInterop/DurableCommitCallback.cs diff --git a/WelsonJS.Toolkit/EsentInterop/EnumeratedColumn.cs b/WelsonJS.Augmented/EsentInterop/EnumeratedColumn.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/EnumeratedColumn.cs rename to WelsonJS.Augmented/EsentInterop/EnumeratedColumn.cs diff --git a/WelsonJS.Toolkit/EsentInterop/ErrorExceptions.cs b/WelsonJS.Augmented/EsentInterop/ErrorExceptions.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/ErrorExceptions.cs rename to WelsonJS.Augmented/EsentInterop/ErrorExceptions.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Esent.sln b/WelsonJS.Augmented/EsentInterop/Esent.sln similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Esent.sln rename to WelsonJS.Augmented/EsentInterop/Esent.sln diff --git a/WelsonJS.Toolkit/EsentInterop/Esent.vsmdi b/WelsonJS.Augmented/EsentInterop/Esent.vsmdi similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Esent.vsmdi rename to WelsonJS.Augmented/EsentInterop/Esent.vsmdi diff --git a/WelsonJS.Toolkit/EsentInterop/Esent/..svnbridge/ManagedEseLogo128x128.png b/WelsonJS.Augmented/EsentInterop/Esent/..svnbridge/ManagedEseLogo128x128.png similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Esent/..svnbridge/ManagedEseLogo128x128.png rename to WelsonJS.Augmented/EsentInterop/Esent/..svnbridge/ManagedEseLogo128x128.png diff --git a/WelsonJS.Toolkit/EsentInterop/Esent/AssemblyInfo.cs b/WelsonJS.Augmented/EsentInterop/Esent/AssemblyInfo.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Esent/AssemblyInfo.cs rename to WelsonJS.Augmented/EsentInterop/Esent/AssemblyInfo.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Esent/CallbackDataConverter.cs b/WelsonJS.Augmented/EsentInterop/Esent/CallbackDataConverter.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Esent/CallbackDataConverter.cs rename to WelsonJS.Augmented/EsentInterop/Esent/CallbackDataConverter.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Esent/EsentImplementationStubs.cs b/WelsonJS.Augmented/EsentInterop/Esent/EsentImplementationStubs.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Esent/EsentImplementationStubs.cs rename to WelsonJS.Augmented/EsentInterop/Esent/EsentImplementationStubs.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Esent/EsentJetApi.cs b/WelsonJS.Augmented/EsentInterop/Esent/EsentJetApi.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Esent/EsentJetApi.cs rename to WelsonJS.Augmented/EsentInterop/Esent/EsentJetApi.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Esent/EsentNativeMethods.cs b/WelsonJS.Augmented/EsentInterop/Esent/EsentNativeMethods.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Esent/EsentNativeMethods.cs rename to WelsonJS.Augmented/EsentInterop/Esent/EsentNativeMethods.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Esent/EsentStubAttributes.cs b/WelsonJS.Augmented/EsentInterop/Esent/EsentStubAttributes.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Esent/EsentStubAttributes.cs rename to WelsonJS.Augmented/EsentInterop/Esent/EsentStubAttributes.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Esent/EsentStubs.cs b/WelsonJS.Augmented/EsentInterop/Esent/EsentStubs.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Esent/EsentStubs.cs rename to WelsonJS.Augmented/EsentInterop/Esent/EsentStubs.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Esent/ManagedEseLogo128x128.png b/WelsonJS.Augmented/EsentInterop/Esent/ManagedEseLogo128x128.png similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Esent/ManagedEseLogo128x128.png rename to WelsonJS.Augmented/EsentInterop/Esent/ManagedEseLogo128x128.png diff --git a/WelsonJS.Toolkit/EsentInterop/Esent/suppressions.cs b/WelsonJS.Augmented/EsentInterop/Esent/suppressions.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Esent/suppressions.cs rename to WelsonJS.Augmented/EsentInterop/Esent/suppressions.cs diff --git a/WelsonJS.Toolkit/EsentInterop/EsentErrorException.cs b/WelsonJS.Augmented/EsentInterop/EsentErrorException.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/EsentErrorException.cs rename to WelsonJS.Augmented/EsentInterop/EsentErrorException.cs diff --git a/WelsonJS.Toolkit/EsentInterop/EsentException.cs b/WelsonJS.Augmented/EsentInterop/EsentException.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/EsentException.cs rename to WelsonJS.Augmented/EsentInterop/EsentException.cs diff --git a/WelsonJS.Toolkit/EsentInterop/EsentInterop.csproj b/WelsonJS.Augmented/EsentInterop/EsentInterop.csproj similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/EsentInterop.csproj rename to WelsonJS.Augmented/EsentInterop/EsentInterop.csproj diff --git a/WelsonJS.Toolkit/EsentInterop/EsentInvalidColumnException.cs b/WelsonJS.Augmented/EsentInterop/EsentInvalidColumnException.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/EsentInvalidColumnException.cs rename to WelsonJS.Augmented/EsentInterop/EsentInvalidColumnException.cs diff --git a/WelsonJS.Toolkit/EsentInterop/EsentResource.cs b/WelsonJS.Augmented/EsentInterop/EsentResource.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/EsentResource.cs rename to WelsonJS.Augmented/EsentInterop/EsentResource.cs diff --git a/WelsonJS.Toolkit/EsentInterop/EsentStopwatch.cs b/WelsonJS.Augmented/EsentInterop/EsentStopwatch.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/EsentStopwatch.cs rename to WelsonJS.Augmented/EsentInterop/EsentStopwatch.cs diff --git a/WelsonJS.Toolkit/EsentInterop/EsentVersion.cs b/WelsonJS.Augmented/EsentInterop/EsentVersion.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/EsentVersion.cs rename to WelsonJS.Augmented/EsentInterop/EsentVersion.cs diff --git a/WelsonJS.Toolkit/EsentInterop/FloatColumnValue.cs b/WelsonJS.Augmented/EsentInterop/FloatColumnValue.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/FloatColumnValue.cs rename to WelsonJS.Augmented/EsentInterop/FloatColumnValue.cs diff --git a/WelsonJS.Toolkit/EsentInterop/GCHandleCollection.cs b/WelsonJS.Augmented/EsentInterop/GCHandleCollection.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/GCHandleCollection.cs rename to WelsonJS.Augmented/EsentInterop/GCHandleCollection.cs diff --git a/WelsonJS.Toolkit/EsentInterop/GenericEnumerable.cs b/WelsonJS.Augmented/EsentInterop/GenericEnumerable.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/GenericEnumerable.cs rename to WelsonJS.Augmented/EsentInterop/GenericEnumerable.cs diff --git a/WelsonJS.Toolkit/EsentInterop/GetLockHelpers.cs b/WelsonJS.Augmented/EsentInterop/GetLockHelpers.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/GetLockHelpers.cs rename to WelsonJS.Augmented/EsentInterop/GetLockHelpers.cs diff --git a/WelsonJS.Toolkit/EsentInterop/GuidColumnValue.cs b/WelsonJS.Augmented/EsentInterop/GuidColumnValue.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/GuidColumnValue.cs rename to WelsonJS.Augmented/EsentInterop/GuidColumnValue.cs diff --git a/WelsonJS.Toolkit/EsentInterop/IContentEquatable.cs b/WelsonJS.Augmented/EsentInterop/IContentEquatable.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/IContentEquatable.cs rename to WelsonJS.Augmented/EsentInterop/IContentEquatable.cs diff --git a/WelsonJS.Toolkit/EsentInterop/IDeepCloneable.cs b/WelsonJS.Augmented/EsentInterop/IDeepCloneable.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/IDeepCloneable.cs rename to WelsonJS.Augmented/EsentInterop/IDeepCloneable.cs diff --git a/WelsonJS.Toolkit/EsentInterop/IJetApi.cs b/WelsonJS.Augmented/EsentInterop/IJetApi.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/IJetApi.cs rename to WelsonJS.Augmented/EsentInterop/IJetApi.cs diff --git a/WelsonJS.Toolkit/EsentInterop/INullableJetStruct.cs b/WelsonJS.Augmented/EsentInterop/INullableJetStruct.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/INullableJetStruct.cs rename to WelsonJS.Augmented/EsentInterop/INullableJetStruct.cs diff --git a/WelsonJS.Toolkit/EsentInterop/IndexInfo.cs b/WelsonJS.Augmented/EsentInterop/IndexInfo.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/IndexInfo.cs rename to WelsonJS.Augmented/EsentInterop/IndexInfo.cs diff --git a/WelsonJS.Toolkit/EsentInterop/IndexInfoEnumerator.cs b/WelsonJS.Augmented/EsentInterop/IndexInfoEnumerator.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/IndexInfoEnumerator.cs rename to WelsonJS.Augmented/EsentInterop/IndexInfoEnumerator.cs diff --git a/WelsonJS.Toolkit/EsentInterop/IndexSegment.cs b/WelsonJS.Augmented/EsentInterop/IndexSegment.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/IndexSegment.cs rename to WelsonJS.Augmented/EsentInterop/IndexSegment.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Instance.cs b/WelsonJS.Augmented/EsentInterop/Instance.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Instance.cs rename to WelsonJS.Augmented/EsentInterop/Instance.cs diff --git a/WelsonJS.Toolkit/EsentInterop/InstanceParameters.cs b/WelsonJS.Augmented/EsentInterop/InstanceParameters.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/InstanceParameters.cs rename to WelsonJS.Augmented/EsentInterop/InstanceParameters.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Int16ColumnValue.cs b/WelsonJS.Augmented/EsentInterop/Int16ColumnValue.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Int16ColumnValue.cs rename to WelsonJS.Augmented/EsentInterop/Int16ColumnValue.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Int32ColumnValue.cs b/WelsonJS.Augmented/EsentInterop/Int32ColumnValue.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Int32ColumnValue.cs rename to WelsonJS.Augmented/EsentInterop/Int32ColumnValue.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Int64ColumnValue.cs b/WelsonJS.Augmented/EsentInterop/Int64ColumnValue.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Int64ColumnValue.cs rename to WelsonJS.Augmented/EsentInterop/Int64ColumnValue.cs diff --git a/WelsonJS.Toolkit/EsentInterop/InternalApi.cs b/WelsonJS.Augmented/EsentInterop/InternalApi.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/InternalApi.cs rename to WelsonJS.Augmented/EsentInterop/InternalApi.cs diff --git a/WelsonJS.Toolkit/EsentInterop/IntersectIndexesEnumerator.cs b/WelsonJS.Augmented/EsentInterop/IntersectIndexesEnumerator.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/IntersectIndexesEnumerator.cs rename to WelsonJS.Augmented/EsentInterop/IntersectIndexesEnumerator.cs diff --git a/WelsonJS.Toolkit/EsentInterop/JET_eventlogginglevel.cs b/WelsonJS.Augmented/EsentInterop/JET_eventlogginglevel.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/JET_eventlogginglevel.cs rename to WelsonJS.Augmented/EsentInterop/JET_eventlogginglevel.cs diff --git a/WelsonJS.Toolkit/EsentInterop/JetApi.cs b/WelsonJS.Augmented/EsentInterop/JetApi.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/JetApi.cs rename to WelsonJS.Augmented/EsentInterop/JetApi.cs diff --git a/WelsonJS.Toolkit/EsentInterop/JetCallbackWrapper.cs b/WelsonJS.Augmented/EsentInterop/JetCallbackWrapper.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/JetCallbackWrapper.cs rename to WelsonJS.Augmented/EsentInterop/JetCallbackWrapper.cs diff --git a/WelsonJS.Toolkit/EsentInterop/JetCapabilities.cs b/WelsonJS.Augmented/EsentInterop/JetCapabilities.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/JetCapabilities.cs rename to WelsonJS.Augmented/EsentInterop/JetCapabilities.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Jet_indexcreate3.cs b/WelsonJS.Augmented/EsentInterop/Jet_indexcreate3.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Jet_indexcreate3.cs rename to WelsonJS.Augmented/EsentInterop/Jet_indexcreate3.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Jet_opentemporarytable2.cs b/WelsonJS.Augmented/EsentInterop/Jet_opentemporarytable2.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Jet_opentemporarytable2.cs rename to WelsonJS.Augmented/EsentInterop/Jet_opentemporarytable2.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Jet_tablecreate4.cs b/WelsonJS.Augmented/EsentInterop/Jet_tablecreate4.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Jet_tablecreate4.cs rename to WelsonJS.Augmented/EsentInterop/Jet_tablecreate4.cs diff --git a/WelsonJS.Toolkit/EsentInterop/LegacyFileNames.cs b/WelsonJS.Augmented/EsentInterop/LegacyFileNames.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/LegacyFileNames.cs rename to WelsonJS.Augmented/EsentInterop/LegacyFileNames.cs diff --git a/WelsonJS.Toolkit/EsentInterop/LibraryHelpers.cs b/WelsonJS.Augmented/EsentInterop/LibraryHelpers.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/LibraryHelpers.cs rename to WelsonJS.Augmented/EsentInterop/LibraryHelpers.cs diff --git a/WelsonJS.Toolkit/EsentInterop/MakeKeyHelpers.cs b/WelsonJS.Augmented/EsentInterop/MakeKeyHelpers.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/MakeKeyHelpers.cs rename to WelsonJS.Augmented/EsentInterop/MakeKeyHelpers.cs diff --git a/WelsonJS.Toolkit/EsentInterop/MemoryCache.cs b/WelsonJS.Augmented/EsentInterop/MemoryCache.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/MemoryCache.cs rename to WelsonJS.Augmented/EsentInterop/MemoryCache.cs diff --git a/WelsonJS.Toolkit/EsentInterop/MetaDataHelpers.cs b/WelsonJS.Augmented/EsentInterop/MetaDataHelpers.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/MetaDataHelpers.cs rename to WelsonJS.Augmented/EsentInterop/MetaDataHelpers.cs diff --git a/WelsonJS.Toolkit/EsentInterop/MoveHelpers.cs b/WelsonJS.Augmented/EsentInterop/MoveHelpers.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/MoveHelpers.cs rename to WelsonJS.Augmented/EsentInterop/MoveHelpers.cs diff --git a/WelsonJS.Toolkit/EsentInterop/NativeMethods.cs b/WelsonJS.Augmented/EsentInterop/NativeMethods.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/NativeMethods.cs rename to WelsonJS.Augmented/EsentInterop/NativeMethods.cs diff --git a/WelsonJS.Toolkit/EsentInterop/ObjectInfoFlags.cs b/WelsonJS.Augmented/EsentInterop/ObjectInfoFlags.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/ObjectInfoFlags.cs rename to WelsonJS.Augmented/EsentInterop/ObjectInfoFlags.cs diff --git a/WelsonJS.Toolkit/EsentInterop/ObsoleteApi.cs b/WelsonJS.Augmented/EsentInterop/ObsoleteApi.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/ObsoleteApi.cs rename to WelsonJS.Augmented/EsentInterop/ObsoleteApi.cs diff --git a/WelsonJS.Toolkit/EsentInterop/OnlineMaintenanceHelpers.cs b/WelsonJS.Augmented/EsentInterop/OnlineMaintenanceHelpers.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/OnlineMaintenanceHelpers.cs rename to WelsonJS.Augmented/EsentInterop/OnlineMaintenanceHelpers.cs diff --git a/WelsonJS.Toolkit/EsentInterop/RetrieveColumnHelpers.cs b/WelsonJS.Augmented/EsentInterop/RetrieveColumnHelpers.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/RetrieveColumnHelpers.cs rename to WelsonJS.Augmented/EsentInterop/RetrieveColumnHelpers.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Server2003Api.cs b/WelsonJS.Augmented/EsentInterop/Server2003Api.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Server2003Api.cs rename to WelsonJS.Augmented/EsentInterop/Server2003Api.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Server2003Grbits.cs b/WelsonJS.Augmented/EsentInterop/Server2003Grbits.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Server2003Grbits.cs rename to WelsonJS.Augmented/EsentInterop/Server2003Grbits.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Server2003Param.cs b/WelsonJS.Augmented/EsentInterop/Server2003Param.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Server2003Param.cs rename to WelsonJS.Augmented/EsentInterop/Server2003Param.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Session.cs b/WelsonJS.Augmented/EsentInterop/Session.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Session.cs rename to WelsonJS.Augmented/EsentInterop/Session.cs diff --git a/WelsonJS.Toolkit/EsentInterop/SetColumnHelpers.cs b/WelsonJS.Augmented/EsentInterop/SetColumnHelpers.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/SetColumnHelpers.cs rename to WelsonJS.Augmented/EsentInterop/SetColumnHelpers.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Settings.StyleCop b/WelsonJS.Augmented/EsentInterop/Settings.StyleCop similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Settings.StyleCop rename to WelsonJS.Augmented/EsentInterop/Settings.StyleCop diff --git a/WelsonJS.Toolkit/EsentInterop/StringCache.cs b/WelsonJS.Augmented/EsentInterop/StringCache.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/StringCache.cs rename to WelsonJS.Augmented/EsentInterop/StringCache.cs diff --git a/WelsonJS.Toolkit/EsentInterop/StringColumnValue.cs b/WelsonJS.Augmented/EsentInterop/StringColumnValue.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/StringColumnValue.cs rename to WelsonJS.Augmented/EsentInterop/StringColumnValue.cs diff --git a/WelsonJS.Toolkit/EsentInterop/SystemParameters.cs b/WelsonJS.Augmented/EsentInterop/SystemParameters.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/SystemParameters.cs rename to WelsonJS.Augmented/EsentInterop/SystemParameters.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Table.cs b/WelsonJS.Augmented/EsentInterop/Table.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Table.cs rename to WelsonJS.Augmented/EsentInterop/Table.cs diff --git a/WelsonJS.Toolkit/EsentInterop/TableColumnInfoEnumerator.cs b/WelsonJS.Augmented/EsentInterop/TableColumnInfoEnumerator.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/TableColumnInfoEnumerator.cs rename to WelsonJS.Augmented/EsentInterop/TableColumnInfoEnumerator.cs diff --git a/WelsonJS.Toolkit/EsentInterop/TableEnumerator.cs b/WelsonJS.Augmented/EsentInterop/TableEnumerator.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/TableEnumerator.cs rename to WelsonJS.Augmented/EsentInterop/TableEnumerator.cs diff --git a/WelsonJS.Toolkit/EsentInterop/TableIndexInfoEnumerator.cs b/WelsonJS.Augmented/EsentInterop/TableIndexInfoEnumerator.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/TableIndexInfoEnumerator.cs rename to WelsonJS.Augmented/EsentInterop/TableIndexInfoEnumerator.cs diff --git a/WelsonJS.Toolkit/EsentInterop/TableNameEnumerator.cs b/WelsonJS.Augmented/EsentInterop/TableNameEnumerator.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/TableNameEnumerator.cs rename to WelsonJS.Augmented/EsentInterop/TableNameEnumerator.cs diff --git a/WelsonJS.Toolkit/EsentInterop/TableidColumnInfoEnumerator.cs b/WelsonJS.Augmented/EsentInterop/TableidColumnInfoEnumerator.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/TableidColumnInfoEnumerator.cs rename to WelsonJS.Augmented/EsentInterop/TableidColumnInfoEnumerator.cs diff --git a/WelsonJS.Toolkit/EsentInterop/TableidIndexInfoEnumerator.cs b/WelsonJS.Augmented/EsentInterop/TableidIndexInfoEnumerator.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/TableidIndexInfoEnumerator.cs rename to WelsonJS.Augmented/EsentInterop/TableidIndexInfoEnumerator.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Transaction.cs b/WelsonJS.Augmented/EsentInterop/Transaction.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Transaction.cs rename to WelsonJS.Augmented/EsentInterop/Transaction.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Types.cs b/WelsonJS.Augmented/EsentInterop/Types.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Types.cs rename to WelsonJS.Augmented/EsentInterop/Types.cs diff --git a/WelsonJS.Toolkit/EsentInterop/UInt16ColumnValue.cs b/WelsonJS.Augmented/EsentInterop/UInt16ColumnValue.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/UInt16ColumnValue.cs rename to WelsonJS.Augmented/EsentInterop/UInt16ColumnValue.cs diff --git a/WelsonJS.Toolkit/EsentInterop/UInt32ColumnValue.cs b/WelsonJS.Augmented/EsentInterop/UInt32ColumnValue.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/UInt32ColumnValue.cs rename to WelsonJS.Augmented/EsentInterop/UInt32ColumnValue.cs diff --git a/WelsonJS.Toolkit/EsentInterop/UInt64ColumnValue.cs b/WelsonJS.Augmented/EsentInterop/UInt64ColumnValue.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/UInt64ColumnValue.cs rename to WelsonJS.Augmented/EsentInterop/UInt64ColumnValue.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Update.cs b/WelsonJS.Augmented/EsentInterop/Update.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Update.cs rename to WelsonJS.Augmented/EsentInterop/Update.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Util.cs b/WelsonJS.Augmented/EsentInterop/Util.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Util.cs rename to WelsonJS.Augmented/EsentInterop/Util.cs diff --git a/WelsonJS.Toolkit/EsentInterop/VistaApi.cs b/WelsonJS.Augmented/EsentInterop/VistaApi.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/VistaApi.cs rename to WelsonJS.Augmented/EsentInterop/VistaApi.cs diff --git a/WelsonJS.Toolkit/EsentInterop/VistaColinfo.cs b/WelsonJS.Augmented/EsentInterop/VistaColinfo.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/VistaColinfo.cs rename to WelsonJS.Augmented/EsentInterop/VistaColinfo.cs diff --git a/WelsonJS.Toolkit/EsentInterop/VistaColtyp.cs b/WelsonJS.Augmented/EsentInterop/VistaColtyp.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/VistaColtyp.cs rename to WelsonJS.Augmented/EsentInterop/VistaColtyp.cs diff --git a/WelsonJS.Toolkit/EsentInterop/VistaGrbits.cs b/WelsonJS.Augmented/EsentInterop/VistaGrbits.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/VistaGrbits.cs rename to WelsonJS.Augmented/EsentInterop/VistaGrbits.cs diff --git a/WelsonJS.Toolkit/EsentInterop/VistaParam.cs b/WelsonJS.Augmented/EsentInterop/VistaParam.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/VistaParam.cs rename to WelsonJS.Augmented/EsentInterop/VistaParam.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Win32NativeMethods.cs b/WelsonJS.Augmented/EsentInterop/Win32NativeMethods.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Win32NativeMethods.cs rename to WelsonJS.Augmented/EsentInterop/Win32NativeMethods.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Windows10Api.cs b/WelsonJS.Augmented/EsentInterop/Windows10Api.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Windows10Api.cs rename to WelsonJS.Augmented/EsentInterop/Windows10Api.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Windows10Coltyp.cs b/WelsonJS.Augmented/EsentInterop/Windows10Coltyp.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Windows10Coltyp.cs rename to WelsonJS.Augmented/EsentInterop/Windows10Coltyp.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Windows10Grbits.cs b/WelsonJS.Augmented/EsentInterop/Windows10Grbits.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Windows10Grbits.cs rename to WelsonJS.Augmented/EsentInterop/Windows10Grbits.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Windows10IJetApi.cs b/WelsonJS.Augmented/EsentInterop/Windows10IJetApi.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Windows10IJetApi.cs rename to WelsonJS.Augmented/EsentInterop/Windows10IJetApi.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Windows10JetApi.cs b/WelsonJS.Augmented/EsentInterop/Windows10JetApi.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Windows10JetApi.cs rename to WelsonJS.Augmented/EsentInterop/Windows10JetApi.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Windows10NativeMethods.cs b/WelsonJS.Augmented/EsentInterop/Windows10NativeMethods.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Windows10NativeMethods.cs rename to WelsonJS.Augmented/EsentInterop/Windows10NativeMethods.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Windows10Param.cs b/WelsonJS.Augmented/EsentInterop/Windows10Param.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Windows10Param.cs rename to WelsonJS.Augmented/EsentInterop/Windows10Param.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Windows10Sesparam.cs b/WelsonJS.Augmented/EsentInterop/Windows10Sesparam.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Windows10Sesparam.cs rename to WelsonJS.Augmented/EsentInterop/Windows10Sesparam.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Windows10Session.cs b/WelsonJS.Augmented/EsentInterop/Windows10Session.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Windows10Session.cs rename to WelsonJS.Augmented/EsentInterop/Windows10Session.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Windows7Api.cs b/WelsonJS.Augmented/EsentInterop/Windows7Api.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Windows7Api.cs rename to WelsonJS.Augmented/EsentInterop/Windows7Api.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Windows7ExceptionAction.cs b/WelsonJS.Augmented/EsentInterop/Windows7ExceptionAction.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Windows7ExceptionAction.cs rename to WelsonJS.Augmented/EsentInterop/Windows7ExceptionAction.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Windows7Grbits.cs b/WelsonJS.Augmented/EsentInterop/Windows7Grbits.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Windows7Grbits.cs rename to WelsonJS.Augmented/EsentInterop/Windows7Grbits.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Windows7Idxinfo.cs b/WelsonJS.Augmented/EsentInterop/Windows7Idxinfo.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Windows7Idxinfo.cs rename to WelsonJS.Augmented/EsentInterop/Windows7Idxinfo.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Windows7Param.cs b/WelsonJS.Augmented/EsentInterop/Windows7Param.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Windows7Param.cs rename to WelsonJS.Augmented/EsentInterop/Windows7Param.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Windows81DbInfo.cs b/WelsonJS.Augmented/EsentInterop/Windows81DbInfo.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Windows81DbInfo.cs rename to WelsonJS.Augmented/EsentInterop/Windows81DbInfo.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Windows81Grbits.cs b/WelsonJS.Augmented/EsentInterop/Windows81Grbits.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Windows81Grbits.cs rename to WelsonJS.Augmented/EsentInterop/Windows81Grbits.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Windows81InstanceParameters.cs b/WelsonJS.Augmented/EsentInterop/Windows81InstanceParameters.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Windows81InstanceParameters.cs rename to WelsonJS.Augmented/EsentInterop/Windows81InstanceParameters.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Windows81Param.cs b/WelsonJS.Augmented/EsentInterop/Windows81Param.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Windows81Param.cs rename to WelsonJS.Augmented/EsentInterop/Windows81Param.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Windows8Api.cs b/WelsonJS.Augmented/EsentInterop/Windows8Api.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Windows8Api.cs rename to WelsonJS.Augmented/EsentInterop/Windows8Api.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Windows8Grbits.cs b/WelsonJS.Augmented/EsentInterop/Windows8Grbits.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Windows8Grbits.cs rename to WelsonJS.Augmented/EsentInterop/Windows8Grbits.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Windows8IJetApi.cs b/WelsonJS.Augmented/EsentInterop/Windows8IJetApi.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Windows8IJetApi.cs rename to WelsonJS.Augmented/EsentInterop/Windows8IJetApi.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Windows8IdxInfo.cs b/WelsonJS.Augmented/EsentInterop/Windows8IdxInfo.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Windows8IdxInfo.cs rename to WelsonJS.Augmented/EsentInterop/Windows8IdxInfo.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Windows8InstanceParameters.cs b/WelsonJS.Augmented/EsentInterop/Windows8InstanceParameters.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Windows8InstanceParameters.cs rename to WelsonJS.Augmented/EsentInterop/Windows8InstanceParameters.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Windows8JetApi.cs b/WelsonJS.Augmented/EsentInterop/Windows8JetApi.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Windows8JetApi.cs rename to WelsonJS.Augmented/EsentInterop/Windows8JetApi.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Windows8NativeMethods.cs b/WelsonJS.Augmented/EsentInterop/Windows8NativeMethods.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Windows8NativeMethods.cs rename to WelsonJS.Augmented/EsentInterop/Windows8NativeMethods.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Windows8Param.cs b/WelsonJS.Augmented/EsentInterop/Windows8Param.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Windows8Param.cs rename to WelsonJS.Augmented/EsentInterop/Windows8Param.cs diff --git a/WelsonJS.Toolkit/EsentInterop/Windows8SystemParameters.cs b/WelsonJS.Augmented/EsentInterop/Windows8SystemParameters.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/Windows8SystemParameters.cs rename to WelsonJS.Augmented/EsentInterop/Windows8SystemParameters.cs diff --git a/WelsonJS.Toolkit/EsentInterop/esent.FxCop b/WelsonJS.Augmented/EsentInterop/esent.FxCop similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/esent.FxCop rename to WelsonJS.Augmented/EsentInterop/esent.FxCop diff --git a/WelsonJS.Toolkit/EsentInterop/grbits.cs b/WelsonJS.Augmented/EsentInterop/grbits.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/grbits.cs rename to WelsonJS.Augmented/EsentInterop/grbits.cs diff --git a/WelsonJS.Toolkit/EsentInterop/ijet_logtime.cs b/WelsonJS.Augmented/EsentInterop/ijet_logtime.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/ijet_logtime.cs rename to WelsonJS.Augmented/EsentInterop/ijet_logtime.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_bkinfo.cs b/WelsonJS.Augmented/EsentInterop/jet_bkinfo.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_bkinfo.cs rename to WelsonJS.Augmented/EsentInterop/jet_bkinfo.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_bklogtime.cs b/WelsonJS.Augmented/EsentInterop/jet_bklogtime.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_bklogtime.cs rename to WelsonJS.Augmented/EsentInterop/jet_bklogtime.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_callback.cs b/WelsonJS.Augmented/EsentInterop/jet_callback.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_callback.cs rename to WelsonJS.Augmented/EsentInterop/jet_callback.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_cbtyp.cs b/WelsonJS.Augmented/EsentInterop/jet_cbtyp.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_cbtyp.cs rename to WelsonJS.Augmented/EsentInterop/jet_cbtyp.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_colinfo.cs b/WelsonJS.Augmented/EsentInterop/jet_colinfo.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_colinfo.cs rename to WelsonJS.Augmented/EsentInterop/jet_colinfo.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_coltyp.cs b/WelsonJS.Augmented/EsentInterop/jet_coltyp.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_coltyp.cs rename to WelsonJS.Augmented/EsentInterop/jet_coltyp.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_columnbase.cs b/WelsonJS.Augmented/EsentInterop/jet_columnbase.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_columnbase.cs rename to WelsonJS.Augmented/EsentInterop/jet_columnbase.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_columncreate.cs b/WelsonJS.Augmented/EsentInterop/jet_columncreate.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_columncreate.cs rename to WelsonJS.Augmented/EsentInterop/jet_columncreate.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_columndef.cs b/WelsonJS.Augmented/EsentInterop/jet_columndef.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_columndef.cs rename to WelsonJS.Augmented/EsentInterop/jet_columndef.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_columnlist.cs b/WelsonJS.Augmented/EsentInterop/jet_columnlist.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_columnlist.cs rename to WelsonJS.Augmented/EsentInterop/jet_columnlist.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_commit_id.cs b/WelsonJS.Augmented/EsentInterop/jet_commit_id.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_commit_id.cs rename to WelsonJS.Augmented/EsentInterop/jet_commit_id.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_conditionalcolumn.cs b/WelsonJS.Augmented/EsentInterop/jet_conditionalcolumn.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_conditionalcolumn.cs rename to WelsonJS.Augmented/EsentInterop/jet_conditionalcolumn.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_convert.cs b/WelsonJS.Augmented/EsentInterop/jet_convert.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_convert.cs rename to WelsonJS.Augmented/EsentInterop/jet_convert.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_cp.cs b/WelsonJS.Augmented/EsentInterop/jet_cp.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_cp.cs rename to WelsonJS.Augmented/EsentInterop/jet_cp.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_dbinfo.cs b/WelsonJS.Augmented/EsentInterop/jet_dbinfo.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_dbinfo.cs rename to WelsonJS.Augmented/EsentInterop/jet_dbinfo.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_dbinfomisc.cs b/WelsonJS.Augmented/EsentInterop/jet_dbinfomisc.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_dbinfomisc.cs rename to WelsonJS.Augmented/EsentInterop/jet_dbinfomisc.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_dbstate.cs b/WelsonJS.Augmented/EsentInterop/jet_dbstate.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_dbstate.cs rename to WelsonJS.Augmented/EsentInterop/jet_dbstate.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_enumcolumn.cs b/WelsonJS.Augmented/EsentInterop/jet_enumcolumn.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_enumcolumn.cs rename to WelsonJS.Augmented/EsentInterop/jet_enumcolumn.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_enumcolumnid.cs b/WelsonJS.Augmented/EsentInterop/jet_enumcolumnid.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_enumcolumnid.cs rename to WelsonJS.Augmented/EsentInterop/jet_enumcolumnid.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_enumcolumnvalue.cs b/WelsonJS.Augmented/EsentInterop/jet_enumcolumnvalue.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_enumcolumnvalue.cs rename to WelsonJS.Augmented/EsentInterop/jet_enumcolumnvalue.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_err.cs b/WelsonJS.Augmented/EsentInterop/jet_err.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_err.cs rename to WelsonJS.Augmented/EsentInterop/jet_err.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_errcat.cs b/WelsonJS.Augmented/EsentInterop/jet_errcat.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_errcat.cs rename to WelsonJS.Augmented/EsentInterop/jet_errcat.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_errinfobasic.cs b/WelsonJS.Augmented/EsentInterop/jet_errinfobasic.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_errinfobasic.cs rename to WelsonJS.Augmented/EsentInterop/jet_errinfobasic.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_errorinfo.cs b/WelsonJS.Augmented/EsentInterop/jet_errorinfo.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_errorinfo.cs rename to WelsonJS.Augmented/EsentInterop/jet_errorinfo.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_exceptionaction.cs b/WelsonJS.Augmented/EsentInterop/jet_exceptionaction.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_exceptionaction.cs rename to WelsonJS.Augmented/EsentInterop/jet_exceptionaction.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_filetype.cs b/WelsonJS.Augmented/EsentInterop/jet_filetype.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_filetype.cs rename to WelsonJS.Augmented/EsentInterop/jet_filetype.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_idxinfo.cs b/WelsonJS.Augmented/EsentInterop/jet_idxinfo.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_idxinfo.cs rename to WelsonJS.Augmented/EsentInterop/jet_idxinfo.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_index_column.cs b/WelsonJS.Augmented/EsentInterop/jet_index_column.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_index_column.cs rename to WelsonJS.Augmented/EsentInterop/jet_index_column.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_index_range.cs b/WelsonJS.Augmented/EsentInterop/jet_index_range.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_index_range.cs rename to WelsonJS.Augmented/EsentInterop/jet_index_range.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_indexcreate.cs b/WelsonJS.Augmented/EsentInterop/jet_indexcreate.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_indexcreate.cs rename to WelsonJS.Augmented/EsentInterop/jet_indexcreate.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_indexlist.cs b/WelsonJS.Augmented/EsentInterop/jet_indexlist.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_indexlist.cs rename to WelsonJS.Augmented/EsentInterop/jet_indexlist.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_indexrange.cs b/WelsonJS.Augmented/EsentInterop/jet_indexrange.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_indexrange.cs rename to WelsonJS.Augmented/EsentInterop/jet_indexrange.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_instance_info.cs b/WelsonJS.Augmented/EsentInterop/jet_instance_info.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_instance_info.cs rename to WelsonJS.Augmented/EsentInterop/jet_instance_info.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_iopriority.cs b/WelsonJS.Augmented/EsentInterop/jet_iopriority.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_iopriority.cs rename to WelsonJS.Augmented/EsentInterop/jet_iopriority.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_lgpos.cs b/WelsonJS.Augmented/EsentInterop/jet_lgpos.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_lgpos.cs rename to WelsonJS.Augmented/EsentInterop/jet_lgpos.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_logtime.cs b/WelsonJS.Augmented/EsentInterop/jet_logtime.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_logtime.cs rename to WelsonJS.Augmented/EsentInterop/jet_logtime.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_move.cs b/WelsonJS.Augmented/EsentInterop/jet_move.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_move.cs rename to WelsonJS.Augmented/EsentInterop/jet_move.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_objectinfo.cs b/WelsonJS.Augmented/EsentInterop/jet_objectinfo.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_objectinfo.cs rename to WelsonJS.Augmented/EsentInterop/jet_objectinfo.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_objectlist.cs b/WelsonJS.Augmented/EsentInterop/jet_objectlist.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_objectlist.cs rename to WelsonJS.Augmented/EsentInterop/jet_objectlist.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_objinfo.cs b/WelsonJS.Augmented/EsentInterop/jet_objinfo.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_objinfo.cs rename to WelsonJS.Augmented/EsentInterop/jet_objinfo.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_objtyp.cs b/WelsonJS.Augmented/EsentInterop/jet_objtyp.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_objtyp.cs rename to WelsonJS.Augmented/EsentInterop/jet_objtyp.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_opentemporarytable.cs b/WelsonJS.Augmented/EsentInterop/jet_opentemporarytable.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_opentemporarytable.cs rename to WelsonJS.Augmented/EsentInterop/jet_opentemporarytable.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_operationcontext.cs b/WelsonJS.Augmented/EsentInterop/jet_operationcontext.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_operationcontext.cs rename to WelsonJS.Augmented/EsentInterop/jet_operationcontext.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_param.cs b/WelsonJS.Augmented/EsentInterop/jet_param.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_param.cs rename to WelsonJS.Augmented/EsentInterop/jet_param.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_pfndurablecommitcallback.cs b/WelsonJS.Augmented/EsentInterop/jet_pfndurablecommitcallback.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_pfndurablecommitcallback.cs rename to WelsonJS.Augmented/EsentInterop/jet_pfndurablecommitcallback.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_pfnrealloc.cs b/WelsonJS.Augmented/EsentInterop/jet_pfnrealloc.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_pfnrealloc.cs rename to WelsonJS.Augmented/EsentInterop/jet_pfnrealloc.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_pfnstatus.cs b/WelsonJS.Augmented/EsentInterop/jet_pfnstatus.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_pfnstatus.cs rename to WelsonJS.Augmented/EsentInterop/jet_pfnstatus.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_prep.cs b/WelsonJS.Augmented/EsentInterop/jet_prep.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_prep.cs rename to WelsonJS.Augmented/EsentInterop/jet_prep.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_recordlist.cs b/WelsonJS.Augmented/EsentInterop/jet_recordlist.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_recordlist.cs rename to WelsonJS.Augmented/EsentInterop/jet_recordlist.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_recpos.cs b/WelsonJS.Augmented/EsentInterop/jet_recpos.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_recpos.cs rename to WelsonJS.Augmented/EsentInterop/jet_recpos.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_recsize.cs b/WelsonJS.Augmented/EsentInterop/jet_recsize.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_recsize.cs rename to WelsonJS.Augmented/EsentInterop/jet_recsize.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_retinfo.cs b/WelsonJS.Augmented/EsentInterop/jet_retinfo.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_retinfo.cs rename to WelsonJS.Augmented/EsentInterop/jet_retinfo.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_retrievecolumn.cs b/WelsonJS.Augmented/EsentInterop/jet_retrievecolumn.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_retrievecolumn.cs rename to WelsonJS.Augmented/EsentInterop/jet_retrievecolumn.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_rstinfo.cs b/WelsonJS.Augmented/EsentInterop/jet_rstinfo.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_rstinfo.cs rename to WelsonJS.Augmented/EsentInterop/jet_rstinfo.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_rstmap.cs b/WelsonJS.Augmented/EsentInterop/jet_rstmap.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_rstmap.cs rename to WelsonJS.Augmented/EsentInterop/jet_rstmap.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_sesparam.cs b/WelsonJS.Augmented/EsentInterop/jet_sesparam.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_sesparam.cs rename to WelsonJS.Augmented/EsentInterop/jet_sesparam.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_setcolumn.cs b/WelsonJS.Augmented/EsentInterop/jet_setcolumn.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_setcolumn.cs rename to WelsonJS.Augmented/EsentInterop/jet_setcolumn.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_setinfo.cs b/WelsonJS.Augmented/EsentInterop/jet_setinfo.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_setinfo.cs rename to WelsonJS.Augmented/EsentInterop/jet_setinfo.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_signature.cs b/WelsonJS.Augmented/EsentInterop/jet_signature.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_signature.cs rename to WelsonJS.Augmented/EsentInterop/jet_signature.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_snp.cs b/WelsonJS.Augmented/EsentInterop/jet_snp.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_snp.cs rename to WelsonJS.Augmented/EsentInterop/jet_snp.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_snprog.cs b/WelsonJS.Augmented/EsentInterop/jet_snprog.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_snprog.cs rename to WelsonJS.Augmented/EsentInterop/jet_snprog.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_snt.cs b/WelsonJS.Augmented/EsentInterop/jet_snt.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_snt.cs rename to WelsonJS.Augmented/EsentInterop/jet_snt.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_spacehints.cs b/WelsonJS.Augmented/EsentInterop/jet_spacehints.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_spacehints.cs rename to WelsonJS.Augmented/EsentInterop/jet_spacehints.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_tablecreate.cs b/WelsonJS.Augmented/EsentInterop/jet_tablecreate.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_tablecreate.cs rename to WelsonJS.Augmented/EsentInterop/jet_tablecreate.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_tblinfo.cs b/WelsonJS.Augmented/EsentInterop/jet_tblinfo.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_tblinfo.cs rename to WelsonJS.Augmented/EsentInterop/jet_tblinfo.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_threadstats.cs b/WelsonJS.Augmented/EsentInterop/jet_threadstats.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_threadstats.cs rename to WelsonJS.Augmented/EsentInterop/jet_threadstats.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_threadstats2.cs b/WelsonJS.Augmented/EsentInterop/jet_threadstats2.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_threadstats2.cs rename to WelsonJS.Augmented/EsentInterop/jet_threadstats2.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_unicodeindex.cs b/WelsonJS.Augmented/EsentInterop/jet_unicodeindex.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_unicodeindex.cs rename to WelsonJS.Augmented/EsentInterop/jet_unicodeindex.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_unicodeindex2.cs b/WelsonJS.Augmented/EsentInterop/jet_unicodeindex2.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_unicodeindex2.cs rename to WelsonJS.Augmented/EsentInterop/jet_unicodeindex2.cs diff --git a/WelsonJS.Toolkit/EsentInterop/jet_wrn.cs b/WelsonJS.Augmented/EsentInterop/jet_wrn.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/jet_wrn.cs rename to WelsonJS.Augmented/EsentInterop/jet_wrn.cs diff --git a/WelsonJS.Toolkit/EsentInterop/objectinfogrbit.cs b/WelsonJS.Augmented/EsentInterop/objectinfogrbit.cs similarity index 100% rename from WelsonJS.Toolkit/EsentInterop/objectinfogrbit.cs rename to WelsonJS.Augmented/EsentInterop/objectinfogrbit.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Toolkit.sln b/WelsonJS.Augmented/WelsonJS.Augmented.sln similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Toolkit.sln rename to WelsonJS.Augmented/WelsonJS.Augmented.sln diff --git a/WelsonJS.Toolkit/WelsonJS.Cryptography.Test/Program.vb b/WelsonJS.Augmented/WelsonJS.Cryptography.Test/Program.vb similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Cryptography.Test/Program.vb rename to WelsonJS.Augmented/WelsonJS.Cryptography.Test/Program.vb diff --git a/WelsonJS.Toolkit/WelsonJS.Cryptography.Test/WelsonJS.Cryptography.Test.vbproj b/WelsonJS.Augmented/WelsonJS.Cryptography.Test/WelsonJS.Cryptography.Test.vbproj similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Cryptography.Test/WelsonJS.Cryptography.Test.vbproj rename to WelsonJS.Augmented/WelsonJS.Cryptography.Test/WelsonJS.Cryptography.Test.vbproj diff --git a/WelsonJS.Toolkit/WelsonJS.Cryptography/AriaAlgorithm.vb b/WelsonJS.Augmented/WelsonJS.Cryptography/AriaAlgorithm.vb similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Cryptography/AriaAlgorithm.vb rename to WelsonJS.Augmented/WelsonJS.Cryptography/AriaAlgorithm.vb diff --git a/WelsonJS.Toolkit/WelsonJS.Cryptography/AriaCore.vb b/WelsonJS.Augmented/WelsonJS.Cryptography/AriaCore.vb similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Cryptography/AriaCore.vb rename to WelsonJS.Augmented/WelsonJS.Cryptography/AriaCore.vb diff --git a/WelsonJS.Toolkit/WelsonJS.Cryptography/AriaEcbTransform.vb b/WelsonJS.Augmented/WelsonJS.Cryptography/AriaEcbTransform.vb similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Cryptography/AriaEcbTransform.vb rename to WelsonJS.Augmented/WelsonJS.Cryptography/AriaEcbTransform.vb diff --git a/WelsonJS.Toolkit/WelsonJS.Cryptography/HightAlgorithm.vb b/WelsonJS.Augmented/WelsonJS.Cryptography/HightAlgorithm.vb similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Cryptography/HightAlgorithm.vb rename to WelsonJS.Augmented/WelsonJS.Cryptography/HightAlgorithm.vb diff --git a/WelsonJS.Toolkit/WelsonJS.Cryptography/HightCore.vb b/WelsonJS.Augmented/WelsonJS.Cryptography/HightCore.vb similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Cryptography/HightCore.vb rename to WelsonJS.Augmented/WelsonJS.Cryptography/HightCore.vb diff --git a/WelsonJS.Toolkit/WelsonJS.Cryptography/HightEcbTransform.vb b/WelsonJS.Augmented/WelsonJS.Cryptography/HightEcbTransform.vb similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Cryptography/HightEcbTransform.vb rename to WelsonJS.Augmented/WelsonJS.Cryptography/HightEcbTransform.vb diff --git a/WelsonJS.Toolkit/WelsonJS.Cryptography/SeedAlgorithm.vb b/WelsonJS.Augmented/WelsonJS.Cryptography/SeedAlgorithm.vb similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Cryptography/SeedAlgorithm.vb rename to WelsonJS.Augmented/WelsonJS.Cryptography/SeedAlgorithm.vb diff --git a/WelsonJS.Toolkit/WelsonJS.Cryptography/SeedCore.vb b/WelsonJS.Augmented/WelsonJS.Cryptography/SeedCore.vb similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Cryptography/SeedCore.vb rename to WelsonJS.Augmented/WelsonJS.Cryptography/SeedCore.vb diff --git a/WelsonJS.Toolkit/WelsonJS.Cryptography/SeedEcbTransform.vb b/WelsonJS.Augmented/WelsonJS.Cryptography/SeedEcbTransform.vb similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Cryptography/SeedEcbTransform.vb rename to WelsonJS.Augmented/WelsonJS.Cryptography/SeedEcbTransform.vb diff --git a/WelsonJS.Toolkit/WelsonJS.Cryptography/WelsonJS.Cryptography.vbproj b/WelsonJS.Augmented/WelsonJS.Cryptography/WelsonJS.Cryptography.vbproj similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Cryptography/WelsonJS.Cryptography.vbproj rename to WelsonJS.Augmented/WelsonJS.Cryptography/WelsonJS.Cryptography.vbproj diff --git a/WelsonJS.Toolkit/WelsonJS.Esent/Column.cs b/WelsonJS.Augmented/WelsonJS.Esent/Column.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Esent/Column.cs rename to WelsonJS.Augmented/WelsonJS.Esent/Column.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Esent/EsentDatabase.cs b/WelsonJS.Augmented/WelsonJS.Esent/EsentDatabase.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Esent/EsentDatabase.cs rename to WelsonJS.Augmented/WelsonJS.Esent/EsentDatabase.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Esent/ICompatibleLogger.cs b/WelsonJS.Augmented/WelsonJS.Esent/ICompatibleLogger.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Esent/ICompatibleLogger.cs rename to WelsonJS.Augmented/WelsonJS.Esent/ICompatibleLogger.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Esent/LICENSE b/WelsonJS.Augmented/WelsonJS.Esent/LICENSE similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Esent/LICENSE rename to WelsonJS.Augmented/WelsonJS.Esent/LICENSE diff --git a/WelsonJS.Toolkit/WelsonJS.Esent/README.md b/WelsonJS.Augmented/WelsonJS.Esent/README.md similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Esent/README.md rename to WelsonJS.Augmented/WelsonJS.Esent/README.md diff --git a/WelsonJS.Toolkit/WelsonJS.Esent/Schema.cs b/WelsonJS.Augmented/WelsonJS.Esent/Schema.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Esent/Schema.cs rename to WelsonJS.Augmented/WelsonJS.Esent/Schema.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Esent/TraceLogger.cs b/WelsonJS.Augmented/WelsonJS.Esent/TraceLogger.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Esent/TraceLogger.cs rename to WelsonJS.Augmented/WelsonJS.Esent/TraceLogger.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Esent/WelsonJS.Esent.csproj b/WelsonJS.Augmented/WelsonJS.Esent/WelsonJS.Esent.csproj similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Esent/WelsonJS.Esent.csproj rename to WelsonJS.Augmented/WelsonJS.Esent/WelsonJS.Esent.csproj diff --git a/WelsonJS.Toolkit/WelsonJS.Esent/assets/docs/README.md b/WelsonJS.Augmented/WelsonJS.Esent/assets/docs/README.md similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Esent/assets/docs/README.md rename to WelsonJS.Augmented/WelsonJS.Esent/assets/docs/README.md diff --git a/WelsonJS.Toolkit/WelsonJS.Esent/assets/img/logo.png b/WelsonJS.Augmented/WelsonJS.Esent/assets/img/logo.png similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Esent/assets/img/logo.png rename to WelsonJS.Augmented/WelsonJS.Esent/assets/img/logo.png diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/EnvForm.Designer.cs b/WelsonJS.Augmented/WelsonJS.Launcher/EnvForm.Designer.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/EnvForm.Designer.cs rename to WelsonJS.Augmented/WelsonJS.Launcher/EnvForm.Designer.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/EnvForm.cs b/WelsonJS.Augmented/WelsonJS.Launcher/EnvForm.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/EnvForm.cs rename to WelsonJS.Augmented/WelsonJS.Launcher/EnvForm.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/EnvForm.resx b/WelsonJS.Augmented/WelsonJS.Launcher/EnvForm.resx similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/EnvForm.resx rename to WelsonJS.Augmented/WelsonJS.Launcher/EnvForm.resx diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/GlobalSettingsForm.Designer.cs b/WelsonJS.Augmented/WelsonJS.Launcher/GlobalSettingsForm.Designer.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/GlobalSettingsForm.Designer.cs rename to WelsonJS.Augmented/WelsonJS.Launcher/GlobalSettingsForm.Designer.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/GlobalSettingsForm.cs b/WelsonJS.Augmented/WelsonJS.Launcher/GlobalSettingsForm.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/GlobalSettingsForm.cs rename to WelsonJS.Augmented/WelsonJS.Launcher/GlobalSettingsForm.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/GlobalSettingsForm.resx b/WelsonJS.Augmented/WelsonJS.Launcher/GlobalSettingsForm.resx similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/GlobalSettingsForm.resx rename to WelsonJS.Augmented/WelsonJS.Launcher/GlobalSettingsForm.resx diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/ICompatibleLogger.cs b/WelsonJS.Augmented/WelsonJS.Launcher/ICompatibleLogger.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/ICompatibleLogger.cs rename to WelsonJS.Augmented/WelsonJS.Launcher/ICompatibleLogger.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/IResourceTool.cs b/WelsonJS.Augmented/WelsonJS.Launcher/IResourceTool.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/IResourceTool.cs rename to WelsonJS.Augmented/WelsonJS.Launcher/IResourceTool.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/InstancesForm.Designer.cs b/WelsonJS.Augmented/WelsonJS.Launcher/InstancesForm.Designer.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/InstancesForm.Designer.cs rename to WelsonJS.Augmented/WelsonJS.Launcher/InstancesForm.Designer.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/InstancesForm.cs b/WelsonJS.Augmented/WelsonJS.Launcher/InstancesForm.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/InstancesForm.cs rename to WelsonJS.Augmented/WelsonJS.Launcher/InstancesForm.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/InstancesForm.resx b/WelsonJS.Augmented/WelsonJS.Launcher/InstancesForm.resx similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/InstancesForm.resx rename to WelsonJS.Augmented/WelsonJS.Launcher/InstancesForm.resx diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/JsCore.cs b/WelsonJS.Augmented/WelsonJS.Launcher/JsCore.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/JsCore.cs rename to WelsonJS.Augmented/WelsonJS.Launcher/JsCore.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/JsNative.cs b/WelsonJS.Augmented/WelsonJS.Launcher/JsNative.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/JsNative.cs rename to WelsonJS.Augmented/WelsonJS.Launcher/JsNative.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/JsSerializer.cs b/WelsonJS.Augmented/WelsonJS.Launcher/JsSerializer.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/JsSerializer.cs rename to WelsonJS.Augmented/WelsonJS.Launcher/JsSerializer.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/LICENSE b/WelsonJS.Augmented/WelsonJS.Launcher/LICENSE similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/LICENSE rename to WelsonJS.Augmented/WelsonJS.Launcher/LICENSE diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/MainForm.Designer.cs b/WelsonJS.Augmented/WelsonJS.Launcher/MainForm.Designer.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/MainForm.Designer.cs rename to WelsonJS.Augmented/WelsonJS.Launcher/MainForm.Designer.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/MainForm.cs b/WelsonJS.Augmented/WelsonJS.Launcher/MainForm.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/MainForm.cs rename to WelsonJS.Augmented/WelsonJS.Launcher/MainForm.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/MainForm.resx b/WelsonJS.Augmented/WelsonJS.Launcher/MainForm.resx similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/MainForm.resx rename to WelsonJS.Augmented/WelsonJS.Launcher/MainForm.resx diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/Program.cs b/WelsonJS.Augmented/WelsonJS.Launcher/Program.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/Program.cs rename to WelsonJS.Augmented/WelsonJS.Launcher/Program.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/Properties/AssemblyInfo.cs b/WelsonJS.Augmented/WelsonJS.Launcher/Properties/AssemblyInfo.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/Properties/AssemblyInfo.cs rename to WelsonJS.Augmented/WelsonJS.Launcher/Properties/AssemblyInfo.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/Properties/Resources.Designer.cs b/WelsonJS.Augmented/WelsonJS.Launcher/Properties/Resources.Designer.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/Properties/Resources.Designer.cs rename to WelsonJS.Augmented/WelsonJS.Launcher/Properties/Resources.Designer.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/Properties/Resources.resx b/WelsonJS.Augmented/WelsonJS.Launcher/Properties/Resources.resx similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/Properties/Resources.resx rename to WelsonJS.Augmented/WelsonJS.Launcher/Properties/Resources.resx diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/Properties/Settings.Designer.cs b/WelsonJS.Augmented/WelsonJS.Launcher/Properties/Settings.Designer.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/Properties/Settings.Designer.cs rename to WelsonJS.Augmented/WelsonJS.Launcher/Properties/Settings.Designer.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/Properties/Settings.settings b/WelsonJS.Augmented/WelsonJS.Launcher/Properties/Settings.settings similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/Properties/Settings.settings rename to WelsonJS.Augmented/WelsonJS.Launcher/Properties/Settings.settings diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/ResourceServer.cs b/WelsonJS.Augmented/WelsonJS.Launcher/ResourceServer.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/ResourceServer.cs rename to WelsonJS.Augmented/WelsonJS.Launcher/ResourceServer.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/ResourceTools/ChromiumDevTools.cs b/WelsonJS.Augmented/WelsonJS.Launcher/ResourceTools/ChromiumDevTools.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/ResourceTools/ChromiumDevTools.cs rename to WelsonJS.Augmented/WelsonJS.Launcher/ResourceTools/ChromiumDevTools.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/ResourceTools/Completion.cs b/WelsonJS.Augmented/WelsonJS.Launcher/ResourceTools/Completion.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/ResourceTools/Completion.cs rename to WelsonJS.Augmented/WelsonJS.Launcher/ResourceTools/Completion.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/ResourceTools/DnsQuery.cs b/WelsonJS.Augmented/WelsonJS.Launcher/ResourceTools/DnsQuery.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/ResourceTools/DnsQuery.cs rename to WelsonJS.Augmented/WelsonJS.Launcher/ResourceTools/DnsQuery.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/ResourceTools/ImageColorPicker.cs b/WelsonJS.Augmented/WelsonJS.Launcher/ResourceTools/ImageColorPicker.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/ResourceTools/ImageColorPicker.cs rename to WelsonJS.Augmented/WelsonJS.Launcher/ResourceTools/ImageColorPicker.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/ResourceTools/IpQuery.cs b/WelsonJS.Augmented/WelsonJS.Launcher/ResourceTools/IpQuery.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/ResourceTools/IpQuery.cs rename to WelsonJS.Augmented/WelsonJS.Launcher/ResourceTools/IpQuery.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/ResourceTools/Settings.cs b/WelsonJS.Augmented/WelsonJS.Launcher/ResourceTools/Settings.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/ResourceTools/Settings.cs rename to WelsonJS.Augmented/WelsonJS.Launcher/ResourceTools/Settings.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/ResourceTools/TwoFactorAuth.cs b/WelsonJS.Augmented/WelsonJS.Launcher/ResourceTools/TwoFactorAuth.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/ResourceTools/TwoFactorAuth.cs rename to WelsonJS.Augmented/WelsonJS.Launcher/ResourceTools/TwoFactorAuth.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/ResourceTools/Whois.cs b/WelsonJS.Augmented/WelsonJS.Launcher/ResourceTools/Whois.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/ResourceTools/Whois.cs rename to WelsonJS.Augmented/WelsonJS.Launcher/ResourceTools/Whois.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/Resources/Catswords.Phantomizer.dll.gz b/WelsonJS.Augmented/WelsonJS.Launcher/Resources/Catswords.Phantomizer.dll.gz similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/Resources/Catswords.Phantomizer.dll.gz rename to WelsonJS.Augmented/WelsonJS.Launcher/Resources/Catswords.Phantomizer.dll.gz diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/Resources/favicon.ico b/WelsonJS.Augmented/WelsonJS.Launcher/Resources/favicon.ico similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/Resources/favicon.ico rename to WelsonJS.Augmented/WelsonJS.Launcher/Resources/favicon.ico diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/Resources/icon_check_32.png b/WelsonJS.Augmented/WelsonJS.Launcher/Resources/icon_check_32.png similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/Resources/icon_check_32.png rename to WelsonJS.Augmented/WelsonJS.Launcher/Resources/icon_check_32.png diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/Resources/icon_community_32.png b/WelsonJS.Augmented/WelsonJS.Launcher/Resources/icon_community_32.png similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/Resources/icon_community_32.png rename to WelsonJS.Augmented/WelsonJS.Launcher/Resources/icon_community_32.png diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/Resources/icon_delete_32.png b/WelsonJS.Augmented/WelsonJS.Launcher/Resources/icon_delete_32.png similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/Resources/icon_delete_32.png rename to WelsonJS.Augmented/WelsonJS.Launcher/Resources/icon_delete_32.png diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/Resources/icon_directory_32.png b/WelsonJS.Augmented/WelsonJS.Launcher/Resources/icon_directory_32.png similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/Resources/icon_directory_32.png rename to WelsonJS.Augmented/WelsonJS.Launcher/Resources/icon_directory_32.png diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/Resources/icon_editor_32.png b/WelsonJS.Augmented/WelsonJS.Launcher/Resources/icon_editor_32.png similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/Resources/icon_editor_32.png rename to WelsonJS.Augmented/WelsonJS.Launcher/Resources/icon_editor_32.png diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/Resources/icon_export_32.png b/WelsonJS.Augmented/WelsonJS.Launcher/Resources/icon_export_32.png similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/Resources/icon_export_32.png rename to WelsonJS.Augmented/WelsonJS.Launcher/Resources/icon_export_32.png diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/Resources/icon_file_32.png b/WelsonJS.Augmented/WelsonJS.Launcher/Resources/icon_file_32.png similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/Resources/icon_file_32.png rename to WelsonJS.Augmented/WelsonJS.Launcher/Resources/icon_file_32.png diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/Resources/icon_import_32.png b/WelsonJS.Augmented/WelsonJS.Launcher/Resources/icon_import_32.png similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/Resources/icon_import_32.png rename to WelsonJS.Augmented/WelsonJS.Launcher/Resources/icon_import_32.png diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/Resources/icon_link_128.png b/WelsonJS.Augmented/WelsonJS.Launcher/Resources/icon_link_128.png similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/Resources/icon_link_128.png rename to WelsonJS.Augmented/WelsonJS.Launcher/Resources/icon_link_128.png diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/Resources/icon_start_32.png b/WelsonJS.Augmented/WelsonJS.Launcher/Resources/icon_start_32.png similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/Resources/icon_start_32.png rename to WelsonJS.Augmented/WelsonJS.Launcher/Resources/icon_start_32.png diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/Resources/icon_zip_128.png b/WelsonJS.Augmented/WelsonJS.Launcher/Resources/icon_zip_128.png similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/Resources/icon_zip_128.png rename to WelsonJS.Augmented/WelsonJS.Launcher/Resources/icon_zip_128.png diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/Telemetry/ITelemetryProvider.cs b/WelsonJS.Augmented/WelsonJS.Launcher/Telemetry/ITelemetryProvider.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/Telemetry/ITelemetryProvider.cs rename to WelsonJS.Augmented/WelsonJS.Launcher/Telemetry/ITelemetryProvider.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/Telemetry/PosthogTelemetryProvider.cs b/WelsonJS.Augmented/WelsonJS.Launcher/Telemetry/PosthogTelemetryProvider.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/Telemetry/PosthogTelemetryProvider.cs rename to WelsonJS.Augmented/WelsonJS.Launcher/Telemetry/PosthogTelemetryProvider.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/Telemetry/TelemetryClient.cs b/WelsonJS.Augmented/WelsonJS.Launcher/Telemetry/TelemetryClient.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/Telemetry/TelemetryClient.cs rename to WelsonJS.Augmented/WelsonJS.Launcher/Telemetry/TelemetryClient.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/Telemetry/TelemetryIdentity.cs b/WelsonJS.Augmented/WelsonJS.Launcher/Telemetry/TelemetryIdentity.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/Telemetry/TelemetryIdentity.cs rename to WelsonJS.Augmented/WelsonJS.Launcher/Telemetry/TelemetryIdentity.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/Telemetry/TelemetryOptions.cs b/WelsonJS.Augmented/WelsonJS.Launcher/Telemetry/TelemetryOptions.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/Telemetry/TelemetryOptions.cs rename to WelsonJS.Augmented/WelsonJS.Launcher/Telemetry/TelemetryOptions.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/Telemetry/TelemetryProviderFactory.cs b/WelsonJS.Augmented/WelsonJS.Launcher/Telemetry/TelemetryProviderFactory.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/Telemetry/TelemetryProviderFactory.cs rename to WelsonJS.Augmented/WelsonJS.Launcher/Telemetry/TelemetryProviderFactory.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/TraceLogger.cs b/WelsonJS.Augmented/WelsonJS.Launcher/TraceLogger.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/TraceLogger.cs rename to WelsonJS.Augmented/WelsonJS.Launcher/TraceLogger.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/WebSocketManager.cs b/WelsonJS.Augmented/WelsonJS.Launcher/WebSocketManager.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/WebSocketManager.cs rename to WelsonJS.Augmented/WelsonJS.Launcher/WebSocketManager.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/WelsonJS.Launcher.csproj b/WelsonJS.Augmented/WelsonJS.Launcher/WelsonJS.Launcher.csproj similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/WelsonJS.Launcher.csproj rename to WelsonJS.Augmented/WelsonJS.Launcher/WelsonJS.Launcher.csproj diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/app.config b/WelsonJS.Augmented/WelsonJS.Launcher/app.config similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/app.config rename to WelsonJS.Augmented/WelsonJS.Launcher/app.config diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/editor.html b/WelsonJS.Augmented/WelsonJS.Launcher/editor.html similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/editor.html rename to WelsonJS.Augmented/WelsonJS.Launcher/editor.html diff --git a/WelsonJS.Toolkit/WelsonJS.Launcher/favicon.ico b/WelsonJS.Augmented/WelsonJS.Launcher/favicon.ico similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Launcher/favicon.ico rename to WelsonJS.Augmented/WelsonJS.Launcher/favicon.ico diff --git a/WelsonJS.Toolkit/WelsonJS.Service/ElasticsearchClient.cs b/WelsonJS.Augmented/WelsonJS.Service/ElasticsearchClient.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Service/ElasticsearchClient.cs rename to WelsonJS.Augmented/WelsonJS.Service/ElasticsearchClient.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Service/FileEventMonitor.cs b/WelsonJS.Augmented/WelsonJS.Service/FileEventMonitor.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Service/FileEventMonitor.cs rename to WelsonJS.Augmented/WelsonJS.Service/FileEventMonitor.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Service/HeartbeatClient.cs b/WelsonJS.Augmented/WelsonJS.Service/HeartbeatClient.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Service/HeartbeatClient.cs rename to WelsonJS.Augmented/WelsonJS.Service/HeartbeatClient.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Service/LICENSE b/WelsonJS.Augmented/WelsonJS.Service/LICENSE similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Service/LICENSE rename to WelsonJS.Augmented/WelsonJS.Service/LICENSE diff --git a/WelsonJS.Toolkit/WelsonJS.Service/Logging/FileLogger.cs b/WelsonJS.Augmented/WelsonJS.Service/Logging/FileLogger.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Service/Logging/FileLogger.cs rename to WelsonJS.Augmented/WelsonJS.Service/Logging/FileLogger.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Service/Logging/FileLoggerExtensions.cs b/WelsonJS.Augmented/WelsonJS.Service/Logging/FileLoggerExtensions.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Service/Logging/FileLoggerExtensions.cs rename to WelsonJS.Augmented/WelsonJS.Service/Logging/FileLoggerExtensions.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Service/Logging/FileLoggerProvider.cs b/WelsonJS.Augmented/WelsonJS.Service/Logging/FileLoggerProvider.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Service/Logging/FileLoggerProvider.cs rename to WelsonJS.Augmented/WelsonJS.Service/Logging/FileLoggerProvider.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Service/Model/FileMatchResult.cs b/WelsonJS.Augmented/WelsonJS.Service/Model/FileMatchResult.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Service/Model/FileMatchResult.cs rename to WelsonJS.Augmented/WelsonJS.Service/Model/FileMatchResult.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Service/Model/ScreenMatchResult.cs b/WelsonJS.Augmented/WelsonJS.Service/Model/ScreenMatchResult.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Service/Model/ScreenMatchResult.cs rename to WelsonJS.Augmented/WelsonJS.Service/Model/ScreenMatchResult.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Service/Program.cs b/WelsonJS.Augmented/WelsonJS.Service/Program.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Service/Program.cs rename to WelsonJS.Augmented/WelsonJS.Service/Program.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Service/ProjectInstaller.Designer.cs b/WelsonJS.Augmented/WelsonJS.Service/ProjectInstaller.Designer.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Service/ProjectInstaller.Designer.cs rename to WelsonJS.Augmented/WelsonJS.Service/ProjectInstaller.Designer.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Service/ProjectInstaller.cs b/WelsonJS.Augmented/WelsonJS.Service/ProjectInstaller.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Service/ProjectInstaller.cs rename to WelsonJS.Augmented/WelsonJS.Service/ProjectInstaller.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Service/ProjectInstaller.resx b/WelsonJS.Augmented/WelsonJS.Service/ProjectInstaller.resx similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Service/ProjectInstaller.resx rename to WelsonJS.Augmented/WelsonJS.Service/ProjectInstaller.resx diff --git a/WelsonJS.Toolkit/WelsonJS.Service/Properties/AssemblyInfo.cs b/WelsonJS.Augmented/WelsonJS.Service/Properties/AssemblyInfo.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Service/Properties/AssemblyInfo.cs rename to WelsonJS.Augmented/WelsonJS.Service/Properties/AssemblyInfo.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Service/Protos/heartbeat.proto b/WelsonJS.Augmented/WelsonJS.Service/Protos/heartbeat.proto similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Service/Protos/heartbeat.proto rename to WelsonJS.Augmented/WelsonJS.Service/Protos/heartbeat.proto diff --git a/WelsonJS.Toolkit/WelsonJS.Service/ScreenMatch.cs b/WelsonJS.Augmented/WelsonJS.Service/ScreenMatch.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Service/ScreenMatch.cs rename to WelsonJS.Augmented/WelsonJS.Service/ScreenMatch.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Service/ServiceMain.Designer.cs b/WelsonJS.Augmented/WelsonJS.Service/ServiceMain.Designer.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Service/ServiceMain.Designer.cs rename to WelsonJS.Augmented/WelsonJS.Service/ServiceMain.Designer.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Service/ServiceMain.cs b/WelsonJS.Augmented/WelsonJS.Service/ServiceMain.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Service/ServiceMain.cs rename to WelsonJS.Augmented/WelsonJS.Service/ServiceMain.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Service/UserVariables.cs b/WelsonJS.Augmented/WelsonJS.Service/UserVariables.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Service/UserVariables.cs rename to WelsonJS.Augmented/WelsonJS.Service/UserVariables.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Service/WelsonJS.Service.csproj b/WelsonJS.Augmented/WelsonJS.Service/WelsonJS.Service.csproj similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Service/WelsonJS.Service.csproj rename to WelsonJS.Augmented/WelsonJS.Service/WelsonJS.Service.csproj diff --git a/WelsonJS.Toolkit/WelsonJS.Service/app.config b/WelsonJS.Augmented/WelsonJS.Service/app.config similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Service/app.config rename to WelsonJS.Augmented/WelsonJS.Service/app.config diff --git a/WelsonJS.Toolkit/WelsonJS.Service/favicon.ico b/WelsonJS.Augmented/WelsonJS.Service/favicon.ico similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Service/favicon.ico rename to WelsonJS.Augmented/WelsonJS.Service/favicon.ico diff --git a/WelsonJS.Toolkit/WelsonJS.Service/packages.config b/WelsonJS.Augmented/WelsonJS.Service/packages.config similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Service/packages.config rename to WelsonJS.Augmented/WelsonJS.Service/packages.config diff --git a/WelsonJS.Toolkit/WelsonJS.Toolkit/BitmapUtils.cs b/WelsonJS.Augmented/WelsonJS.Toolkit/BitmapUtils.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Toolkit/BitmapUtils.cs rename to WelsonJS.Augmented/WelsonJS.Toolkit/BitmapUtils.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Toolkit/Compression/LZ77.cs b/WelsonJS.Augmented/WelsonJS.Toolkit/Compression/LZ77.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Toolkit/Compression/LZ77.cs rename to WelsonJS.Augmented/WelsonJS.Toolkit/Compression/LZ77.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Toolkit/Cryptography/ARIA.cs b/WelsonJS.Augmented/WelsonJS.Toolkit/Cryptography/ARIA.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Toolkit/Cryptography/ARIA.cs rename to WelsonJS.Augmented/WelsonJS.Toolkit/Cryptography/ARIA.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Toolkit/Cryptography/AnsiX923Padding.cs b/WelsonJS.Augmented/WelsonJS.Toolkit/Cryptography/AnsiX923Padding.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Toolkit/Cryptography/AnsiX923Padding.cs rename to WelsonJS.Augmented/WelsonJS.Toolkit/Cryptography/AnsiX923Padding.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Toolkit/Cryptography/HIGHT.cs b/WelsonJS.Augmented/WelsonJS.Toolkit/Cryptography/HIGHT.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Toolkit/Cryptography/HIGHT.cs rename to WelsonJS.Augmented/WelsonJS.Toolkit/Cryptography/HIGHT.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Toolkit/Cryptography/LEA.cs b/WelsonJS.Augmented/WelsonJS.Toolkit/Cryptography/LEA.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Toolkit/Cryptography/LEA.cs rename to WelsonJS.Augmented/WelsonJS.Toolkit/Cryptography/LEA.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Toolkit/Cryptography/PKCS5Padding.cs b/WelsonJS.Augmented/WelsonJS.Toolkit/Cryptography/PKCS5Padding.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Toolkit/Cryptography/PKCS5Padding.cs rename to WelsonJS.Augmented/WelsonJS.Toolkit/Cryptography/PKCS5Padding.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Toolkit/Cryptography/SEED.cs b/WelsonJS.Augmented/WelsonJS.Toolkit/Cryptography/SEED.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Toolkit/Cryptography/SEED.cs rename to WelsonJS.Augmented/WelsonJS.Toolkit/Cryptography/SEED.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Toolkit/IniFile.cs b/WelsonJS.Augmented/WelsonJS.Toolkit/IniFile.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Toolkit/IniFile.cs rename to WelsonJS.Augmented/WelsonJS.Toolkit/IniFile.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Toolkit/LICENSE b/WelsonJS.Augmented/WelsonJS.Toolkit/LICENSE similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Toolkit/LICENSE rename to WelsonJS.Augmented/WelsonJS.Toolkit/LICENSE diff --git a/WelsonJS.Toolkit/WelsonJS.Toolkit/NamedSharedMemory.cs b/WelsonJS.Augmented/WelsonJS.Toolkit/NamedSharedMemory.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Toolkit/NamedSharedMemory.cs rename to WelsonJS.Augmented/WelsonJS.Toolkit/NamedSharedMemory.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Toolkit/ProcessUtils.cs b/WelsonJS.Augmented/WelsonJS.Toolkit/ProcessUtils.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Toolkit/ProcessUtils.cs rename to WelsonJS.Augmented/WelsonJS.Toolkit/ProcessUtils.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Toolkit/Prompt.cs b/WelsonJS.Augmented/WelsonJS.Toolkit/Prompt.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Toolkit/Prompt.cs rename to WelsonJS.Augmented/WelsonJS.Toolkit/Prompt.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Toolkit/Properties/AssemblyInfo.cs b/WelsonJS.Augmented/WelsonJS.Toolkit/Properties/AssemblyInfo.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Toolkit/Properties/AssemblyInfo.cs rename to WelsonJS.Augmented/WelsonJS.Toolkit/Properties/AssemblyInfo.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Toolkit/Serialization/KVSerializer.cs b/WelsonJS.Augmented/WelsonJS.Toolkit/Serialization/KVSerializer.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Toolkit/Serialization/KVSerializer.cs rename to WelsonJS.Augmented/WelsonJS.Toolkit/Serialization/KVSerializer.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Toolkit/Toolkit.cs b/WelsonJS.Augmented/WelsonJS.Toolkit/Toolkit.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Toolkit/Toolkit.cs rename to WelsonJS.Augmented/WelsonJS.Toolkit/Toolkit.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Toolkit/WelsonJS.Toolkit.csproj b/WelsonJS.Augmented/WelsonJS.Toolkit/WelsonJS.Toolkit.csproj similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Toolkit/WelsonJS.Toolkit.csproj rename to WelsonJS.Augmented/WelsonJS.Toolkit/WelsonJS.Toolkit.csproj diff --git a/WelsonJS.Toolkit/WelsonJS.Toolkit/WelsonJS.Toolkit.nuspec b/WelsonJS.Augmented/WelsonJS.Toolkit/WelsonJS.Toolkit.nuspec similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Toolkit/WelsonJS.Toolkit.nuspec rename to WelsonJS.Augmented/WelsonJS.Toolkit/WelsonJS.Toolkit.nuspec diff --git a/WelsonJS.Toolkit/WelsonJS.Toolkit/Window.cs b/WelsonJS.Augmented/WelsonJS.Toolkit/Window.cs similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Toolkit/Window.cs rename to WelsonJS.Augmented/WelsonJS.Toolkit/Window.cs diff --git a/WelsonJS.Toolkit/WelsonJS.Toolkit/assets/docs/README.md b/WelsonJS.Augmented/WelsonJS.Toolkit/assets/docs/README.md similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Toolkit/assets/docs/README.md rename to WelsonJS.Augmented/WelsonJS.Toolkit/assets/docs/README.md diff --git a/WelsonJS.Toolkit/WelsonJS.Toolkit/assets/img/logo.png b/WelsonJS.Augmented/WelsonJS.Toolkit/assets/img/logo.png similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Toolkit/assets/img/logo.png rename to WelsonJS.Augmented/WelsonJS.Toolkit/assets/img/logo.png diff --git a/WelsonJS.Toolkit/WelsonJS.Toolkit/favicon.ico b/WelsonJS.Augmented/WelsonJS.Toolkit/favicon.ico similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Toolkit/favicon.ico rename to WelsonJS.Augmented/WelsonJS.Toolkit/favicon.ico diff --git a/WelsonJS.Toolkit/WelsonJS.Toolkit/welsonjs.snk b/WelsonJS.Augmented/WelsonJS.Toolkit/welsonjs.snk similarity index 100% rename from WelsonJS.Toolkit/WelsonJS.Toolkit/welsonjs.snk rename to WelsonJS.Augmented/WelsonJS.Toolkit/welsonjs.snk diff --git a/WelsonJS.Toolkit/ChakraCore b/WelsonJS.Toolkit/ChakraCore deleted file mode 160000 index 36becec..0000000 --- a/WelsonJS.Toolkit/ChakraCore +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 36becec43348f259e8bee08cf2fcd171bfe56f42