简体   繁体   中英

Visual Studio Preview for Mac 2017 .NET Core build error

When I try to run the .NET Core Project on last version of Visual Studio Preview for Mac, I get next error:

The specified framework 'Microsoft.NETCore.App', version '1.0.1' was not found.
  - Check application dependencies and target a framework version installed at:
      /usr/local/share/dotnet/shared/Microsoft.NETCore.App
  - The following versions are installed:
  1.1.0
  - Alternatively, install the framework version '1.0.1'.
The application was terminated by a signal: SIGQUIT

WARNING: The target process exited without raising a CoreCLR started event. Ensure that the target process is configured to use Microsoft.NETCore.App 1.0.0 or newer. This may be expected if the target process did not run .NET code.

I opened Project Settings, and in the 'Target Framework' Dropdown there is no .NETCoreApp 1.1, only 1.0 (which is not installed)

What should I change in project or Studio configs for project to run successfully? Or I just must wait for VS update? Thanks for response.

Update your nuget packages ie Project -> Update Nuget Packages. The Microsoft.NetCore.App package is out of date.

  • Step 1: setup .net Core

    --> https://www.microsoft.com/net/core#macos

    --> if you get donet new command not found, try this: ln -s /usr/local/share/dotnet/dotnet /usr/local/bin/

  • Step 2: update packages

更新包

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM