Creating your dotnet global tool
Why do we need this? Well, if you're running standard stuff like nuget (at least at the time of this writing), that's not really compatible across platoform. So you might wanna create a tool that help you. Simple upload it to nugt.org and you're good to go.
Create a project using normal dotnet cli for example,
dotnet new console -o myglobalTool
Next do you thing!
Setup your project (add them) as shown below :-
And that's all! Man that was quick.
Comments