From d1bfecbfef2e5cf20a36fb91c58660d07fdead3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A4seToatz?= Date: Tue, 29 Oct 2024 17:39:40 +0100 Subject: [PATCH] initial commit --- .gitignore | 3 +++ Memory.sln | 25 +++++++++++++++++++++++++ src/MainWindow.xaml | 12 ++++++++++++ src/MainWindow.xaml.cs | 24 ++++++++++++++++++++++++ src/Memory.csproj | 13 +++++++++++++ src/Memory.csproj.user | 9 +++++++++ src/Program.cs | 15 +++++++++++++++ 7 files changed, 101 insertions(+) create mode 100644 .gitignore create mode 100644 Memory.sln create mode 100644 src/MainWindow.xaml create mode 100644 src/MainWindow.xaml.cs create mode 100644 src/Memory.csproj create mode 100644 src/Memory.csproj.user create mode 100644 src/Program.cs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ec41207 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +/.vs +bin +obj \ No newline at end of file diff --git a/Memory.sln b/Memory.sln new file mode 100644 index 0000000..f4b10de --- /dev/null +++ b/Memory.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.9.34701.34 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Memory", "src/Memory.csproj", "{8380EF7C-6F0D-488A-9B88-409696E4565F}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {8380EF7C-6F0D-488A-9B88-409696E4565F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8380EF7C-6F0D-488A-9B88-409696E4565F}.Debug|Any CPU.Build.0 = Debug|Any CPU + {8380EF7C-6F0D-488A-9B88-409696E4565F}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8380EF7C-6F0D-488A-9B88-409696E4565F}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {089E802A-BE70-4B67-B0A2-BAA28AAC7001} + EndGlobalSection +EndGlobal diff --git a/src/MainWindow.xaml b/src/MainWindow.xaml new file mode 100644 index 0000000..ba19bae --- /dev/null +++ b/src/MainWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/src/MainWindow.xaml.cs b/src/MainWindow.xaml.cs new file mode 100644 index 0000000..9e21445 --- /dev/null +++ b/src/MainWindow.xaml.cs @@ -0,0 +1,24 @@ +using System.Text; +using System.Windows; +using System.Windows.Controls; +using System.Windows.Data; +using System.Windows.Documents; +using System.Windows.Input; +using System.Windows.Media; +using System.Windows.Media.Imaging; +using System.Windows.Navigation; +using System.Windows.Shapes; + +namespace Memory +{ + /// + /// Interaction logic for MainWindow.xaml + /// + public partial class MainWindow : Window + { + public MainWindow() + { + InitializeComponent(); + } + } +} \ No newline at end of file diff --git a/src/Memory.csproj b/src/Memory.csproj new file mode 100644 index 0000000..0c3364d --- /dev/null +++ b/src/Memory.csproj @@ -0,0 +1,13 @@ + + + + Exe + net8.0-windows + enable + enable + true + Memory.Program + true + + + diff --git a/src/Memory.csproj.user b/src/Memory.csproj.user new file mode 100644 index 0000000..0c37011 --- /dev/null +++ b/src/Memory.csproj.user @@ -0,0 +1,9 @@ + + + + + + Designer + + + \ No newline at end of file diff --git a/src/Program.cs b/src/Program.cs new file mode 100644 index 0000000..4c17aa1 --- /dev/null +++ b/src/Program.cs @@ -0,0 +1,15 @@ +using System.Windows; + +namespace Memory +{ + internal partial class Program + { + [STAThread] + public static void Main() + { + Application app = new(); + MainWindow mainWindow = new(); + app.Run(mainWindow); + } + } +} \ No newline at end of file