This project contains a simple C# server application. Below is a summary of its functionality based on Program.cs:
- Initializes a basic web server using ASP.NET Core.
- Listens for HTTP requests on a specified port.
- Responds with a simple message (e.g., "Hello World!") to incoming requests.
- .NET SDK installed.
dotnet runThe server will start and listen for requests. By default, you can access it at http://localhost:5000.
Open your browser and navigate to:
http://localhost:5000
You should see the response defined in Program.cs.
Program.cs: Entry point and main logic for the server.README.md: Project overview and instructions.
Modify Program.cs to change the response or add more endpoints.
This project is licensed under the MIT License.