From b0aceddbe69cbebc104651680d59a8caa0422144 Mon Sep 17 00:00:00 2001 From: abdelaziz Date: Tue, 17 Mar 2026 20:12:30 +0100 Subject: [PATCH] =?UTF-8?q?Projektdateien=20hinzuf=C3=BCgen.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CheckersSpielBot.sln | 25 ++++++++++++++++++++++++ CheckersSpielBot/App.xaml | 9 +++++++++ CheckersSpielBot/App.xaml.cs | 14 +++++++++++++ CheckersSpielBot/AssemblyInfo.cs | 10 ++++++++++ CheckersSpielBot/CheckersSpielBot.csproj | 11 +++++++++++ CheckersSpielBot/MainWindow.xaml | 12 ++++++++++++ CheckersSpielBot/MainWindow.xaml.cs | 12 ++++++++++++ 7 files changed, 93 insertions(+) create mode 100644 CheckersSpielBot.sln create mode 100644 CheckersSpielBot/App.xaml create mode 100644 CheckersSpielBot/App.xaml.cs create mode 100644 CheckersSpielBot/AssemblyInfo.cs create mode 100644 CheckersSpielBot/CheckersSpielBot.csproj create mode 100644 CheckersSpielBot/MainWindow.xaml create mode 100644 CheckersSpielBot/MainWindow.xaml.cs diff --git a/CheckersSpielBot.sln b/CheckersSpielBot.sln new file mode 100644 index 0000000..24c56e6 --- /dev/null +++ b/CheckersSpielBot.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.14.37027.9 d17.14 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CheckersSpielBot", "CheckersSpielBot\CheckersSpielBot.csproj", "{6D6A7597-3AB6-46DC-9C9F-E62589F50161}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {6D6A7597-3AB6-46DC-9C9F-E62589F50161}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6D6A7597-3AB6-46DC-9C9F-E62589F50161}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6D6A7597-3AB6-46DC-9C9F-E62589F50161}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6D6A7597-3AB6-46DC-9C9F-E62589F50161}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {33EB51ED-E367-455A-9B94-6345237D4C14} + EndGlobalSection +EndGlobal diff --git a/CheckersSpielBot/App.xaml b/CheckersSpielBot/App.xaml new file mode 100644 index 0000000..e0afa19 --- /dev/null +++ b/CheckersSpielBot/App.xaml @@ -0,0 +1,9 @@ + + + + + diff --git a/CheckersSpielBot/App.xaml.cs b/CheckersSpielBot/App.xaml.cs new file mode 100644 index 0000000..3386db9 --- /dev/null +++ b/CheckersSpielBot/App.xaml.cs @@ -0,0 +1,14 @@ +using System.Configuration; +using System.Data; +using System.Windows; + +namespace CheckersSpielBot +{ + /// + /// Interaction logic for App.xaml + /// + public partial class App : Application + { + } + +} diff --git a/CheckersSpielBot/AssemblyInfo.cs b/CheckersSpielBot/AssemblyInfo.cs new file mode 100644 index 0000000..b0ec827 --- /dev/null +++ b/CheckersSpielBot/AssemblyInfo.cs @@ -0,0 +1,10 @@ +using System.Windows; + +[assembly: ThemeInfo( + ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located + //(used if a resource is not found in the page, + // or application resource dictionaries) + ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located + //(used if a resource is not found in the page, + // app, or any theme specific resource dictionaries) +)] diff --git a/CheckersSpielBot/CheckersSpielBot.csproj b/CheckersSpielBot/CheckersSpielBot.csproj new file mode 100644 index 0000000..defb4d1 --- /dev/null +++ b/CheckersSpielBot/CheckersSpielBot.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net9.0-windows + enable + enable + true + + + diff --git a/CheckersSpielBot/MainWindow.xaml b/CheckersSpielBot/MainWindow.xaml new file mode 100644 index 0000000..e05fae6 --- /dev/null +++ b/CheckersSpielBot/MainWindow.xaml @@ -0,0 +1,12 @@ + + + + + diff --git a/CheckersSpielBot/MainWindow.xaml.cs b/CheckersSpielBot/MainWindow.xaml.cs new file mode 100644 index 0000000..25634a1 --- /dev/null +++ b/CheckersSpielBot/MainWindow.xaml.cs @@ -0,0 +1,12 @@ +using System.Windows; + +namespace CheckersSpielBot +{ + public partial class MainWindow : Window + { + public MainWindow() + { + InitializeComponent(); + } + } +} \ No newline at end of file