diff --git a/BakingFridge/BakingFridge/Form1.Designer.cs b/BakingFridge/BakingFridge/Form1.Designer.cs
deleted file mode 100644
index 98bcfaa..0000000
--- a/BakingFridge/BakingFridge/Form1.Designer.cs
+++ /dev/null
@@ -1,38 +0,0 @@
-namespace BakingFridge;
-
-partial class Form1
-{
- ///
- /// Required designer variable.
- ///
- private System.ComponentModel.IContainer components = null;
-
- ///
- /// Clean up any resources being used.
- ///
- /// true if managed resources should be disposed; otherwise, false.
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
-
- #region Windows Form Designer generated code
-
- ///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- ///
- private void InitializeComponent()
- {
- this.components = new System.ComponentModel.Container();
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(800, 450);
- this.Text = "Form1";
- }
-
- #endregion
-}
diff --git a/BakingFridge/BakingFridge/Form1.cs b/BakingFridge/BakingFridge/Form1.cs
deleted file mode 100644
index aea0eab..0000000
--- a/BakingFridge/BakingFridge/Form1.cs
+++ /dev/null
@@ -1,9 +0,0 @@
-namespace BakingFridge;
-
-public partial class Form1 : Form
-{
- public Form1()
- {
- InitializeComponent();
- }
-}
diff --git a/BakingFridge/BakingFridge/Program.cs b/BakingFridge/BakingFridge/Program.cs
deleted file mode 100644
index 9755caa..0000000
--- a/BakingFridge/BakingFridge/Program.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-namespace BakingFridge;
-
-static class Program
-{
- ///
- /// The main entry point for the application.
- ///
- [STAThread]
- static void Main()
- {
- // To customize application configuration such as set high DPI settings or default font,
- // see https://aka.ms/applicationconfiguration.
- ApplicationConfiguration.Initialize();
- Application.Run(new Form1());
- }
-}
\ No newline at end of file
diff --git a/Battleship/Battleship.sln b/Battleship/Battleship.sln
new file mode 100644
index 0000000..ed9a856
--- /dev/null
+++ b/Battleship/Battleship.sln
@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.8.34511.84
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Battleship", "Battleship\Battleship.csproj", "{C62D0FAF-3469-4661-A9E0-93A971DFEA0A}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {C62D0FAF-3469-4661-A9E0-93A971DFEA0A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {C62D0FAF-3469-4661-A9E0-93A971DFEA0A}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {C62D0FAF-3469-4661-A9E0-93A971DFEA0A}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {C62D0FAF-3469-4661-A9E0-93A971DFEA0A}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {F6AE56B5-7302-4694-8EE3-7F63A8FDA50D}
+ EndGlobalSection
+EndGlobal
diff --git a/BakingFridge/BakingFridge/BakingFridge.csproj b/Battleship/Battleship/Battleship.csproj
similarity index 78%
rename from BakingFridge/BakingFridge/BakingFridge.csproj
rename to Battleship/Battleship/Battleship.csproj
index 663fdb8..e1a0735 100644
--- a/BakingFridge/BakingFridge/BakingFridge.csproj
+++ b/Battleship/Battleship/Battleship.csproj
@@ -2,7 +2,7 @@
WinExe
- net8.0-windows
+ net7.0-windows
enable
true
enable
diff --git a/Battleship/Battleship/Form1.Designer.cs b/Battleship/Battleship/Form1.Designer.cs
new file mode 100644
index 0000000..18ae06a
--- /dev/null
+++ b/Battleship/Battleship/Form1.Designer.cs
@@ -0,0 +1,39 @@
+namespace Battleship
+{
+ partial class Form1
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ this.components = new System.ComponentModel.Container();
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(800, 450);
+ this.Text = "Form1";
+ }
+
+ #endregion
+ }
+}
diff --git a/Battleship/Battleship/Form1.cs b/Battleship/Battleship/Form1.cs
new file mode 100644
index 0000000..1d6c6e1
--- /dev/null
+++ b/Battleship/Battleship/Form1.cs
@@ -0,0 +1,10 @@
+namespace Battleship
+{
+ public partial class Form1 : Form
+ {
+ public Form1()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/Battleship/Battleship/Form1.resx b/Battleship/Battleship/Form1.resx
new file mode 100644
index 0000000..1af7de1
--- /dev/null
+++ b/Battleship/Battleship/Form1.resx
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/Battleship/Battleship/Program.cs b/Battleship/Battleship/Program.cs
new file mode 100644
index 0000000..48b33ea
--- /dev/null
+++ b/Battleship/Battleship/Program.cs
@@ -0,0 +1,17 @@
+namespace Battleship
+{
+ internal static class Program
+ {
+ ///
+ /// The main entry point for the application.
+ ///
+ [STAThread]
+ static void Main()
+ {
+ // To customize application configuration such as set high DPI settings or default font,
+ // see https://aka.ms/applicationconfiguration.
+ ApplicationConfiguration.Initialize();
+ Application.Run(new Form1());
+ }
+ }
+}
\ No newline at end of file