Hi,
I am trying to Create a Windows Forms application from the command line and for that I am following the steps outlined in the MSDN documentation: how-to-create-a-windows-forms-application-from-the-command-line
The steps I did as per the documentation are as follows:
1. Created a Console App (.net core) new VB project
2. Importing the following namespaces as directed in the MSDN documentation: ComponentModel, Drawing, Windows.Forms.
However for some reason my VB code editor is not giving me the option to import the Windows.Forms namespace. See pic below.

Also when I forcefully type it out I get the following warning message with a green squiggly line (see the second pic below). Can anyone pls tell me where I am going wrong?

The MSDN link as the next steps ask me to write the following piece of code: Public Class Form1: Inherits Form . Unless I include the Windows.Forms namespace the above code piece is giving me an error. So could anyone pls point out where I am going wrong?
Also, I do understand that there are easier methods to create a WinForms APP using VB. But for the sake of comprehensive understanding, I want to know why I am not getting the desired output even when I follow the steps outlined in the documentation? So any help would be much appreciated.