Activities of "alper"

Answer

For the Razor Pages, you need to create your own setting management page and you can use ISettingProvider to retrieve your settings & values. See https://docs.abp.io/en/abp/latest/Settings

Question

Write your issues when upgrading to v2.4. Tomorrow, there will be v2.4.1 with some bugfixes (especiall for Suite)

You need to update your local EF Core CLI tool to the latest. Run the below command in command prompt:

dotnet tool update --global dotnet-ef

When adding a new entity using Suite, it says "The EF Core tools version '3.1.0' is older than that of the runtime '3.1.2'

I couldn't reproduce your problem. There'll be new version on Monday 06 April. Can you try with the latest version. In the new version, there's also a new feature: "Unit test". Suite creates unit tests of your entity.

Hi,

In this doc it's explained https://docs.abp.io/en/abp/latest/Entity-Framework-Core-Migrations#create-a-new-entity

We are creating a new feature to extend the existing entities. For now, you can check out https://docs.abp.io/en/abp/latest/Customizing-Application-Modules-Extending-Entities

Answer

just to change logo, delete the existing logo file and copy your own logo file.

does replacing the tenant component work for you? https://docs.abp.io/en/abp/latest/UI/Angular/Component-Replacement

Answer

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";
    }
    
Showing 1891 to 1900 of 1957 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 20, 2024, 05:21