A .NET-based calendar service for managing events and schedules.
- Event management
- Schedule coordination
- Calendar synchronization
- RESTful API endpoints
- .NET 6.0 or later
- SQL Server (or your preferred database)
- Visual Studio 2022 or VS Code
- Clone the repository
git clone https://github.com/yourusername/dotnet-calendar-service.git
- Navigate to the project directory
cd dotnet-calendar-service
- Restore dependencies
dotnet restore
- Run the application
dotnet run
The API documentation is available at /swagger when running the application locally.
├── src/
│ ├── CalendarService.API/ # API layer
│ ├── CalendarService.Core/ # Business logic
│ └── CalendarService.Data/ # Data access layer
├── tests/
│ └── CalendarService.Tests/ # Unit tests
└── README.md