创建.net项目时显示.net SDK未被安装

Could not execute because the application was not found or a compatible .NET SDK is not installed.
Possible reasons for this include:
* You intended to execute a .NET program:
The application 'new' does not exist.
* You intended to execute a .NET SDK command:
It was not possible to find any installed .NET SDKs.
Install a .NET SDK from:
https://aka.ms/dotnet-download

解决方法:

它中断的原因是 .NET Core SDK 安装程序的工作方式,它由于某种原因没有正确安装 SDK,所以你必须手动安装。

进入到官网,下载最新的二进制文件版本。下载的文件是.zip 格式,解压后复制文件夹的内容。Go to C:\Program Files (x86)\dotnet\然后删除它本身的内容,将解压后复制的文件内容粘贴到文件夹中。重新打开一个新的命令提示符或 PowerShell,然后键入dotnet --info.得到如下图所示。

运行成功,可以正常创建项目。

 二进制文件必须是最新版本的,这样才能获得最新版本的 SDK。

posted @ 2024-11-01 15:33  不会JAVA的小袁  阅读(32)  评论(0编辑  收藏  举报