Activities of "maliming"

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

8a) Open Solution & from Services-> AdministrationService -> Right Click & added "OrderService.Application.Contracts.dll" by adding Project Reference (right click)

Can you try to update the csporj to use ProjectReference instead add dll file?

Showing 7841 to 7850 of 8822 entries
Made with ❤️ on ABP v9.1.0-preview. Updated on January 02, 2025, 07:06