I am creating my own global tool and I'm wondering what is the best practice or, better to say, the best way to use existing .Net CLI commands - for example,
dotnet new sln...
inside my own global tool project? Also, is this the way to go when you want to reuse some functionality that already exists in form of .Net CLI command inside custom global tool?
Thank you very much for replay.