hi
Check this issue https://github.com/npm/cli/issues/4980#issuecomment-1145524555
HI
We will create a maui template.
You can refer to this to bootstrap the abp module system.
https://github.com/abpframework/abp/blob/dev/templates/maui/src/MyCompanyName.MyProjectName/MauiProgram.cs#L13-L34
hi
This is by design. but you can override this service to custom the logic
https://github.com/abpframework/abp/blob/dev/modules/permission-management/src/Volo.Abp.PermissionManagement.Domain/Volo/Abp/PermissionManagement/PermissionDataSeedContributor.cs#L10 https://docs.abp.io/en/abp/latest/Customizing-Application-Modules-Overriding-Services#customizing-the-application-modules-overriding-services
hi
Please try to install the npm and yarn
https://docs.npmjs.com/downloading-and-installing-node-js-and-npm https://classic.yarnpkg.com/lang/en/docs/install/#windows-stable
hi
You can refer to its documentation and try to implement it. If you got any problems, please feel free to report back. We don't have any suggestions or samples for this at the moment.
hi
Please share your project with me. liming.ma@volosoft.com
ok, Thanks. Our Angular developers will check this.
hi
Package :Volo.Abp.AspNetCore.Mvc/
namespace Volo.Abp.AspNetCore.Mvc.ApplicationConfigurations;
https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.AspNetCore.Mvc/Volo/Abp/AspNetCore/Mvc/ApplicationConfigurations/AbpApplicationConfigurationAppService.cs#L24
https://docs.abp.io/en/abp/latest/Customizing-Application-Modules-Overriding-Services
hi
Add these code to the web.public project.
public override void ConfigureServices(ServiceConfigurationContext context)
{
var serviceType = typeof (CmsKitProPublicApplicationContractsModule).Assembly.GetTypes().FirstOrDefault(x => x == typeof(IUrlShortingPublicAppService));
if (serviceType != null)
{
context.Services.Configure<AbpHttpClientOptions>(options =>
{
options.HttpClientProxies[serviceType] = new HttpClientProxyConfig(serviceType, "CmsKitProPublic");
});
}
}
hi
It seems the issue has been fixed.
Can you reproduce problem and share the project with me?
liming.ma@volosoft.com