I am starting my journey into learning DotNet, and doing a demo application found on MS website, here: https://learn.microsoft.com/en-us/learn/modules/create-razor-pages-aspnet-core/3-exercise-create-new-aspnetcore-app.
I am getting the following error when trying to run dotnet in VSCode:
The term 'dotnet' is not recognized as the name of a cmdlet
, but it works from command line.
Some information:
- When opening a command prompt in Windows 10 (Admin or non admin), or Windows PowerShell,
dotnet --help
is found and responds. - The path to dotnet is set correctly for both my own user and also for the system account (just to be sure).
- The tools is set in my user path as follows:
%USERPROFILE%\.dotnet\tools
. - I tried PowerShell and Command Prompt both as Admin and regular user, to check if it is perhaps a user rights elevation issue that makes it fail in VSCode, but it is not. Both user types work outside VSCode.
As far as I can tell, everything is correct, and the answers here do not work for me: dotnet is not recognized as the name of a cmdlet
My output when I do dotnet --version
from the command prompt or PowerShell is:
C:\Users\bobandalice>dotnet --info
.NET SDK (reflecting any global.json):
Version: 6.0.100
Commit: 9e8b04bbff
Runtime Environment:
OS Name: Windows
OS Version: 10.0.19042
OS Platform: Windows
RID: win10-x64
Base Path: C:\Program Files\dotnet\sdk\6.0.100\
Host (useful for support):
Version: 6.0.0
Commit: 4822e3c3aa
.NET SDKs installed:
6.0.100 [C:\Program Files\dotnet\sdk]
.NET runtimes installed:
Microsoft.AspNetCore.App 6.0.0 [C:\Program Files\dotnet\shared\Microsoft.AspNetCore.App]
Microsoft.NETCore.App 6.0.0 [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]
Microsoft.WindowsDesktop.App 6.0.0 [C:\Program Files\dotnet\shared\Microsoft.WindowsDesktop.App]
To install additional .NET runtimes or SDKs:
https://aka.ms/dotnet-download
When doing the same in VSCode, the output is this:
PS C:\Users\bobandalice\OneDrive\dotnetapps\RazorPagesPizza> dotnet --info
dotnet : The term 'dotnet' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was
included, verify that the path is correct and try again.
At line:1 char:1
+ dotnet --info
+ ~~~~~~
+ CategoryInfo : ObjectNotFound: (dotnet:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
Any ideas?