diff --git a/.gitignore b/.gitignore
index 98d63b2..24c336b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,3 @@
-.vs/
-obj/
+.vs/
+obj/
bin/
\ No newline at end of file
diff --git a/Form1.Designer.cs b/Form1.Designer.cs
index ce6e6bd..40adee7 100644
--- a/Form1.Designer.cs
+++ b/Form1.Designer.cs
@@ -1,39 +1,45 @@
-namespace GuessTheDice
-{
- 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()
- {
- components = new System.ComponentModel.Container();
- AutoScaleMode = AutoScaleMode.Font;
- ClientSize = new Size(800, 450);
- Text = "Form1";
- }
-
- #endregion
- }
-}
+namespace GuessTheDice
+{
+ 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()
+ {
+ SuspendLayout();
+ //
+ // Form1
+ //
+ AutoScaleDimensions = new SizeF(7F, 15F);
+ AutoScaleMode = AutoScaleMode.Font;
+ ClientSize = new Size(800, 450);
+ Name = "Form1";
+ Text = "GuessTheDice";
+ ResumeLayout(false);
+ }
+
+ #endregion
+ }
+}
diff --git a/Form1.cs b/Form1.cs
index 45d11c3..992298d 100644
--- a/Form1.cs
+++ b/Form1.cs
@@ -1,10 +1,10 @@
-namespace GuessTheDice
-{
- public partial class Form1 : Form
- {
- public Form1()
- {
- InitializeComponent();
- }
- }
-}
+namespace GuessTheDice
+{
+ public partial class Form1 : Form
+ {
+ public Form1()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/Form1.resx b/Form1.resx
index 1af7de1..4f24d55 100644
--- a/Form1.resx
+++ b/Form1.resx
@@ -1,120 +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
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 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/GuessTheDice.csproj b/GuessTheDice.csproj
index 5151c0a..6c9771e 100644
--- a/GuessTheDice.csproj
+++ b/GuessTheDice.csproj
@@ -1,11 +1,11 @@
-
-
-
- WinExe
- net10.0-windows
- enable
- true
- enable
-
-
+
+
+
+ WinExe
+ net10.0-windows
+ enable
+ true
+ enable
+
+
\ No newline at end of file
diff --git a/GuessTheDice.csproj.user b/GuessTheDice.csproj.user
index 7814ea2..f61322e 100644
--- a/GuessTheDice.csproj.user
+++ b/GuessTheDice.csproj.user
@@ -1,8 +1,8 @@
-
-
-
-
- Form
-
-
-
+
+
+
+
+ Form
+
+
+
diff --git a/GuessTheDice.slnx b/GuessTheDice.slnx
index 4725b10..dd36014 100644
--- a/GuessTheDice.slnx
+++ b/GuessTheDice.slnx
@@ -1,3 +1,3 @@
-
-
-
+
+
+
diff --git a/Program.cs b/Program.cs
index 11a02c8..11f6285 100644
--- a/Program.cs
+++ b/Program.cs
@@ -1,17 +1,17 @@
-namespace GuessTheDice
-{
- 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());
- }
- }
+namespace GuessTheDice
+{
+ 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