does replacing the tenant component work for you? https://docs.abp.io/en/abp/latest/UI/Angular/Component-Replacement
for MVC you can override Application name and logo
public class AbpIoDocsBrandingProvider : DefaultBrandingProvider
{
public override string AppName => "Acme - MyBookStore";
public override string LogoUrl => "/images/myLogo.png";
}
To reproduce the problem, we need some extra info:
Your project name:
Template options:
Entity JSON
%UserProfile%\.abp\suite\{Your-Project-Name}\entities\{Your-Entity-Name}.json
The problem is dependency! Cannot resolve parameter 'Gmcs.Themis.ScreenBuilder.Samples.ISampleAppService
'
Check that SampleAppService is registered correctly.
ISampleAppService.cs
public interface ISampleAppService : IApplicationService
{
}
SampleAppService.cs
public class SampleAppService : ApplicationService, ISampleAppService
{
}
1-run the below command in CMD
del %UserProfile%\.abp\cli\access-token.bin && del %UserProfile%\.\AppData\Local\Temp\AbpLicense.bin
2-then
abp login <username> -p <password>
3-then try again:
abp suite
you can customize the user interface per your tenants / users / or any other conditions. See https://docs.abp.io/en/abp/latest/Customizing-Application-Modules-Overriding-User-Interface
see https://support.abp.io/QA/Questions/5#answer-a7176f3f-c297-c06c-0923-39f30889b0c3 basically clearing the local storage and session storage should fix it.
I've created a Gist with 6 steps to implement this feature. https://gist.github.com/ebicoglu/04cedc99d0365f4d20a6233cca69cf5b
Note:
This guideline will be a document after next release (April 4, 2020).
And the URL will be https://docs.abp.io/en/commercial/latest/guides/implementing-passwordless-authentication
To trust .NET self signed SSL certificates, perform the following one-time step. Close all your browsers and open command prompt, write:
dotnet dev-certs https --trust
This will allow to trust the self-signed ASP NET Core HTTPS development certificate in your computer.
A confirmation prompt will be displayed if the certificate was not previously trusted. Click yes
on the prompt to trust the certificate.
If you want to clear your existing HTTPS certificates. Open command prompt, write:
dotnet dev-certs https –clean
Google Chrome uses the
Certificate Store
on Windows for validating certificates, therefore when you run the command, Chrome will not complain about the certificate anymore!
References:
hi,
how do you build for production?