From c60e8ec627edf2c4f339f6152354381f1f06c69f Mon Sep 17 00:00:00 2001 From: Marijn Besseling Date: Sat, 16 May 2026 12:38:49 +0200 Subject: init --- .gitignore | 5 +++++ ColourFlood.slnx | 3 +++ ColourFlood/ColourFlood.csproj | 12 ++++++++++++ ColourFlood/Program.cs | 9 +++++++++ 4 files changed, 29 insertions(+) create mode 100644 .gitignore create mode 100644 ColourFlood.slnx create mode 100644 ColourFlood/ColourFlood.csproj create mode 100644 ColourFlood/Program.cs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..add57be --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +bin/ +obj/ +/packages/ +riderModule.iml +/_ReSharper.Caches/ \ No newline at end of file diff --git a/ColourFlood.slnx b/ColourFlood.slnx new file mode 100644 index 0000000..d8d099a --- /dev/null +++ b/ColourFlood.slnx @@ -0,0 +1,3 @@ + + + diff --git a/ColourFlood/ColourFlood.csproj b/ColourFlood/ColourFlood.csproj new file mode 100644 index 0000000..ee5276c --- /dev/null +++ b/ColourFlood/ColourFlood.csproj @@ -0,0 +1,12 @@ + + + + Exe + net10.0 + enable + enable + true + true + + + diff --git a/ColourFlood/Program.cs b/ColourFlood/Program.cs new file mode 100644 index 0000000..140b88b --- /dev/null +++ b/ColourFlood/Program.cs @@ -0,0 +1,9 @@ +namespace ColourFlood; + +class Program +{ + static void Main(string[] args) + { + Console.WriteLine("Hello, World!"); + } +} \ No newline at end of file -- cgit v1.2.3