Member-only story

Create a Console Application Using .net core and visual studio code

Kajasumanie Kanapathipillai
3 min readMar 19, 2018

--

Visual studio code is past than visual studio and light weight and all function are available.

if we compare with visual studio we can not get all features free.Community version only free. it is only best for student and teacher.

source:https://www.visualstudio.com/vs/compare/

Need to install

  1. Install Visual Studio Code.

2.Install the .NET Core SDK.

3. Install the C# extension for Visual Studio Code.

when you finish the install check by command line=>

dotnet --version

Create a Project

go to command line and type

dotnet new console -o "ConsoleApplicationdemo"

now you create all files that ,you want to build a console application.

by dotnet new console command we got template of the project.

--

--

No responses yet