init

author
Marijn Besseling <njirambem@gmail.com> · 2026-05-16 10:38 UTC
commit
c60e8ec627edf2c4f339f6152354381f1f06c69f
tree
browse at this commit

4 files changed +29 -0

.gitignore +5 -0

@@ -0,0 +1,5 @@
1 +bin/
2 +obj/
3 +/packages/
4 +riderModule.iml
5 +/_ReSharper.Caches/
No newline at end of file

ColourFlood.slnx +3 -0

@@ -0,0 +1,3 @@
1 +<Solution>
2 + <Project Path="ColourFlood/ColourFlood.csproj" />
3 +</Solution>

ColourFlood/ColourFlood.csproj +12 -0

@@ -0,0 +1,12 @@
1 +<Project Sdk="Microsoft.NET.Sdk">
2 +
3 + <PropertyGroup>
4 + <OutputType>Exe</OutputType>
5 + <TargetFramework>net10.0</TargetFramework>
6 + <ImplicitUsings>enable</ImplicitUsings>
7 + <Nullable>enable</Nullable>
8 + <PublishAot>true</PublishAot>
9 + <InvariantGlobalization>true</InvariantGlobalization>
10 + </PropertyGroup>
11 +
12 +</Project>

ColourFlood/Program.cs +9 -0

@@ -0,0 +1,9 @@
1 +namespace ColourFlood;
2 +
3 +class Program
4 +{
5 + static void Main(string[] args)
6 + {
7 + Console.WriteLine("Hello, World!");
8 + }
9 +}
No newline at end of file