How to uninstall ABP Suite?
You can simply uninstall ABP Suite with the terminal command:
abp suite remove
How to do a clean uninstallation of ABP Suite?
To cleanly uninstall ABP Suite, follow these steps:
Terminate your ABP Suite application.
Uninstall ABP Suite via terminal command:
dotnet tool uninstall -g volo.abp.suiteIf exists, delete the application installation folder:
Windows:
%UserProfile%\.dotnet\tools\.store\volo.abp.suiteMAC:
~/.dotnet/tools/.store/volo.abp.suiteIf exists, delete the ABP Suite executable file:
Windows:
%UserProfile%\.dotnet\tools\abp-suite.exeMAC:
~/.dotnet/tools/abp-suiteIf exists, delete license file:
Windows:
%UserProfile%\AppData\Local\Temp\AbpLicense.binMAC:
$TMPDIR/AbpLicense.binDelete the access-token file:
Windows:
%UserProfile%\.abp\cli\access-token.binMAC:
~/.abp/cli/access-token.bin
You have successfully uninstalled ABP Suite!
Reinstall ABP Suite
If you want to reinstall ABP Suite:
Make sure you have already installed the ABP CLI (by running the
abpcommand on a terminal).Login your account via ABP CLI:
abp login <username>Then, install the ABP Suite with the following command:
abp suite installIf you want to install the preview version add the parameter
--preview.