我已经安装了最新版本的 JetBrains Rider 1 EAP 并使用 VS2015 创建的 project.json 打开 .NetCore 项目,我已经成功加载,但是当创建新的 .NetCore web 项目或添加新的 .NetCore 类库时,旧的 .csproj带有 project.json 的项目,库加载失败
Project 'ClassLibrary' load failed: Cannot load the project with the current MSBuild toolset.
Please ensure MSBuild 15.0 is installed.
我还从 microsoft 安装了 .NetCore SDK 和运行时
最佳答案
安装最新的 Mono 后,您需要从源代码构建 MSbuild。
https://github.com/Microsoft/msbuild/wiki/Building-Testing-and-Debugging-on-.Net-Core-MSBuild
./cibuild.sh --target CoreCLR
关于c# - Windows 上的 JetBrains Rider 中的 .NetCore 项目加载失败,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43048629/