aspdotnet_webapp.md - brainchildservices/curriculum GitHub Wiki
To Create a Simple ASP.NET Core Webapp, first We’ve to open the command prompt. Then select the location where you want to store the Project
You can use the CD Command for path Direction or you can simply go to the folder and open the command Prompt there as shown below.
Now enter CMD at the address bar, then press enter
This will open the command prompt window, with the specified folder address
Then enter the dotnet Command, If you simply Type dotnet
, you’ll get different option of Dotnet
If you want to create a new ASP.Net Core Webapp Type dotnet new webapp
.
Once you enter the command and hit enter you can see the Project is getting Created.
You can some files are created automatically in your Directory, like
To open this project in VS Code, Type : Code .
(Codedot)