Getting Started
This guide will help you get started with GreetingApp quickly and easily.
Prerequisites
- Latest .NET SDK
- Git (for cloning the repository)
Installation
- Clone the repository:
git clone https://github.com/mattleibow/GitHubStagingPages.git cd GitHubStagingPages - Restore dependencies:
dotnet restore - Build the application:
dotnet build
Usage
Basic Usage
Run the application with default greeting:
dotnet run --project src/GreetingApp
Output:
Hello!
Current date and time: 2025-01-27 12:34:56
Personalized Greeting
Run the application with a custom name:
dotnet run --project src/GreetingApp -- "John Doe"
Output:
Hello, John Doe!
Current date and time: 2025-01-27 12:34:56
Next Steps
- Check out the API Reference for more details
- Learn about Contributing to the project