Uninstall Xperience by Kentico components
The Xperience installation process installs several NuGet packages and .NET CLI tools on your machine. See the following sections to learn how to uninstall each component:
- Xperience project templates NuGet package (Kentico.Xperience.Templates)
- .NET CLI tooling for project database management (Kentico.Xperience.DbManager)
- ASP.NET Core Web App projects created from the templates
Xperience project templates
The NuGet package with Xperience project templates can be uninstalled via the following .NET CLI command (depending on the .NET SDK version installed on your machine):
dotnet new uninstall Kentico.Xperience.Templates
dotnet new -u Kentico.Xperience.Templates
This removes the Xperience templates from the system, and they no longer appear in the list offered by the dotnet new command.
Xperience project database manager
Uninstall the database manager tool by calling the following command from your project’s directory:
dotnet tool uninstall Kentico.Xperience.DbManager
The database manager is installed locally within each project created via the provided templates. If you’re removing the entire project, there’s no need to uninstall this component separately.
Projects created from templates
The provided project templates create standard ASP.NET Core Web App project files. To remove individual web applications, simply delete the folder containing the project. The installation process doesn’t modify any configuration on the hosting machine.