Activities of "maliming"

Does that not work for Sqlite?

Yes, Can you try same way just like the Identity module?

Answer

HI

There are some syntax problem with this file.

You can ignore this file. https://docs.abp.io/en/abp/latest/UI/AspNetCore/Bundling-Minification#ignore-for-minification

You can also minify this file manually then rename it to plugins.bundle.min.js

hi

Does the AbpLicenseCode exists in your appsettings.json

hi

You can try to change the environment or remove the ConfigureVirtualFileSystem method in your web module. ASPNETCORE_ENVIRONMENT=Development

Answer

hi

I will check asap. Thanks.

hi

Have you configured the Includeextension in your EF Core module?

https://github.com/abpframework/abp/blob/dev/modules/identity/src/Volo.Abp.Identity.EntityFrameworkCore/Volo/Abp/Identity/EntityFrameworkCore/IdentityEfCoreQueryableExtensions.cs#L8 https://github.com/abpframework/abp/blob/dev/modules/identity/src/Volo.Abp.Identity.EntityFrameworkCore/Volo/Abp/Identity/EntityFrameworkCore/EfCoreIdentityUserRepository.cs#L281

// Arrange var sltnManager = new SltnManager(_sltnRepository);

Why not get service through DI container? eg: GetRequiredService<SltnManager>()

Answer

btw if you have the min version(plugins.bundle.min.js) of

You can use it directly.

hi

You can try to switch to Host side in the DynamicResourceLocalizer subclass.


using Microsoft.Extensions.DependencyInjection;
using Volo.Abp.Caching;
using Volo.Abp.DependencyInjection;
using Volo.Abp.LanguageManagement;
using Volo.Abp.Localization;
using Volo.Abp.MultiTenancy;

namespace MyCompanyName.MyProjectName.Web
{
    [Dependency(ReplaceServices = true)]
    public class MyDynamicResourceLocalizer : DynamicResourceLocalizer
    {
        public MyDynamicResourceLocalizer(
            IServiceScopeFactory serviceScopeFactory,
            IDistributedCache<LanguageTextCacheItem> cache)
            : base(serviceScopeFactory, cache)
        {

        }

        protected override LanguageTextCacheItem CreateCacheItem(LocalizationResource resource, string cultureName)
        {
            var cacheItem = new LanguageTextCacheItem();

            using (var scope = ServiceScopeFactory.CreateScope())
            {
                var currentTenant = scope.ServiceProvider.GetRequiredService<ICurrentTenant>();
                using (currentTenant.Change(null))
                {
                    var texts = scope.ServiceProvider
                        .GetRequiredService<ILanguageTextRepository>()
                        .GetList(resource.ResourceName, cultureName);

                    foreach (var text in texts)
                    {
                        cacheItem.Dictionary[text.Name] = text.Value;
                    }
                }
            }

            return cacheItem;
        }
    }
}

Answer

hi

Can you share the js files? liming.ma@volosoft.com

Showing 10581 to 10590 of 11559 entries
Learn More, Pay Less
33% OFF
All Trainings!
Get Your Deal
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on December 25, 2025, 06:16
1
ABP Assistant
🔐 You need to be logged in to use the chatbot. Please log in first.