A .NET global tool that opens Visual Studio solution files from the command line.
dotnet tool install --global vstudio
vstudio . # find and open a solution in the current directory
vstudio ./path/to/dir # find and open a solution in a given directory
vstudio ./path/to/MyApp.sln # open a specific solution file directly
dotnet tool uninstall --global vstudio