diff --git a/docs/core/tools/dotnet-new.md b/docs/core/tools/dotnet-new.md index 893669c6d1537..6ee6d8ce1830b 100644 --- a/docs/core/tools/dotnet-new.md +++ b/docs/core/tools/dotnet-new.md @@ -133,10 +133,10 @@ Each template may have additional options defined. For more information, see [.N dotnet new console --language "F#" ``` -- Create a .NET Standard class library project in the specified directory: +- Create a .NET Standard 2.0 class library project in the specified directory: ```dotnetcli - dotnet new classlib --language VB -o MyLibrary + dotnet new classlib --framework "netstandard2.0" -o MyLibrary ``` - Create a new ASP.NET Core C# MVC project in the current directory with no authentication: