From the course: C# Cross-Platform Development
Unlock the full course today
Join today to access over 24,900 courses taught by industry experts.
Creating a .NET Core application
From the course: C# Cross-Platform Development
Creating a .NET Core application
- [Narrator] Let's go ahead and create our new project. We're going to select the Console Application from the Template menu, and click Continue. We'll make sure to .NET 7 as our target framework. And here, we're going to name the project Hello Note App. Now for the solution name, let's remove the word app. And as you can see here, we now have a master folder for the Hello Note solution. And then we have a separate folder for the Hello Note application. One of the benefits of setting up a project this way is that you can also add additional projects to the Hello Note folder, including unit tests if you're planning on doing that for your own development. Once you've selected a location for where you want to put your project, click Create. Now let's take a look at the solution panel. Here you'll see our Hello Note solution and our Hello Note App project. For this course, we're going to need to add two packages using the NuGet…