.NET Core, failed to install dotnet -info

When I type dotnet --info in cmd, the whole screen is covered Failed to leave breadcrumb

What can cause this behavior? Search on Google, but it looks like I'm the only person who has this problem. Recently, when I tried working with Visual Studio Code, I installed the C # extension and opened my .cs file and I received this message

 Updating C# dependencies... Platform: win32, x86_64 Downloading package 'OmniSharp for Windows (.NET 4.6 / x64)' (21928 KB) .................... Done! Downloading package '.NET Core Debugger (Windows / x64)' (39217 KB) .................... Done! Installing package 'OmniSharp for Windows (.NET 4.6 / x64)' Installing package '.NET Core Debugger (Windows / x64)' Finished Failed to spawn 'dotnet --info' 
+7
c # visual-studio .net-core visual-studio-code
source share
2 answers

I did it myself.

You may have missed a bit of information in the header by pointing to this URL. https://www.microsoft.com/net/core#macos

You need to install the .net kernel.

+1
source share

First you need to install the .NET Framework

you will also need the .NET SDK

open cmd where dotnet.exe exists (for example)

 C:\Program Files\dotnet\dotnet.exe 

run followind in cmd

 dotnet --info 
+1
source share

All Articles