Logo

Removing Features

This template includes many features out of the box. It's designed with the philosophy that it's easier to remove what you don't need than to add it later.

Before You Begin
Before removing any feature, ensure you have your project under source control (Git) so you can easily revert if needed. Also, test thoroughly after each removal.

Authentication Features

Admin Features

Other Features

General Tips

Order of Operations

When removing multiple features, follow this order:

  1. Remove configuration settings first
  2. Remove or update code references
  3. Delete files and folders
  4. Clean up navigation links
  5. Build and test

Finding References

Before deleting any file, use Visual Studio's "Find All References" (Shift+F12) or "Find in Files" (Ctrl+Shift+F) to locate all usages. This prevents broken references.

Database Considerations

Some features store data in the database. Removing the feature doesn't automatically remove the data or database columns. The guides indicate when database changes are needed.