I have this error:
The type or namespace name 'System' could not be found (are you missing a using directive or an assembly reference)
And my .csproj
file contains:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
</PropertyGroup>
</Project>
I created the project with the command "dotnet new console"
Would like to know if it is possible, how to generate this (not manually) but with the help of "dotnet"