Visual Studio:自动重命名项目(和目录)的工具
类似的问题在SO中已经被问过很多次了。但大多数答案建议手动完成,这非常耗时。
有没有可以自动重命名项目(和目录)的免费工具?
Filip Premanad Rydlo 提及 Visual Studio 项目重命名器,但自 2001 年以来就没有更新过。
这个工具可以重命名Visual C++项目。但我的项目主要是C#。
CopyWiz 可以重命名现有项目;修复项目中的目录和文件名
,但费用为 39 美元。
类似问题:
Similar questions have been asked many times in SO. But most answers suggested to do it manually, which is very time consuming.
Any free tools that can rename projects (and directories) automatically?
Filip Premanad Rydlo mentioned Visual Studio Project Renamer, but it has not been updated since 2001.
This tool can rename Visual C++ Projects. But my projects are mostly C#.
CopyWiz can Rename an existing project; Fix up directories and filenames in your projects
, but it's costs 39 USD.
Similar questions:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
请将 Visual Studio Project Renamer 添加到列表中。您提到过,它不一样。但正如你所说,该项目已经很久没有更新了。此外,它仅从命令行运行。这让我写了一个 GUI 版本,它基本上可以让你直接从 GUI 重命名项目。目前该工具支持 Subversion(我将很快添加对 GIT、HG 和 TFS 的支持)。
请查看此页面了解更多信息。
Please add the Visual Studio Project Renamer to the list.It is not the same, you have mentioned. But as you said, that project is not updated since ages. Also, it runs only from the comand line. That got me to write a gui version, which basicly lets you rename projects directly from a gui. For now the tool supports Subversion (I will add support for GIT,HG and TFS soon).
Please check this page for more information.
就我个人而言,我讨厌“赶潮流”,但我发现为此创建自己的小实用程序是最好的路线。重命名和项目类型有很多错综复杂的问题。
我知道这不是最好的事情,但总的来说,我花了 20 分钟来编写该实用程序,并且从那时起就一直在使用它。
Personally I hate to "jump on the bandwagon", but I've found that creating my own little utility for this was the best route. There are so many intricacies with a rename and project types.
I know it isn't the best thing, but overall it took me 20 minutes to write the utility and have been using it ever since.
如果有人来这里寻找解决方案:
我编写了一个开源 cmdline 实用程序,它还可以处理 git 中的重命名,这样历史记录就不会丢失,移动到不同的目录等。
通过 dotnet tool install -g ModernRonin 进行安装。 ProjectRenamer,请参阅 https://github.com/ModernRonin/ProjectRenamer 了解文档。
In case anyone comes here looking for a solution:
I wrote an open-source cmdline utility that also deals with renaming in git so the history is not lost, moving to different directories etc.
Install via
dotnet tool install -g ModernRonin.ProjectRenamer
, see https://github.com/ModernRonin/ProjectRenamer for documentation.