This project contains a sample ASP.NET Core app. This app is an example of the article I produced for the Telerik Blog (telerik.com/blogs).
Welcome to the TaskManager application! This minimal ASP.NET Core .NET 7 app serves as an example for debugging in Visual Studio on Windows. 🚀
Follow these steps to set up and run the TaskManager application on your system:
-
Clone the Repository: Start by cloning this repository to your local machine.
git clone https://github.com/zangassis/task-manager
-
Open in Visual Studio: Launch Visual Studio and open the
TaskManager.sln
solution file. -
Build the Solution: Build the solution to restore NuGet packages and compile the code.
-
Set Up Debug Configuration: Make sure your debug configuration is set to target the
TaskManager
project. -
Start Debugging: Press the "Start Debugging" button or hit
F5
to begin debugging the application.
The TaskManager app demonstrates the basic functionality of managing tasks.
This project is an excellent resource for learning how to debug ASP.NET Core apps in Visual Studio on a Windows system. Use breakpoints, watch variables, and explore the debugging tools to enhance your debugging skills.
GET /tasks
: Get a list of all tasks.GET /tasks/{name}
: Get a specific task by name.
- ASP.NET Core
- .NET 7
- Minimal API
- Visual Studio for Windows
- C#
Found a bug? Want to add a new feature? We encourage contributions from the community. Feel free to open issues and pull requests.
This project is licensed under the MIT License. Feel free to use and modify the code as per the license terms.
Happy Debugging! 🐞✨