Skip to content

Commit d478f2e

Browse files
authored
docs(readme): modernize README with new logo and screenshots (#64)
1 parent 4348c20 commit d478f2e

14 files changed

Lines changed: 50 additions & 64 deletions

README.md

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,23 @@
1+
<div align="center">
2+
3+
<img src="https://raw.githubusercontent.com/CodingWithCalvin/VS-ProjectRenamifier/main/resources/logo.png" alt="Project Renamifier Logo" width="256"/>
4+
15
# 🔄 Project Renamifier
26

37
[![License](https://img.shields.io/github/license/CodingWithCalvin/VS-ProjectRenamifier?style=for-the-badge)](https://github.com/CodingWithCalvin/VS-ProjectRenamifier/blob/main/LICENSE)
8+
[![Build](https://img.shields.io/github/actions/workflow/status/CodingWithCalvin/VS-ProjectRenamifier/build.yml?style=for-the-badge)](https://github.com/CodingWithCalvin/VS-ProjectRenamifier/actions/workflows/build.yml)
9+
410
[![Visual Studio Marketplace Version](https://img.shields.io/visual-studio-marketplace/v/CodingWithCalvin.VS-ProjectRenamifier?style=for-the-badge)](https://marketplace.visualstudio.com/items?itemName=CodingWithCalvin.VS-ProjectRenamifier)
511
[![Visual Studio Marketplace Installs](https://img.shields.io/visual-studio-marketplace/i/CodingWithCalvin.VS-ProjectRenamifier?style=for-the-badge)](https://marketplace.visualstudio.com/items?itemName=CodingWithCalvin.VS-ProjectRenamifier)
12+
[![Visual Studio Marketplace](https://img.shields.io/badge/VS%20Marketplace-Install-blue?style=for-the-badge&logo=visualstudio)](https://marketplace.visualstudio.com/items?itemName=CodingWithCalvin.VS-ProjectRenamifier)
613
[![Visual Studio Marketplace Rating](https://img.shields.io/visual-studio-marketplace/r/CodingWithCalvin.VS-ProjectRenamifier?style=for-the-badge)](https://marketplace.visualstudio.com/items?itemName=CodingWithCalvin.VS-ProjectRenamifier)
714

8-
> 🚀 **Rename projects the way it should have always worked!**
15+
🚀 **Rename projects the way it should have always worked!**
916

1017
Tired of the tedious, error-prone process of renaming a project in Visual Studio? Say goodbye to manual find-and-replace across dozens of files! **Project Renamifier** handles everything automatically — one click, one dialog, done! ✨
1118

19+
</div>
20+
1221
## ✨ Features
1322

1423
When you rename a project, this extension handles **all** of the following automatically:
@@ -26,11 +35,17 @@ When you rename a project, this extension handles **all** of the following autom
2635

2736
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. 🛡️
2837

38+
## 📸 Screenshots
39+
40+
![Rename Dialog](https://raw.githubusercontent.com/CodingWithCalvin/VS-ProjectRenamifier/main/resources/rename-dialog.png)
41+
42+
![Progress Dialog](https://raw.githubusercontent.com/CodingWithCalvin/VS-ProjectRenamifier/main/resources/progress-dialog.png)
43+
2944
## 📥 Installation
3045

3146
### Visual Studio Marketplace (Recommended)
3247

33-
Install directly from the [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=CodingWithCalvin.VS-ProjectRenamifier) — just one click! 🎯
48+
[![Install from VS Marketplace](https://img.shields.io/badge/Install%20from-VS%20Marketplace-purple?style=for-the-badge&logo=visualstudio)](https://marketplace.visualstudio.com/items?itemName=CodingWithCalvin.VS-ProjectRenamifier)
3449

3550
### Manual Installation
3651

@@ -40,7 +55,7 @@ Install directly from the [Visual Studio Marketplace](https://marketplace.visual
4055
## 🎮 Usage
4156

4257
1. 🖱️ Right-click on a project in Solution Explorer
43-
2. 📋 Select **Rename Project (Renamify)**
58+
2. 📋 Select **Renamify Project**
4459
3. ✏️ Enter the new project name in the dialog
4560
4. 🚀 Click **Rename** and watch the magic happen!
4661

@@ -51,6 +66,10 @@ Install directly from the [Visual Studio Marketplace](https://marketplace.visual
5166
| 🟢 Visual Studio 2022 (17.x) | x64 (amd64), ARM64 |
5267
| 🟢 Visual Studio 2026 (18.x) | x64 (amd64), ARM64 |
5368

69+
## 📄 License
70+
71+
This project is licensed under the [MIT License](LICENSE).
72+
5473
## 🤝 Contributing
5574

5675
Contributions are welcome! Issues, PRs, feature requests — bring it on! 💪

resources/folder-icon.png

-655 Bytes
Binary file not shown.

resources/icon.png

1.13 KB
Loading

resources/icon.svg

Lines changed: 4 additions & 0 deletions
Loading

resources/logo.png

-211 KB
Loading

resources/logo.svg

Lines changed: 13 additions & 0 deletions
Loading

resources/progress-dialog.png

19.2 KB
Loading

resources/rename-dialog.png

8.47 KB
Loading

src/CodingWithCalvin.ProjectRenamifier/CodingWithCalvin.ProjectRenamifier.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
</ItemGroup>
1717

1818
<ItemGroup>
19-
<Content Include="..\..\resources\folder-icon.png" Link="Resources\folder-icon.png">
19+
<Content Include="..\..\resources\icon.png" Link="Resources\icon.png">
2020
<IncludeInVSIX>true</IncludeInVSIX>
2121
</Content>
2222
<Content Include="..\..\resources\logo.png" Link="Resources\logo.png">

src/CodingWithCalvin.ProjectRenamifier/Commands/RenamifyProjectCommand.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ private RenamifyProjectCommand(Package package)
3535
}
3636

3737
var menuCommandId = new CommandID(
38-
PackageGuids.CommandSetGuid,
39-
PackageIds.RenamifyProjectCommandId
38+
VSCommandTableVsct.CommandSetGuid.Guid,
39+
VSCommandTableVsct.CommandSetGuid.RenamifyProjectCommandId
4040
);
4141
var menuItem = new MenuCommand(Execute, menuCommandId);
4242
commandService.AddCommand(menuItem);

0 commit comments

Comments
 (0)