2 Answer(s)
-
0
- Install/upgrade the ABP CLI:
dotnet tool update -g Volo.Abp.Cli # (or first time) dotnet tool install -g Volo.Abp.Cli- In your solution folder (where the
.slnis), run:
abp updateThis updates all ABP-related NuGet and NPM packages in the solution.
Rebuild and then check the official upgrading notes for version-specific/manual steps (breaking changes, migrations, etc.):
- https://abp.io/docs/latest/release-info/upgrading
If you only want to update NPM packages (Angular UI), you can run the update command with the
--npmoption (supported by the ABP CLI):
abp update --npmNotes:
abp updatetargets ABP packages. For non-ABP NuGet packages, use standard .NET tooling (e.g.,dotnet list package --outdatedand update as needed), but keep ABP packages on consistent versions.
https://docs.abp.io/en/abp/latest/CLI
https://abp.io/docs/latest/cli
https://abp.io/docs/latest/release-info/upgrading
This response was generated by AI. If it didn’t solve your problem, feel free to post a new answer — our support team will jump in to help you soon.
Markdown supported.Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post) -
0
Hi,
You can use the ABP CLI to upgrade all ABP-related packages in your solution.
First, make sure you have the latest ABP CLI:
dotnet tool update -g Volo.Abp.CliThen navigate to your solution root folder and run:
abp updateThis command will automatically update all ABP NuGet packages across the solution. If you also want to update NPM packages, add the
--npmflag:abp update --npmIf you want to upgrade to a specific version, use:
abp update --version <target-version>After upgrading, please check the migration guide for any breaking changes or required manual steps for your target version.
Thanks
Markdown supported.Copy, paste, or drag & drop images and files (max 100 MB per file, 100 MB total per post)