How do I find out which version of .NET is installed?
I\'m looking for something as simple as \"java -version\" that I can type at the command prompt and that tells
This answer is applicable to .NET Core only!
Typing dotnet --version in your terminal of choice will print out the version of the .NET Core SDK in use.
dotnet --version
Learn more about the dotnet command here.
dotnet