How to determine if .NET Core is installed

前端 未结 16 1810
难免孤独
难免孤独 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:31

    (1) If you are on the Window system.

    Open the command prompt.

     dotnet --version
    

    (2) Run the below command If you are on Linux system.

    dotnet --version
    
    dotnet --info
    

提交回复
热议问题