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。
标签:execute,创建,dotnet,net,安装,NET,SDK From: https://www.cnblogs.com/yuanxinglan/p/18520349