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
https://support.abp.io/QA/Questions/3217/How-can-I-customize-login-page-in-blazor-server-app#answer-9c9753b6-6daf-598c-976e-3a046e524425
You can only use different connection strings in different environments, otherwise there will be conflicts.
hi
Create a class and inherit the AbpApplicationConfigurationAppService then override the methods.
[ExposeServices(typeof(IAbpApplicationConfigurationAppService), typeof(AbpApplicationConfigurationAppServiceApplicationService))]
public class MyAbpApplicationConfigurationAppService : AbpApplicationConfigurationAppService
hi
Mainly the account module, because there may be many changes, I suggest you download the source code of the module.