I am trying to create a .NET Core application created on Visual Studio 2017 on Windows on Visual Studio 2017 for Mac. I started the "dotnet" recovery, which seems to be working correctly, however when I create it, I get the following:
/usr/local/share/dotnet/sdk/1.0.1/Sdks/Microsoft.NET.Sdk/build/Microsoft.PackageDependencyResolution.targets(154,5): error: asset file '... / obj / project.assets .json 'not found.
Run NuGet package repair to create this file. [... / TME.PatternLibrary.csproj]
And a few error CS0246: The type or namespace name 'System' could not be found (are you missing a using directive or an assembly reference?)
How can I create a .NET Core project on OSX?
source
share