Getting Started

This guide will help you get started with GreetingApp quickly and easily.

Prerequisites

Installation

  1. Clone the repository:
    git clone https://github.com/mattleibow/GitHubStagingPages.git
    cd GitHubStagingPages
    
  2. Restore dependencies:
    dotnet restore
    
  3. 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

← Back to Home