ABP Commercial v3.3.1 License: Business
public override void OnApplicationInitialization(ApplicationInitializationContext context)
{
LicenseChecker.Check<AbpAccountSharedApplicationModule>(context);
}
What is LicenseChecker.Check function? What does it do? Why is it needed?
Also, all of the commericial modules has dependency of Abp.Commercial.Core package? What is this package? And where can I get the source code for this package?
8 Answer(s)
-
0
Hi,
You don't need to add this line of code in your module. we use this module to check commercial license information.
-
0
Since I have the Business license, if I were to rebuild the commercial modules from source code (Volvo.Account.Pro). Can I remove this LicenseChecker.Check<>()? What will happen?
Also, what is the purpose of AbpLicenseCode in appsettings.json file?
Where can I download the source code for Volo.Abp.Commercial.Core?
-
0
hi @truong.nguyen@outlook.com
If you have the source code of the module, you can remove it, the nuget package of abp commercial requires license check.
-
0
Can you also answer these questions?
Also, what is the purpose of AbpLicenseCode in appsettings.json file, generated from Application Template using Abp Suite.
Where can I download the source code for Volo.Abp.Commercial.Core?
-
0
LicenseChecker.Check
will readAbpLicenseCode
inappsettings.json
to check your license.The
Volo.Abp.Commercial.Core
package is not open source. -
0
Thanks. So I assume that if I rebuild all modules from source codes with LicenseChecker removed, then I don't need to include the ApbLicenseCode in the appsettings.json file. Is this correct?
-
0
Correct : )
-
0
Many thanks.