Dotnet 新建项目不能运行
Dotnet new project cannot run
我(几乎)尝试在 Linux 上使用 dotnet cli 获得一个 helloworld。事实上,我只是尝试创建一个 MVC 项目。
我从 AUR 安装(并在此过程中多次重新安装)dotnet-sdk-bin。
- dotnet new mvc -n foo
- cd foo/
- 网络运行
结果:
It was not possible to find any compatible framework version
The framework 'Microsoft.AspNetCore.App', version '3.1.0' was not found.
- No frameworks were found.
You can resolve the problem by installing the specified framework and/or SDK.
The specified framework can be found at:
- https://aka.ms/dotnet-core-applaunch?framework=Microsoft.AspNetCore.App&>framework_version=3.1.0&arch=x64&rid=manjaro-x64
网络--信息:
我也尝试过使用和不使用 dotnet-运行tim-bin 和 dotnet-host-bin,但结果保持不变。还找到了 this thread on github,但对我帮助不大。
您需要安装 运行time 到 AspNetCore,我确定您有 运行time 到 .NETCORE,但是 Asp是单独的运行需要安装的时候,我分享了URLhttps://dotnet.microsoft.com/download/dotnet-core/3.1
注意:在输入 dotnet 之前记住 运行 是 dotnet build 的一个好习惯,它可以帮助您找到代码中的任何中断引用或任何丢失的库。
我(几乎)尝试在 Linux 上使用 dotnet cli 获得一个 helloworld。事实上,我只是尝试创建一个 MVC 项目。
我从 AUR 安装(并在此过程中多次重新安装)dotnet-sdk-bin。
- dotnet new mvc -n foo
- cd foo/
- 网络运行
结果:
It was not possible to find any compatible framework version The framework 'Microsoft.AspNetCore.App', version '3.1.0' was not found.
- No frameworks were found. You can resolve the problem by installing the specified framework and/or SDK. The specified framework can be found at:
- https://aka.ms/dotnet-core-applaunch?framework=Microsoft.AspNetCore.App&>framework_version=3.1.0&arch=x64&rid=manjaro-x64
网络--信息:
我也尝试过使用和不使用 dotnet-运行tim-bin 和 dotnet-host-bin,但结果保持不变。还找到了 this thread on github,但对我帮助不大。
您需要安装 运行time 到 AspNetCore,我确定您有 运行time 到 .NETCORE,但是 Asp是单独的运行需要安装的时候,我分享了URLhttps://dotnet.microsoft.com/download/dotnet-core/3.1
注意:在输入 dotnet 之前记住 运行 是 dotnet build 的一个好习惯,它可以帮助您找到代码中的任何中断引用或任何丢失的库。