diff --git a/aspnet-core/NuGet.Config b/aspnet-core/NuGet.Config
index d2149a970..ec54fa98b 100644
--- a/aspnet-core/NuGet.Config
+++ b/aspnet-core/NuGet.Config
@@ -2,6 +2,6 @@
-
+
\ No newline at end of file
diff --git a/aspnet-core/modules/wechat/LINGYUN.Abp.WeChat.Work.Application.Contracts/LINGYUN/Abp/WeChat/Work/Authorize/IWeChatWorkAuthorizeAppService.cs b/aspnet-core/modules/wechat/LINGYUN.Abp.WeChat.Work.Application.Contracts/LINGYUN/Abp/WeChat/Work/Authorize/IWeChatWorkAuthorizeAppService.cs
index d6a029606..6252e321b 100644
--- a/aspnet-core/modules/wechat/LINGYUN.Abp.WeChat.Work.Application.Contracts/LINGYUN/Abp/WeChat/Work/Authorize/IWeChatWorkAuthorizeAppService.cs
+++ b/aspnet-core/modules/wechat/LINGYUN.Abp.WeChat.Work.Application.Contracts/LINGYUN/Abp/WeChat/Work/Authorize/IWeChatWorkAuthorizeAppService.cs
@@ -11,7 +11,6 @@ public interface IWeChatWorkAuthorizeAppService : IApplicationService
string scope = "snsapi_base");
Task GenerateOAuth2LoginAsync(
- string appid,
string redirectUri,
string loginType = "ServiceApp",
string agentid = "");
diff --git a/aspnet-core/modules/wechat/LINGYUN.Abp.WeChat.Work.Application/LINGYUN/Abp/WeChat/Work/Authorize/WeChatWorkAuthorizeAppService.cs b/aspnet-core/modules/wechat/LINGYUN.Abp.WeChat.Work.Application/LINGYUN/Abp/WeChat/Work/Authorize/WeChatWorkAuthorizeAppService.cs
index dea24c8f5..4e03aafff 100644
--- a/aspnet-core/modules/wechat/LINGYUN.Abp.WeChat.Work.Application/LINGYUN/Abp/WeChat/Work/Authorize/WeChatWorkAuthorizeAppService.cs
+++ b/aspnet-core/modules/wechat/LINGYUN.Abp.WeChat.Work.Application/LINGYUN/Abp/WeChat/Work/Authorize/WeChatWorkAuthorizeAppService.cs
@@ -1,4 +1,6 @@
-using System;
+using LINGYUN.Abp.WeChat.Work.Settings;
+using System;
+using System.Text;
using System.Threading.Tasks;
using System.Web;
using Volo.Abp;
@@ -25,13 +27,17 @@ public class WeChatWorkAuthorizeAppService : ApplicationService, IWeChatWorkAuth
{
var state = _encryptionService.Encrypt($"agentid={agentid}&redirectUri={redirectUri}&responseType={responseType}&scope={scope}&random={Guid.NewGuid():D}").ToMd5();
- return await _authorizeGenerator.GenerateOAuth2AuthorizeAsync(agentid, HttpUtility.UrlEncode(redirectUri), state, responseType, scope);
+ return await _authorizeGenerator.GenerateOAuth2AuthorizeAsync(agentid, HttpUtility.UrlEncode(redirectUri, Encoding.UTF8), state, responseType, scope);
}
- public async virtual Task GenerateOAuth2LoginAsync(string appid, string redirectUri, string loginType = "ServiceApp", string agentid = "")
+ public async virtual Task GenerateOAuth2LoginAsync(string redirectUri, string loginType = "ServiceApp", string agentid = "")
{
var state = _encryptionService.Encrypt($"agentid={agentid}&redirectUri={redirectUri}&loginType={loginType}&agentid={agentid}&random={Guid.NewGuid():D}").ToMd5();
- return await _authorizeGenerator.GenerateOAuth2LoginAsync(agentid, HttpUtility.UrlEncode(redirectUri), state, loginType, agentid);
+ var corpId = await SettingProvider.GetOrNullAsync(WeChatWorkSettingNames.Connection.CorpId);
+
+ Check.NotNullOrEmpty(corpId, nameof(corpId));
+
+ return await _authorizeGenerator.GenerateOAuth2LoginAsync(corpId, HttpUtility.UrlEncode(redirectUri, Encoding.UTF8), state, loginType, agentid);
}
}
diff --git a/aspnet-core/modules/wechat/LINGYUN.Abp.WeChat.Work.HttpApi/LINGYUN/Abp/WeChat/Work/Authorize/WeChatWorkAuthorizeController.cs b/aspnet-core/modules/wechat/LINGYUN.Abp.WeChat.Work.HttpApi/LINGYUN/Abp/WeChat/Work/Authorize/WeChatWorkAuthorizeController.cs
index 0030893bb..67e9d82be 100644
--- a/aspnet-core/modules/wechat/LINGYUN.Abp.WeChat.Work.HttpApi/LINGYUN/Abp/WeChat/Work/Authorize/WeChatWorkAuthorizeController.cs
+++ b/aspnet-core/modules/wechat/LINGYUN.Abp.WeChat.Work.HttpApi/LINGYUN/Abp/WeChat/Work/Authorize/WeChatWorkAuthorizeController.cs
@@ -2,13 +2,15 @@
using System.Threading.Tasks;
using Volo.Abp;
using Volo.Abp.AspNetCore.Mvc;
+using Volo.Abp.Auditing;
namespace LINGYUN.Abp.WeChat.Work.Authorize;
-[Controller]
-[RemoteService(Name = AbpWeChatWorkRemoteServiceConsts.RemoteServiceName)]
-[Area(AbpWeChatWorkRemoteServiceConsts.ModuleName)]
+[DisableAuditing]
+[RemoteService(false)]
+[ApiExplorerSettings(IgnoreApi = true)]
[Route("api/wechat/work/authorize")]
+[Area(AbpWeChatWorkRemoteServiceConsts.ModuleName)]
public class WeChatWorkAuthorizeController : AbpControllerBase, IWeChatWorkAuthorizeAppService
{
private readonly IWeChatWorkAuthorizeAppService _service;
@@ -32,11 +34,10 @@ public class WeChatWorkAuthorizeController : AbpControllerBase, IWeChatWorkAutho
[HttpGet]
[Route("oauth2/login")]
public virtual Task GenerateOAuth2LoginAsync(
- [FromQuery] string appid,
[FromQuery(Name = "redirect_uri")] string redirectUri,
[FromQuery(Name = "login_type")] string loginType = "ServiceApp",
[FromQuery(Name = "agent_id")] string agentid = "")
{
- return _service.GenerateOAuth2LoginAsync(agentid, redirectUri, loginType, agentid);
+ return _service.GenerateOAuth2LoginAsync(redirectUri, loginType, agentid);
}
}
diff --git a/aspnet-core/services/LY.MicroService.identityServer.HttpApi.Host/Controllers/HomeController.cs b/aspnet-core/services/LY.MicroService.IdentityServer.HttpApi.Host/Controllers/HomeController.cs
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer.HttpApi.Host/Controllers/HomeController.cs
rename to aspnet-core/services/LY.MicroService.IdentityServer.HttpApi.Host/Controllers/HomeController.cs
diff --git a/aspnet-core/services/LY.MicroService.identityServer.HttpApi.Host/Dockerfile b/aspnet-core/services/LY.MicroService.IdentityServer.HttpApi.Host/Dockerfile
similarity index 78%
rename from aspnet-core/services/LY.MicroService.identityServer.HttpApi.Host/Dockerfile
rename to aspnet-core/services/LY.MicroService.IdentityServer.HttpApi.Host/Dockerfile
index 865eea60a..8edce9f5a 100644
--- a/aspnet-core/services/LY.MicroService.identityServer.HttpApi.Host/Dockerfile
+++ b/aspnet-core/services/LY.MicroService.IdentityServer.HttpApi.Host/Dockerfile
@@ -11,4 +11,4 @@ EXPOSE 80/tcp
VOLUME [ "./app/Logs" ]
VOLUME [ "./app/Modules" ]
-ENTRYPOINT ["dotnet", "LY.MicroService.identityServer.HttpApi.Host.dll"]
+ENTRYPOINT ["dotnet", "LY.MicroService.IdentityServer.HttpApi.Host.dll"]
diff --git a/aspnet-core/services/LY.MicroService.identityServer.HttpApi.Host/IdentityServerHttpApiHostModule.Configure.cs b/aspnet-core/services/LY.MicroService.IdentityServer.HttpApi.Host/IdentityServerHttpApiHostModule.Configure.cs
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer.HttpApi.Host/IdentityServerHttpApiHostModule.Configure.cs
rename to aspnet-core/services/LY.MicroService.IdentityServer.HttpApi.Host/IdentityServerHttpApiHostModule.Configure.cs
diff --git a/aspnet-core/services/LY.MicroService.identityServer.HttpApi.Host/IdentityServerHttpApiHostModule.Seeder.cs b/aspnet-core/services/LY.MicroService.IdentityServer.HttpApi.Host/IdentityServerHttpApiHostModule.Seeder.cs
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer.HttpApi.Host/IdentityServerHttpApiHostModule.Seeder.cs
rename to aspnet-core/services/LY.MicroService.IdentityServer.HttpApi.Host/IdentityServerHttpApiHostModule.Seeder.cs
diff --git a/aspnet-core/services/LY.MicroService.identityServer.HttpApi.Host/IdentityServerHttpApiHostModule.cs b/aspnet-core/services/LY.MicroService.IdentityServer.HttpApi.Host/IdentityServerHttpApiHostModule.cs
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer.HttpApi.Host/IdentityServerHttpApiHostModule.cs
rename to aspnet-core/services/LY.MicroService.IdentityServer.HttpApi.Host/IdentityServerHttpApiHostModule.cs
diff --git a/aspnet-core/services/LY.MicroService.identityServer.HttpApi.Host/LY.MicroService.identityServer.HttpApi.Host.csproj b/aspnet-core/services/LY.MicroService.IdentityServer.HttpApi.Host/LY.MicroService.identityServer.HttpApi.Host.csproj
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer.HttpApi.Host/LY.MicroService.identityServer.HttpApi.Host.csproj
rename to aspnet-core/services/LY.MicroService.IdentityServer.HttpApi.Host/LY.MicroService.identityServer.HttpApi.Host.csproj
diff --git a/aspnet-core/services/LY.MicroService.identityServer.HttpApi.Host/Localization/Resources/en.json b/aspnet-core/services/LY.MicroService.IdentityServer.HttpApi.Host/Localization/Resources/en.json
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer.HttpApi.Host/Localization/Resources/en.json
rename to aspnet-core/services/LY.MicroService.IdentityServer.HttpApi.Host/Localization/Resources/en.json
diff --git a/aspnet-core/services/LY.MicroService.identityServer.HttpApi.Host/Localization/Resources/zh-Hans.json b/aspnet-core/services/LY.MicroService.IdentityServer.HttpApi.Host/Localization/Resources/zh-Hans.json
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer.HttpApi.Host/Localization/Resources/zh-Hans.json
rename to aspnet-core/services/LY.MicroService.IdentityServer.HttpApi.Host/Localization/Resources/zh-Hans.json
diff --git a/aspnet-core/services/LY.MicroService.identityServer.HttpApi.Host/Program.cs b/aspnet-core/services/LY.MicroService.IdentityServer.HttpApi.Host/Program.cs
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer.HttpApi.Host/Program.cs
rename to aspnet-core/services/LY.MicroService.IdentityServer.HttpApi.Host/Program.cs
diff --git a/aspnet-core/services/LY.MicroService.identityServer.HttpApi.Host/Properties/launchSettings.json b/aspnet-core/services/LY.MicroService.IdentityServer.HttpApi.Host/Properties/launchSettings.json
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer.HttpApi.Host/Properties/launchSettings.json
rename to aspnet-core/services/LY.MicroService.IdentityServer.HttpApi.Host/Properties/launchSettings.json
diff --git a/aspnet-core/services/LY.MicroService.identityServer.HttpApi.Host/TenantHeaderParamter.cs b/aspnet-core/services/LY.MicroService.IdentityServer.HttpApi.Host/TenantHeaderParamter.cs
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer.HttpApi.Host/TenantHeaderParamter.cs
rename to aspnet-core/services/LY.MicroService.IdentityServer.HttpApi.Host/TenantHeaderParamter.cs
diff --git a/aspnet-core/services/LY.MicroService.identityServer.HttpApi.Host/appsettings.Development.json b/aspnet-core/services/LY.MicroService.IdentityServer.HttpApi.Host/appsettings.Development.json
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer.HttpApi.Host/appsettings.Development.json
rename to aspnet-core/services/LY.MicroService.IdentityServer.HttpApi.Host/appsettings.Development.json
diff --git a/aspnet-core/services/LY.MicroService.identityServer.HttpApi.Host/appsettings.json b/aspnet-core/services/LY.MicroService.IdentityServer.HttpApi.Host/appsettings.json
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer.HttpApi.Host/appsettings.json
rename to aspnet-core/services/LY.MicroService.IdentityServer.HttpApi.Host/appsettings.json
diff --git a/aspnet-core/services/LY.MicroService.identityServer/DataSeeder/IdentityServerDataSeederWorker.cs b/aspnet-core/services/LY.MicroService.IdentityServer/DataSeeder/IdentityServerDataSeederWorker.cs
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/DataSeeder/IdentityServerDataSeederWorker.cs
rename to aspnet-core/services/LY.MicroService.IdentityServer/DataSeeder/IdentityServerDataSeederWorker.cs
diff --git a/aspnet-core/services/LY.MicroService.identityServer/Dockerfile b/aspnet-core/services/LY.MicroService.IdentityServer/Dockerfile
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/Dockerfile
rename to aspnet-core/services/LY.MicroService.IdentityServer/Dockerfile
diff --git a/aspnet-core/services/LY.MicroService.identityServer/EventBus/Handlers/TenantSynchronizer.cs b/aspnet-core/services/LY.MicroService.IdentityServer/EventBus/Handlers/TenantSynchronizer.cs
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/EventBus/Handlers/TenantSynchronizer.cs
rename to aspnet-core/services/LY.MicroService.IdentityServer/EventBus/Handlers/TenantSynchronizer.cs
diff --git a/aspnet-core/services/LY.MicroService.identityServer/IdentityResources/CustomIdentityResources.cs b/aspnet-core/services/LY.MicroService.IdentityServer/IdentityResources/CustomIdentityResources.cs
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/IdentityResources/CustomIdentityResources.cs
rename to aspnet-core/services/LY.MicroService.IdentityServer/IdentityResources/CustomIdentityResources.cs
diff --git a/aspnet-core/services/LY.MicroService.identityServer/IdentityServerModule.Configure.cs b/aspnet-core/services/LY.MicroService.IdentityServer/IdentityServerModule.Configure.cs
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/IdentityServerModule.Configure.cs
rename to aspnet-core/services/LY.MicroService.IdentityServer/IdentityServerModule.Configure.cs
diff --git a/aspnet-core/services/LY.MicroService.identityServer/IdentityServerModule.Seeder.cs b/aspnet-core/services/LY.MicroService.IdentityServer/IdentityServerModule.Seeder.cs
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/IdentityServerModule.Seeder.cs
rename to aspnet-core/services/LY.MicroService.IdentityServer/IdentityServerModule.Seeder.cs
diff --git a/aspnet-core/services/LY.MicroService.identityServer/IdentityServerModule.cs b/aspnet-core/services/LY.MicroService.IdentityServer/IdentityServerModule.cs
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/IdentityServerModule.cs
rename to aspnet-core/services/LY.MicroService.IdentityServer/IdentityServerModule.cs
diff --git a/aspnet-core/services/LY.MicroService.identityServer/LY.MicroService.IdentityServer.csproj b/aspnet-core/services/LY.MicroService.IdentityServer/LY.MicroService.IdentityServer.csproj
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/LY.MicroService.IdentityServer.csproj
rename to aspnet-core/services/LY.MicroService.IdentityServer/LY.MicroService.IdentityServer.csproj
diff --git a/aspnet-core/services/LY.MicroService.identityServer/Localization/Resources/en.json b/aspnet-core/services/LY.MicroService.IdentityServer/Localization/Resources/en.json
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/Localization/Resources/en.json
rename to aspnet-core/services/LY.MicroService.IdentityServer/Localization/Resources/en.json
diff --git a/aspnet-core/services/LY.MicroService.identityServer/Localization/Resources/zh-Hans.json b/aspnet-core/services/LY.MicroService.IdentityServer/Localization/Resources/zh-Hans.json
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/Localization/Resources/zh-Hans.json
rename to aspnet-core/services/LY.MicroService.IdentityServer/Localization/Resources/zh-Hans.json
diff --git a/aspnet-core/services/LY.MicroService.identityServer/Microsoft/Extensions/DependencyInjection/SameSiteCookiesServiceCollectionExtensions.cs b/aspnet-core/services/LY.MicroService.IdentityServer/Microsoft/Extensions/DependencyInjection/SameSiteCookiesServiceCollectionExtensions.cs
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/Microsoft/Extensions/DependencyInjection/SameSiteCookiesServiceCollectionExtensions.cs
rename to aspnet-core/services/LY.MicroService.IdentityServer/Microsoft/Extensions/DependencyInjection/SameSiteCookiesServiceCollectionExtensions.cs
diff --git a/aspnet-core/services/LY.MicroService.identityServer/Pages/Account/Components/ProfileManagementGroup/PersonalInfo/Default.cshtml b/aspnet-core/services/LY.MicroService.IdentityServer/Pages/Account/Components/ProfileManagementGroup/PersonalInfo/Default.cshtml
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/Pages/Account/Components/ProfileManagementGroup/PersonalInfo/Default.cshtml
rename to aspnet-core/services/LY.MicroService.IdentityServer/Pages/Account/Components/ProfileManagementGroup/PersonalInfo/Default.cshtml
diff --git a/aspnet-core/services/LY.MicroService.identityServer/Pages/Account/Components/ProfileManagementGroup/PersonalInfo/Default.js b/aspnet-core/services/LY.MicroService.IdentityServer/Pages/Account/Components/ProfileManagementGroup/PersonalInfo/Default.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/Pages/Account/Components/ProfileManagementGroup/PersonalInfo/Default.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/Pages/Account/Components/ProfileManagementGroup/PersonalInfo/Default.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/Pages/Account/EmailConfirm.cshtml b/aspnet-core/services/LY.MicroService.IdentityServer/Pages/Account/EmailConfirm.cshtml
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/Pages/Account/EmailConfirm.cshtml
rename to aspnet-core/services/LY.MicroService.IdentityServer/Pages/Account/EmailConfirm.cshtml
diff --git a/aspnet-core/services/LY.MicroService.identityServer/Pages/Account/EmailConfirm.cshtml.cs b/aspnet-core/services/LY.MicroService.IdentityServer/Pages/Account/EmailConfirm.cshtml.cs
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/Pages/Account/EmailConfirm.cshtml.cs
rename to aspnet-core/services/LY.MicroService.IdentityServer/Pages/Account/EmailConfirm.cshtml.cs
diff --git a/aspnet-core/services/LY.MicroService.identityServer/Pages/Account/EmailConfirmConfirmation.cshtml b/aspnet-core/services/LY.MicroService.IdentityServer/Pages/Account/EmailConfirmConfirmation.cshtml
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/Pages/Account/EmailConfirmConfirmation.cshtml
rename to aspnet-core/services/LY.MicroService.IdentityServer/Pages/Account/EmailConfirmConfirmation.cshtml
diff --git a/aspnet-core/services/LY.MicroService.identityServer/Pages/Account/EmailConfirmConfirmation.cshtml.cs b/aspnet-core/services/LY.MicroService.IdentityServer/Pages/Account/EmailConfirmConfirmation.cshtml.cs
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/Pages/Account/EmailConfirmConfirmation.cshtml.cs
rename to aspnet-core/services/LY.MicroService.IdentityServer/Pages/Account/EmailConfirmConfirmation.cshtml.cs
diff --git a/aspnet-core/services/LY.MicroService.identityServer/Pages/Account/SendCode.cshtml b/aspnet-core/services/LY.MicroService.IdentityServer/Pages/Account/SendCode.cshtml
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/Pages/Account/SendCode.cshtml
rename to aspnet-core/services/LY.MicroService.IdentityServer/Pages/Account/SendCode.cshtml
diff --git a/aspnet-core/services/LY.MicroService.identityServer/Pages/Account/SendCode.cshtml.cs b/aspnet-core/services/LY.MicroService.IdentityServer/Pages/Account/SendCode.cshtml.cs
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/Pages/Account/SendCode.cshtml.cs
rename to aspnet-core/services/LY.MicroService.IdentityServer/Pages/Account/SendCode.cshtml.cs
diff --git a/aspnet-core/services/LY.MicroService.identityServer/Pages/Account/SendEmailConfirm.cshtml b/aspnet-core/services/LY.MicroService.IdentityServer/Pages/Account/SendEmailConfirm.cshtml
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/Pages/Account/SendEmailConfirm.cshtml
rename to aspnet-core/services/LY.MicroService.IdentityServer/Pages/Account/SendEmailConfirm.cshtml
diff --git a/aspnet-core/services/LY.MicroService.identityServer/Pages/Account/SendEmailConfirm.cshtml.cs b/aspnet-core/services/LY.MicroService.IdentityServer/Pages/Account/SendEmailConfirm.cshtml.cs
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/Pages/Account/SendEmailConfirm.cshtml.cs
rename to aspnet-core/services/LY.MicroService.IdentityServer/Pages/Account/SendEmailConfirm.cshtml.cs
diff --git a/aspnet-core/services/LY.MicroService.identityServer/Pages/Account/TwoFactorSupportedLoginModel.cs b/aspnet-core/services/LY.MicroService.IdentityServer/Pages/Account/TwoFactorSupportedLoginModel.cs
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/Pages/Account/TwoFactorSupportedLoginModel.cs
rename to aspnet-core/services/LY.MicroService.IdentityServer/Pages/Account/TwoFactorSupportedLoginModel.cs
diff --git a/aspnet-core/services/LY.MicroService.identityServer/Pages/Account/UseRecoveryCode.cshtml b/aspnet-core/services/LY.MicroService.IdentityServer/Pages/Account/UseRecoveryCode.cshtml
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/Pages/Account/UseRecoveryCode.cshtml
rename to aspnet-core/services/LY.MicroService.IdentityServer/Pages/Account/UseRecoveryCode.cshtml
diff --git a/aspnet-core/services/LY.MicroService.identityServer/Pages/Account/UseRecoveryCode.cshtml.cs b/aspnet-core/services/LY.MicroService.IdentityServer/Pages/Account/UseRecoveryCode.cshtml.cs
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/Pages/Account/UseRecoveryCode.cshtml.cs
rename to aspnet-core/services/LY.MicroService.IdentityServer/Pages/Account/UseRecoveryCode.cshtml.cs
diff --git a/aspnet-core/services/LY.MicroService.identityServer/Pages/Account/VerifyAuthenticatorCode.cshtml b/aspnet-core/services/LY.MicroService.IdentityServer/Pages/Account/VerifyAuthenticatorCode.cshtml
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/Pages/Account/VerifyAuthenticatorCode.cshtml
rename to aspnet-core/services/LY.MicroService.IdentityServer/Pages/Account/VerifyAuthenticatorCode.cshtml
diff --git a/aspnet-core/services/LY.MicroService.identityServer/Pages/Account/VerifyAuthenticatorCode.cshtml.cs b/aspnet-core/services/LY.MicroService.IdentityServer/Pages/Account/VerifyAuthenticatorCode.cshtml.cs
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/Pages/Account/VerifyAuthenticatorCode.cshtml.cs
rename to aspnet-core/services/LY.MicroService.IdentityServer/Pages/Account/VerifyAuthenticatorCode.cshtml.cs
diff --git a/aspnet-core/services/LY.MicroService.identityServer/Pages/Account/VerifyCode.cshtml b/aspnet-core/services/LY.MicroService.IdentityServer/Pages/Account/VerifyCode.cshtml
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/Pages/Account/VerifyCode.cshtml
rename to aspnet-core/services/LY.MicroService.IdentityServer/Pages/Account/VerifyCode.cshtml
diff --git a/aspnet-core/services/LY.MicroService.identityServer/Pages/Account/VerifyCode.cshtml.cs b/aspnet-core/services/LY.MicroService.IdentityServer/Pages/Account/VerifyCode.cshtml.cs
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/Pages/Account/VerifyCode.cshtml.cs
rename to aspnet-core/services/LY.MicroService.IdentityServer/Pages/Account/VerifyCode.cshtml.cs
diff --git a/aspnet-core/services/LY.MicroService.identityServer/Pages/Index.cshtml b/aspnet-core/services/LY.MicroService.IdentityServer/Pages/Index.cshtml
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/Pages/Index.cshtml
rename to aspnet-core/services/LY.MicroService.IdentityServer/Pages/Index.cshtml
diff --git a/aspnet-core/services/LY.MicroService.identityServer/Pages/Index.cshtml.cs b/aspnet-core/services/LY.MicroService.IdentityServer/Pages/Index.cshtml.cs
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/Pages/Index.cshtml.cs
rename to aspnet-core/services/LY.MicroService.IdentityServer/Pages/Index.cshtml.cs
diff --git a/aspnet-core/services/LY.MicroService.identityServer/Pages/_ViewImports.cshtml b/aspnet-core/services/LY.MicroService.IdentityServer/Pages/_ViewImports.cshtml
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/Pages/_ViewImports.cshtml
rename to aspnet-core/services/LY.MicroService.IdentityServer/Pages/_ViewImports.cshtml
diff --git a/aspnet-core/services/LY.MicroService.identityServer/Program.cs b/aspnet-core/services/LY.MicroService.IdentityServer/Program.cs
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/Program.cs
rename to aspnet-core/services/LY.MicroService.IdentityServer/Program.cs
diff --git a/aspnet-core/services/LY.MicroService.identityServer/Properties/PublishProfiles/FolderProfile.pubxml b/aspnet-core/services/LY.MicroService.IdentityServer/Properties/PublishProfiles/FolderProfile.pubxml
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/Properties/PublishProfiles/FolderProfile.pubxml
rename to aspnet-core/services/LY.MicroService.IdentityServer/Properties/PublishProfiles/FolderProfile.pubxml
diff --git a/aspnet-core/services/LY.MicroService.identityServer/Properties/PublishProfiles/FolderProfile.pubxml.user b/aspnet-core/services/LY.MicroService.IdentityServer/Properties/PublishProfiles/FolderProfile.pubxml.user
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/Properties/PublishProfiles/FolderProfile.pubxml.user
rename to aspnet-core/services/LY.MicroService.IdentityServer/Properties/PublishProfiles/FolderProfile.pubxml.user
diff --git a/aspnet-core/services/LY.MicroService.identityServer/Properties/launchSettings.json b/aspnet-core/services/LY.MicroService.IdentityServer/Properties/launchSettings.json
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/Properties/launchSettings.json
rename to aspnet-core/services/LY.MicroService.IdentityServer/Properties/launchSettings.json
diff --git a/aspnet-core/services/LY.MicroService.identityServer/abp.resourcemapping.js b/aspnet-core/services/LY.MicroService.IdentityServer/abp.resourcemapping.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/abp.resourcemapping.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/abp.resourcemapping.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/appsettings.Development.json b/aspnet-core/services/LY.MicroService.IdentityServer/appsettings.Development.json
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/appsettings.Development.json
rename to aspnet-core/services/LY.MicroService.IdentityServer/appsettings.Development.json
diff --git a/aspnet-core/services/LY.MicroService.identityServer/appsettings.json b/aspnet-core/services/LY.MicroService.IdentityServer/appsettings.json
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/appsettings.json
rename to aspnet-core/services/LY.MicroService.IdentityServer/appsettings.json
diff --git a/aspnet-core/services/LY.MicroService.identityServer/gulpfile.js b/aspnet-core/services/LY.MicroService.IdentityServer/gulpfile.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/gulpfile.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/gulpfile.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/package-lock.json b/aspnet-core/services/LY.MicroService.IdentityServer/package-lock.json
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/package-lock.json
rename to aspnet-core/services/LY.MicroService.IdentityServer/package-lock.json
diff --git a/aspnet-core/services/LY.MicroService.identityServer/package.json b/aspnet-core/services/LY.MicroService.IdentityServer/package.json
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/package.json
rename to aspnet-core/services/LY.MicroService.IdentityServer/package.json
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/@fortawesome/fontawesome-free/css/all.css b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/@fortawesome/fontawesome-free/css/all.css
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/@fortawesome/fontawesome-free/css/all.css
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/@fortawesome/fontawesome-free/css/all.css
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/@fortawesome/fontawesome-free/css/v4-shims.css b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/@fortawesome/fontawesome-free/css/v4-shims.css
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/@fortawesome/fontawesome-free/css/v4-shims.css
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/@fortawesome/fontawesome-free/css/v4-shims.css
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.eot b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.eot
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.eot
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.eot
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.svg b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.svg
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.svg
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.svg
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.ttf
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2 b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-brands-400.woff2
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.eot b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.eot
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.eot
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.eot
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.svg b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.svg
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.svg
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.svg
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.ttf
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2 b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-regular-400.woff2
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.eot b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.eot
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.eot
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.eot
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.svg b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.svg
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.svg
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.svg
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.ttf
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2 b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/@fortawesome/fontawesome-free/webfonts/fa-solid-900.woff2
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/abp/core/abp.css b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/abp/core/abp.css
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/abp/core/abp.css
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/abp/core/abp.css
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/abp/core/abp.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/abp/core/abp.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/abp/core/abp.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/abp/core/abp.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/abp/jquery/abp.jquery.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/abp/jquery/abp.jquery.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/abp/jquery/abp.jquery.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/abp/jquery/abp.jquery.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/abp/luxon/abp.luxon.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/abp/luxon/abp.luxon.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/abp/luxon/abp.luxon.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/abp/luxon/abp.luxon.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/abp/utils/abp-utils.umd.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/abp/utils/abp-utils.umd.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/abp/utils/abp-utils.umd.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/abp/utils/abp-utils.umd.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/abp/utils/abp-utils.umd.js.map b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/abp/utils/abp-utils.umd.js.map
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/abp/utils/abp-utils.umd.js.map
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/abp/utils/abp-utils.umd.js.map
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/abp/utils/abp-utils.umd.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/abp/utils/abp-utils.umd.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/abp/utils/abp-utils.umd.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/abp/utils/abp-utils.umd.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/abp/utils/abp-utils.umd.min.js.map b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/abp/utils/abp-utils.umd.min.js.map
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/abp/utils/abp-utils.umd.min.js.map
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/abp/utils/abp-utils.umd.min.js.map
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/bootstrap-datepicker.css.map b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/bootstrap-datepicker.css.map
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/bootstrap-datepicker.css.map
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/bootstrap-datepicker.css.map
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/bootstrap-datepicker.min.css b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/bootstrap-datepicker.min.css
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/bootstrap-datepicker.min.css
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/bootstrap-datepicker.min.css
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/bootstrap-datepicker.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/bootstrap-datepicker.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/bootstrap-datepicker.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/bootstrap-datepicker.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker-en-CA.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker-en-CA.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker-en-CA.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker-en-CA.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ar-tn.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ar-tn.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ar-tn.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ar-tn.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ar.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ar.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ar.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ar.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.az.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.az.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.az.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.az.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.bg.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.bg.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.bg.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.bg.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.bm.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.bm.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.bm.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.bm.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.bn.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.bn.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.bn.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.bn.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.br.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.br.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.br.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.br.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.bs.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.bs.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.bs.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.bs.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ca.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ca.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ca.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ca.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.cs.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.cs.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.cs.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.cs.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.cy.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.cy.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.cy.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.cy.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.da.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.da.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.da.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.da.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.de.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.de.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.de.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.de.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.el.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.el.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.el.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.el.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-AU.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-AU.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-AU.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-AU.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-CA.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-CA.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-CA.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-CA.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-GB.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-GB.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-GB.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-GB.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-IE.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-IE.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-IE.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-IE.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-NZ.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-NZ.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-NZ.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-NZ.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-ZA.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-ZA.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-ZA.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.en-ZA.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.eo.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.eo.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.eo.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.eo.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.es.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.es.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.es.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.es.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.et.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.et.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.et.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.et.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.eu.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.eu.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.eu.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.eu.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fa.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fa.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fa.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fa.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fi.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fi.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fi.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fi.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fo.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fo.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fo.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fo.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fr-CH.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fr-CH.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fr-CH.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fr-CH.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fr.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fr.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fr.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.fr.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.gl.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.gl.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.gl.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.gl.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.he.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.he.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.he.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.he.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.hi.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.hi.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.hi.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.hi.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.hr.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.hr.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.hr.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.hr.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.hu.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.hu.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.hu.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.hu.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.hy.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.hy.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.hy.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.hy.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.id.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.id.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.id.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.id.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.is.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.is.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.is.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.is.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.it-CH.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.it-CH.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.it-CH.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.it-CH.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.it.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.it.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.it.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.it.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ja.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ja.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ja.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ja.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ka.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ka.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ka.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ka.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.kh.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.kh.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.kh.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.kh.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.kk.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.kk.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.kk.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.kk.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.km.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.km.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.km.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.km.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ko.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ko.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ko.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ko.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.kr.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.kr.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.kr.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.kr.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.lt.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.lt.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.lt.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.lt.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.lv.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.lv.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.lv.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.lv.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.me.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.me.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.me.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.me.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.mk.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.mk.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.mk.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.mk.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.mn.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.mn.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.mn.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.mn.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ms.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ms.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ms.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ms.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.nl-BE.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.nl-BE.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.nl-BE.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.nl-BE.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.nl.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.nl.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.nl.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.nl.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.no.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.no.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.no.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.no.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.oc.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.oc.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.oc.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.oc.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.pl.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.pl.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.pl.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.pl.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.pt-BR.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.pt-BR.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.pt-BR.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.pt-BR.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.pt.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.pt.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.pt.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.pt.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ro.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ro.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ro.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ro.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.rs-latin.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.rs-latin.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.rs-latin.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.rs-latin.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.rs.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.rs.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.rs.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.rs.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ru.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ru.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ru.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ru.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.si.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.si.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.si.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.si.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sk.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sk.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sk.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sk.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sl.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sl.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sl.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sl.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sq.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sq.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sq.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sq.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sr-latin.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sr-latin.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sr-latin.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sr-latin.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sr.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sr.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sr.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sr.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sv.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sv.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sv.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.sv.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ta.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ta.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ta.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.ta.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.tg.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.tg.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.tg.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.tg.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.th.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.th.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.th.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.th.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.tk.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.tk.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.tk.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.tk.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.tr.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.tr.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.tr.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.tr.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.uk.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.uk.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.uk.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.uk.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.uz-cyrl.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.uz-cyrl.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.uz-cyrl.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.uz-cyrl.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.uz-latn.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.uz-latn.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.uz-latn.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.uz-latn.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.vi.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.vi.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.vi.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.vi.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.zh-CN.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.zh-CN.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.zh-CN.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.zh-CN.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.zh-TW.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.zh-TW.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.zh-TW.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-datepicker/locales/bootstrap-datepicker.zh-TW.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-daterangepicker/daterangepicker.css b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-daterangepicker/daterangepicker.css
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-daterangepicker/daterangepicker.css
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-daterangepicker/daterangepicker.css
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-daterangepicker/daterangepicker.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-daterangepicker/daterangepicker.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap-daterangepicker/daterangepicker.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap-daterangepicker/daterangepicker.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap/css/bootstrap.css b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap/css/bootstrap.css
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap/css/bootstrap.css
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap/css/bootstrap.css
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap/css/bootstrap.css.map b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap/css/bootstrap.css.map
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap/css/bootstrap.css.map
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap/css/bootstrap.css.map
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap/css/bootstrap.min.css b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap/css/bootstrap.min.css
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap/css/bootstrap.min.css
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap/css/bootstrap.min.css
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap/css/bootstrap.min.css.map b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap/css/bootstrap.min.css.map
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap/css/bootstrap.min.css.map
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap/css/bootstrap.min.css.map
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap/css/bootstrap.rtl.css b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap/css/bootstrap.rtl.css
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap/css/bootstrap.rtl.css
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap/css/bootstrap.rtl.css
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap/css/bootstrap.rtl.css.map b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap/css/bootstrap.rtl.css.map
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap/css/bootstrap.rtl.css.map
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap/css/bootstrap.rtl.css.map
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap/css/bootstrap.rtl.min.css b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap/css/bootstrap.rtl.min.css
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap/css/bootstrap.rtl.min.css
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap/css/bootstrap.rtl.min.css
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap/css/bootstrap.rtl.min.css.map b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap/css/bootstrap.rtl.min.css.map
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap/css/bootstrap.rtl.min.css.map
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap/css/bootstrap.rtl.min.css.map
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap/js/bootstrap.bundle.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap/js/bootstrap.bundle.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap/js/bootstrap.bundle.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap/js/bootstrap.bundle.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap/js/bootstrap.bundle.js.map b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap/js/bootstrap.bundle.js.map
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap/js/bootstrap.bundle.js.map
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap/js/bootstrap.bundle.js.map
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap/js/bootstrap.bundle.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap/js/bootstrap.bundle.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap/js/bootstrap.bundle.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap/js/bootstrap.bundle.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap/js/bootstrap.bundle.min.js.map b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap/js/bootstrap.bundle.min.js.map
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap/js/bootstrap.bundle.min.js.map
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap/js/bootstrap.bundle.min.js.map
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap/js/bootstrap.enable.popovers.everywhere.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap/js/bootstrap.enable.popovers.everywhere.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap/js/bootstrap.enable.popovers.everywhere.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap/js/bootstrap.enable.popovers.everywhere.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap/js/bootstrap.enable.tooltips.everywhere.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap/js/bootstrap.enable.tooltips.everywhere.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/bootstrap/js/bootstrap.enable.tooltips.everywhere.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/bootstrap/js/bootstrap.enable.tooltips.everywhere.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/datatables.net-bs5/css/dataTables.bootstrap5.css b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/datatables.net-bs5/css/dataTables.bootstrap5.css
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/datatables.net-bs5/css/dataTables.bootstrap5.css
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/datatables.net-bs5/css/dataTables.bootstrap5.css
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/datatables.net-bs5/js/dataTables.bootstrap5.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/datatables.net-bs5/js/dataTables.bootstrap5.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/datatables.net-bs5/js/dataTables.bootstrap5.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/datatables.net-bs5/js/dataTables.bootstrap5.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/datatables.net/js/jquery.dataTables.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/datatables.net/js/jquery.dataTables.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/datatables.net/js/jquery.dataTables.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/datatables.net/js/jquery.dataTables.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-form/jquery.form.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-form/jquery.form.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-form/jquery.form.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-form/jquery.form.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/jquery.validate.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/jquery.validate.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/jquery.validate.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/jquery.validate.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_ar.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_ar.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_ar.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_ar.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_ar.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_ar.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_ar.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_ar.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_az.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_az.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_az.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_az.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_az.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_az.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_az.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_az.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_bg.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_bg.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_bg.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_bg.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_bg.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_bg.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_bg.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_bg.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_bn_BD.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_bn_BD.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_bn_BD.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_bn_BD.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_bn_BD.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_bn_BD.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_bn_BD.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_bn_BD.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_ca.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_ca.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_ca.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_ca.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_ca.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_ca.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_ca.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_ca.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_cs.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_cs.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_cs.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_cs.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_cs.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_cs.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_cs.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_cs.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_da.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_da.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_da.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_da.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_da.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_da.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_da.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_da.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_de.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_de.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_de.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_de.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_de.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_de.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_de.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_de.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_el.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_el.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_el.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_el.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_el.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_el.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_el.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_el.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_es.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_es.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_es.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_es.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_es.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_es.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_es.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_es.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_es_AR.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_es_AR.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_es_AR.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_es_AR.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_es_AR.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_es_AR.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_es_AR.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_es_AR.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_es_PE.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_es_PE.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_es_PE.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_es_PE.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_es_PE.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_es_PE.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_es_PE.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_es_PE.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_et.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_et.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_et.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_et.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_et.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_et.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_et.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_et.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_eu.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_eu.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_eu.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_eu.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_eu.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_eu.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_eu.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_eu.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_fa.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_fa.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_fa.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_fa.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_fa.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_fa.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_fa.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_fa.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_fi.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_fi.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_fi.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_fi.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_fi.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_fi.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_fi.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_fi.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_fr.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_fr.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_fr.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_fr.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_fr.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_fr.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_fr.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_fr.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_ge.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_ge.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_ge.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_ge.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_ge.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_ge.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_ge.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_ge.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_gl.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_gl.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_gl.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_gl.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_gl.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_gl.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_gl.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_gl.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_he.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_he.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_he.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_he.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_he.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_he.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_he.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_he.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_hr.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_hr.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_hr.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_hr.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_hr.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_hr.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_hr.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_hr.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_hu.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_hu.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_hu.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_hu.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_hu.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_hu.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_hu.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_hu.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_hy_AM.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_hy_AM.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_hy_AM.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_hy_AM.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_hy_AM.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_hy_AM.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_hy_AM.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_hy_AM.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_id.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_id.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_id.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_id.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_id.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_id.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_id.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_id.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_is.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_is.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_is.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_is.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_is.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_is.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_is.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_is.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_it.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_it.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_it.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_it.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_it.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_it.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_it.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_it.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_ja.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_ja.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_ja.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_ja.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_ja.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_ja.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_ja.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_ja.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_ka.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_ka.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_ka.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_ka.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_ka.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_ka.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_ka.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_ka.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_kk.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_kk.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_kk.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_kk.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_kk.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_kk.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_kk.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_kk.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_ko.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_ko.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_ko.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_ko.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_ko.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_ko.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_ko.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_ko.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_lt.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_lt.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_lt.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_lt.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_lt.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_lt.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_lt.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_lt.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_lv.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_lv.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_lv.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_lv.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_lv.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_lv.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_lv.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_lv.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_mk.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_mk.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_mk.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_mk.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_mk.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_mk.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_mk.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_mk.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_my.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_my.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_my.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_my.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_my.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_my.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_my.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_my.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_nl.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_nl.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_nl.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_nl.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_nl.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_nl.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_nl.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_nl.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_no.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_no.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_no.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_no.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_no.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_no.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_no.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_no.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_pl.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_pl.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_pl.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_pl.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_pl.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_pl.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_pl.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_pl.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_pt_BR.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_pt_BR.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_pt_BR.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_pt_BR.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_pt_BR.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_pt_BR.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_pt_BR.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_pt_BR.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_pt_PT.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_pt_PT.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_pt_PT.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_pt_PT.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_pt_PT.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_pt_PT.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_pt_PT.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_pt_PT.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_ro.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_ro.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_ro.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_ro.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_ro.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_ro.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_ro.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_ro.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_ru.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_ru.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_ru.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_ru.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_ru.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_ru.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_ru.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_ru.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_sd.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_sd.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_sd.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_sd.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_sd.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_sd.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_sd.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_sd.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_si.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_si.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_si.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_si.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_si.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_si.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_si.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_si.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_sk.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_sk.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_sk.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_sk.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_sk.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_sk.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_sk.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_sk.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_sl.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_sl.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_sl.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_sl.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_sl.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_sl.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_sl.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_sl.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_sr.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_sr.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_sr.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_sr.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_sr.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_sr.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_sr.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_sr.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_sr_lat.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_sr_lat.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_sr_lat.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_sr_lat.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_sr_lat.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_sr_lat.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_sr_lat.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_sr_lat.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_sv.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_sv.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_sv.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_sv.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_sv.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_sv.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_sv.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_sv.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_th.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_th.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_th.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_th.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_th.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_th.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_th.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_th.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_tj.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_tj.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_tj.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_tj.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_tj.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_tj.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_tj.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_tj.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_tr.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_tr.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_tr.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_tr.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_tr.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_tr.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_tr.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_tr.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_uk.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_uk.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_uk.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_uk.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_uk.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_uk.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_uk.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_uk.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_ur.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_ur.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_ur.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_ur.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_ur.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_ur.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_ur.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_ur.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_vi.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_vi.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_vi.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_vi.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_vi.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_vi.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_vi.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_vi.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_zh.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_zh.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_zh.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_zh.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_zh.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_zh.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_zh.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_zh.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_zh_TW.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_zh_TW.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_zh_TW.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_zh_TW.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_zh_TW.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_zh_TW.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/messages_zh_TW.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/messages_zh_TW.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/methods_de.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/methods_de.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/methods_de.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/methods_de.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/methods_de.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/methods_de.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/methods_de.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/methods_de.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/methods_es_CL.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/methods_es_CL.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/methods_es_CL.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/methods_es_CL.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/methods_es_CL.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/methods_es_CL.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/methods_es_CL.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/methods_es_CL.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/methods_fi.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/methods_fi.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/methods_fi.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/methods_fi.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/methods_fi.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/methods_fi.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/methods_fi.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/methods_fi.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/methods_it.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/methods_it.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/methods_it.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/methods_it.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/methods_it.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/methods_it.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/methods_it.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/methods_it.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/methods_nl.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/methods_nl.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/methods_nl.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/methods_nl.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/methods_nl.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/methods_nl.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/methods_nl.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/methods_nl.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/methods_pt.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/methods_pt.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/methods_pt.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/methods_pt.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/methods_pt.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/methods_pt.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery-validation/localization/methods_pt.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery-validation/localization/methods_pt.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery/jquery.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery/jquery.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/jquery/jquery.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/jquery/jquery.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/lodash/lodash.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/lodash/lodash.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/lodash/lodash.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/lodash/lodash.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/luxon/luxon.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/luxon/luxon.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/luxon/luxon.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/luxon/luxon.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/luxon/luxon.js.map b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/luxon/luxon.js.map
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/luxon/luxon.js.map
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/luxon/luxon.js.map
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/luxon/luxon.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/luxon/luxon.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/luxon/luxon.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/luxon/luxon.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/luxon/luxon.min.js.map b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/luxon/luxon.min.js.map
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/luxon/luxon.min.js.map
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/luxon/luxon.min.js.map
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.concat.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.concat.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.concat.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.concat.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.css b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.css
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.css
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.css
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/malihu-custom-scrollbar-plugin/jquery.mCustomScrollbar.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/malihu-custom-scrollbar-plugin/mCSB_buttons.png b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/malihu-custom-scrollbar-plugin/mCSB_buttons.png
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/malihu-custom-scrollbar-plugin/mCSB_buttons.png
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/malihu-custom-scrollbar-plugin/mCSB_buttons.png
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/malihu-custom-scrollbar-plugin/package.json b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/malihu-custom-scrollbar-plugin/package.json
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/malihu-custom-scrollbar-plugin/package.json
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/malihu-custom-scrollbar-plugin/package.json
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/malihu-custom-scrollbar-plugin/readme.md b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/malihu-custom-scrollbar-plugin/readme.md
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/malihu-custom-scrollbar-plugin/readme.md
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/malihu-custom-scrollbar-plugin/readme.md
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/af.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/af.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/af.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/af.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ar-dz.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ar-dz.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ar-dz.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ar-dz.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ar-kw.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ar-kw.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ar-kw.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ar-kw.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ar-ly.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ar-ly.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ar-ly.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ar-ly.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ar-ma.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ar-ma.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ar-ma.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ar-ma.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ar-sa.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ar-sa.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ar-sa.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ar-sa.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ar-tn.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ar-tn.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ar-tn.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ar-tn.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ar.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ar.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ar.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ar.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/az.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/az.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/az.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/az.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/be.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/be.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/be.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/be.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/bg.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/bg.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/bg.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/bg.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/bm.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/bm.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/bm.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/bm.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/bn-bd.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/bn-bd.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/bn-bd.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/bn-bd.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/bn.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/bn.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/bn.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/bn.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/bo.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/bo.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/bo.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/bo.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/br.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/br.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/br.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/br.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/bs.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/bs.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/bs.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/bs.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ca.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ca.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ca.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ca.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/cs.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/cs.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/cs.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/cs.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/cv.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/cv.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/cv.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/cv.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/cy.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/cy.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/cy.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/cy.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/da.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/da.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/da.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/da.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/de-at.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/de-at.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/de-at.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/de-at.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/de-ch.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/de-ch.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/de-ch.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/de-ch.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/de.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/de.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/de.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/de.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/dv.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/dv.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/dv.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/dv.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/el.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/el.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/el.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/el.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/en-au.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/en-au.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/en-au.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/en-au.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/en-ca.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/en-ca.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/en-ca.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/en-ca.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/en-gb.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/en-gb.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/en-gb.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/en-gb.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/en-ie.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/en-ie.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/en-ie.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/en-ie.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/en-il.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/en-il.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/en-il.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/en-il.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/en-in.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/en-in.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/en-in.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/en-in.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/en-nz.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/en-nz.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/en-nz.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/en-nz.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/en-sg.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/en-sg.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/en-sg.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/en-sg.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/eo.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/eo.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/eo.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/eo.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/es-do.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/es-do.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/es-do.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/es-do.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/es-mx.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/es-mx.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/es-mx.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/es-mx.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/es-us.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/es-us.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/es-us.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/es-us.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/es.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/es.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/es.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/es.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/et.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/et.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/et.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/et.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/eu.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/eu.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/eu.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/eu.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/fa.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/fa.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/fa.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/fa.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/fi.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/fi.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/fi.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/fi.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/fil.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/fil.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/fil.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/fil.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/fo.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/fo.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/fo.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/fo.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/fr-ca.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/fr-ca.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/fr-ca.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/fr-ca.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/fr-ch.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/fr-ch.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/fr-ch.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/fr-ch.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/fr.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/fr.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/fr.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/fr.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/fy.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/fy.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/fy.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/fy.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ga.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ga.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ga.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ga.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/gd.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/gd.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/gd.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/gd.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/gl.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/gl.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/gl.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/gl.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/gom-deva.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/gom-deva.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/gom-deva.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/gom-deva.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/gom-latn.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/gom-latn.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/gom-latn.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/gom-latn.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/gu.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/gu.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/gu.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/gu.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/he.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/he.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/he.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/he.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/hi.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/hi.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/hi.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/hi.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/hr.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/hr.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/hr.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/hr.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/hu.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/hu.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/hu.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/hu.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/hy-am.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/hy-am.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/hy-am.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/hy-am.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/id.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/id.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/id.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/id.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/is.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/is.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/is.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/is.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/it-ch.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/it-ch.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/it-ch.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/it-ch.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/it.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/it.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/it.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/it.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ja.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ja.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ja.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ja.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/jv.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/jv.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/jv.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/jv.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ka.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ka.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ka.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ka.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/kk.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/kk.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/kk.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/kk.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/km.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/km.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/km.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/km.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/kn.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/kn.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/kn.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/kn.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ko.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ko.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ko.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ko.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ku.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ku.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ku.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ku.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ky.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ky.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ky.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ky.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/lb.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/lb.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/lb.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/lb.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/lo.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/lo.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/lo.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/lo.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/lt.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/lt.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/lt.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/lt.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/lv.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/lv.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/lv.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/lv.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/me.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/me.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/me.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/me.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/mi.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/mi.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/mi.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/mi.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/mk.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/mk.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/mk.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/mk.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ml.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ml.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ml.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ml.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/mn.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/mn.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/mn.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/mn.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/mr.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/mr.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/mr.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/mr.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ms-my.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ms-my.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ms-my.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ms-my.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ms.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ms.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ms.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ms.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/mt.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/mt.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/mt.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/mt.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/my.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/my.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/my.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/my.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/nb.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/nb.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/nb.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/nb.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ne.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ne.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ne.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ne.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/nl-be.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/nl-be.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/nl-be.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/nl-be.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/nl.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/nl.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/nl.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/nl.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/nn.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/nn.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/nn.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/nn.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/oc-lnc.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/oc-lnc.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/oc-lnc.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/oc-lnc.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/pa-in.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/pa-in.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/pa-in.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/pa-in.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/pl.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/pl.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/pl.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/pl.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/pt-br.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/pt-br.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/pt-br.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/pt-br.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/pt.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/pt.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/pt.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/pt.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ro.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ro.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ro.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ro.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ru.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ru.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ru.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ru.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/sd.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/sd.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/sd.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/sd.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/se.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/se.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/se.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/se.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/si.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/si.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/si.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/si.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/sk.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/sk.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/sk.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/sk.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/sl.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/sl.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/sl.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/sl.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/sq.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/sq.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/sq.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/sq.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/sr-cyrl.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/sr-cyrl.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/sr-cyrl.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/sr-cyrl.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/sr.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/sr.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/sr.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/sr.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ss.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ss.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ss.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ss.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/sv.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/sv.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/sv.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/sv.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/sw.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/sw.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/sw.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/sw.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ta.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ta.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ta.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ta.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/te.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/te.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/te.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/te.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/tet.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/tet.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/tet.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/tet.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/tg.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/tg.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/tg.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/tg.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/th.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/th.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/th.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/th.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/tk.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/tk.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/tk.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/tk.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/tl-ph.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/tl-ph.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/tl-ph.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/tl-ph.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/tlh.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/tlh.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/tlh.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/tlh.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/tr.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/tr.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/tr.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/tr.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/tzl.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/tzl.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/tzl.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/tzl.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/tzm-latn.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/tzm-latn.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/tzm-latn.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/tzm-latn.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/tzm.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/tzm.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/tzm.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/tzm.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ug-cn.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ug-cn.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ug-cn.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ug-cn.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/uk.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/uk.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/uk.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/uk.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ur.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ur.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/ur.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/ur.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/uz-latn.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/uz-latn.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/uz-latn.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/uz-latn.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/uz.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/uz.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/uz.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/uz.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/vi.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/vi.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/vi.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/vi.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/x-pseudo.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/x-pseudo.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/x-pseudo.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/x-pseudo.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/yo.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/yo.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/yo.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/yo.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/zh-cn.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/zh-cn.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/zh-cn.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/zh-cn.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/zh-hk.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/zh-hk.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/zh-hk.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/zh-hk.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/zh-mo.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/zh-mo.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/zh-mo.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/zh-mo.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/zh-tw.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/zh-tw.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/locale/zh-tw.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/locale/zh-tw.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/moment.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/moment.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/moment/moment.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/moment/moment.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/css/select2.min.css b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/css/select2.min.css
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/css/select2.min.css
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/css/select2.min.css
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/af.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/af.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/af.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/af.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/ar.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/ar.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/ar.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/ar.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/az.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/az.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/az.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/az.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/bg.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/bg.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/bg.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/bg.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/bn.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/bn.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/bn.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/bn.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/bs.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/bs.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/bs.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/bs.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/ca.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/ca.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/ca.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/ca.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/cs.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/cs.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/cs.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/cs.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/da.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/da.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/da.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/da.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/de.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/de.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/de.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/de.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/dsb.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/dsb.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/dsb.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/dsb.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/el.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/el.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/el.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/el.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/en.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/en.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/en.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/en.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/es.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/es.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/es.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/es.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/et.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/et.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/et.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/et.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/eu.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/eu.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/eu.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/eu.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/fa.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/fa.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/fa.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/fa.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/fi.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/fi.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/fi.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/fi.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/fr.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/fr.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/fr.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/fr.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/gl.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/gl.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/gl.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/gl.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/he.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/he.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/he.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/he.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/hi.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/hi.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/hi.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/hi.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/hr.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/hr.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/hr.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/hr.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/hsb.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/hsb.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/hsb.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/hsb.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/hu.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/hu.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/hu.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/hu.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/hy.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/hy.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/hy.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/hy.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/id.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/id.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/id.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/id.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/is.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/is.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/is.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/is.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/it.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/it.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/it.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/it.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/ja.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/ja.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/ja.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/ja.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/ka.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/ka.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/ka.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/ka.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/km.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/km.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/km.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/km.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/ko.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/ko.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/ko.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/ko.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/lt.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/lt.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/lt.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/lt.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/lv.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/lv.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/lv.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/lv.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/mk.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/mk.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/mk.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/mk.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/ms.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/ms.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/ms.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/ms.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/nb.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/nb.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/nb.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/nb.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/ne.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/ne.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/ne.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/ne.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/nl.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/nl.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/nl.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/nl.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/pl.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/pl.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/pl.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/pl.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/ps.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/ps.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/ps.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/ps.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/pt-BR.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/pt-BR.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/pt-BR.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/pt-BR.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/pt.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/pt.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/pt.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/pt.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/ro.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/ro.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/ro.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/ro.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/ru.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/ru.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/ru.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/ru.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/sk.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/sk.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/sk.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/sk.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/sl.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/sl.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/sl.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/sl.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/sq.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/sq.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/sq.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/sq.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/sr-Cyrl.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/sr-Cyrl.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/sr-Cyrl.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/sr-Cyrl.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/sr.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/sr.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/sr.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/sr.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/sv.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/sv.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/sv.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/sv.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/th.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/th.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/th.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/th.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/tk.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/tk.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/tk.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/tk.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/tr.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/tr.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/tr.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/tr.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/uk.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/uk.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/uk.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/uk.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/vi.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/vi.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/vi.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/vi.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/zh-CN.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/zh-CN.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/zh-CN.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/zh-CN.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/zh-TW.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/zh-TW.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/i18n/zh-TW.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/i18n/zh-TW.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/select2.full.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/select2.full.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/select2.full.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/select2.full.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/select2.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/select2.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/select2/js/select2.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/select2/js/select2.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/sweetalert2/sweetalert2.all.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/sweetalert2/sweetalert2.all.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/sweetalert2/sweetalert2.all.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/sweetalert2/sweetalert2.all.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/sweetalert2/sweetalert2.all.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/sweetalert2/sweetalert2.all.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/sweetalert2/sweetalert2.all.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/sweetalert2/sweetalert2.all.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/sweetalert2/sweetalert2.css b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/sweetalert2/sweetalert2.css
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/sweetalert2/sweetalert2.css
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/sweetalert2/sweetalert2.css
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/sweetalert2/sweetalert2.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/sweetalert2/sweetalert2.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/sweetalert2/sweetalert2.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/sweetalert2/sweetalert2.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/sweetalert2/sweetalert2.min.css b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/sweetalert2/sweetalert2.min.css
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/sweetalert2/sweetalert2.min.css
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/sweetalert2/sweetalert2.min.css
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/sweetalert2/sweetalert2.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/sweetalert2/sweetalert2.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/sweetalert2/sweetalert2.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/sweetalert2/sweetalert2.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/jquery.timeago.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/jquery.timeago.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/jquery.timeago.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/jquery.timeago.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/README.md b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/README.md
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/README.md
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/README.md
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.af.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.af.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.af.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.af.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.am.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.am.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.am.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.am.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.ar.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.ar.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.ar.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.ar.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.az-short.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.az-short.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.az-short.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.az-short.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.az.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.az.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.az.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.az.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.be.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.be.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.be.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.be.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.bg.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.bg.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.bg.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.bg.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.bs.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.bs.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.bs.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.bs.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.ca.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.ca.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.ca.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.ca.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.cs.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.cs.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.cs.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.cs.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.cy.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.cy.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.cy.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.cy.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.da.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.da.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.da.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.da.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.de-short.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.de-short.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.de-short.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.de-short.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.de.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.de.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.de.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.de.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.dv.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.dv.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.dv.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.dv.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.el.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.el.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.el.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.el.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.en-short.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.en-short.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.en-short.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.en-short.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.en.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.en.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.en.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.en.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.es-short.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.es-short.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.es-short.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.es-short.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.es.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.es.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.es.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.es.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.et.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.et.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.et.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.et.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.eu.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.eu.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.eu.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.eu.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.fa-short.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.fa-short.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.fa-short.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.fa-short.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.fa.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.fa.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.fa.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.fa.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.fi.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.fi.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.fi.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.fi.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.fr-short.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.fr-short.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.fr-short.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.fr-short.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.fr.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.fr.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.fr.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.fr.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.gl.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.gl.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.gl.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.gl.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.he.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.he.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.he.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.he.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.hr.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.hr.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.hr.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.hr.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.hu.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.hu.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.hu.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.hu.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.hy.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.hy.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.hy.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.hy.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.id.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.id.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.id.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.id.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.is.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.is.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.is.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.is.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.it-short.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.it-short.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.it-short.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.it-short.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.it.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.it.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.it.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.it.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.ja.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.ja.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.ja.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.ja.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.jv.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.jv.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.jv.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.jv.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.ko.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.ko.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.ko.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.ko.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.ky.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.ky.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.ky.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.ky.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.lt.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.lt.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.lt.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.lt.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.lv.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.lv.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.lv.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.lv.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.mk.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.mk.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.mk.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.mk.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.nl.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.nl.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.nl.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.nl.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.no.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.no.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.no.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.no.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.pl.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.pl.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.pl.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.pl.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.pt-br-short.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.pt-br-short.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.pt-br-short.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.pt-br-short.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.pt-br.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.pt-br.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.pt-br.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.pt-br.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.pt-short.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.pt-short.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.pt-short.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.pt-short.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.pt.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.pt.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.pt.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.pt.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.ro.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.ro.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.ro.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.ro.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.rs.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.rs.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.rs.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.rs.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.ru.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.ru.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.ru.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.ru.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.rw.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.rw.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.rw.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.rw.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.si.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.si.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.si.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.si.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.sk.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.sk.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.sk.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.sk.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.sl.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.sl.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.sl.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.sl.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.sq.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.sq.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.sq.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.sq.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.sr.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.sr.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.sr.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.sr.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.sv.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.sv.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.sv.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.sv.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.th.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.th.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.th.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.th.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.tr-short.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.tr-short.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.tr-short.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.tr-short.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.tr.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.tr.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.tr.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.tr.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.uk.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.uk.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.uk.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.uk.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.ur.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.ur.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.ur.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.ur.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.uz.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.uz.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.uz.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.uz.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.vi.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.vi.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.vi.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.vi.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.zh-CN.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.zh-CN.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.zh-CN.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.zh-CN.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.zh-TW.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.zh-TW.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/timeago/locales/jquery.timeago.zh-TW.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/timeago/locales/jquery.timeago.zh-TW.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/toastr/toastr.css b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/toastr/toastr.css
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/toastr/toastr.css
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/toastr/toastr.css
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/toastr/toastr.js.map b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/toastr/toastr.js.map
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/toastr/toastr.js.map
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/toastr/toastr.js.map
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/toastr/toastr.min.css b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/toastr/toastr.min.css
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/toastr/toastr.min.css
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/toastr/toastr.min.css
diff --git a/aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/toastr/toastr.min.js b/aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/toastr/toastr.min.js
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/wwwroot/libs/toastr/toastr.min.js
rename to aspnet-core/services/LY.MicroService.IdentityServer/wwwroot/libs/toastr/toastr.min.js
diff --git a/aspnet-core/services/LY.MicroService.identityServer/yarn.lock b/aspnet-core/services/LY.MicroService.IdentityServer/yarn.lock
similarity index 100%
rename from aspnet-core/services/LY.MicroService.identityServer/yarn.lock
rename to aspnet-core/services/LY.MicroService.IdentityServer/yarn.lock