0Pricing
C# Academy · Lesson

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

  1. What is C#, CLR/.NET, JIT vs AOT, SDK & dotnet CLI
  2. First Program: top-level statements vs Program class; build & run
  3. Project layout, NuGet restore, debugging basics
← Back to C# Academy