You can configure Unreal Project Generator so it uses project folder name instead of generic UE5 for solution name generation.
To do it adjust your BuildConfiguration.xml file and add bPrimaryProjectNameFromFolder
option set to true.
It is especially useful when you work on multiple branches at the same time.
Example:
%appdata%\\Unreal Engine\\UnrealBuildTool\\BuildConfiguration.xml
<?xml version="1.0" encoding="utf-8" ?>
<Configuration xmlns="<https://www.unrealengine.com/BuildConfiguration>">
<ProjectFileGenerator>
<bPrimaryProjectNameFromFolder>true</bPrimaryProjectNameFromFolder>
</ProjectFileGenerator>
</Configuration>