
Umesh Tudu
••1 min read
How to Create a Project in .NET Core ghgh
.NET Core is a cross-platform, open-source framework from Microsoft for creating different applications such as web APIs, web apps, console apps etc. .NET Core is designed to work in different platforms like Windows, Linux, and macOS
Creating a New .NET Core Project
A. Using Visual Studio
>> Open Visual Studio → Click Create a new project.
>>Choose ASP.NET Core Web API template.
>>Configure your project:
→Project Name: MyDemoProject
→Location: Choose your folder
→ Framework: Select .NET 9/10 (or latest)
>>Click Create.
B. Using .NET CLI
>>Open Command Prompt or PowerShell.
>>Navigate to the folder where you want your project.
>>Run the command:
dotnet new mvc -n MyDemoProject
This command will create a new projec.
U
Umesh Tudu
Technical writer and software development expert at Murmu Software Infotech, sharing insights on modern web development, software architecture, and best practices.

