├── .gitattributes ├── .github └── workflows │ ├── publish-docs.yml │ └── publish.yml ├── .gitignore ├── Directory.Build.props ├── LICENSE ├── WeChatManagement.sln ├── WeChatManagement.sln.DotSettings ├── common.props ├── docs ├── MiniPrograms │ ├── README.md │ └── images │ │ ├── MiniProgram.png │ │ ├── MiniProgramUser.png │ │ ├── PcLogin.png │ │ └── UserInfo.png └── README.md ├── modules ├── Common │ ├── .gitattributes │ ├── .gitignore │ ├── .prettierrc │ ├── EasyAbp.WeChatManagement.Common.sln │ ├── EasyAbp.WeChatManagement.Common.sln.DotSettings │ ├── NuGet.Config │ ├── docker-compose.migrations.yml │ ├── docker-compose.override.yml │ ├── docker-compose.yml │ ├── host │ │ └── EasyAbp.WeChatManagement.Common.Host.Shared │ │ │ ├── EasyAbp.WeChatManagement.Common.Host.Shared.csproj │ │ │ ├── FodyWeavers.xml │ │ │ ├── FodyWeavers.xsd │ │ │ └── MultiTenancy │ │ │ └── MultiTenancyConsts.cs │ ├── src │ │ ├── EasyAbp.WeChatManagement.Common.Application.Contracts │ │ │ ├── EasyAbp.WeChatManagement.Common.Application.Contracts.csproj │ │ │ ├── EasyAbp │ │ │ │ └── WeChatManagement │ │ │ │ │ └── Common │ │ │ │ │ ├── Permissions │ │ │ │ │ ├── CommonPermissionDefinitionProvider.cs │ │ │ │ │ └── CommonPermissions.cs │ │ │ │ │ ├── WeChatAppUsers │ │ │ │ │ ├── Dtos │ │ │ │ │ │ └── WeChatAppUserDto.cs │ │ │ │ │ └── IWeChatAppUserAppService.cs │ │ │ │ │ ├── WeChatApps │ │ │ │ │ ├── Dtos │ │ │ │ │ │ ├── CreateWeChatAppDto.cs │ │ │ │ │ │ ├── UpdateWeChatAppDto.cs │ │ │ │ │ │ ├── WeChatAppDto.cs │ │ │ │ │ │ └── WeChatAppGetListInput.cs │ │ │ │ │ └── IWeChatAppAppService.cs │ │ │ │ │ ├── WeChatManagementCommonApplicationContractsModule.cs │ │ │ │ │ └── WeChatManagementRemoteServiceConsts.cs │ │ │ ├── FodyWeavers.xml │ │ │ └── FodyWeavers.xsd │ │ ├── EasyAbp.WeChatManagement.Common.Application │ │ │ ├── EasyAbp.WeChatManagement.Common.Application.csproj │ │ │ ├── EasyAbp │ │ │ │ └── WeChatManagement │ │ │ │ │ └── Common │ │ │ │ │ ├── CommonAppService.cs │ │ │ │ │ ├── CommonApplicationAutoMapperProfile.cs │ │ │ │ │ ├── WeChatAppUsers │ │ │ │ │ └── WeChatAppUserAppService.cs │ │ │ │ │ ├── WeChatApps │ │ │ │ │ └── WeChatAppAppService.cs │ │ │ │ │ └── WeChatManagementCommonApplicationModule.cs │ │ │ ├── FodyWeavers.xml │ │ │ └── FodyWeavers.xsd │ │ ├── EasyAbp.WeChatManagement.Common.Domain.Shared │ │ │ ├── EasyAbp.WeChatManagement.Common.Domain.Shared.csproj │ │ │ ├── EasyAbp │ │ │ │ └── WeChatManagement │ │ │ │ │ └── Common │ │ │ │ │ ├── CommonErrorCodes.cs │ │ │ │ │ ├── Localization │ │ │ │ │ ├── CommonResource.cs │ │ │ │ │ ├── en.json │ │ │ │ │ ├── zh-Hans.json │ │ │ │ │ └── zh-Hant.json │ │ │ │ │ ├── WeChatApps │ │ │ │ │ └── WeChatAppType.cs │ │ │ │ │ ├── WeChatBusinessException.cs │ │ │ │ │ ├── WeChatManagementCommonConsts.cs │ │ │ │ │ └── WeChatManagementCommonDomainSharedModule.cs │ │ │ ├── FodyWeavers.xml │ │ │ └── FodyWeavers.xsd │ │ ├── EasyAbp.WeChatManagement.Common.Domain │ │ │ ├── EasyAbp.WeChatManagement.Common.Domain.csproj │ │ │ ├── EasyAbp │ │ │ │ └── WeChatManagement │ │ │ │ │ └── Common │ │ │ │ │ ├── CommonDbProperties.cs │ │ │ │ │ ├── Settings │ │ │ │ │ ├── CommonSettingDefinitionProvider.cs │ │ │ │ │ └── CommonSettings.cs │ │ │ │ │ ├── WeChatAppUsers │ │ │ │ │ ├── IWeChatAppUserRepository.cs │ │ │ │ │ ├── IWeChatAppUserStore.cs │ │ │ │ │ ├── WeChatAppUser.cs │ │ │ │ │ └── WeChatAppUserCacheItemInvalidator.cs │ │ │ │ │ ├── WeChatApps │ │ │ │ │ ├── IWeChatAppRepository.cs │ │ │ │ │ └── WeChatApp.cs │ │ │ │ │ └── WeChatManagementCommonDomainModule.cs │ │ │ ├── FodyWeavers.xml │ │ │ └── FodyWeavers.xsd │ │ ├── EasyAbp.WeChatManagement.Common.EntityFrameworkCore │ │ │ ├── EasyAbp.WeChatManagement.Common.EntityFrameworkCore.csproj │ │ │ ├── EasyAbp │ │ │ │ └── WeChatManagement │ │ │ │ │ └── Common │ │ │ │ │ ├── EntityFrameworkCore │ │ │ │ │ ├── CommonDbContext.cs │ │ │ │ │ ├── CommonDbContextModelCreatingExtensions.cs │ │ │ │ │ ├── CommonModelBuilderConfigurationOptions.cs │ │ │ │ │ ├── ICommonDbContext.cs │ │ │ │ │ └── WeChatManagementCommonEntityFrameworkCoreModule.cs │ │ │ │ │ ├── WeChatAppUsers │ │ │ │ │ └── WeChatAppUserRepository.cs │ │ │ │ │ └── WeChatApps │ │ │ │ │ ├── DuplicateWeChatAppException.cs │ │ │ │ │ └── WeChatAppRepository.cs │ │ │ ├── FodyWeavers.xml │ │ │ └── FodyWeavers.xsd │ │ ├── EasyAbp.WeChatManagement.Common.HttpApi.Client │ │ │ ├── EasyAbp.WeChatManagement.Common.HttpApi.Client.csproj │ │ │ ├── EasyAbp │ │ │ │ └── WeChatManagement │ │ │ │ │ └── Common │ │ │ │ │ └── WeChatManagementCommonHttpApiClientModule.cs │ │ │ ├── FodyWeavers.xml │ │ │ └── FodyWeavers.xsd │ │ ├── EasyAbp.WeChatManagement.Common.HttpApi │ │ │ ├── EasyAbp.WeChatManagement.Common.HttpApi.csproj │ │ │ ├── EasyAbp │ │ │ │ └── WeChatManagement │ │ │ │ │ └── Common │ │ │ │ │ ├── CommonController.cs │ │ │ │ │ ├── WeChatAppUsers │ │ │ │ │ └── WeChatAppUserController.cs │ │ │ │ │ ├── WeChatApps │ │ │ │ │ └── WeChatAppController.cs │ │ │ │ │ └── WeChatManagementCommonHttpApiModule.cs │ │ │ ├── FodyWeavers.xml │ │ │ └── FodyWeavers.xsd │ │ ├── EasyAbp.WeChatManagement.Common.MongoDB │ │ │ ├── EasyAbp.WeChatManagement.Common.MongoDB.csproj │ │ │ ├── EasyAbp │ │ │ │ └── WeChatManagement │ │ │ │ │ └── Common │ │ │ │ │ └── MongoDB │ │ │ │ │ ├── CommonMongoDbContext.cs │ │ │ │ │ ├── CommonMongoDbContextExtensions.cs │ │ │ │ │ ├── CommonMongoModelBuilderConfigurationOptions.cs │ │ │ │ │ ├── ICommonMongoDbContext.cs │ │ │ │ │ └── WeChatManagementCommonMongoDbModule.cs │ │ │ ├── FodyWeavers.xml │ │ │ └── FodyWeavers.xsd │ │ └── EasyAbp.WeChatManagement.Common.Web │ │ │ ├── CommonWebAutoMapperProfile.cs │ │ │ ├── EasyAbp.WeChatManagement.Common.Web.csproj │ │ │ ├── FodyWeavers.xml │ │ │ ├── FodyWeavers.xsd │ │ │ ├── Menus │ │ │ ├── CommonMenuContributor.cs │ │ │ └── CommonMenus.cs │ │ │ ├── Pages │ │ │ ├── CommonPageModel.cs │ │ │ ├── WeChatManagement │ │ │ │ └── Common │ │ │ │ │ ├── WeChatAppUsers │ │ │ │ │ └── WeChatAppUser │ │ │ │ │ │ ├── Index.cshtml │ │ │ │ │ │ ├── Index.cshtml.cs │ │ │ │ │ │ ├── index.css │ │ │ │ │ │ └── index.js │ │ │ │ │ └── WeChatApps │ │ │ │ │ └── WeChatApp │ │ │ │ │ ├── CreateModal.cshtml │ │ │ │ │ ├── CreateModal.cshtml.cs │ │ │ │ │ ├── EditModal.cshtml │ │ │ │ │ ├── EditModal.cshtml.cs │ │ │ │ │ ├── Index.cshtml │ │ │ │ │ ├── Index.cshtml.cs │ │ │ │ │ ├── ViewModels │ │ │ │ │ ├── CreateWeChatAppViewModel.cs │ │ │ │ │ └── EditWeChatAppViewModel.cs │ │ │ │ │ ├── index.css │ │ │ │ │ └── index.js │ │ │ └── _ViewImports.cshtml │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ └── WeChatManagementCommonWebModule.cs │ └── test │ │ ├── EasyAbp.WeChatManagement.Common.Application.Tests │ │ ├── CommonApplicationTestBase.cs │ │ ├── CommonApplicationTestModule.cs │ │ ├── EasyAbp.WeChatManagement.Common.Application.Tests.csproj │ │ ├── FodyWeavers.xml │ │ ├── FodyWeavers.xsd │ │ ├── WeChatAppUsers │ │ │ └── WeChatAppUserAppServiceTests.cs │ │ └── WeChatApps │ │ │ └── WeChatAppAppServiceTests.cs │ │ ├── EasyAbp.WeChatManagement.Common.Domain.Tests │ │ ├── CommonDomainTestBase.cs │ │ ├── CommonDomainTestModule.cs │ │ ├── EasyAbp.WeChatManagement.Common.Domain.Tests.csproj │ │ ├── FodyWeavers.xml │ │ ├── FodyWeavers.xsd │ │ ├── WeChatAppUsers │ │ │ └── WeChatAppUserDomainTests.cs │ │ └── WeChatApps │ │ │ └── WeChatAppDomainTests.cs │ │ ├── EasyAbp.WeChatManagement.Common.EntityFrameworkCore.Tests │ │ ├── EasyAbp.WeChatManagement.Common.EntityFrameworkCore.Tests.csproj │ │ ├── EntityFrameworkCore │ │ │ ├── CommonEntityFrameworkCoreTestBase.cs │ │ │ ├── CommonEntityFrameworkCoreTestModule.cs │ │ │ ├── WeChatAppUsers │ │ │ │ └── WeChatAppUserRepositoryTests.cs │ │ │ └── WeChatApps │ │ │ │ └── WeChatAppRepositoryTests.cs │ │ ├── FodyWeavers.xml │ │ └── FodyWeavers.xsd │ │ ├── EasyAbp.WeChatManagement.Common.HttpApi.Client.ConsoleTestApp │ │ ├── ClientDemoService.cs │ │ ├── CommonConsoleApiClientModule.cs │ │ ├── ConsoleTestAppHostedService.cs │ │ ├── EasyAbp.WeChatManagement.Common.HttpApi.Client.ConsoleTestApp.csproj │ │ ├── Program.cs │ │ └── appsettings.json │ │ ├── EasyAbp.WeChatManagement.Common.MongoDB.Tests │ │ ├── EasyAbp.WeChatManagement.Common.MongoDB.Tests.csproj │ │ ├── FodyWeavers.xml │ │ ├── FodyWeavers.xsd │ │ └── MongoDB │ │ │ ├── CommonMongoDbTestBase.cs │ │ │ ├── CommonMongoDbTestModule.cs │ │ │ ├── MongoDbFixture.cs │ │ │ └── MongoTestCollection.cs │ │ └── EasyAbp.WeChatManagement.Common.TestBase │ │ ├── CommonDataSeedContributor.cs │ │ ├── CommonTestBase.cs │ │ ├── CommonTestBaseModule.cs │ │ ├── EasyAbp.WeChatManagement.Common.TestBase.csproj │ │ ├── FodyWeavers.xml │ │ ├── FodyWeavers.xsd │ │ └── Security │ │ └── FakeCurrentPrincipalAccessor.cs ├── MiniPrograms │ ├── .gitattributes │ ├── .gitignore │ ├── EasyAbp.WeChatManagement.MiniPrograms.sln │ ├── EasyAbp.WeChatManagement.MiniPrograms.sln.DotSettings │ ├── docker-compose.migrations.yml │ ├── docker-compose.override.yml │ ├── docker-compose.yml │ ├── host │ │ └── EasyAbp.WeChatManagement.MiniPrograms.Host.Shared │ │ │ ├── EasyAbp.WeChatManagement.MiniPrograms.Host.Shared.csproj │ │ │ ├── FodyWeavers.xml │ │ │ ├── FodyWeavers.xsd │ │ │ └── MultiTenancy │ │ │ └── MultiTenancyConsts.cs │ ├── src │ │ ├── EasyAbp.WeChatManagement.MiniPrograms.Application.Contracts │ │ │ ├── EasyAbp.WeChatManagement.MiniPrograms.Application.Contracts.csproj │ │ │ ├── EasyAbp │ │ │ │ └── WeChatManagement │ │ │ │ │ └── MiniPrograms │ │ │ │ │ ├── Identity │ │ │ │ │ ├── Dtos │ │ │ │ │ │ └── BindPhoneNumberInput.cs │ │ │ │ │ └── IProfileAppService.cs │ │ │ │ │ ├── Login │ │ │ │ │ ├── Dtos │ │ │ │ │ │ ├── AuthorizePcInput.cs │ │ │ │ │ │ ├── GetPcLoginACodeOutput.cs │ │ │ │ │ │ ├── LoginInput.cs │ │ │ │ │ │ ├── LoginOutput.cs │ │ │ │ │ │ ├── PcLoginInput.cs │ │ │ │ │ │ ├── PcLoginOutput.cs │ │ │ │ │ │ ├── PcLoginRequestTokensOutput.cs │ │ │ │ │ │ └── RefreshInput.cs │ │ │ │ │ └── ILoginAppService.cs │ │ │ │ │ ├── Permissions │ │ │ │ │ ├── MiniProgramsPermissionDefinitionProvider.cs │ │ │ │ │ └── MiniProgramsPermissions.cs │ │ │ │ │ ├── UserInfos │ │ │ │ │ ├── Dtos │ │ │ │ │ │ └── UserInfoDto.cs │ │ │ │ │ └── IUserInfoAppService.cs │ │ │ │ │ └── WeChatManagementMiniProgramsApplicationContractsModule.cs │ │ │ ├── FodyWeavers.xml │ │ │ └── FodyWeavers.xsd │ │ ├── EasyAbp.WeChatManagement.MiniPrograms.Application │ │ │ ├── EasyAbp.WeChatManagement.MiniPrograms.Application.csproj │ │ │ ├── EasyAbp │ │ │ │ └── WeChatManagement │ │ │ │ │ └── MiniPrograms │ │ │ │ │ ├── Identity │ │ │ │ │ ├── ProfileAppService.cs │ │ │ │ │ └── StaticPhoneNumberTokenProvider.cs │ │ │ │ │ ├── Login │ │ │ │ │ ├── LoginAppService.cs │ │ │ │ │ ├── LoginResultInfoModel.cs │ │ │ │ │ ├── MiniProgramPcLoginAuthorizationCacheItem.cs │ │ │ │ │ ├── MiniProgramPcLoginUserLimitCacheItem.cs │ │ │ │ │ ├── PcLoginAuthorizeTooFrequentlyException.cs │ │ │ │ │ ├── WeChatAccountHasBeenBoundException.cs │ │ │ │ │ └── WeChatAccountHasNotBeenBoundException.cs │ │ │ │ │ ├── MiniProgramsAppService.cs │ │ │ │ │ ├── MiniProgramsApplicationAutoMapperProfile.cs │ │ │ │ │ ├── UserInfos │ │ │ │ │ └── UserInfoAppService.cs │ │ │ │ │ └── WeChatManagementMiniProgramsApplicationModule.cs │ │ │ ├── FodyWeavers.xml │ │ │ └── FodyWeavers.xsd │ │ ├── EasyAbp.WeChatManagement.MiniPrograms.Domain.Ids4 │ │ │ ├── EasyAbp.WeChatManagement.MiniPrograms.Domain.Ids4.csproj │ │ │ ├── EasyAbp │ │ │ │ └── WeChatManagement │ │ │ │ │ └── MiniPrograms │ │ │ │ │ ├── WeChatManagementMiniProgramsDomainIds4Module.cs │ │ │ │ │ └── WeChatMiniProgramGrantValidator.cs │ │ │ ├── FodyWeavers.xml │ │ │ └── FodyWeavers.xsd │ │ ├── EasyAbp.WeChatManagement.MiniPrograms.Domain.OpenIddict │ │ │ ├── EasyAbp.WeChatManagement.MiniPrograms.Domain.OpenIddict.csproj │ │ │ ├── EasyAbp │ │ │ │ └── WeChatManagement │ │ │ │ │ └── MiniPrograms │ │ │ │ │ ├── WeChatManagementMiniProgramsDomainOpenIddictModule.cs │ │ │ │ │ └── WeChatMiniProgramTokenExtensionGrant.cs │ │ │ ├── FodyWeavers.xml │ │ │ └── FodyWeavers.xsd │ │ ├── EasyAbp.WeChatManagement.MiniPrograms.Domain.Shared │ │ │ ├── EasyAbp.WeChatManagement.MiniPrograms.Domain.Shared.csproj │ │ │ ├── EasyAbp │ │ │ │ └── WeChatManagement │ │ │ │ │ └── MiniPrograms │ │ │ │ │ ├── Localization │ │ │ │ │ ├── MiniProgramsResource.cs │ │ │ │ │ ├── en.json │ │ │ │ │ ├── zh-Hans.json │ │ │ │ │ └── zh-Hant.json │ │ │ │ │ ├── MiniProgramsErrorCodes.cs │ │ │ │ │ ├── UserInfos │ │ │ │ │ ├── IUserInfo.cs │ │ │ │ │ └── UserInfoModel.cs │ │ │ │ │ └── WeChatManagementMiniProgramsDomainSharedModule.cs │ │ │ ├── FodyWeavers.xml │ │ │ └── FodyWeavers.xsd │ │ ├── EasyAbp.WeChatManagement.MiniPrograms.Domain │ │ │ ├── EasyAbp.WeChatManagement.MiniPrograms.Domain.csproj │ │ │ ├── EasyAbp │ │ │ │ ├── Abp │ │ │ │ │ └── WeChat │ │ │ │ │ │ └── MiniProgram │ │ │ │ │ │ └── Options │ │ │ │ │ │ └── WeChatManagementMiniProgramAbpWeChatOptionsProvider.cs │ │ │ │ └── WeChatManagement │ │ │ │ │ ├── Common │ │ │ │ │ └── WeChatApps │ │ │ │ │ │ └── WeChatAppRepositoryExtensions.cs │ │ │ │ │ └── MiniPrograms │ │ │ │ │ ├── DefaultMiniProgramLoginNewUserCreator.cs │ │ │ │ │ ├── IMiniProgramLoginNewUserCreator.cs │ │ │ │ │ ├── IMiniProgramLoginProviderProvider.cs │ │ │ │ │ ├── Identity │ │ │ │ │ └── IUniquePhoneNumberIdentityUserRepository.cs │ │ │ │ │ ├── MiniProgramLoginMatchNoUserException.cs │ │ │ │ │ ├── MiniProgramLoginProviderProvider.cs │ │ │ │ │ ├── MiniProgramsDbProperties.cs │ │ │ │ │ ├── NullMiniProgramLoginNewUserCreator.cs │ │ │ │ │ ├── Settings │ │ │ │ │ ├── MiniProgramsSettingDefinitionProvider.cs │ │ │ │ │ └── MiniProgramsSettings.cs │ │ │ │ │ ├── UserInfos │ │ │ │ │ ├── IUserInfoRepository.cs │ │ │ │ │ └── UserInfo.cs │ │ │ │ │ ├── WeChatManagementMiniProgramsDomainModule.cs │ │ │ │ │ └── WeChatMiniProgramConsts.cs │ │ │ ├── FodyWeavers.xml │ │ │ └── FodyWeavers.xsd │ │ ├── EasyAbp.WeChatManagement.MiniPrograms.EntityFrameworkCore │ │ │ ├── EasyAbp.WeChatManagement.MiniPrograms.EntityFrameworkCore.csproj │ │ │ ├── EasyAbp │ │ │ │ └── WeChatManagement │ │ │ │ │ └── MiniPrograms │ │ │ │ │ ├── EntityFrameworkCore │ │ │ │ │ ├── IMiniProgramsDbContext.cs │ │ │ │ │ ├── MiniProgramsDbContext.cs │ │ │ │ │ ├── MiniProgramsDbContextModelCreatingExtensions.cs │ │ │ │ │ ├── MiniProgramsModelBuilderConfigurationOptions.cs │ │ │ │ │ └── WeChatManagementMiniProgramsEntityFrameworkCoreModule.cs │ │ │ │ │ ├── Identity │ │ │ │ │ └── UniquePhoneNumberIdentityUserRepository.cs │ │ │ │ │ └── UserInfos │ │ │ │ │ └── UserInfoRepository.cs │ │ │ ├── FodyWeavers.xml │ │ │ └── FodyWeavers.xsd │ │ ├── EasyAbp.WeChatManagement.MiniPrograms.HttpApi.Client │ │ │ ├── EasyAbp.WeChatManagement.MiniPrograms.HttpApi.Client.csproj │ │ │ ├── EasyAbp │ │ │ │ └── WeChatManagement │ │ │ │ │ └── MiniPrograms │ │ │ │ │ └── WeChatManagementMiniProgramsHttpApiClientModule.cs │ │ │ ├── FodyWeavers.xml │ │ │ └── FodyWeavers.xsd │ │ ├── EasyAbp.WeChatManagement.MiniPrograms.HttpApi │ │ │ ├── EasyAbp.WeChatManagement.MiniPrograms.HttpApi.csproj │ │ │ ├── EasyAbp │ │ │ │ └── WeChatManagement │ │ │ │ │ └── MiniPrograms │ │ │ │ │ ├── Identity │ │ │ │ │ └── ProfileController.cs │ │ │ │ │ ├── Login │ │ │ │ │ └── LoginController.cs │ │ │ │ │ ├── MiniProgramsController.cs │ │ │ │ │ ├── UserInfos │ │ │ │ │ └── UserInfoController.cs │ │ │ │ │ └── WeChatManagementMiniProgramsHttpApiModule.cs │ │ │ ├── FodyWeavers.xml │ │ │ └── FodyWeavers.xsd │ │ ├── EasyAbp.WeChatManagement.MiniPrograms.MongoDB │ │ │ ├── EasyAbp.WeChatManagement.MiniPrograms.MongoDB.csproj │ │ │ ├── EasyAbp │ │ │ │ └── WeChatManagement │ │ │ │ │ └── MiniPrograms │ │ │ │ │ └── MongoDB │ │ │ │ │ ├── IMiniProgramsMongoDbContext.cs │ │ │ │ │ ├── MiniProgramsMongoDbContext.cs │ │ │ │ │ ├── MiniProgramsMongoDbContextExtensions.cs │ │ │ │ │ ├── MiniProgramsMongoModelBuilderConfigurationOptions.cs │ │ │ │ │ └── WeChatManagementMiniProgramsMongoDbModule.cs │ │ │ ├── FodyWeavers.xml │ │ │ └── FodyWeavers.xsd │ │ └── EasyAbp.WeChatManagement.MiniPrograms.Web │ │ │ ├── EasyAbp.WeChatManagement.MiniPrograms.Web.csproj │ │ │ ├── FodyWeavers.xml │ │ │ ├── FodyWeavers.xsd │ │ │ ├── Menus │ │ │ ├── MiniProgramsMenuContributor.cs │ │ │ └── MiniProgramsMenus.cs │ │ │ ├── MiniProgramsWebAutoMapperProfile.cs │ │ │ ├── Pages │ │ │ ├── MiniProgramsPageModel.cs │ │ │ └── WeChatManagement │ │ │ │ └── MiniPrograms │ │ │ │ ├── Components │ │ │ │ └── WeChatMiniProgramPcLoginWidget │ │ │ │ │ ├── Default.cshtml │ │ │ │ │ ├── WeChatMiniProgramPcLoginScriptBundleContributor.cs │ │ │ │ │ ├── WeChatMiniProgramPcLoginStyleBundleContributor.cs │ │ │ │ │ ├── WeChatMiniProgramPcLoginViewModel.cs │ │ │ │ │ ├── WeChatMiniProgramPcLoginWidgetViewComponent.cs │ │ │ │ │ ├── default.css │ │ │ │ │ └── default.js │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ ├── UserInfos │ │ │ │ └── UserInfo │ │ │ │ │ ├── Index.cshtml │ │ │ │ │ ├── Index.cshtml.cs │ │ │ │ │ ├── index.css │ │ │ │ │ └── index.js │ │ │ │ └── _ViewImports.cshtml │ │ │ ├── Properties │ │ │ └── launchSettings.json │ │ │ └── WeChatManagementMiniProgramsWebModule.cs │ └── test │ │ ├── EasyAbp.WeChatManagement.MiniPrograms.Application.Tests │ │ ├── EasyAbp.WeChatManagement.MiniPrograms.Application.Tests.csproj │ │ ├── FodyWeavers.xml │ │ ├── FodyWeavers.xsd │ │ ├── MiniPrograms │ │ │ ├── FakeLoginAppService.cs │ │ │ ├── FakeLoginWeService.cs │ │ │ └── MiniProgramAppServiceTests.cs │ │ ├── MiniProgramsApplicationTestBase.cs │ │ ├── UserInfos │ │ │ └── UserInfoAppServiceTests.cs │ │ └── WeChatManagementMiniProgramsApplicationTestModule.cs │ │ ├── EasyAbp.WeChatManagement.MiniPrograms.Domain.Tests │ │ ├── EasyAbp.WeChatManagement.MiniPrograms.Domain.Tests.csproj │ │ ├── FodyWeavers.xml │ │ ├── FodyWeavers.xsd │ │ ├── MiniProgramsDomainTestBase.cs │ │ ├── UserInfos │ │ │ └── UserInfoDomainTests.cs │ │ └── WeChatManagementMiniProgramsDomainTestModule.cs │ │ ├── EasyAbp.WeChatManagement.MiniPrograms.EntityFrameworkCore.Tests │ │ ├── EasyAbp.WeChatManagement.MiniPrograms.EntityFrameworkCore.Tests.csproj │ │ ├── EntityFrameworkCore │ │ │ ├── MiniProgramsEntityFrameworkCoreTestBase.cs │ │ │ ├── UserInfos │ │ │ │ └── UserInfoRepositoryTests.cs │ │ │ └── WeChatManagementMiniProgramsEntityFrameworkCoreTestModule.cs │ │ ├── FodyWeavers.xml │ │ └── FodyWeavers.xsd │ │ ├── EasyAbp.WeChatManagement.MiniPrograms.HttpApi.Client.ConsoleTestApp │ │ ├── ClientDemoService.cs │ │ ├── ConsoleTestAppHostedService.cs │ │ ├── EasyAbp.WeChatManagement.MiniPrograms.HttpApi.Client.ConsoleTestApp.csproj │ │ ├── Program.cs │ │ ├── WeChatManagementMiniProgramsConsoleApiClientModule.cs │ │ └── appsettings.json │ │ ├── EasyAbp.WeChatManagement.MiniPrograms.MongoDB.Tests │ │ ├── EasyAbp.WeChatManagement.MiniPrograms.MongoDB.Tests.csproj │ │ ├── FodyWeavers.xml │ │ ├── FodyWeavers.xsd │ │ └── MongoDB │ │ │ ├── MiniProgramsMongoDbTestBase.cs │ │ │ ├── MongoDbFixture.cs │ │ │ ├── MongoTestCollection.cs │ │ │ └── WeChatManagementMiniProgramsMongoDbTestModule.cs │ │ └── EasyAbp.WeChatManagement.MiniPrograms.TestBase │ │ ├── EasyAbp.WeChatManagement.MiniPrograms.TestBase.csproj │ │ ├── FodyWeavers.xml │ │ ├── FodyWeavers.xsd │ │ ├── MiniProgramsDataSeedContributor.cs │ │ ├── MiniProgramsTestBase.cs │ │ ├── MiniProgramsTestConsts.cs │ │ ├── Security │ │ └── FakeCurrentPrincipalAccessor.cs │ │ └── WeChatManagementMiniProgramsTestBaseModule.cs └── ThirdPartyPlatforms │ ├── .gitattributes │ ├── .gitignore │ ├── .prettierrc │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.abpmdl.json │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.abpsln.json │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.sln │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.sln.DotSettings │ ├── NuGet.Config │ ├── docker-compose.migrations.yml │ ├── docker-compose.override.yml │ ├── docker-compose.yml │ ├── host │ └── EasyAbp.WeChatManagement.ThirdPartyPlatforms.Host.Shared │ │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.Host.Shared.abppkg.json │ │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.Host.Shared.csproj │ │ ├── FodyWeavers.xml │ │ ├── FodyWeavers.xsd │ │ └── MultiTenancy │ │ └── MultiTenancyConsts.cs │ ├── src │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.Application.Contracts │ │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.Application.Contracts.abppkg.json │ │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.Application.Contracts.csproj │ │ ├── EasyAbp │ │ │ └── WeChatManagement │ │ │ │ └── ThirdPartyPlatforms │ │ │ │ ├── Authorization │ │ │ │ ├── Dtos │ │ │ │ │ ├── HandleCallbackInputDto.cs │ │ │ │ │ ├── HandleCallbackResultDto.cs │ │ │ │ │ ├── PreAuthInputDto.cs │ │ │ │ │ └── PreAuthResultDto.cs │ │ │ │ └── IAuthorizationAppService.cs │ │ │ │ ├── Permissions │ │ │ │ ├── ThirdPartyPlatformsPermissionDefinitionProvider.cs │ │ │ │ └── ThirdPartyPlatformsPermissions.cs │ │ │ │ ├── RequestHandling │ │ │ │ └── IEventHandlingAppService.cs │ │ │ │ └── WeChatManagementThirdPartyPlatformsApplicationContractsModule.cs │ │ ├── FodyWeavers.xml │ │ └── FodyWeavers.xsd │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.Application │ │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.Application.abppkg.json │ │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.Application.csproj │ │ ├── EasyAbp │ │ │ └── WeChatManagement │ │ │ │ └── ThirdPartyPlatforms │ │ │ │ ├── Authorization │ │ │ │ ├── AuthorizationAppService.cs │ │ │ │ ├── Caches │ │ │ │ │ └── WeChatThirdPartyPlatformPreAuthCacheItem.cs │ │ │ │ └── Models │ │ │ │ │ ├── AuthorizerInfoModel.cs │ │ │ │ │ └── GetAuthorizerInfoRequest.cs │ │ │ │ ├── RequestHandling │ │ │ │ └── EventHandlingAppService.cs │ │ │ │ ├── ThirdPartyPlatformsAppService.cs │ │ │ │ ├── ThirdPartyPlatformsApplicationAutoMapperProfile.cs │ │ │ │ └── WeChatManagementThirdPartyPlatformsApplicationModule.cs │ │ ├── FodyWeavers.xml │ │ └── FodyWeavers.xsd │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.Domain.Shared │ │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.Domain.Shared.abppkg.json │ │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.Domain.Shared.csproj │ │ ├── EasyAbp │ │ │ └── WeChatManagement │ │ │ │ └── ThirdPartyPlatforms │ │ │ │ ├── Authorization │ │ │ │ └── ThirdPartyPlatformAuthorizedEto.cs │ │ │ │ ├── Localization │ │ │ │ ├── ThirdPartyPlatformsResource.cs │ │ │ │ ├── en.json │ │ │ │ ├── zh-Hans.json │ │ │ │ └── zh-Hant.json │ │ │ │ ├── ThirdPartyPlatformsErrorCodes.cs │ │ │ │ └── WeChatManagementThirdPartyPlatformsDomainSharedModule.cs │ │ ├── FodyWeavers.xml │ │ └── FodyWeavers.xsd │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.Domain │ │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.Domain.abppkg.json │ │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.Domain.csproj │ │ ├── EasyAbp │ │ │ ├── Abp │ │ │ │ └── WeChat │ │ │ │ │ └── OpenPlatform │ │ │ │ │ └── ThirdPartyPlatform │ │ │ │ │ ├── AuthorizerRefreshToken │ │ │ │ │ └── AuthorizerRefreshTokenStore.cs │ │ │ │ │ ├── EventNotification │ │ │ │ │ ├── UnauthorizedWeChatThirdPartyPlatformAuthEventHandler.cs │ │ │ │ │ └── UpdateAuthorizedWeChatThirdPartyPlatformAuthEventHandler.cs │ │ │ │ │ ├── Options │ │ │ │ │ └── WeChatManagementThirdPartyPlatformAbpWeChatOptionsProvider.cs │ │ │ │ │ └── VerifyTicket │ │ │ │ │ └── ComponentVerifyTicketStore.cs │ │ │ └── WeChatManagement │ │ │ │ ├── Common │ │ │ │ └── WeChatApps │ │ │ │ │ ├── WeChatAppExtensions.cs │ │ │ │ │ └── WeChatAppRepositoryExtensions.cs │ │ │ │ └── ThirdPartyPlatforms │ │ │ │ ├── AuthorizerSecrets │ │ │ │ ├── AuthorizerSecret.cs │ │ │ │ └── IAuthorizerSecretRepository.cs │ │ │ │ ├── Settings │ │ │ │ ├── ThirdPartyPlatformsSettingDefinitionProvider.cs │ │ │ │ └── ThirdPartyPlatformsSettings.cs │ │ │ │ ├── ThirdPartyPlatformsDbProperties.cs │ │ │ │ └── WeChatManagementThirdPartyPlatformsDomainModule.cs │ │ ├── FodyWeavers.xml │ │ └── FodyWeavers.xsd │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.EntityFrameworkCore │ │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.EntityFrameworkCore.abppkg.json │ │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.EntityFrameworkCore.csproj │ │ ├── EasyAbp │ │ │ └── WeChatManagement │ │ │ │ └── ThirdPartyPlatforms │ │ │ │ ├── AuthorizerSecrets │ │ │ │ ├── AuthorizerSecretEfCoreQuerableExtensions.cs │ │ │ │ └── AuthorizerSecretRepository.cs │ │ │ │ └── EntityFrameworkCore │ │ │ │ ├── CategoryIdsListToStringValueConverter.cs │ │ │ │ ├── CategoryIdsListValueComparer.cs │ │ │ │ ├── IThirdPartyPlatformsDbContext.cs │ │ │ │ ├── ThirdPartyPlatformsDbContext.cs │ │ │ │ ├── ThirdPartyPlatformsDbContextModelCreatingExtensions.cs │ │ │ │ └── WeChatManagementThirdPartyPlatformsEntityFrameworkCoreModule.cs │ │ ├── FodyWeavers.xml │ │ └── FodyWeavers.xsd │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.HttpApi.Client │ │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.HttpApi.Client.abppkg.json │ │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.HttpApi.Client.csproj │ │ ├── EasyAbp │ │ │ └── WeChatManagement │ │ │ │ └── ThirdPartyPlatforms │ │ │ │ └── WeChatManagementThirdPartyPlatformsHttpApiClientModule.cs │ │ ├── FodyWeavers.xml │ │ └── FodyWeavers.xsd │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.HttpApi │ │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.HttpApi.abppkg.json │ │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.HttpApi.csproj │ │ ├── EasyAbp │ │ │ └── WeChatManagement │ │ │ │ └── ThirdPartyPlatforms │ │ │ │ ├── ActionResultProviders │ │ │ │ ├── DefaultAuthCallbackActionResultProvider.cs │ │ │ │ └── IAuthCallbackActionResultProvider.cs │ │ │ │ ├── Authorization │ │ │ │ └── AuthorizationController.cs │ │ │ │ ├── Controllers │ │ │ │ └── WeChatThirdPartyPlatformController.cs │ │ │ │ ├── RequestHandling │ │ │ │ ├── EventHandlingController.cs │ │ │ │ └── RemoteWeChatThirdPartyPlatformEventHandlingService.cs │ │ │ │ ├── ThirdPartyPlatformsController.cs │ │ │ │ └── WeChatManagementThirdPartyPlatformsHttpApiModule.cs │ │ ├── FodyWeavers.xml │ │ └── FodyWeavers.xsd │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.Installer │ │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.Installer.csproj │ │ ├── EasyAbp │ │ │ └── WeChatManagement │ │ │ │ └── ThirdPartyPlatforms │ │ │ │ └── WeChatManagementThirdPartyPlatformsInstallerModule.cs │ │ ├── FodyWeavers.xml │ │ └── FodyWeavers.xsd │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.MongoDB │ │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.MongoDB.abppkg.json │ │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.MongoDB.csproj │ │ ├── EasyAbp │ │ │ └── WeChatManagement │ │ │ │ └── ThirdPartyPlatforms │ │ │ │ └── MongoDB │ │ │ │ ├── IThirdPartyPlatformsMongoDbContext.cs │ │ │ │ ├── ThirdPartyPlatformsMongoDbContext.cs │ │ │ │ ├── ThirdPartyPlatformsMongoDbContextExtensions.cs │ │ │ │ └── WeChatManagementThirdPartyPlatformsMongoDbModule.cs │ │ ├── FodyWeavers.xml │ │ └── FodyWeavers.xsd │ └── EasyAbp.WeChatManagement.ThirdPartyPlatforms.Web │ │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.Web.abppkg.json │ │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.Web.csproj │ │ ├── FodyWeavers.xml │ │ ├── FodyWeavers.xsd │ │ ├── Menus │ │ ├── ThirdPartyPlatformsMenuContributor.cs │ │ └── ThirdPartyPlatformsMenus.cs │ │ ├── Pages │ │ ├── ThirdPartyPlatformsPageModel.cs │ │ ├── WeChatManagement │ │ │ └── ThirdPartyPlatforms │ │ │ │ └── Authorization │ │ │ │ ├── CreateRequestModal.cshtml │ │ │ │ ├── CreateRequestModal.cshtml.cs │ │ │ │ ├── Index.cshtml │ │ │ │ ├── Index.cshtml.cs │ │ │ │ ├── ViewModels │ │ │ │ └── AuthorizationViewModel.cs │ │ │ │ ├── index.css │ │ │ │ └── index.js │ │ └── _ViewImports.cshtml │ │ ├── ThirdPartyPlatformsWebAutoMapperProfile.cs │ │ └── WeChatManagementThirdPartyPlatformsWebModule.cs │ └── test │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.Application.Tests │ ├── AuthCallback │ │ └── AuthCallbackAppServiceTests.cs │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.Application.Tests.abppkg.json │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.Application.Tests.csproj │ ├── Fakes │ │ └── FakeThirdPartyPlatformWeService.cs │ ├── FodyWeavers.xml │ ├── FodyWeavers.xsd │ ├── RequestHandling │ │ └── EventHandlingAppServiceTests.cs │ ├── ThirdPartyPlatformsApplicationTestBase.cs │ └── ThirdPartyPlatformsApplicationTestModule.cs │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.Domain.Tests │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.Domain.Tests.abppkg.json │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.Domain.Tests.csproj │ ├── FodyWeavers.xml │ ├── FodyWeavers.xsd │ ├── ThirdPartyPlatformsDomainTestBase.cs │ └── ThirdPartyPlatformsDomainTestModule.cs │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.EntityFrameworkCore.Tests │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.EntityFrameworkCore.Tests.abppkg.json │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.EntityFrameworkCore.Tests.csproj │ ├── EntityFrameworkCore │ │ ├── ThirdPartyPlatformsEntityFrameworkCoreTestBase.cs │ │ └── ThirdPartyPlatformsEntityFrameworkCoreTestModule.cs │ ├── FodyWeavers.xml │ └── FodyWeavers.xsd │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.HttpApi.Client.ConsoleTestApp │ ├── ClientDemoService.cs │ ├── ConsoleTestAppHostedService.cs │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.HttpApi.Client.ConsoleTestApp.abppkg.json │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.HttpApi.Client.ConsoleTestApp.csproj │ ├── Program.cs │ ├── ThirdPartyPlatformsConsoleApiClientModule.cs │ ├── appsettings.json │ └── appsettings.secrets.json │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.MongoDB.Tests │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.MongoDB.Tests.abppkg.json │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.MongoDB.Tests.csproj │ ├── FodyWeavers.xml │ ├── FodyWeavers.xsd │ └── MongoDB │ │ ├── MongoDbFixture.cs │ │ ├── MongoTestCollection.cs │ │ ├── ThirdPartyPlatformsMongoDbTestBase.cs │ │ └── ThirdPartyPlatformsMongoDbTestModule.cs │ └── EasyAbp.WeChatManagement.ThirdPartyPlatforms.TestBase │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.TestBase.abppkg.json │ ├── EasyAbp.WeChatManagement.ThirdPartyPlatforms.TestBase.csproj │ ├── FodyWeavers.xml │ ├── FodyWeavers.xsd │ ├── Security │ └── FakeCurrentPrincipalAccessor.cs │ ├── ThirdPartyPlatformsDataSeedContributor.cs │ ├── ThirdPartyPlatformsTestBase.cs │ ├── ThirdPartyPlatformsTestBaseModule.cs │ └── ThirdPartyPlatformsTestConsts.cs └── samples └── WeChatManagementSample └── aspnet-core ├── .gitattributes ├── .gitignore ├── common.props ├── src ├── WeChatManagementSample.Application.Contracts │ ├── Permissions │ │ ├── WeChatManagementSamplePermissionDefinitionProvider.cs │ │ └── WeChatManagementSamplePermissions.cs │ ├── WeChatManagementSample.Application.Contracts.csproj │ ├── WeChatManagementSampleApplicationContractsModule.cs │ └── WeChatManagementSampleDtoExtensions.cs ├── WeChatManagementSample.Application │ ├── WeChatManagementSample.Application.csproj │ ├── WeChatManagementSampleAppService.cs │ ├── WeChatManagementSampleApplicationAutoMapperProfile.cs │ └── WeChatManagementSampleApplicationModule.cs ├── WeChatManagementSample.DbMigrator │ ├── DbMigratorHostedService.cs │ ├── Program.cs │ ├── WeChatManagementSample.DbMigrator.csproj │ ├── WeChatManagementSampleDbMigratorModule.cs │ └── appsettings.json ├── WeChatManagementSample.Domain.Shared │ ├── Localization │ │ ├── WeChatManagementSample │ │ │ ├── ar.json │ │ │ ├── cs.json │ │ │ ├── en.json │ │ │ ├── pl-PL.json │ │ │ ├── pt-BR.json │ │ │ ├── ru.json │ │ │ ├── sl.json │ │ │ ├── tr.json │ │ │ ├── vi.json │ │ │ ├── zh-Hans.json │ │ │ └── zh-Hant.json │ │ └── WeChatManagementSampleResource.cs │ ├── MultiTenancy │ │ └── MultiTenancyConsts.cs │ ├── WeChatManagementSample.Domain.Shared.csproj │ ├── WeChatManagementSampleDomainErrorCodes.cs │ └── WeChatManagementSampleDomainSharedModule.cs ├── WeChatManagementSample.Domain │ ├── Data │ │ ├── IWeChatManagementSampleDbSchemaMigrator.cs │ │ ├── NullWeChatManagementSampleDbSchemaMigrator.cs │ │ └── WeChatManagementSampleDbMigrationService.cs │ ├── IdentityServer │ │ └── IdentityServerDataSeedContributor.cs │ ├── ObjectExtending │ │ └── WeChatManagementSampleDomainObjectExtensions.cs │ ├── OpenIddict │ │ └── OpenIddictDataSeedContributor.cs │ ├── Settings │ │ ├── WeChatManagementSampleSettingDefinitionProvider.cs │ │ └── WeChatManagementSampleSettings.cs │ ├── WeChatManagementSample.Domain.csproj │ ├── WeChatManagementSampleConsts.cs │ └── WeChatManagementSampleDomainModule.cs ├── WeChatManagementSample.EntityFrameworkCore │ ├── EntityFrameworkCore │ │ ├── EntityFrameworkCoreWeChatManagementSampleDbSchemaMigrator.cs │ │ ├── WeChatManagementSampleDbContext.cs │ │ ├── WeChatManagementSampleDbContextFactory.cs │ │ ├── WeChatManagementSampleEfCoreEntityExtensionMappings.cs │ │ └── WeChatManagementSampleEntityFrameworkCoreModule.cs │ ├── Migrations │ │ ├── 20210826121149_Initial440.Designer.cs │ │ ├── 20210826121149_Initial440.cs │ │ ├── 20210827092621_IntroducedWeChatApp.Designer.cs │ │ ├── 20210827092621_IntroducedWeChatApp.cs │ │ ├── 20220103123027_UpgradedToAbp5.Designer.cs │ │ ├── 20220103123027_UpgradedToAbp5.cs │ │ ├── 20220210065137_UpgradedToAbp5_1_3.Designer.cs │ │ ├── 20220210065137_UpgradedToAbp5_1_3.cs │ │ ├── 20221114131947_AddedOpenIddictModule.Designer.cs │ │ ├── 20221114131947_AddedOpenIddictModule.cs │ │ ├── 20221213154146_AddedAuthorizerSecretProperty.Designer.cs │ │ ├── 20221213154146_AddedAuthorizerSecretProperty.cs │ │ ├── 20221213161404_AddedCategoryIdsProperty.Designer.cs │ │ ├── 20221213161404_AddedCategoryIdsProperty.cs │ │ ├── 20221214093441_RemovedEncryptedAccessTokenProperty.Designer.cs │ │ ├── 20221214093441_RemovedEncryptedAccessTokenProperty.cs │ │ ├── 20221216054118_RenamedToComponentWeChatAppId.Designer.cs │ │ ├── 20221216054118_RenamedToComponentWeChatAppId.cs │ │ ├── 20221219112342_MadeSecretsEncrypted.Designer.cs │ │ ├── 20221219112342_MadeSecretsEncrypted.cs │ │ ├── 20230113030947_UpgradedToAbp7.Designer.cs │ │ ├── 20230113030947_UpgradedToAbp7.cs │ │ ├── 20230323122921_UpgradedToAbp_7_1.Designer.cs │ │ ├── 20230323122921_UpgradedToAbp_7_1.cs │ │ ├── 20230504074427_UpgradedToAbp_7_2.Designer.cs │ │ ├── 20230504074427_UpgradedToAbp_7_2.cs │ │ ├── 20231227115545_UpgradedToAbp_8_0.Designer.cs │ │ ├── 20231227115545_UpgradedToAbp_8_0.cs │ │ ├── 20240414210632_UpgradedToAbp_8_1.Designer.cs │ │ ├── 20240414210632_UpgradedToAbp_8_1.cs │ │ ├── 20240730133119_UpgradedToAbp_8_2.Designer.cs │ │ ├── 20240730133119_UpgradedToAbp_8_2.cs │ │ ├── 20241229144918_UpgradedToAbp_9_0.Designer.cs │ │ ├── 20241229144918_UpgradedToAbp_9_0.cs │ │ ├── 20250331085722_Upgraded_To_Abp_9_1.Designer.cs │ │ ├── 20250331085722_Upgraded_To_Abp_9_1.cs │ │ ├── 20250701120027_Upgraded_To_Abp_9_2.Designer.cs │ │ ├── 20250701120027_Upgraded_To_Abp_9_2.cs │ │ ├── 20250909193716_Upgraded_To_Abp_9_3.Designer.cs │ │ ├── 20250909193716_Upgraded_To_Abp_9_3.cs │ │ └── WeChatManagementSampleDbContextModelSnapshot.cs │ └── WeChatManagementSample.EntityFrameworkCore.csproj ├── WeChatManagementSample.HttpApi.Client │ ├── WeChatManagementSample.HttpApi.Client.csproj │ └── WeChatManagementSampleHttpApiClientModule.cs ├── WeChatManagementSample.HttpApi │ ├── Controllers │ │ └── WeChatManagementSampleController.cs │ ├── Models │ │ └── Test │ │ │ └── TestModel.cs │ ├── WeChatManagementSample.HttpApi.csproj │ └── WeChatManagementSampleHttpApiModule.cs ├── WeChatManagementSample.Web.Ids4 │ ├── Menus │ │ └── WeChatManagementSampleMenuContributor.cs │ ├── Pages │ │ ├── Account │ │ │ ├── Login.cshtml │ │ │ └── Login.cshtml.cs │ │ ├── Index.cshtml │ │ ├── Index.cshtml.cs │ │ ├── Index.css │ │ ├── Index.js │ │ ├── WeChatManagementSamplePageModel.cs │ │ └── _ViewImports.cshtml │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Views │ │ └── _ViewImports.cshtml │ ├── WeChatManagementSample.Web.Ids4.csproj │ ├── WeChatManagementSampleBrandingProvider.cs │ ├── WeChatManagementSampleWebAutoMapperProfile.cs │ ├── WeChatManagementSampleWebIds4Module.cs │ ├── abp.resourcemapping.js │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── gulpfile.js │ ├── package.json │ ├── tempkey.jwk │ ├── tempkey.rsa │ ├── wwwroot │ │ └── libs │ │ │ ├── @fortawesome │ │ │ └── fontawesome-free │ │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ └── v4-shims.css │ │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ ├── fa-v4compatibility.ttf │ │ │ │ └── fa-v4compatibility.woff2 │ │ │ ├── abp │ │ │ ├── core │ │ │ │ ├── abp.css │ │ │ │ └── abp.js │ │ │ ├── jquery │ │ │ │ └── abp.jquery.js │ │ │ ├── luxon │ │ │ │ └── abp.luxon.js │ │ │ └── utils │ │ │ │ ├── abp-utils.umd.js │ │ │ │ ├── abp-utils.umd.js.map │ │ │ │ ├── abp-utils.umd.min.js │ │ │ │ └── abp-utils.umd.min.js.map │ │ │ ├── bootstrap-datepicker │ │ │ ├── bootstrap-datepicker.css.map │ │ │ ├── bootstrap-datepicker.min.css │ │ │ ├── bootstrap-datepicker.min.js │ │ │ └── locales │ │ │ │ ├── bootstrap-datepicker-en-CA.min.js │ │ │ │ ├── bootstrap-datepicker.ar-DZ.min.js │ │ │ │ ├── bootstrap-datepicker.ar-tn.min.js │ │ │ │ ├── bootstrap-datepicker.ar.min.js │ │ │ │ ├── bootstrap-datepicker.az.min.js │ │ │ │ ├── bootstrap-datepicker.bg.min.js │ │ │ │ ├── bootstrap-datepicker.bm.min.js │ │ │ │ ├── bootstrap-datepicker.bn.min.js │ │ │ │ ├── bootstrap-datepicker.br.min.js │ │ │ │ ├── bootstrap-datepicker.bs.min.js │ │ │ │ ├── bootstrap-datepicker.ca.min.js │ │ │ │ ├── bootstrap-datepicker.cs.min.js │ │ │ │ ├── bootstrap-datepicker.cy.min.js │ │ │ │ ├── bootstrap-datepicker.da.min.js │ │ │ │ ├── bootstrap-datepicker.de.min.js │ │ │ │ ├── bootstrap-datepicker.el.min.js │ │ │ │ ├── bootstrap-datepicker.en-AU.min.js │ │ │ │ ├── bootstrap-datepicker.en-CA.min.js │ │ │ │ ├── bootstrap-datepicker.en-GB.min.js │ │ │ │ ├── bootstrap-datepicker.en-IE.min.js │ │ │ │ ├── bootstrap-datepicker.en-NZ.min.js │ │ │ │ ├── bootstrap-datepicker.en-US.min.js │ │ │ │ ├── bootstrap-datepicker.en-ZA.min.js │ │ │ │ ├── bootstrap-datepicker.eo.min.js │ │ │ │ ├── bootstrap-datepicker.es.min.js │ │ │ │ ├── bootstrap-datepicker.et.min.js │ │ │ │ ├── bootstrap-datepicker.eu.min.js │ │ │ │ ├── bootstrap-datepicker.fa.min.js │ │ │ │ ├── bootstrap-datepicker.fi.min.js │ │ │ │ ├── bootstrap-datepicker.fo.min.js │ │ │ │ ├── bootstrap-datepicker.fr-CH.min.js │ │ │ │ ├── bootstrap-datepicker.fr.min.js │ │ │ │ ├── bootstrap-datepicker.gl.min.js │ │ │ │ ├── bootstrap-datepicker.he.min.js │ │ │ │ ├── bootstrap-datepicker.hi.min.js │ │ │ │ ├── bootstrap-datepicker.hr.min.js │ │ │ │ ├── bootstrap-datepicker.hu.min.js │ │ │ │ ├── bootstrap-datepicker.hy.min.js │ │ │ │ ├── bootstrap-datepicker.id.min.js │ │ │ │ ├── bootstrap-datepicker.is.min.js │ │ │ │ ├── bootstrap-datepicker.it-CH.min.js │ │ │ │ ├── bootstrap-datepicker.it.min.js │ │ │ │ ├── bootstrap-datepicker.ja.min.js │ │ │ │ ├── bootstrap-datepicker.ka.min.js │ │ │ │ ├── bootstrap-datepicker.kh.min.js │ │ │ │ ├── bootstrap-datepicker.kk.min.js │ │ │ │ ├── bootstrap-datepicker.km.min.js │ │ │ │ ├── bootstrap-datepicker.ko.min.js │ │ │ │ ├── bootstrap-datepicker.kr.min.js │ │ │ │ ├── bootstrap-datepicker.lt.min.js │ │ │ │ ├── bootstrap-datepicker.lv.min.js │ │ │ │ ├── bootstrap-datepicker.me.min.js │ │ │ │ ├── bootstrap-datepicker.mk.min.js │ │ │ │ ├── bootstrap-datepicker.mn.min.js │ │ │ │ ├── bootstrap-datepicker.mr.min.js │ │ │ │ ├── bootstrap-datepicker.ms.min.js │ │ │ │ ├── bootstrap-datepicker.nl-BE.min.js │ │ │ │ ├── bootstrap-datepicker.nl.min.js │ │ │ │ ├── bootstrap-datepicker.no.min.js │ │ │ │ ├── bootstrap-datepicker.oc.min.js │ │ │ │ ├── bootstrap-datepicker.pl.min.js │ │ │ │ ├── bootstrap-datepicker.pt-BR.min.js │ │ │ │ ├── bootstrap-datepicker.pt.min.js │ │ │ │ ├── bootstrap-datepicker.ro.min.js │ │ │ │ ├── bootstrap-datepicker.rs-latin.min.js │ │ │ │ ├── bootstrap-datepicker.rs.min.js │ │ │ │ ├── bootstrap-datepicker.ru.min.js │ │ │ │ ├── bootstrap-datepicker.si.min.js │ │ │ │ ├── bootstrap-datepicker.sk.min.js │ │ │ │ ├── bootstrap-datepicker.sl.min.js │ │ │ │ ├── bootstrap-datepicker.sq.min.js │ │ │ │ ├── bootstrap-datepicker.sr-latin.min.js │ │ │ │ ├── bootstrap-datepicker.sr.min.js │ │ │ │ ├── bootstrap-datepicker.sv.min.js │ │ │ │ ├── bootstrap-datepicker.sw.min.js │ │ │ │ ├── bootstrap-datepicker.ta.min.js │ │ │ │ ├── bootstrap-datepicker.tg.min.js │ │ │ │ ├── bootstrap-datepicker.th.min.js │ │ │ │ ├── bootstrap-datepicker.tk.min.js │ │ │ │ ├── bootstrap-datepicker.tr.min.js │ │ │ │ ├── bootstrap-datepicker.uk.min.js │ │ │ │ ├── bootstrap-datepicker.uz-cyrl.min.js │ │ │ │ ├── bootstrap-datepicker.uz-latn.min.js │ │ │ │ ├── bootstrap-datepicker.vi.min.js │ │ │ │ ├── bootstrap-datepicker.zh-CN.min.js │ │ │ │ └── bootstrap-datepicker.zh-TW.min.js │ │ │ ├── bootstrap-daterangepicker │ │ │ ├── daterangepicker.css │ │ │ └── daterangepicker.js │ │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ ├── bootstrap.rtl.css │ │ │ │ ├── bootstrap.rtl.css.map │ │ │ │ ├── bootstrap.rtl.min.css │ │ │ │ └── bootstrap.rtl.min.css.map │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ ├── bootstrap.enable.popovers.everywhere.js │ │ │ │ └── bootstrap.enable.tooltips.everywhere.js │ │ │ ├── datatables.net-bs5 │ │ │ ├── css │ │ │ │ └── dataTables.bootstrap5.css │ │ │ └── js │ │ │ │ └── dataTables.bootstrap5.js │ │ │ ├── datatables.net │ │ │ └── js │ │ │ │ └── dataTables.min.js │ │ │ ├── jquery-form │ │ │ └── jquery.form.min.js │ │ │ ├── jquery-validation-unobtrusive │ │ │ └── jquery.validate.unobtrusive.js │ │ │ ├── jquery-validation │ │ │ ├── jquery.validate.js │ │ │ └── localization │ │ │ │ ├── messages_ar.js │ │ │ │ ├── messages_ar.min.js │ │ │ │ ├── messages_az.js │ │ │ │ ├── messages_az.min.js │ │ │ │ ├── messages_bg.js │ │ │ │ ├── messages_bg.min.js │ │ │ │ ├── messages_bn_BD.js │ │ │ │ ├── messages_bn_BD.min.js │ │ │ │ ├── messages_ca.js │ │ │ │ ├── messages_ca.min.js │ │ │ │ ├── messages_cs.js │ │ │ │ ├── messages_cs.min.js │ │ │ │ ├── messages_da.js │ │ │ │ ├── messages_da.min.js │ │ │ │ ├── messages_de.js │ │ │ │ ├── messages_de.min.js │ │ │ │ ├── messages_el.js │ │ │ │ ├── messages_el.min.js │ │ │ │ ├── messages_es.js │ │ │ │ ├── messages_es.min.js │ │ │ │ ├── messages_es_AR.js │ │ │ │ ├── messages_es_AR.min.js │ │ │ │ ├── messages_es_PE.js │ │ │ │ ├── messages_es_PE.min.js │ │ │ │ ├── messages_et.js │ │ │ │ ├── messages_et.min.js │ │ │ │ ├── messages_eu.js │ │ │ │ ├── messages_eu.min.js │ │ │ │ ├── messages_fa.js │ │ │ │ ├── messages_fa.min.js │ │ │ │ ├── messages_fi.js │ │ │ │ ├── messages_fi.min.js │ │ │ │ ├── messages_fr.js │ │ │ │ ├── messages_fr.min.js │ │ │ │ ├── messages_ge.js │ │ │ │ ├── messages_ge.min.js │ │ │ │ ├── messages_gl.js │ │ │ │ ├── messages_gl.min.js │ │ │ │ ├── messages_he.js │ │ │ │ ├── messages_he.min.js │ │ │ │ ├── messages_hi.js │ │ │ │ ├── messages_hi.min.js │ │ │ │ ├── messages_hr.js │ │ │ │ ├── messages_hr.min.js │ │ │ │ ├── messages_hu.js │ │ │ │ ├── messages_hu.min.js │ │ │ │ ├── messages_hy_AM.js │ │ │ │ ├── messages_hy_AM.min.js │ │ │ │ ├── messages_id.js │ │ │ │ ├── messages_id.min.js │ │ │ │ ├── messages_is.js │ │ │ │ ├── messages_is.min.js │ │ │ │ ├── messages_it.js │ │ │ │ ├── messages_it.min.js │ │ │ │ ├── messages_ja.js │ │ │ │ ├── messages_ja.min.js │ │ │ │ ├── messages_ka.js │ │ │ │ ├── messages_ka.min.js │ │ │ │ ├── messages_kk.js │ │ │ │ ├── messages_kk.min.js │ │ │ │ ├── messages_ko.js │ │ │ │ ├── messages_ko.min.js │ │ │ │ ├── messages_lt.js │ │ │ │ ├── messages_lt.min.js │ │ │ │ ├── messages_lv.js │ │ │ │ ├── messages_lv.min.js │ │ │ │ ├── messages_mk.js │ │ │ │ ├── messages_mk.min.js │ │ │ │ ├── messages_my.js │ │ │ │ ├── messages_my.min.js │ │ │ │ ├── messages_nl.js │ │ │ │ ├── messages_nl.min.js │ │ │ │ ├── messages_no.js │ │ │ │ ├── messages_no.min.js │ │ │ │ ├── messages_pl.js │ │ │ │ ├── messages_pl.min.js │ │ │ │ ├── messages_pt_BR.js │ │ │ │ ├── messages_pt_BR.min.js │ │ │ │ ├── messages_pt_PT.js │ │ │ │ ├── messages_pt_PT.min.js │ │ │ │ ├── messages_ro.js │ │ │ │ ├── messages_ro.min.js │ │ │ │ ├── messages_ru.js │ │ │ │ ├── messages_ru.min.js │ │ │ │ ├── messages_sd.js │ │ │ │ ├── messages_sd.min.js │ │ │ │ ├── messages_si.js │ │ │ │ ├── messages_si.min.js │ │ │ │ ├── messages_sk.js │ │ │ │ ├── messages_sk.min.js │ │ │ │ ├── messages_sl.js │ │ │ │ ├── messages_sl.min.js │ │ │ │ ├── messages_sr.js │ │ │ │ ├── messages_sr.min.js │ │ │ │ ├── messages_sr_lat.js │ │ │ │ ├── messages_sr_lat.min.js │ │ │ │ ├── messages_sv.js │ │ │ │ ├── messages_sv.min.js │ │ │ │ ├── messages_th.js │ │ │ │ ├── messages_th.min.js │ │ │ │ ├── messages_tj.js │ │ │ │ ├── messages_tj.min.js │ │ │ │ ├── messages_tr.js │ │ │ │ ├── messages_tr.min.js │ │ │ │ ├── messages_uk.js │ │ │ │ ├── messages_uk.min.js │ │ │ │ ├── messages_ur.js │ │ │ │ ├── messages_ur.min.js │ │ │ │ ├── messages_vi.js │ │ │ │ ├── messages_vi.min.js │ │ │ │ ├── messages_zh.js │ │ │ │ ├── messages_zh.min.js │ │ │ │ ├── messages_zh_TW.js │ │ │ │ ├── messages_zh_TW.min.js │ │ │ │ ├── methods_de.js │ │ │ │ ├── methods_de.min.js │ │ │ │ ├── methods_es_CL.js │ │ │ │ ├── methods_es_CL.min.js │ │ │ │ ├── methods_fi.js │ │ │ │ ├── methods_fi.min.js │ │ │ │ ├── methods_it.js │ │ │ │ ├── methods_it.min.js │ │ │ │ ├── methods_nl.js │ │ │ │ ├── methods_nl.min.js │ │ │ │ ├── methods_pt.js │ │ │ │ └── methods_pt.min.js │ │ │ ├── jquery │ │ │ └── jquery.js │ │ │ ├── lodash │ │ │ └── lodash.min.js │ │ │ ├── luxon │ │ │ ├── luxon.js │ │ │ ├── luxon.js.map │ │ │ ├── luxon.min.js │ │ │ └── luxon.min.js.map │ │ │ ├── malihu-custom-scrollbar-plugin │ │ │ ├── jquery.mCustomScrollbar.concat.min.js │ │ │ ├── jquery.mCustomScrollbar.css │ │ │ ├── jquery.mCustomScrollbar.js │ │ │ ├── mCSB_buttons.png │ │ │ ├── package.json │ │ │ └── readme.md │ │ │ ├── moment │ │ │ ├── locale │ │ │ │ ├── af.js │ │ │ │ ├── ar-dz.js │ │ │ │ ├── ar-kw.js │ │ │ │ ├── ar-ly.js │ │ │ │ ├── ar-ma.js │ │ │ │ ├── ar-ps.js │ │ │ │ ├── ar-sa.js │ │ │ │ ├── ar-tn.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── be.js │ │ │ │ ├── bg.js │ │ │ │ ├── bm.js │ │ │ │ ├── bn-bd.js │ │ │ │ ├── bn.js │ │ │ │ ├── bo.js │ │ │ │ ├── br.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cv.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-at.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── dv.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en-ie.js │ │ │ │ ├── en-il.js │ │ │ │ ├── en-in.js │ │ │ │ ├── en-nz.js │ │ │ │ ├── en-sg.js │ │ │ │ ├── eo.js │ │ │ │ ├── es-do.js │ │ │ │ ├── es-mx.js │ │ │ │ ├── es-us.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fil.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr-ch.js │ │ │ │ ├── fr.js │ │ │ │ ├── fy.js │ │ │ │ ├── ga.js │ │ │ │ ├── gd.js │ │ │ │ ├── gl.js │ │ │ │ ├── gom-deva.js │ │ │ │ ├── gom-latn.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── hy-am.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it-ch.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── jv.js │ │ │ │ ├── ka.js │ │ │ │ ├── kk.js │ │ │ │ ├── km.js │ │ │ │ ├── kn.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku-kmr.js │ │ │ │ ├── ku.js │ │ │ │ ├── ky.js │ │ │ │ ├── lb.js │ │ │ │ ├── lo.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── me.js │ │ │ │ ├── mi.js │ │ │ │ ├── mk.js │ │ │ │ ├── ml.js │ │ │ │ ├── mn.js │ │ │ │ ├── mr.js │ │ │ │ ├── ms-my.js │ │ │ │ ├── ms.js │ │ │ │ ├── mt.js │ │ │ │ ├── my.js │ │ │ │ ├── nb.js │ │ │ │ ├── ne.js │ │ │ │ ├── nl-be.js │ │ │ │ ├── nl.js │ │ │ │ ├── nn.js │ │ │ │ ├── oc-lnc.js │ │ │ │ ├── pa-in.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sd.js │ │ │ │ ├── se.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── ss.js │ │ │ │ ├── sv.js │ │ │ │ ├── sw.js │ │ │ │ ├── ta.js │ │ │ │ ├── te.js │ │ │ │ ├── tet.js │ │ │ │ ├── tg.js │ │ │ │ ├── th.js │ │ │ │ ├── tk.js │ │ │ │ ├── tl-ph.js │ │ │ │ ├── tlh.js │ │ │ │ ├── tr.js │ │ │ │ ├── tzl.js │ │ │ │ ├── tzm-latn.js │ │ │ │ ├── tzm.js │ │ │ │ ├── ug-cn.js │ │ │ │ ├── uk.js │ │ │ │ ├── ur.js │ │ │ │ ├── uz-latn.js │ │ │ │ ├── uz.js │ │ │ │ ├── vi.js │ │ │ │ ├── x-pseudo.js │ │ │ │ ├── yo.js │ │ │ │ ├── zh-cn.js │ │ │ │ ├── zh-hk.js │ │ │ │ ├── zh-mo.js │ │ │ │ └── zh-tw.js │ │ │ └── moment.min.js │ │ │ ├── select2 │ │ │ ├── css │ │ │ │ └── select2.min.css │ │ │ └── js │ │ │ │ ├── i18n │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── dsb.js │ │ │ │ ├── el.js │ │ │ │ ├── en.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hsb.js │ │ │ │ ├── hu.js │ │ │ │ ├── hy.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── ne.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── ps.js │ │ │ │ ├── pt-BR.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-Cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tk.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-CN.js │ │ │ │ └── zh-TW.js │ │ │ │ ├── select2.full.min.js │ │ │ │ └── select2.min.js │ │ │ ├── sweetalert2 │ │ │ ├── sweetalert2.all.js │ │ │ ├── sweetalert2.all.min.js │ │ │ ├── sweetalert2.css │ │ │ ├── sweetalert2.esm.all.js │ │ │ ├── sweetalert2.esm.all.min.js │ │ │ ├── sweetalert2.esm.js │ │ │ ├── sweetalert2.esm.min.js │ │ │ ├── sweetalert2.js │ │ │ ├── sweetalert2.min.css │ │ │ └── sweetalert2.min.js │ │ │ └── timeago │ │ │ ├── jquery.timeago.js │ │ │ └── locales │ │ │ ├── README.md │ │ │ ├── jquery.timeago.af.js │ │ │ ├── jquery.timeago.am.js │ │ │ ├── jquery.timeago.ar.js │ │ │ ├── jquery.timeago.az-short.js │ │ │ ├── jquery.timeago.az.js │ │ │ ├── jquery.timeago.be.js │ │ │ ├── jquery.timeago.bg.js │ │ │ ├── jquery.timeago.bs.js │ │ │ ├── jquery.timeago.ca.js │ │ │ ├── jquery.timeago.cs.js │ │ │ ├── jquery.timeago.cy.js │ │ │ ├── jquery.timeago.da.js │ │ │ ├── jquery.timeago.de-short.js │ │ │ ├── jquery.timeago.de.js │ │ │ ├── jquery.timeago.dv.js │ │ │ ├── jquery.timeago.el.js │ │ │ ├── jquery.timeago.en-short.js │ │ │ ├── jquery.timeago.en.js │ │ │ ├── jquery.timeago.es-short.js │ │ │ ├── jquery.timeago.es.js │ │ │ ├── jquery.timeago.et.js │ │ │ ├── jquery.timeago.eu.js │ │ │ ├── jquery.timeago.fa-short.js │ │ │ ├── jquery.timeago.fa.js │ │ │ ├── jquery.timeago.fi.js │ │ │ ├── jquery.timeago.fr-short.js │ │ │ ├── jquery.timeago.fr.js │ │ │ ├── jquery.timeago.gl.js │ │ │ ├── jquery.timeago.he.js │ │ │ ├── jquery.timeago.hr.js │ │ │ ├── jquery.timeago.hu.js │ │ │ ├── jquery.timeago.hy.js │ │ │ ├── jquery.timeago.id.js │ │ │ ├── jquery.timeago.is.js │ │ │ ├── jquery.timeago.it-short.js │ │ │ ├── jquery.timeago.it.js │ │ │ ├── jquery.timeago.ja.js │ │ │ ├── jquery.timeago.jv.js │ │ │ ├── jquery.timeago.ko.js │ │ │ ├── jquery.timeago.ky.js │ │ │ ├── jquery.timeago.lt.js │ │ │ ├── jquery.timeago.lv.js │ │ │ ├── jquery.timeago.mk.js │ │ │ ├── jquery.timeago.nl.js │ │ │ ├── jquery.timeago.no.js │ │ │ ├── jquery.timeago.pl.js │ │ │ ├── jquery.timeago.pt-br-short.js │ │ │ ├── jquery.timeago.pt-br.js │ │ │ ├── jquery.timeago.pt-short.js │ │ │ ├── jquery.timeago.pt.js │ │ │ ├── jquery.timeago.ro.js │ │ │ ├── jquery.timeago.rs.js │ │ │ ├── jquery.timeago.ru.js │ │ │ ├── jquery.timeago.rw.js │ │ │ ├── jquery.timeago.si.js │ │ │ ├── jquery.timeago.sk.js │ │ │ ├── jquery.timeago.sl.js │ │ │ ├── jquery.timeago.sq.js │ │ │ ├── jquery.timeago.sr.js │ │ │ ├── jquery.timeago.sv.js │ │ │ ├── jquery.timeago.th.js │ │ │ ├── jquery.timeago.tr-short.js │ │ │ ├── jquery.timeago.tr.js │ │ │ ├── jquery.timeago.uk.js │ │ │ ├── jquery.timeago.ur.js │ │ │ ├── jquery.timeago.uz.js │ │ │ ├── jquery.timeago.vi.js │ │ │ ├── jquery.timeago.zh-CN.js │ │ │ └── jquery.timeago.zh-TW.js │ └── yarn.lock └── WeChatManagementSample.Web.OpenIddict │ ├── Menus │ └── WeChatManagementSampleMenuContributor.cs │ ├── Pages │ ├── Account │ │ ├── Login.cshtml │ │ └── Login.cshtml.cs │ ├── Index.cshtml │ ├── Index.cshtml.cs │ ├── Index.css │ ├── Index.js │ ├── WeChatManagementSamplePageModel.cs │ └── _ViewImports.cshtml │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Views │ └── _ViewImports.cshtml │ ├── WeChatManagementSample.Web.OpenIddict.csproj │ ├── WeChatManagementSampleBrandingProvider.cs │ ├── WeChatManagementSampleWebAutoMapperProfile.cs │ ├── WeChatManagementSampleWebOpenIddictModule.cs │ ├── abp.resourcemapping.js │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── gulpfile.js │ ├── package.json │ ├── tempkey.jwk │ ├── tempkey.rsa │ ├── wwwroot │ └── libs │ │ ├── @fortawesome │ │ └── fontawesome-free │ │ │ ├── css │ │ │ ├── all.css │ │ │ └── v4-shims.css │ │ │ └── webfonts │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff2 │ │ │ ├── fa-v4compatibility.ttf │ │ │ └── fa-v4compatibility.woff2 │ │ ├── abp │ │ ├── core │ │ │ ├── abp.css │ │ │ └── abp.js │ │ ├── jquery │ │ │ └── abp.jquery.js │ │ ├── luxon │ │ │ └── abp.luxon.js │ │ └── utils │ │ │ ├── abp-utils.umd.js │ │ │ ├── abp-utils.umd.js.map │ │ │ ├── abp-utils.umd.min.js │ │ │ └── abp-utils.umd.min.js.map │ │ ├── bootstrap-datepicker │ │ ├── bootstrap-datepicker.css.map │ │ ├── bootstrap-datepicker.min.css │ │ ├── bootstrap-datepicker.min.js │ │ └── locales │ │ │ ├── bootstrap-datepicker-en-CA.min.js │ │ │ ├── bootstrap-datepicker.ar-DZ.min.js │ │ │ ├── bootstrap-datepicker.ar-tn.min.js │ │ │ ├── bootstrap-datepicker.ar.min.js │ │ │ ├── bootstrap-datepicker.az.min.js │ │ │ ├── bootstrap-datepicker.bg.min.js │ │ │ ├── bootstrap-datepicker.bm.min.js │ │ │ ├── bootstrap-datepicker.bn.min.js │ │ │ ├── bootstrap-datepicker.br.min.js │ │ │ ├── bootstrap-datepicker.bs.min.js │ │ │ ├── bootstrap-datepicker.ca.min.js │ │ │ ├── bootstrap-datepicker.cs.min.js │ │ │ ├── bootstrap-datepicker.cy.min.js │ │ │ ├── bootstrap-datepicker.da.min.js │ │ │ ├── bootstrap-datepicker.de.min.js │ │ │ ├── bootstrap-datepicker.el.min.js │ │ │ ├── bootstrap-datepicker.en-AU.min.js │ │ │ ├── bootstrap-datepicker.en-CA.min.js │ │ │ ├── bootstrap-datepicker.en-GB.min.js │ │ │ ├── bootstrap-datepicker.en-IE.min.js │ │ │ ├── bootstrap-datepicker.en-NZ.min.js │ │ │ ├── bootstrap-datepicker.en-US.min.js │ │ │ ├── bootstrap-datepicker.en-ZA.min.js │ │ │ ├── bootstrap-datepicker.eo.min.js │ │ │ ├── bootstrap-datepicker.es.min.js │ │ │ ├── bootstrap-datepicker.et.min.js │ │ │ ├── bootstrap-datepicker.eu.min.js │ │ │ ├── bootstrap-datepicker.fa.min.js │ │ │ ├── bootstrap-datepicker.fi.min.js │ │ │ ├── bootstrap-datepicker.fo.min.js │ │ │ ├── bootstrap-datepicker.fr-CH.min.js │ │ │ ├── bootstrap-datepicker.fr.min.js │ │ │ ├── bootstrap-datepicker.gl.min.js │ │ │ ├── bootstrap-datepicker.he.min.js │ │ │ ├── bootstrap-datepicker.hi.min.js │ │ │ ├── bootstrap-datepicker.hr.min.js │ │ │ ├── bootstrap-datepicker.hu.min.js │ │ │ ├── bootstrap-datepicker.hy.min.js │ │ │ ├── bootstrap-datepicker.id.min.js │ │ │ ├── bootstrap-datepicker.is.min.js │ │ │ ├── bootstrap-datepicker.it-CH.min.js │ │ │ ├── bootstrap-datepicker.it.min.js │ │ │ ├── bootstrap-datepicker.ja.min.js │ │ │ ├── bootstrap-datepicker.ka.min.js │ │ │ ├── bootstrap-datepicker.kh.min.js │ │ │ ├── bootstrap-datepicker.kk.min.js │ │ │ ├── bootstrap-datepicker.km.min.js │ │ │ ├── bootstrap-datepicker.ko.min.js │ │ │ ├── bootstrap-datepicker.kr.min.js │ │ │ ├── bootstrap-datepicker.lt.min.js │ │ │ ├── bootstrap-datepicker.lv.min.js │ │ │ ├── bootstrap-datepicker.me.min.js │ │ │ ├── bootstrap-datepicker.mk.min.js │ │ │ ├── bootstrap-datepicker.mn.min.js │ │ │ ├── bootstrap-datepicker.mr.min.js │ │ │ ├── bootstrap-datepicker.ms.min.js │ │ │ ├── bootstrap-datepicker.nl-BE.min.js │ │ │ ├── bootstrap-datepicker.nl.min.js │ │ │ ├── bootstrap-datepicker.no.min.js │ │ │ ├── bootstrap-datepicker.oc.min.js │ │ │ ├── bootstrap-datepicker.pl.min.js │ │ │ ├── bootstrap-datepicker.pt-BR.min.js │ │ │ ├── bootstrap-datepicker.pt.min.js │ │ │ ├── bootstrap-datepicker.ro.min.js │ │ │ ├── bootstrap-datepicker.rs-latin.min.js │ │ │ ├── bootstrap-datepicker.rs.min.js │ │ │ ├── bootstrap-datepicker.ru.min.js │ │ │ ├── bootstrap-datepicker.si.min.js │ │ │ ├── bootstrap-datepicker.sk.min.js │ │ │ ├── bootstrap-datepicker.sl.min.js │ │ │ ├── bootstrap-datepicker.sq.min.js │ │ │ ├── bootstrap-datepicker.sr-latin.min.js │ │ │ ├── bootstrap-datepicker.sr.min.js │ │ │ ├── bootstrap-datepicker.sv.min.js │ │ │ ├── bootstrap-datepicker.sw.min.js │ │ │ ├── bootstrap-datepicker.ta.min.js │ │ │ ├── bootstrap-datepicker.tg.min.js │ │ │ ├── bootstrap-datepicker.th.min.js │ │ │ ├── bootstrap-datepicker.tk.min.js │ │ │ ├── bootstrap-datepicker.tr.min.js │ │ │ ├── bootstrap-datepicker.uk.min.js │ │ │ ├── bootstrap-datepicker.uz-cyrl.min.js │ │ │ ├── bootstrap-datepicker.uz-latn.min.js │ │ │ ├── bootstrap-datepicker.vi.min.js │ │ │ ├── bootstrap-datepicker.zh-CN.min.js │ │ │ └── bootstrap-datepicker.zh-TW.min.js │ │ ├── bootstrap-daterangepicker │ │ ├── daterangepicker.css │ │ └── daterangepicker.js │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.css.map │ │ │ ├── bootstrap.rtl.css │ │ │ ├── bootstrap.rtl.css.map │ │ │ ├── bootstrap.rtl.min.css │ │ │ └── bootstrap.rtl.min.css.map │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.enable.popovers.everywhere.js │ │ │ └── bootstrap.enable.tooltips.everywhere.js │ │ ├── datatables.net-bs5 │ │ ├── css │ │ │ └── dataTables.bootstrap5.css │ │ └── js │ │ │ └── dataTables.bootstrap5.js │ │ ├── datatables.net │ │ └── js │ │ │ └── dataTables.min.js │ │ ├── jquery-form │ │ └── jquery.form.min.js │ │ ├── jquery-validation-unobtrusive │ │ └── jquery.validate.unobtrusive.js │ │ ├── jquery-validation │ │ ├── jquery.validate.js │ │ └── localization │ │ │ ├── messages_ar.js │ │ │ ├── messages_ar.min.js │ │ │ ├── messages_az.js │ │ │ ├── messages_az.min.js │ │ │ ├── messages_bg.js │ │ │ ├── messages_bg.min.js │ │ │ ├── messages_bn_BD.js │ │ │ ├── messages_bn_BD.min.js │ │ │ ├── messages_ca.js │ │ │ ├── messages_ca.min.js │ │ │ ├── messages_cs.js │ │ │ ├── messages_cs.min.js │ │ │ ├── messages_da.js │ │ │ ├── messages_da.min.js │ │ │ ├── messages_de.js │ │ │ ├── messages_de.min.js │ │ │ ├── messages_el.js │ │ │ ├── messages_el.min.js │ │ │ ├── messages_es.js │ │ │ ├── messages_es.min.js │ │ │ ├── messages_es_AR.js │ │ │ ├── messages_es_AR.min.js │ │ │ ├── messages_es_PE.js │ │ │ ├── messages_es_PE.min.js │ │ │ ├── messages_et.js │ │ │ ├── messages_et.min.js │ │ │ ├── messages_eu.js │ │ │ ├── messages_eu.min.js │ │ │ ├── messages_fa.js │ │ │ ├── messages_fa.min.js │ │ │ ├── messages_fi.js │ │ │ ├── messages_fi.min.js │ │ │ ├── messages_fr.js │ │ │ ├── messages_fr.min.js │ │ │ ├── messages_ge.js │ │ │ ├── messages_ge.min.js │ │ │ ├── messages_gl.js │ │ │ ├── messages_gl.min.js │ │ │ ├── messages_he.js │ │ │ ├── messages_he.min.js │ │ │ ├── messages_hi.js │ │ │ ├── messages_hi.min.js │ │ │ ├── messages_hr.js │ │ │ ├── messages_hr.min.js │ │ │ ├── messages_hu.js │ │ │ ├── messages_hu.min.js │ │ │ ├── messages_hy_AM.js │ │ │ ├── messages_hy_AM.min.js │ │ │ ├── messages_id.js │ │ │ ├── messages_id.min.js │ │ │ ├── messages_is.js │ │ │ ├── messages_is.min.js │ │ │ ├── messages_it.js │ │ │ ├── messages_it.min.js │ │ │ ├── messages_ja.js │ │ │ ├── messages_ja.min.js │ │ │ ├── messages_ka.js │ │ │ ├── messages_ka.min.js │ │ │ ├── messages_kk.js │ │ │ ├── messages_kk.min.js │ │ │ ├── messages_ko.js │ │ │ ├── messages_ko.min.js │ │ │ ├── messages_lt.js │ │ │ ├── messages_lt.min.js │ │ │ ├── messages_lv.js │ │ │ ├── messages_lv.min.js │ │ │ ├── messages_mk.js │ │ │ ├── messages_mk.min.js │ │ │ ├── messages_my.js │ │ │ ├── messages_my.min.js │ │ │ ├── messages_nl.js │ │ │ ├── messages_nl.min.js │ │ │ ├── messages_no.js │ │ │ ├── messages_no.min.js │ │ │ ├── messages_pl.js │ │ │ ├── messages_pl.min.js │ │ │ ├── messages_pt_BR.js │ │ │ ├── messages_pt_BR.min.js │ │ │ ├── messages_pt_PT.js │ │ │ ├── messages_pt_PT.min.js │ │ │ ├── messages_ro.js │ │ │ ├── messages_ro.min.js │ │ │ ├── messages_ru.js │ │ │ ├── messages_ru.min.js │ │ │ ├── messages_sd.js │ │ │ ├── messages_sd.min.js │ │ │ ├── messages_si.js │ │ │ ├── messages_si.min.js │ │ │ ├── messages_sk.js │ │ │ ├── messages_sk.min.js │ │ │ ├── messages_sl.js │ │ │ ├── messages_sl.min.js │ │ │ ├── messages_sr.js │ │ │ ├── messages_sr.min.js │ │ │ ├── messages_sr_lat.js │ │ │ ├── messages_sr_lat.min.js │ │ │ ├── messages_sv.js │ │ │ ├── messages_sv.min.js │ │ │ ├── messages_th.js │ │ │ ├── messages_th.min.js │ │ │ ├── messages_tj.js │ │ │ ├── messages_tj.min.js │ │ │ ├── messages_tr.js │ │ │ ├── messages_tr.min.js │ │ │ ├── messages_uk.js │ │ │ ├── messages_uk.min.js │ │ │ ├── messages_ur.js │ │ │ ├── messages_ur.min.js │ │ │ ├── messages_vi.js │ │ │ ├── messages_vi.min.js │ │ │ ├── messages_zh.js │ │ │ ├── messages_zh.min.js │ │ │ ├── messages_zh_TW.js │ │ │ ├── messages_zh_TW.min.js │ │ │ ├── methods_de.js │ │ │ ├── methods_de.min.js │ │ │ ├── methods_es_CL.js │ │ │ ├── methods_es_CL.min.js │ │ │ ├── methods_fi.js │ │ │ ├── methods_fi.min.js │ │ │ ├── methods_it.js │ │ │ ├── methods_it.min.js │ │ │ ├── methods_nl.js │ │ │ ├── methods_nl.min.js │ │ │ ├── methods_pt.js │ │ │ └── methods_pt.min.js │ │ ├── jquery │ │ └── jquery.js │ │ ├── lodash │ │ └── lodash.min.js │ │ ├── luxon │ │ ├── luxon.js │ │ ├── luxon.js.map │ │ ├── luxon.min.js │ │ └── luxon.min.js.map │ │ ├── malihu-custom-scrollbar-plugin │ │ ├── jquery.mCustomScrollbar.concat.min.js │ │ ├── jquery.mCustomScrollbar.css │ │ ├── jquery.mCustomScrollbar.js │ │ ├── mCSB_buttons.png │ │ ├── package.json │ │ └── readme.md │ │ ├── moment │ │ ├── locale │ │ │ ├── af.js │ │ │ ├── ar-dz.js │ │ │ ├── ar-kw.js │ │ │ ├── ar-ly.js │ │ │ ├── ar-ma.js │ │ │ ├── ar-ps.js │ │ │ ├── ar-sa.js │ │ │ ├── ar-tn.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── be.js │ │ │ ├── bg.js │ │ │ ├── bm.js │ │ │ ├── bn-bd.js │ │ │ ├── bn.js │ │ │ ├── bo.js │ │ │ ├── br.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cv.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de-at.js │ │ │ ├── de-ch.js │ │ │ ├── de.js │ │ │ ├── dv.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en-ie.js │ │ │ ├── en-il.js │ │ │ ├── en-in.js │ │ │ ├── en-nz.js │ │ │ ├── en-sg.js │ │ │ ├── eo.js │ │ │ ├── es-do.js │ │ │ ├── es-mx.js │ │ │ ├── es-us.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fil.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr-ch.js │ │ │ ├── fr.js │ │ │ ├── fy.js │ │ │ ├── ga.js │ │ │ ├── gd.js │ │ │ ├── gl.js │ │ │ ├── gom-deva.js │ │ │ ├── gom-latn.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── hy-am.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it-ch.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── jv.js │ │ │ ├── ka.js │ │ │ ├── kk.js │ │ │ ├── km.js │ │ │ ├── kn.js │ │ │ ├── ko.js │ │ │ ├── ku-kmr.js │ │ │ ├── ku.js │ │ │ ├── ky.js │ │ │ ├── lb.js │ │ │ ├── lo.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── me.js │ │ │ ├── mi.js │ │ │ ├── mk.js │ │ │ ├── ml.js │ │ │ ├── mn.js │ │ │ ├── mr.js │ │ │ ├── ms-my.js │ │ │ ├── ms.js │ │ │ ├── mt.js │ │ │ ├── my.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl-be.js │ │ │ ├── nl.js │ │ │ ├── nn.js │ │ │ ├── oc-lnc.js │ │ │ ├── pa-in.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sd.js │ │ │ ├── se.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-cyrl.js │ │ │ ├── sr.js │ │ │ ├── ss.js │ │ │ ├── sv.js │ │ │ ├── sw.js │ │ │ ├── ta.js │ │ │ ├── te.js │ │ │ ├── tet.js │ │ │ ├── tg.js │ │ │ ├── th.js │ │ │ ├── tk.js │ │ │ ├── tl-ph.js │ │ │ ├── tlh.js │ │ │ ├── tr.js │ │ │ ├── tzl.js │ │ │ ├── tzm-latn.js │ │ │ ├── tzm.js │ │ │ ├── ug-cn.js │ │ │ ├── uk.js │ │ │ ├── ur.js │ │ │ ├── uz-latn.js │ │ │ ├── uz.js │ │ │ ├── vi.js │ │ │ ├── x-pseudo.js │ │ │ ├── yo.js │ │ │ ├── zh-cn.js │ │ │ ├── zh-hk.js │ │ │ ├── zh-mo.js │ │ │ └── zh-tw.js │ │ └── moment.min.js │ │ ├── select2 │ │ ├── css │ │ │ └── select2.min.css │ │ └── js │ │ │ ├── i18n │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── dsb.js │ │ │ ├── el.js │ │ │ ├── en.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hsb.js │ │ │ ├── hu.js │ │ │ ├── hy.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl.js │ │ │ ├── pl.js │ │ │ ├── ps.js │ │ │ ├── pt-BR.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-Cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tk.js │ │ │ ├── tr.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-CN.js │ │ │ └── zh-TW.js │ │ │ ├── select2.full.min.js │ │ │ └── select2.min.js │ │ ├── sweetalert2 │ │ ├── sweetalert2.all.js │ │ ├── sweetalert2.all.min.js │ │ ├── sweetalert2.css │ │ ├── sweetalert2.esm.all.js │ │ ├── sweetalert2.esm.all.min.js │ │ ├── sweetalert2.esm.js │ │ ├── sweetalert2.esm.min.js │ │ ├── sweetalert2.js │ │ ├── sweetalert2.min.css │ │ └── sweetalert2.min.js │ │ └── timeago │ │ ├── jquery.timeago.js │ │ └── locales │ │ ├── README.md │ │ ├── jquery.timeago.af.js │ │ ├── jquery.timeago.am.js │ │ ├── jquery.timeago.ar.js │ │ ├── jquery.timeago.az-short.js │ │ ├── jquery.timeago.az.js │ │ ├── jquery.timeago.be.js │ │ ├── jquery.timeago.bg.js │ │ ├── jquery.timeago.bs.js │ │ ├── jquery.timeago.ca.js │ │ ├── jquery.timeago.cs.js │ │ ├── jquery.timeago.cy.js │ │ ├── jquery.timeago.da.js │ │ ├── jquery.timeago.de-short.js │ │ ├── jquery.timeago.de.js │ │ ├── jquery.timeago.dv.js │ │ ├── jquery.timeago.el.js │ │ ├── jquery.timeago.en-short.js │ │ ├── jquery.timeago.en.js │ │ ├── jquery.timeago.es-short.js │ │ ├── jquery.timeago.es.js │ │ ├── jquery.timeago.et.js │ │ ├── jquery.timeago.eu.js │ │ ├── jquery.timeago.fa-short.js │ │ ├── jquery.timeago.fa.js │ │ ├── jquery.timeago.fi.js │ │ ├── jquery.timeago.fr-short.js │ │ ├── jquery.timeago.fr.js │ │ ├── jquery.timeago.gl.js │ │ ├── jquery.timeago.he.js │ │ ├── jquery.timeago.hr.js │ │ ├── jquery.timeago.hu.js │ │ ├── jquery.timeago.hy.js │ │ ├── jquery.timeago.id.js │ │ ├── jquery.timeago.is.js │ │ ├── jquery.timeago.it-short.js │ │ ├── jquery.timeago.it.js │ │ ├── jquery.timeago.ja.js │ │ ├── jquery.timeago.jv.js │ │ ├── jquery.timeago.ko.js │ │ ├── jquery.timeago.ky.js │ │ ├── jquery.timeago.lt.js │ │ ├── jquery.timeago.lv.js │ │ ├── jquery.timeago.mk.js │ │ ├── jquery.timeago.nl.js │ │ ├── jquery.timeago.no.js │ │ ├── jquery.timeago.pl.js │ │ ├── jquery.timeago.pt-br-short.js │ │ ├── jquery.timeago.pt-br.js │ │ ├── jquery.timeago.pt-short.js │ │ ├── jquery.timeago.pt.js │ │ ├── jquery.timeago.ro.js │ │ ├── jquery.timeago.rs.js │ │ ├── jquery.timeago.ru.js │ │ ├── jquery.timeago.rw.js │ │ ├── jquery.timeago.si.js │ │ ├── jquery.timeago.sk.js │ │ ├── jquery.timeago.sl.js │ │ ├── jquery.timeago.sq.js │ │ ├── jquery.timeago.sr.js │ │ ├── jquery.timeago.sv.js │ │ ├── jquery.timeago.th.js │ │ ├── jquery.timeago.tr-short.js │ │ ├── jquery.timeago.tr.js │ │ ├── jquery.timeago.uk.js │ │ ├── jquery.timeago.ur.js │ │ ├── jquery.timeago.uz.js │ │ ├── jquery.timeago.vi.js │ │ ├── jquery.timeago.zh-CN.js │ │ └── jquery.timeago.zh-TW.js │ └── yarn.lock └── test ├── WeChatManagementSample.Application.Tests ├── Samples │ └── SampleAppServiceTests.cs ├── WeChatManagementSample.Application.Tests.csproj ├── WeChatManagementSampleApplicationTestBase.cs └── WeChatManagementSampleApplicationTestModule.cs ├── WeChatManagementSample.Domain.Tests ├── Samples │ └── SampleDomainTests.cs ├── WeChatManagementSample.Domain.Tests.csproj ├── WeChatManagementSampleDomainTestBase.cs └── WeChatManagementSampleDomainTestModule.cs ├── WeChatManagementSample.EntityFrameworkCore.Tests ├── EntityFrameworkCore │ ├── WeChatManagementSampleEntityFrameworkCoreTestBase.cs │ └── WeChatManagementSampleEntityFrameworkCoreTestModule.cs └── WeChatManagementSample.EntityFrameworkCore.Tests.csproj ├── WeChatManagementSample.HttpApi.Client.ConsoleTestApp ├── ClientDemoService.cs ├── ConsoleTestAppHostedService.cs ├── Program.cs ├── WeChatManagementSample.HttpApi.Client.ConsoleTestApp.csproj ├── WeChatManagementSampleConsoleApiClientModule.cs └── appsettings.json ├── WeChatManagementSample.TestBase ├── Security │ └── FakeCurrentPrincipalAccessor.cs ├── WeChatManagementSample.TestBase.csproj ├── WeChatManagementSampleTestBase.cs ├── WeChatManagementSampleTestBaseModule.cs ├── WeChatManagementSampleTestConsts.cs └── WeChatManagementSampleTestDataSeedContributor.cs ├── WeChatManagementSample.Web.Ids4.Tests ├── Program.cs ├── WeChatManagementSample.Web.Ids4.Tests.csproj ├── WeChatManagementSampleWebTestBase.cs ├── WeChatManagementSampleWebTestModule.cs └── xunit.runner.json └── WeChatManagementSample.Web.OpenIddict.Tests ├── Program.cs ├── WeChatManagementSample.Web.OpenIddict.Tests.csproj ├── WeChatManagementSampleWebTestBase.cs ├── WeChatManagementSampleWebTestModule.cs └── xunit.runner.json /.gitattributes: -------------------------------------------------------------------------------- 1 | **/wwwroot/libs/** linguist-vendored 2 | -------------------------------------------------------------------------------- /.github/workflows/publish-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/.github/workflows/publish-docs.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/LICENSE -------------------------------------------------------------------------------- /WeChatManagement.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/WeChatManagement.sln -------------------------------------------------------------------------------- /WeChatManagement.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/WeChatManagement.sln.DotSettings -------------------------------------------------------------------------------- /common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/common.props -------------------------------------------------------------------------------- /docs/MiniPrograms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/docs/MiniPrograms/README.md -------------------------------------------------------------------------------- /docs/MiniPrograms/images/MiniProgram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/docs/MiniPrograms/images/MiniProgram.png -------------------------------------------------------------------------------- /docs/MiniPrograms/images/MiniProgramUser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/docs/MiniPrograms/images/MiniProgramUser.png -------------------------------------------------------------------------------- /docs/MiniPrograms/images/PcLogin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/docs/MiniPrograms/images/PcLogin.png -------------------------------------------------------------------------------- /docs/MiniPrograms/images/UserInfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/docs/MiniPrograms/images/UserInfo.png -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/docs/README.md -------------------------------------------------------------------------------- /modules/Common/.gitattributes: -------------------------------------------------------------------------------- 1 | **/wwwroot/libs/** linguist-vendored 2 | -------------------------------------------------------------------------------- /modules/Common/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/.gitignore -------------------------------------------------------------------------------- /modules/Common/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/.prettierrc -------------------------------------------------------------------------------- /modules/Common/EasyAbp.WeChatManagement.Common.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/EasyAbp.WeChatManagement.Common.sln -------------------------------------------------------------------------------- /modules/Common/EasyAbp.WeChatManagement.Common.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/EasyAbp.WeChatManagement.Common.sln.DotSettings -------------------------------------------------------------------------------- /modules/Common/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/NuGet.Config -------------------------------------------------------------------------------- /modules/Common/docker-compose.migrations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/docker-compose.migrations.yml -------------------------------------------------------------------------------- /modules/Common/docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/docker-compose.override.yml -------------------------------------------------------------------------------- /modules/Common/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/docker-compose.yml -------------------------------------------------------------------------------- /modules/Common/host/EasyAbp.WeChatManagement.Common.Host.Shared/EasyAbp.WeChatManagement.Common.Host.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/host/EasyAbp.WeChatManagement.Common.Host.Shared/EasyAbp.WeChatManagement.Common.Host.Shared.csproj -------------------------------------------------------------------------------- /modules/Common/host/EasyAbp.WeChatManagement.Common.Host.Shared/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/host/EasyAbp.WeChatManagement.Common.Host.Shared/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/Common/host/EasyAbp.WeChatManagement.Common.Host.Shared/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/host/EasyAbp.WeChatManagement.Common.Host.Shared/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/Common/host/EasyAbp.WeChatManagement.Common.Host.Shared/MultiTenancy/MultiTenancyConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/host/EasyAbp.WeChatManagement.Common.Host.Shared/MultiTenancy/MultiTenancyConsts.cs -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.Application.Contracts/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.Application.Contracts/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.Application.Contracts/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.Application.Contracts/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.Application/EasyAbp.WeChatManagement.Common.Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.Application/EasyAbp.WeChatManagement.Common.Application.csproj -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.Application/EasyAbp/WeChatManagement/Common/CommonAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.Application/EasyAbp/WeChatManagement/Common/CommonAppService.cs -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.Application/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.Application/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.Application/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.Application/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.Domain.Shared/EasyAbp.WeChatManagement.Common.Domain.Shared.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.Domain.Shared/EasyAbp.WeChatManagement.Common.Domain.Shared.csproj -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.Domain.Shared/EasyAbp/WeChatManagement/Common/CommonErrorCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.Domain.Shared/EasyAbp/WeChatManagement/Common/CommonErrorCodes.cs -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.Domain.Shared/EasyAbp/WeChatManagement/Common/Localization/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.Domain.Shared/EasyAbp/WeChatManagement/Common/Localization/en.json -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.Domain.Shared/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.Domain.Shared/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.Domain.Shared/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.Domain.Shared/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.Domain/EasyAbp.WeChatManagement.Common.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.Domain/EasyAbp.WeChatManagement.Common.Domain.csproj -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.Domain/EasyAbp/WeChatManagement/Common/CommonDbProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.Domain/EasyAbp/WeChatManagement/Common/CommonDbProperties.cs -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.Domain/EasyAbp/WeChatManagement/Common/Settings/CommonSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.Domain/EasyAbp/WeChatManagement/Common/Settings/CommonSettings.cs -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.Domain/EasyAbp/WeChatManagement/Common/WeChatApps/WeChatApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.Domain/EasyAbp/WeChatManagement/Common/WeChatApps/WeChatApp.cs -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.Domain/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.Domain/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.Domain/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.Domain/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.EntityFrameworkCore/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.EntityFrameworkCore/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.EntityFrameworkCore/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.EntityFrameworkCore/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.HttpApi.Client/EasyAbp.WeChatManagement.Common.HttpApi.Client.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.HttpApi.Client/EasyAbp.WeChatManagement.Common.HttpApi.Client.csproj -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.HttpApi.Client/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.HttpApi.Client/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.HttpApi.Client/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.HttpApi.Client/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.HttpApi/EasyAbp.WeChatManagement.Common.HttpApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.HttpApi/EasyAbp.WeChatManagement.Common.HttpApi.csproj -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.HttpApi/EasyAbp/WeChatManagement/Common/CommonController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.HttpApi/EasyAbp/WeChatManagement/Common/CommonController.cs -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.HttpApi/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.HttpApi/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.HttpApi/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.HttpApi/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.MongoDB/EasyAbp.WeChatManagement.Common.MongoDB.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.MongoDB/EasyAbp.WeChatManagement.Common.MongoDB.csproj -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.MongoDB/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.MongoDB/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.MongoDB/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.MongoDB/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.Web/CommonWebAutoMapperProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.Web/CommonWebAutoMapperProfile.cs -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.Web/EasyAbp.WeChatManagement.Common.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.Web/EasyAbp.WeChatManagement.Common.Web.csproj -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.Web/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.Web/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.Web/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.Web/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.Web/Menus/CommonMenuContributor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.Web/Menus/CommonMenuContributor.cs -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.Web/Menus/CommonMenus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.Web/Menus/CommonMenus.cs -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.Web/Pages/CommonPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.Web/Pages/CommonPageModel.cs -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.Web/Pages/WeChatManagement/Common/WeChatAppUsers/WeChatAppUser/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.Web/Pages/WeChatManagement/Common/WeChatApps/WeChatApp/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.Web/Pages/WeChatManagement/Common/WeChatApps/WeChatApp/Index.cshtml -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.Web/Pages/WeChatManagement/Common/WeChatApps/WeChatApp/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.Web/Pages/WeChatManagement/Common/WeChatApps/WeChatApp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.Web/Pages/WeChatManagement/Common/WeChatApps/WeChatApp/index.js -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.Web/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.Web/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /modules/Common/src/EasyAbp.WeChatManagement.Common.Web/WeChatManagementCommonWebModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/src/EasyAbp.WeChatManagement.Common.Web/WeChatManagementCommonWebModule.cs -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.WeChatManagement.Common.Application.Tests/CommonApplicationTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/test/EasyAbp.WeChatManagement.Common.Application.Tests/CommonApplicationTestBase.cs -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.WeChatManagement.Common.Application.Tests/CommonApplicationTestModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/test/EasyAbp.WeChatManagement.Common.Application.Tests/CommonApplicationTestModule.cs -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.WeChatManagement.Common.Application.Tests/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/test/EasyAbp.WeChatManagement.Common.Application.Tests/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.WeChatManagement.Common.Application.Tests/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/test/EasyAbp.WeChatManagement.Common.Application.Tests/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.WeChatManagement.Common.Application.Tests/WeChatAppUsers/WeChatAppUserAppServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/test/EasyAbp.WeChatManagement.Common.Application.Tests/WeChatAppUsers/WeChatAppUserAppServiceTests.cs -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.WeChatManagement.Common.Application.Tests/WeChatApps/WeChatAppAppServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/test/EasyAbp.WeChatManagement.Common.Application.Tests/WeChatApps/WeChatAppAppServiceTests.cs -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.WeChatManagement.Common.Domain.Tests/CommonDomainTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/test/EasyAbp.WeChatManagement.Common.Domain.Tests/CommonDomainTestBase.cs -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.WeChatManagement.Common.Domain.Tests/CommonDomainTestModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/test/EasyAbp.WeChatManagement.Common.Domain.Tests/CommonDomainTestModule.cs -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.WeChatManagement.Common.Domain.Tests/EasyAbp.WeChatManagement.Common.Domain.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/test/EasyAbp.WeChatManagement.Common.Domain.Tests/EasyAbp.WeChatManagement.Common.Domain.Tests.csproj -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.WeChatManagement.Common.Domain.Tests/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/test/EasyAbp.WeChatManagement.Common.Domain.Tests/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.WeChatManagement.Common.Domain.Tests/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/test/EasyAbp.WeChatManagement.Common.Domain.Tests/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.WeChatManagement.Common.Domain.Tests/WeChatAppUsers/WeChatAppUserDomainTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/test/EasyAbp.WeChatManagement.Common.Domain.Tests/WeChatAppUsers/WeChatAppUserDomainTests.cs -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.WeChatManagement.Common.Domain.Tests/WeChatApps/WeChatAppDomainTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/test/EasyAbp.WeChatManagement.Common.Domain.Tests/WeChatApps/WeChatAppDomainTests.cs -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.WeChatManagement.Common.EntityFrameworkCore.Tests/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/test/EasyAbp.WeChatManagement.Common.EntityFrameworkCore.Tests/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.WeChatManagement.Common.EntityFrameworkCore.Tests/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/test/EasyAbp.WeChatManagement.Common.EntityFrameworkCore.Tests/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.WeChatManagement.Common.HttpApi.Client.ConsoleTestApp/ClientDemoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/test/EasyAbp.WeChatManagement.Common.HttpApi.Client.ConsoleTestApp/ClientDemoService.cs -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.WeChatManagement.Common.HttpApi.Client.ConsoleTestApp/CommonConsoleApiClientModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/test/EasyAbp.WeChatManagement.Common.HttpApi.Client.ConsoleTestApp/CommonConsoleApiClientModule.cs -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.WeChatManagement.Common.HttpApi.Client.ConsoleTestApp/ConsoleTestAppHostedService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/test/EasyAbp.WeChatManagement.Common.HttpApi.Client.ConsoleTestApp/ConsoleTestAppHostedService.cs -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.WeChatManagement.Common.HttpApi.Client.ConsoleTestApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/test/EasyAbp.WeChatManagement.Common.HttpApi.Client.ConsoleTestApp/Program.cs -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.WeChatManagement.Common.HttpApi.Client.ConsoleTestApp/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/test/EasyAbp.WeChatManagement.Common.HttpApi.Client.ConsoleTestApp/appsettings.json -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.WeChatManagement.Common.MongoDB.Tests/EasyAbp.WeChatManagement.Common.MongoDB.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/test/EasyAbp.WeChatManagement.Common.MongoDB.Tests/EasyAbp.WeChatManagement.Common.MongoDB.Tests.csproj -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.WeChatManagement.Common.MongoDB.Tests/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/test/EasyAbp.WeChatManagement.Common.MongoDB.Tests/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.WeChatManagement.Common.MongoDB.Tests/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/test/EasyAbp.WeChatManagement.Common.MongoDB.Tests/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.WeChatManagement.Common.MongoDB.Tests/MongoDB/CommonMongoDbTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/test/EasyAbp.WeChatManagement.Common.MongoDB.Tests/MongoDB/CommonMongoDbTestBase.cs -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.WeChatManagement.Common.MongoDB.Tests/MongoDB/CommonMongoDbTestModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/test/EasyAbp.WeChatManagement.Common.MongoDB.Tests/MongoDB/CommonMongoDbTestModule.cs -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.WeChatManagement.Common.MongoDB.Tests/MongoDB/MongoDbFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/test/EasyAbp.WeChatManagement.Common.MongoDB.Tests/MongoDB/MongoDbFixture.cs -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.WeChatManagement.Common.MongoDB.Tests/MongoDB/MongoTestCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/test/EasyAbp.WeChatManagement.Common.MongoDB.Tests/MongoDB/MongoTestCollection.cs -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.WeChatManagement.Common.TestBase/CommonDataSeedContributor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/test/EasyAbp.WeChatManagement.Common.TestBase/CommonDataSeedContributor.cs -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.WeChatManagement.Common.TestBase/CommonTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/test/EasyAbp.WeChatManagement.Common.TestBase/CommonTestBase.cs -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.WeChatManagement.Common.TestBase/CommonTestBaseModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/test/EasyAbp.WeChatManagement.Common.TestBase/CommonTestBaseModule.cs -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.WeChatManagement.Common.TestBase/EasyAbp.WeChatManagement.Common.TestBase.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/test/EasyAbp.WeChatManagement.Common.TestBase/EasyAbp.WeChatManagement.Common.TestBase.csproj -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.WeChatManagement.Common.TestBase/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/test/EasyAbp.WeChatManagement.Common.TestBase/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.WeChatManagement.Common.TestBase/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/test/EasyAbp.WeChatManagement.Common.TestBase/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/Common/test/EasyAbp.WeChatManagement.Common.TestBase/Security/FakeCurrentPrincipalAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/Common/test/EasyAbp.WeChatManagement.Common.TestBase/Security/FakeCurrentPrincipalAccessor.cs -------------------------------------------------------------------------------- /modules/MiniPrograms/.gitattributes: -------------------------------------------------------------------------------- 1 | **/wwwroot/libs/** linguist-vendored 2 | -------------------------------------------------------------------------------- /modules/MiniPrograms/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/.gitignore -------------------------------------------------------------------------------- /modules/MiniPrograms/EasyAbp.WeChatManagement.MiniPrograms.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/EasyAbp.WeChatManagement.MiniPrograms.sln -------------------------------------------------------------------------------- /modules/MiniPrograms/EasyAbp.WeChatManagement.MiniPrograms.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/EasyAbp.WeChatManagement.MiniPrograms.sln.DotSettings -------------------------------------------------------------------------------- /modules/MiniPrograms/docker-compose.migrations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/docker-compose.migrations.yml -------------------------------------------------------------------------------- /modules/MiniPrograms/docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/docker-compose.override.yml -------------------------------------------------------------------------------- /modules/MiniPrograms/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/docker-compose.yml -------------------------------------------------------------------------------- /modules/MiniPrograms/host/EasyAbp.WeChatManagement.MiniPrograms.Host.Shared/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/host/EasyAbp.WeChatManagement.MiniPrograms.Host.Shared/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/MiniPrograms/host/EasyAbp.WeChatManagement.MiniPrograms.Host.Shared/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/host/EasyAbp.WeChatManagement.MiniPrograms.Host.Shared/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/MiniPrograms/host/EasyAbp.WeChatManagement.MiniPrograms.Host.Shared/MultiTenancy/MultiTenancyConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/host/EasyAbp.WeChatManagement.MiniPrograms.Host.Shared/MultiTenancy/MultiTenancyConsts.cs -------------------------------------------------------------------------------- /modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Application.Contracts/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Application.Contracts/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Application.Contracts/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Application.Contracts/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Application/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Application/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Application/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Application/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Domain.Ids4/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Domain.Ids4/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Domain.Ids4/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Domain.Ids4/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Domain.OpenIddict/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Domain.OpenIddict/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Domain.OpenIddict/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Domain.OpenIddict/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Domain.Shared/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Domain.Shared/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Domain.Shared/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Domain.Shared/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Domain/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Domain/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Domain/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Domain/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.EntityFrameworkCore/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.EntityFrameworkCore/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.EntityFrameworkCore/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.EntityFrameworkCore/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.HttpApi.Client/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.HttpApi.Client/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.HttpApi.Client/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.HttpApi.Client/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.HttpApi/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.HttpApi/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.HttpApi/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.HttpApi/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.MongoDB/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.MongoDB/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.MongoDB/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.MongoDB/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Web/EasyAbp.WeChatManagement.MiniPrograms.Web.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Web/EasyAbp.WeChatManagement.MiniPrograms.Web.csproj -------------------------------------------------------------------------------- /modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Web/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Web/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Web/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Web/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Web/Menus/MiniProgramsMenuContributor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Web/Menus/MiniProgramsMenuContributor.cs -------------------------------------------------------------------------------- /modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Web/Menus/MiniProgramsMenus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Web/Menus/MiniProgramsMenus.cs -------------------------------------------------------------------------------- /modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Web/MiniProgramsWebAutoMapperProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Web/MiniProgramsWebAutoMapperProfile.cs -------------------------------------------------------------------------------- /modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Web/Pages/MiniProgramsPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Web/Pages/MiniProgramsPageModel.cs -------------------------------------------------------------------------------- /modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Web/Pages/WeChatManagement/MiniPrograms/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Web/Pages/WeChatManagement/MiniPrograms/Index.cshtml -------------------------------------------------------------------------------- /modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Web/Pages/WeChatManagement/MiniPrograms/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Web/Pages/WeChatManagement/MiniPrograms/Index.cshtml.cs -------------------------------------------------------------------------------- /modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Web/Pages/WeChatManagement/MiniPrograms/UserInfos/UserInfo/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Web/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Web/Properties/launchSettings.json -------------------------------------------------------------------------------- /modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Web/WeChatManagementMiniProgramsWebModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/src/EasyAbp.WeChatManagement.MiniPrograms.Web/WeChatManagementMiniProgramsWebModule.cs -------------------------------------------------------------------------------- /modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.Application.Tests/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.Application.Tests/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.Application.Tests/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.Application.Tests/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.Application.Tests/MiniPrograms/FakeLoginAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.Application.Tests/MiniPrograms/FakeLoginAppService.cs -------------------------------------------------------------------------------- /modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.Application.Tests/MiniPrograms/FakeLoginWeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.Application.Tests/MiniPrograms/FakeLoginWeService.cs -------------------------------------------------------------------------------- /modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.Application.Tests/MiniProgramsApplicationTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.Application.Tests/MiniProgramsApplicationTestBase.cs -------------------------------------------------------------------------------- /modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.Application.Tests/UserInfos/UserInfoAppServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.Application.Tests/UserInfos/UserInfoAppServiceTests.cs -------------------------------------------------------------------------------- /modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.Domain.Tests/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.Domain.Tests/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.Domain.Tests/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.Domain.Tests/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.Domain.Tests/MiniProgramsDomainTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.Domain.Tests/MiniProgramsDomainTestBase.cs -------------------------------------------------------------------------------- /modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.Domain.Tests/UserInfos/UserInfoDomainTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.Domain.Tests/UserInfos/UserInfoDomainTests.cs -------------------------------------------------------------------------------- /modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.EntityFrameworkCore.Tests/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.EntityFrameworkCore.Tests/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.EntityFrameworkCore.Tests/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.EntityFrameworkCore.Tests/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.HttpApi.Client.ConsoleTestApp/ClientDemoService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.HttpApi.Client.ConsoleTestApp/ClientDemoService.cs -------------------------------------------------------------------------------- /modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.HttpApi.Client.ConsoleTestApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.HttpApi.Client.ConsoleTestApp/Program.cs -------------------------------------------------------------------------------- /modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.HttpApi.Client.ConsoleTestApp/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.HttpApi.Client.ConsoleTestApp/appsettings.json -------------------------------------------------------------------------------- /modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.MongoDB.Tests/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.MongoDB.Tests/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.MongoDB.Tests/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.MongoDB.Tests/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.MongoDB.Tests/MongoDB/MiniProgramsMongoDbTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.MongoDB.Tests/MongoDB/MiniProgramsMongoDbTestBase.cs -------------------------------------------------------------------------------- /modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.MongoDB.Tests/MongoDB/MongoDbFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.MongoDB.Tests/MongoDB/MongoDbFixture.cs -------------------------------------------------------------------------------- /modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.MongoDB.Tests/MongoDB/MongoTestCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.MongoDB.Tests/MongoDB/MongoTestCollection.cs -------------------------------------------------------------------------------- /modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.TestBase/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.TestBase/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.TestBase/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.TestBase/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.TestBase/MiniProgramsDataSeedContributor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.TestBase/MiniProgramsDataSeedContributor.cs -------------------------------------------------------------------------------- /modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.TestBase/MiniProgramsTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.TestBase/MiniProgramsTestBase.cs -------------------------------------------------------------------------------- /modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.TestBase/MiniProgramsTestConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.TestBase/MiniProgramsTestConsts.cs -------------------------------------------------------------------------------- /modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.TestBase/Security/FakeCurrentPrincipalAccessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.TestBase/Security/FakeCurrentPrincipalAccessor.cs -------------------------------------------------------------------------------- /modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.TestBase/WeChatManagementMiniProgramsTestBaseModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/MiniPrograms/test/EasyAbp.WeChatManagement.MiniPrograms.TestBase/WeChatManagementMiniProgramsTestBaseModule.cs -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/.gitattributes: -------------------------------------------------------------------------------- 1 | **/wwwroot/libs/** linguist-vendored 2 | -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/.gitignore -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/.prettierrc -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/EasyAbp.WeChatManagement.ThirdPartyPlatforms.abpmdl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/EasyAbp.WeChatManagement.ThirdPartyPlatforms.abpmdl.json -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/EasyAbp.WeChatManagement.ThirdPartyPlatforms.abpsln.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/EasyAbp.WeChatManagement.ThirdPartyPlatforms.abpsln.json -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/EasyAbp.WeChatManagement.ThirdPartyPlatforms.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/EasyAbp.WeChatManagement.ThirdPartyPlatforms.sln -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/EasyAbp.WeChatManagement.ThirdPartyPlatforms.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/EasyAbp.WeChatManagement.ThirdPartyPlatforms.sln.DotSettings -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/NuGet.Config -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/docker-compose.migrations.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/docker-compose.migrations.yml -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/docker-compose.override.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/docker-compose.override.yml -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/docker-compose.yml -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/host/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Host.Shared/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Host.Shared.abppkg.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/host/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Host.Shared/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/host/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Host.Shared/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/host/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Host.Shared/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/host/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Host.Shared/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Application.Contracts/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Application.Contracts.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.application-contracts" 3 | } -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Application.Contracts/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Application.Contracts/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Application.Contracts/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Application.Contracts/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Application/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Application.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.application" 3 | } -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Application/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Application/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Application/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Application/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Domain.Shared/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Domain.Shared.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.domain-shared" 3 | } -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Domain.Shared/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Domain.Shared/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Domain.Shared/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Domain.Shared/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Domain/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Domain.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.domain" 3 | } -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Domain/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Domain/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Domain/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Domain/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.EntityFrameworkCore/EasyAbp.WeChatManagement.ThirdPartyPlatforms.EntityFrameworkCore.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.ef" 3 | } -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.EntityFrameworkCore/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.EntityFrameworkCore/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.EntityFrameworkCore/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.EntityFrameworkCore/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.HttpApi.Client/EasyAbp.WeChatManagement.ThirdPartyPlatforms.HttpApi.Client.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.http-api-client" 3 | } -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.HttpApi.Client/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.HttpApi.Client/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.HttpApi.Client/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.HttpApi.Client/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.HttpApi/EasyAbp.WeChatManagement.ThirdPartyPlatforms.HttpApi.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.http-api" 3 | } -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.HttpApi/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.HttpApi/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.HttpApi/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.HttpApi/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Installer/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Installer/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Installer/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Installer/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.MongoDB/EasyAbp.WeChatManagement.ThirdPartyPlatforms.MongoDB.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.mongodb" 3 | } -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.MongoDB/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.MongoDB/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.MongoDB/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.MongoDB/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Web/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Web.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.mvc" 3 | } -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Web/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Web/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Web/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Web/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Web/Menus/ThirdPartyPlatformsMenus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Web/Menus/ThirdPartyPlatformsMenus.cs -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Web/Pages/ThirdPartyPlatformsPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Web/Pages/ThirdPartyPlatformsPageModel.cs -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Web/Pages/WeChatManagement/ThirdPartyPlatforms/Authorization/index.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Web/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/src/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Web/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/test/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Application.Tests/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Application.Tests.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.test" 3 | } -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/test/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Application.Tests/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/test/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Application.Tests/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/test/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Application.Tests/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/test/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Application.Tests/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/test/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Domain.Tests/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Domain.Tests.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.test" 3 | } -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/test/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Domain.Tests/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/test/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Domain.Tests/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/test/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Domain.Tests/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/test/EasyAbp.WeChatManagement.ThirdPartyPlatforms.Domain.Tests/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/test/EasyAbp.WeChatManagement.ThirdPartyPlatforms.EntityFrameworkCore.Tests/EasyAbp.WeChatManagement.ThirdPartyPlatforms.EntityFrameworkCore.Tests.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.test" 3 | } -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/test/EasyAbp.WeChatManagement.ThirdPartyPlatforms.EntityFrameworkCore.Tests/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/test/EasyAbp.WeChatManagement.ThirdPartyPlatforms.EntityFrameworkCore.Tests/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/test/EasyAbp.WeChatManagement.ThirdPartyPlatforms.EntityFrameworkCore.Tests/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/test/EasyAbp.WeChatManagement.ThirdPartyPlatforms.EntityFrameworkCore.Tests/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/test/EasyAbp.WeChatManagement.ThirdPartyPlatforms.HttpApi.Client.ConsoleTestApp/EasyAbp.WeChatManagement.ThirdPartyPlatforms.HttpApi.Client.ConsoleTestApp.abppkg.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/test/EasyAbp.WeChatManagement.ThirdPartyPlatforms.HttpApi.Client.ConsoleTestApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/test/EasyAbp.WeChatManagement.ThirdPartyPlatforms.HttpApi.Client.ConsoleTestApp/Program.cs -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/test/EasyAbp.WeChatManagement.ThirdPartyPlatforms.HttpApi.Client.ConsoleTestApp/appsettings.secrets.json: -------------------------------------------------------------------------------- 1 | { 2 | } -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/test/EasyAbp.WeChatManagement.ThirdPartyPlatforms.MongoDB.Tests/EasyAbp.WeChatManagement.ThirdPartyPlatforms.MongoDB.Tests.abppkg.json: -------------------------------------------------------------------------------- 1 | { 2 | "role": "lib.test" 3 | } -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/test/EasyAbp.WeChatManagement.ThirdPartyPlatforms.MongoDB.Tests/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/test/EasyAbp.WeChatManagement.ThirdPartyPlatforms.MongoDB.Tests/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/test/EasyAbp.WeChatManagement.ThirdPartyPlatforms.MongoDB.Tests/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/test/EasyAbp.WeChatManagement.ThirdPartyPlatforms.MongoDB.Tests/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/test/EasyAbp.WeChatManagement.ThirdPartyPlatforms.MongoDB.Tests/MongoDB/MongoDbFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/test/EasyAbp.WeChatManagement.ThirdPartyPlatforms.MongoDB.Tests/MongoDB/MongoDbFixture.cs -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/test/EasyAbp.WeChatManagement.ThirdPartyPlatforms.TestBase/EasyAbp.WeChatManagement.ThirdPartyPlatforms.TestBase.abppkg.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/test/EasyAbp.WeChatManagement.ThirdPartyPlatforms.TestBase/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/test/EasyAbp.WeChatManagement.ThirdPartyPlatforms.TestBase/FodyWeavers.xml -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/test/EasyAbp.WeChatManagement.ThirdPartyPlatforms.TestBase/FodyWeavers.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/test/EasyAbp.WeChatManagement.ThirdPartyPlatforms.TestBase/FodyWeavers.xsd -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/test/EasyAbp.WeChatManagement.ThirdPartyPlatforms.TestBase/ThirdPartyPlatformsTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/test/EasyAbp.WeChatManagement.ThirdPartyPlatforms.TestBase/ThirdPartyPlatformsTestBase.cs -------------------------------------------------------------------------------- /modules/ThirdPartyPlatforms/test/EasyAbp.WeChatManagement.ThirdPartyPlatforms.TestBase/ThirdPartyPlatformsTestConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/modules/ThirdPartyPlatforms/test/EasyAbp.WeChatManagement.ThirdPartyPlatforms.TestBase/ThirdPartyPlatformsTestConsts.cs -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/.gitattributes: -------------------------------------------------------------------------------- 1 | **/wwwroot/libs/** linguist-vendored 2 | -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/.gitignore -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/common.props -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Application/WeChatManagementSampleAppService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Application/WeChatManagementSampleAppService.cs -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.DbMigrator/DbMigratorHostedService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.DbMigrator/DbMigratorHostedService.cs -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.DbMigrator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.DbMigrator/Program.cs -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.DbMigrator/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.DbMigrator/appsettings.json -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Domain.Shared/MultiTenancy/MultiTenancyConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Domain.Shared/MultiTenancy/MultiTenancyConsts.cs -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Domain/Settings/WeChatManagementSampleSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Domain/Settings/WeChatManagementSampleSettings.cs -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Domain/WeChatManagementSample.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Domain/WeChatManagementSample.Domain.csproj -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Domain/WeChatManagementSampleConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Domain/WeChatManagementSampleConsts.cs -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Domain/WeChatManagementSampleDomainModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Domain/WeChatManagementSampleDomainModule.cs -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.HttpApi/Models/Test/TestModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.HttpApi/Models/Test/TestModel.cs -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.HttpApi/WeChatManagementSample.HttpApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.HttpApi/WeChatManagementSample.HttpApi.csproj -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.HttpApi/WeChatManagementSampleHttpApiModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.HttpApi/WeChatManagementSampleHttpApiModule.cs -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/Pages/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/Pages/Account/Login.cshtml -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/Pages/Account/Login.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/Pages/Account/Login.cshtml.cs -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/Pages/Index.cshtml -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/Pages/Index.css: -------------------------------------------------------------------------------- 1 | body { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/Pages/Index.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | abp.log.debug('Index.js initialized!'); 3 | }); -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/Pages/WeChatManagementSamplePageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/Pages/WeChatManagementSamplePageModel.cs -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/Program.cs -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/WeChatManagementSample.Web.Ids4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/WeChatManagementSample.Web.Ids4.csproj -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/WeChatManagementSampleWebIds4Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/WeChatManagementSampleWebIds4Module.cs -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/abp.resourcemapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/abp.resourcemapping.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/appsettings.json -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/gulpfile.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/package.json -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/tempkey.jwk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/tempkey.jwk -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/tempkey.rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/tempkey.rsa -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/abp/core/abp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/abp/core/abp.css -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/abp/core/abp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/abp/core/abp.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/abp/jquery/abp.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/abp/jquery/abp.jquery.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/abp/luxon/abp.luxon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/abp/luxon/abp.luxon.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/abp/utils/abp-utils.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/abp/utils/abp-utils.umd.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/jquery/jquery.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/lodash/lodash.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/lodash/lodash.min.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/luxon/luxon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/luxon/luxon.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/luxon/luxon.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/luxon/luxon.js.map -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/luxon/luxon.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/luxon/luxon.min.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/luxon/luxon.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/luxon/luxon.min.js.map -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/af.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ar-dz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ar-dz.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ar-kw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ar-kw.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ar-ly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ar-ly.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ar-ma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ar-ma.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ar-ps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ar-ps.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ar-sa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ar-sa.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ar-tn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ar-tn.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ar.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/az.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/be.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/bg.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/bm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/bm.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/bn-bd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/bn-bd.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/bn.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/bo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/bo.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/br.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/bs.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ca.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/cs.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/cv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/cv.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/cy.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/da.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/de-at.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/de-at.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/de-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/de-ch.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/de.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/dv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/dv.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/el.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/en-au.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/en-ca.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/en-gb.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/en-ie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/en-ie.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/en-il.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/en-il.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/en-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/en-in.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/en-nz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/en-nz.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/en-sg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/en-sg.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/eo.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/es-do.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/es-do.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/es-mx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/es-mx.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/es-us.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/es-us.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/es.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/et.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/eu.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/fa.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/fi.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/fil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/fil.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/fo.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/fr-ca.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/fr-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/fr-ch.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/fr.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/fy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/fy.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ga.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/gd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/gd.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/gl.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/gom-deva.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/gom-deva.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/gom-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/gom-latn.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/gu.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/he.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/hi.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/hr.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/hu.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/hy-am.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/hy-am.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/id.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/is.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/it-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/it-ch.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/it.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ja.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/jv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/jv.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ka.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/kk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/kk.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/km.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/kn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/kn.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ko.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ku-kmr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ku-kmr.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ku.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ky.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/lb.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/lo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/lo.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/lt.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/lv.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/me.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/mi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/mi.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/mk.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ml.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/mn.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/mr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/mr.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ms-my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ms-my.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ms.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/mt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/mt.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/my.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/my.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/nb.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ne.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/nl-be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/nl-be.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/nl.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/nn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/nn.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/oc-lnc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/oc-lnc.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/pa-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/pa-in.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/pl.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/pt-br.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/pt.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ro.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ru.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/sd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/sd.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/se.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/se.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/si.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/sk.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/sl.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/sq.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/sr-cyrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/sr-cyrl.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/sr.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ss.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/sv.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/sw.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ta.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/te.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/te.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/tet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/tet.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/tg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/tg.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/th.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/tk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/tk.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/tl-ph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/tl-ph.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/tlh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/tlh.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/tr.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/tzl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/tzl.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/tzm-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/tzm-latn.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/tzm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/tzm.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ug-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ug-cn.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/uk.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/ur.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/uz-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/uz-latn.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/uz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/uz.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/vi.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/x-pseudo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/x-pseudo.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/yo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/yo.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/zh-cn.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/zh-hk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/zh-hk.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/zh-mo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/zh-mo.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/zh-tw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/locale/zh-tw.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/moment/moment.min.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/css/select2.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/css/select2.min.css -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/af.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/ar.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/az.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/bg.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/bn.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/bs.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/ca.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/cs.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/da.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/de.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/dsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/dsb.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/el.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/en.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/es.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/et.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/eu.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/fa.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/fi.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/fr.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/gl.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/he.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/hi.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/hr.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/hsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/hsb.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/hu.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/hy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/hy.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/id.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/is.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/it.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/ja.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/ka.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/km.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/ko.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/lt.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/lv.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/mk.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/ms.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/nb.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/ne.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/ne.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/nl.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/pl.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/ps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/ps.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/pt-BR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/pt-BR.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/pt.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/ro.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/ru.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/sk.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/sl.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/sq.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/sr-Cyrl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/sr-Cyrl.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/sr.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/sv.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/th.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/tk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/tk.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/tr.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/uk.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/vi.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/zh-CN.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/zh-CN.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/zh-TW.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/i18n/zh-TW.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/select2/js/select2.min.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/sweetalert2/sweetalert2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/sweetalert2/sweetalert2.css -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/sweetalert2/sweetalert2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/sweetalert2/sweetalert2.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/timeago/jquery.timeago.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/timeago/jquery.timeago.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/timeago/locales/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/wwwroot/libs/timeago/locales/README.md -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.Ids4/yarn.lock -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/Pages/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/Pages/Account/Login.cshtml -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/Pages/Account/Login.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/Pages/Account/Login.cshtml.cs -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/Pages/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/Pages/Index.cshtml -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/Pages/Index.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/Pages/Index.cshtml.cs -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/Pages/Index.css: -------------------------------------------------------------------------------- 1 | body { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/Pages/Index.js: -------------------------------------------------------------------------------- 1 | $(function () { 2 | abp.log.debug('Index.js initialized!'); 3 | }); -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/Program.cs -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/abp.resourcemapping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/abp.resourcemapping.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/appsettings.json -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/gulpfile.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/package.json -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/tempkey.jwk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/tempkey.jwk -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/tempkey.rsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/tempkey.rsa -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/abp/core/abp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/abp/core/abp.css -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/abp/core/abp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/abp/core/abp.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/jquery/jquery.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/lodash/lodash.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/lodash/lodash.min.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/luxon/luxon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/luxon/luxon.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/luxon/luxon.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/luxon/luxon.js.map -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/luxon/luxon.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/luxon/luxon.min.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/af.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/ar.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/az.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/be.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/be.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/bg.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/bm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/bm.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/bn.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/bo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/bo.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/br.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/bs.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/ca.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/cs.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/cv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/cv.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/cy.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/da.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/de.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/dv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/dv.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/el.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/eo.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/es.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/et.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/eu.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/fa.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/fi.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/fil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/fil.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/fo.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/fr.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/fy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/fy.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/ga.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/gd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/gd.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/gl.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/gu.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/he.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/hi.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/hr.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/hu.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/id.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/is.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/it.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/ja.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/jv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/jv.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/ka.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/kk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/kk.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/km.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/kn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/kn.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/ko.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/ku.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/ky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/ky.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/lb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/lb.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/lo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/lo.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/lt.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/wwwroot/libs/moment/locale/lv.js -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/src/WeChatManagementSample.Web.OpenIddict/yarn.lock -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/test/WeChatManagementSample.Domain.Tests/Samples/SampleDomainTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/test/WeChatManagementSample.Domain.Tests/Samples/SampleDomainTests.cs -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/test/WeChatManagementSample.HttpApi.Client.ConsoleTestApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/test/WeChatManagementSample.HttpApi.Client.ConsoleTestApp/Program.cs -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/test/WeChatManagementSample.TestBase/WeChatManagementSampleTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/test/WeChatManagementSample.TestBase/WeChatManagementSampleTestBase.cs -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/test/WeChatManagementSample.TestBase/WeChatManagementSampleTestConsts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/test/WeChatManagementSample.TestBase/WeChatManagementSampleTestConsts.cs -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/test/WeChatManagementSample.Web.Ids4.Tests/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/test/WeChatManagementSample.Web.Ids4.Tests/Program.cs -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/test/WeChatManagementSample.Web.Ids4.Tests/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "shadowCopy": false 3 | } -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/test/WeChatManagementSample.Web.OpenIddict.Tests/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EasyAbp/WeChatManagement/HEAD/samples/WeChatManagementSample/aspnet-core/test/WeChatManagementSample.Web.OpenIddict.Tests/Program.cs -------------------------------------------------------------------------------- /samples/WeChatManagementSample/aspnet-core/test/WeChatManagementSample.Web.OpenIddict.Tests/xunit.runner.json: -------------------------------------------------------------------------------- 1 | { 2 | "shadowCopy": false 3 | } --------------------------------------------------------------------------------