ABP Framework version: v3.1.1 Would you please provide guidance on why I am unable to install ABP Suite v3.1.1. Here are the steps taken:
Step 1: dotnet tool install -g volo.abp.cli (Success)
Step 2: abp login <username> -p <password> (Success)
Step 3: abp suite install (Error below)
Reported here https://support.abp.io/QA/Questions/282#answer-804fcdf8-1450-56c2-3624-39f78ab3d96f
How to perform an ABP Suite clean install?
try this
dotnet tool install Volo.Abp.Suite --add-source https://nuget.abp.io/YOUR-PRIVATE-API-KEY/v3/index.json -g
Make sure to replace the YOUR-PRIVATE-API-KEY
with yours (it's in your project's NuGet.Config file)
Suite adds it to main menu automatically. you don't need to manually add. just add-migration and update database, you'll see it in the menu. forexample, if your module project name is Acme.MyStore then there'll be a main menu item called "My Store", all the menu items are added under "My Store" parent menu.
all reported bugs are fixed. for minor versions, there's no release notes
hi @Leaf,
UI Framework is not meaningful for modules because a module solution has both Angular and MVC. So you can ignore the UI Framework : Angular. Probably this text will be removed in the next versions for modules.
@Johannes thanks for your feedback. it's reproduced and fixed in v3.1.1
If you see such an error while you are generating a page with ABP Suite, it means your current EF Core tools needs to be updated.
The EF Core tools version '3.1.5' is older than that of the runtime '3.1.6'. Update the tools for the latest features and bug fixes.
You can update it with the following
dotnet tool update --global dotnet-ef
I see the following error while I am generating a CRUD page with ABP Suite. And DB Migrations are not applied.
The EF Core tools version '3.1.5' is older than that of the runtime '3.1.6'. Update the tools for the latest features and bug fixes.
that's normal and by design.. when there's only MVC project then there'll not be an aspnet-core
folder.