A Visual Studio extension that allows you to safely and completely rename a project from within Visual Studio.
When you rename a project, this extension handles all of the following automatically:
- Project file rename - Renames the
.csprojfile to match the new name - Directory rename - Renames the parent directory if it matches the old project name
- Project properties - Updates
RootNamespaceandAssemblyNamein the project file - Namespace declarations - Updates all
namespacedeclarations in source files - Using statements - Updates
using,global using,using static, and using aliases across the solution - Fully qualified references - Updates references like
OldName.MyClasstoNewName.MyClass - Project references - Updates
ProjectReferencepaths in all projects that reference the renamed project - Solution structure - Preserves solution folder organization
The extension shows a progress dialog with step-by-step status as it performs the rename operation, and includes error handling with rollback support if something goes wrong.
Install directly from the Visual Studio Marketplace.
- Download the
.vsixfile from the Releases page - Double-click the downloaded file to install
- Right-click on a project in Solution Explorer
- Select Rename Project (Renamify)
- Enter the new project name in the dialog
- Click Rename and watch the progress as each step completes
- Visual Studio 2022 (17.x)
- Visual Studio 2026 (18.x)
- Architectures: x64 (amd64), ARM64
Contributions are welcome! Issues, PRs, etc.
For cloning and building this project yourself, make sure to install the Extensibility Essentials 2022 extension for Visual Studio which enables some features used by this project.