Setup the machine for dot net core development | Asp.Net Core tutorial

Home: Asp.Net Core MVC Tutorial

Previous: What is dot net core

To work on any dot net core application, we must set up the development environment. The development environment includes all the tools, technologies, frameworks, etc that are required to work on dot net core including asp.net core development.

Editor

You are free to use any Editor of your choice. Dot net core (including asp.net core) does not have any dependency on any editor.

Here are some Editors to work with dot net core

If you are comfortable with any other Editor other than above, feel free to go with your choice of editor.

Dot net core SDK (Software development Kit)

Dot net core SDK is a must for any dot net core application development. There are two ways to install the dot net core SDK in your system.

  • Install dot net core SDK along with Visual Studio
  • Install dot net core SDK manually

Install dot net core SDK along with Visual Studio –

You must have at least Visual Studio 2019 to work with the latest framework of dot net core. While installing the Visual Studio make sure to check the .Net Core cross-platform development component. This component will install the dot net core framework automatically.

Install dot net core using visual studio 2019
Install dot net core using visual studio 2019

Install dot net core SDK manually

You can download the dot net core SDK directly from its official website.

Open https://dotnet.microsoft.com/download in browser.

install dot net core sdk
install dot net core sdk

From the .NET Core section click on the Download .NET Core SDK button. This will download the SDK. Now click on the downloaded file, follow the instructions, and install the dot net core SDK in your system.

Once you will install the dot net core SDK then the asp.net core is installed automatically.

Verify the dot net core installation

To verify the successful installation of dot net core, you need to open command prompt or terminal and type the following command

dotnet --version
verify dot net core installation
verify dot net core installation

If a version number of the dot net core is visible. It means you have successfully installed the dot net core on your system.