Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 1.1 KB

README.md

File metadata and controls

18 lines (12 loc) · 1.1 KB

Riddler

The Riddler project has been conceived as a valuable educational resource aimed at providing a series of instructional exercises to allow those who undertake them to expand their skills in C#.

Structure

The project structure dictates that each puzzle within the solution refers to three projects, of which two must remain unchanged and serve as supporting projects, while the third contains the actual puzzle question.

The two immutable projects are:

  • Riddler.API: This project represents a minimal API application.
  • Riddler.Shared: It contains the models shared between the API and the project containing the puzzle.

The third project, always named Riddler.Puzzle followed by the puzzle number, hosts a Markdown file where you can read the question proposed for each puzzle.

API Usage

To simplify the use of the tool, a PowerShell Script named publish.api.ps1 has been created. This script generates a folder named dist.api containing the executable required to run the API locally.

Puzzles