hi
I now get the full debugging experience with Rider (I can navigate all the sources in Rider, it seems not to be working however in Visual Studio).
Yes, I'm also using Rider. Its debug experience is better than VS, maybe VS needs some settings, I'm not sure.
I am currently evaluating ABP commercial. Which license do we need to purchase to have the same debugging experience? Will this be available with the Team license or only with the Business license?
I recommend you to use the Business version, It contains the source code of all modules.
The Team version encrypts and obfuscates the DLL(source code), you may not be able to debug it well.
https://commercial.abp.io/pricing
hi
Because https://github.com/dotnet/sdk/issues/1458 you need to install https://www.nuget.org/packages/SourceLink.Copy.PdbFiles when we use the source link
hi
Microsoft.AspNetCore.Antiforgery.AntiforgeryValidationException System.Net.Http.HttpRequestException: The SSL connection could not be established, see inner exception.
Please share the full error info. includes request start and end.
hi @jhsanc
See https://support.abp.io/QA/Questions/2727#answer-d44f7341-e939-7e55-ce9b-3a0298305e5c
We will fix this in rc2. today the rc2 will be released.
We would like to store mobile user sign-up information with web application
Username password info or the external login info?
See https://github.com/abpframework/abp/issues/11989
hi
You can create a new IConfiguration
using (var application = AbpApplicationFactory.Create<AppModule>(options =>
{
options.UseAutofac(); //Autofac integration
options.Services.ReplaceConfiguration(your_custom_IConfiguration);
}))