How to create Dontet core web api project and solution
HI Folks,
In this post, we will learn how to create dotnet web-API project and solution
- Create Solution
- Create Web-webapi project
- Check in Post man
How to check dotnet installed or not in from Cmd ?
use "dotnet -h" for check dotnet core installed or not and check the available options
How to Create Dotnet Solution Project From CMD .?
use "dotnet new sln" this command for creating a solution
How to create dotnet web-api project from cmd ?
use "Dotnet new webapi -O API" this command for creating project
How to add project to solution and show availble projects in specific solution ?
use Dotnet sln add Project name for add project to solutionto check availble projects in solution Use
Dotnet sln list
How to open project in vs code ..?
Just goto to the folder and execute "code ." for open project in vs code
How to run dotnet web api project in vscode ?
just use Dotnet run for run project
No comments