1 00:00:00,510 --> 00:00:07,410 In this lecture, we will download and install last requirements for Windows side, which are .NET core 2 00:00:07,740 --> 00:00:16,890 VSCODE and c sharp extension for VSCODE. To do so open up your browser 3 00:00:16,890 --> 00:00:17,280 go to google.com 4 00:00:19,110 --> 00:00:21,330 And search for .Net core. 5 00:00:24,160 --> 00:00:32,320 From the Microsoft's official website, dotnet.microsoft.com, download the installer. 6 00:00:35,190 --> 00:00:44,790 See all the downloads, select the latest version, and download the 32 bits installer, it's here. 7 00:00:47,760 --> 00:00:57,810 I have already downloaded the files, so I'm cancel it now after you download the file simply 8 00:00:57,810 --> 00:00:59,730 run the executable file you have downloaded. 9 00:01:18,090 --> 00:01:25,710 And for the VSCODE, could go to Google.com again and search for the VSCODE 10 00:01:28,740 --> 00:01:35,890 from the visual studios official website, download the Visual Studio code for Windows. 11 00:01:36,120 --> 00:01:37,710 It's free, free to use. 12 00:01:43,360 --> 00:01:46,750 I have already downloaded the files so I will cancel it. 13 00:01:49,600 --> 00:01:57,920 The .Net installation was successful, perfect, close the installer, now 14 00:01:57,920 --> 00:01:58,430 run the VSCODE installer. 15 00:02:17,670 --> 00:02:20,130 Click, finish and launch Visual Studio Code. 16 00:02:22,870 --> 00:02:26,050 Here we have our coding editor VSCODE 17 00:02:28,880 --> 00:02:36,560 Last thing is installing c sharp extension for VSCODE, to do so go to the extensions menu. 18 00:02:39,320 --> 00:02:41,240 And search for c sharp. 19 00:02:44,710 --> 00:02:49,240 Install the first one you see, I have already installed, so 20 00:02:51,490 --> 00:02:52,660 I am pretty much ready. 21 00:02:55,070 --> 00:03:03,020 To check if everything's are OK, we will create a trivial application to do so, 22 00:03:03,020 --> 00:03:03,650 let's create a new project. 23 00:03:10,990 --> 00:03:15,210 Go to the desktop and create a new project folder. 24 00:03:18,750 --> 00:03:25,440 Give it a good name, because you will be using it in whole Course . 25 00:03:27,600 --> 00:03:29,340 And I will select this folder. 26 00:03:33,830 --> 00:03:35,030 Wait a few seconds. 27 00:03:39,680 --> 00:03:44,600 And open up your VSCODE terminal from the menu on the top. 28 00:03:46,320 --> 00:03:47,070 New terminal. 29 00:03:49,410 --> 00:04:01,460 To create a trivial project type dotnet new console, it will create a trivial project for us. 30 00:04:06,730 --> 00:04:16,420 Here you see the C# files, here is our project file, it's a trivial application, throws 31 00:04:16,420 --> 00:04:21,400 out the Hello World message to check if it's working. 32 00:04:23,820 --> 00:04:26,100 Go to the terminal again and type 33 00:04:28,170 --> 00:04:33,240 dotnet run, oops delete this 34 00:04:40,880 --> 00:04:44,510 And the message has been shown, perfect. 35 00:04:46,600 --> 00:04:48,190 We are done in Windows side. 36 00:04:49,300 --> 00:04:55,000 That's it for the lecture, you make sure you have completed all of the installations before 37 00:04:55,000 --> 00:04:57,570 moving in to the next lecture. See you soon.