Project layout, NuGet restore, debugging basics
Explore the project layout (.csproj), how NuGet restore works, and simple debugging techniques for beginners.
Lesson overview
Goal: Learn about project structure, restoring NuGet packages, and debugging basics.
Project layout
A console project usually contains:
- .csproj file (project settings and package refs)
- Program.cs (your code)
- Folders for additional classes or tests
All lessons in this course
- What is C#, CLR/.NET, JIT vs AOT, SDK & dotnet CLI
- First Program: top-level statements vs Program class; build & run
- Project layout, NuGet restore, debugging basics