Windows 上的 JetBrains Rider 中的 .NetCore 项目加载失败

Moh*_*vad 6 c# msbuild .net-core asp.net-core rider

我已经安装了最新版本的 JetBrains Rider 1 EAP 并使用 VS2015 创建的 project.json 打开 .NetCore 项目,我已成功加载,但是当创建新的 .NetCore Web 项目或在旧版本中使用 .csproj 添加新的 .NetCore 类库时项目与project.json库加载失败

Project 'ClassLibrary' load failed: Cannot load the project with the current MSBuild toolset.
Please ensure MSBuild 15.0 is installed.
Run Code Online (Sandbox Code Playgroud)

我还安装了microsoft的 .NetCore SDK 和运行时

Dow*_*ski 1

安装最新的 Mono 后,您需要从源代码构建 MSbuild。

https://github.com/Microsoft/msbuild/wiki/Building-Testing-and-Debugging-on-.Net-Core-MSBuild

./cibuild.sh --target CoreCLR
Run Code Online (Sandbox Code Playgroud)