summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore5
-rw-r--r--ColourFlood.slnx3
-rw-r--r--ColourFlood/ColourFlood.csproj12
-rw-r--r--ColourFlood/Program.cs9
4 files changed, 29 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..add57be
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,5 @@
1bin/
2obj/
3/packages/
4riderModule.iml
5/_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 @@
1<Solution>
2 <Project Path="ColourFlood/ColourFlood.csproj" />
3</Solution>
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 @@
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>
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 @@
1namespace ColourFlood;
2
3class Program
4{
5 static void Main(string[] args)
6 {
7 Console.WriteLine("Hello, World!");
8 }
9} \ No newline at end of file