Quote:
Originally Posted by mutualcore
In "Building an Application" you say just use:
>dotnet new
"This command creates a Program.cs."
Well it definitely doesn't do that, has something changed since VS 2017 came out?
|
This changed with Visual Studio 2017 and the new tools. Now you need to:
>dotnet new console
to create a new console application. Also, a project.json file is not created, but instead a csproj file.
Nothing is lost: download the free extra chapter for .NET Core with csproj:
https://csharp.christiannagel.com/20...05/dotnetcore/
You can also download a chapter for the C# 7.0 syntax updates:
https://csharp.christiannagel.com/2017/04/03/csharp7/
In a few days, the chapters will be downloadable from the Wrox site as well.
I hope this helps.