Skip to content

Folder structure GreetingTool Program.cs

Context: The Greeting Tool follows the standard .NET 10 console project structure.

The Greeting Tool follows the standard .NET console project structure.

Terminal window
dotnet new console -n GreetingTool
cd GreetingTool
Terminal window
GreetingTool/
├── GreetingTool.csproj
├── Program.cs
├── obj/
├── Debug/
└── net10.0/
└── GreetingTool.csproj.nuget.*
└── bin/
└── Debug/
└── net10.0/
├── GreetingTool.dll
└── GreetingTool.exe (Windows)
// Initial template code
Console.WriteLine("Hello, World!");

We’ll replace the template with our greeting logic.