How to determine if .NET Core is installed

前端 未结 16 1815
难免孤独
难免孤独 2020-12-07 06:53

I know that for older versions of .NET, you can determine if a given version is installed by following

https://support.microsoft.com/en-us/kb/318785  
         


        
16条回答
  •  暖寄归人
    2020-12-07 07:25

    You can check if dotnet.exe is available:

    where dotnet

    You can then check the version:

    dotnet --version

    UPDATE: There is now a better way of doing this, which is well explained in many other answers:

    dotnet --info

提交回复
热议问题