> ## Documentation Index
> Fetch the complete documentation index at: https://aashishraj.me/llms.txt
> Use this file to discover all available pages before exploring further.

# Projects

> Different types of projects I've done.

<Note>
  You are viewing projects built during my learning journey.
</Note>

### 2026

1. [Fountain Of Objects Game in C#](https://github.com/iamtheaashish/FountainOfObjectsGame)

   A project that taught me far more than just technical skills of C#. It taught me how to ask for help from peers, read technical documentation, and most importantly, enjoy the struggle of learning.

   Run the project:

   `dotnet run`

   Here's a demo:

   <div style={{ position: "relative", paddingBottom: "56.25%", height: 0 }}>
     <iframe src="https://www.youtube.com/embed/axqiDVTY46M?autoplay=0&mute=1" style={{ position: "absolute", top: 0, left: 0, width: "100%", height: "100%" }} allowFullScreen />
   </div>

***

2. [Object Oriented Tic-Tac-Toe Game in C#](https://github.com/iamtheaashish/Tic-Tac-Toe)

   My first object-oriented project of meaningful size.

   Run the project directly:

   `dotnet run Program.cs`

   Or publish it as a standalone executable:

   `dotnet publish Program.cs -r linux-x64 -p:PublishSingleFile=true --self-contained true -p:PublishAot=false`

   Here's a demo:

   <div style={{ position: "relative", paddingBottom: "56.25%", height: 0 }}>
     <iframe src="https://www.youtube.com/embed/5kr0ukM1R7U?autoplay=0&mute=1" style={{ position: "absolute", top: 0, left: 0, width: "100%", height: "100%" }} allowFullScreen />
   </div>
