Code and prod logo

Code and Prod Complet Projects

Follow me

EL JIHAOUI
QUICK ACCESS

Visual Studio Code .NET 7

Visual studio code setup

Table of Contents

Visual Studio Code

Visual Studio Code (VS Code) is a freecross-platform, and lightweight source-code editor developed by Microsoft for WindowsLinux, and Mac operating systems.

VS Code supports various development operations such as debugging, task running, and version control.

In order to configure our working environment for the Entity Framework Core course using vs code, we will install the .NET 7 development kit, vs code as an IDE plus the necessary plugins and extensions to simplify the Coding, Running, Debugging, etc.

Installing vscode can be done by following this link: https://code.visualstudio.com

.NET 7 SDK

To develop our project which is based on EF Core, the first step is to install .NET 7  via the following link: https://dotnet.microsoft.com/en-us/download/dotnet/7.0

.NET 7 SDK

.NET 7 is a software development kit (SDK) that includes everything you need to build and run .NET applications, using command-line tools (CLI) and any editor (like Visual Studio, Visual Studio Code, etc…).

Since .net is cross-platform, you can install the version of .net according to your operating system (Windows, Linux, Mac Os) as shown in the following picture.

net-core-7-SDK

After installing the .NET SDK, you can use the command line dotnet –version to verify the installation and ensure the version of .net as well.

				
					dotnet --version
7.0.102
				
			

dotnet –version : is a command line to check that .NET version already installed.

C# extensions for Visual Studio code

C# extensions for Visual Studio code

The power of vs code is the ability to extend its functionality through extensions or plugins.

So we are going to install some extensions which are required for development with C# language under visual studio code.

Via the Extensions menu (CTRL+SHIFT+X) we will install the following extensions:

Course video

if you like it share it please

Facebook
LinkedIn
Twitter
Related Posts
Data Seeding in migration using EF Core
Entity Framework Core
EL JIHAOUI

Data seeding

Data seeding is a process where you populate a database with an initial set of data
There are

Read More »

MORE RESSOURCES