diff --git a/Lernprogramm3_Matchinggame/.vs/Lernprogramm3_Matchinggame/v17/.suo b/Lernprogramm3_Matchinggame/.vs/Lernprogramm3_Matchinggame/v17/.suo
new file mode 100644
index 0000000..8d562f4
Binary files /dev/null and b/Lernprogramm3_Matchinggame/.vs/Lernprogramm3_Matchinggame/v17/.suo differ
diff --git a/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame.sln b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame.sln
new file mode 100644
index 0000000..f901171
--- /dev/null
+++ b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame.sln
@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.0.32112.339
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Lernprogramm3_Matchinggame", "Lernprogramm3_Matchinggame\Lernprogramm3_Matchinggame.csproj", "{11A8A8C8-CCFC-4D2E-9FF5-76A3C13FA9A7}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {11A8A8C8-CCFC-4D2E-9FF5-76A3C13FA9A7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {11A8A8C8-CCFC-4D2E-9FF5-76A3C13FA9A7}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {11A8A8C8-CCFC-4D2E-9FF5-76A3C13FA9A7}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {11A8A8C8-CCFC-4D2E-9FF5-76A3C13FA9A7}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {F141601A-C9FD-4E69-A951-9D48E932BBBC}
+ EndGlobalSection
+EndGlobal
diff --git a/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/Form1.Designer.cs b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/Form1.Designer.cs
new file mode 100644
index 0000000..877e78c
--- /dev/null
+++ b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/Form1.Designer.cs
@@ -0,0 +1,39 @@
+namespace Lernprogramm3_Matchinggame
+{
+ 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
+ }
+}
\ No newline at end of file
diff --git a/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/Form1.cs b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/Form1.cs
new file mode 100644
index 0000000..3ee54e3
--- /dev/null
+++ b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/Form1.cs
@@ -0,0 +1,10 @@
+namespace Lernprogramm3_Matchinggame
+{
+ public partial class Form1 : Form
+ {
+ public Form1()
+ {
+ InitializeComponent();
+ }
+ }
+}
\ No newline at end of file
diff --git a/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/Form1.resx b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/Form1.resx
new file mode 100644
index 0000000..1af7de1
--- /dev/null
+++ b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/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/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame.csproj b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame.csproj
new file mode 100644
index 0000000..b57c89e
--- /dev/null
+++ b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame.csproj
@@ -0,0 +1,11 @@
+
+
+
+ WinExe
+ net6.0-windows
+ enable
+ true
+ enable
+
+
+
\ No newline at end of file
diff --git a/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame.csproj.user b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame.csproj.user
new file mode 100644
index 0000000..7814ea2
--- /dev/null
+++ b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame.csproj.user
@@ -0,0 +1,8 @@
+
+
+
+
+ Form
+
+
+
diff --git a/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/Program.cs b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/Program.cs
new file mode 100644
index 0000000..6285c80
--- /dev/null
+++ b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/Program.cs
@@ -0,0 +1,17 @@
+namespace Lernprogramm3_Matchinggame
+{
+ 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
diff --git a/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..36203c7
--- /dev/null
+++ b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]
diff --git a/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/Debug/net6.0-windows/Lernprogramm3_Matchinggame.AssemblyInfo.cs b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/Debug/net6.0-windows/Lernprogramm3_Matchinggame.AssemblyInfo.cs
new file mode 100644
index 0000000..58bd72b
--- /dev/null
+++ b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/Debug/net6.0-windows/Lernprogramm3_Matchinggame.AssemblyInfo.cs
@@ -0,0 +1,25 @@
+//------------------------------------------------------------------------------
+//
+// Dieser Code wurde von einem Tool generiert.
+// Laufzeitversion:4.0.30319.42000
+//
+// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
+// der Code erneut generiert wird.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("Lernprogramm3_Matchinggame")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("Lernprogramm3_Matchinggame")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Lernprogramm3_Matchinggame")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
+[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
+
+// Von der MSBuild WriteCodeFragment-Klasse generiert.
+
diff --git a/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/Debug/net6.0-windows/Lernprogramm3_Matchinggame.AssemblyInfoInputs.cache b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/Debug/net6.0-windows/Lernprogramm3_Matchinggame.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..c622729
--- /dev/null
+++ b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/Debug/net6.0-windows/Lernprogramm3_Matchinggame.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+6c46a24b982ab88e2e5b277b63f1a3cb288e529a
diff --git a/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/Debug/net6.0-windows/Lernprogramm3_Matchinggame.GeneratedMSBuildEditorConfig.editorconfig b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/Debug/net6.0-windows/Lernprogramm3_Matchinggame.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..d780e3a
--- /dev/null
+++ b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/Debug/net6.0-windows/Lernprogramm3_Matchinggame.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,16 @@
+is_global = true
+build_property.ApplicationManifest =
+build_property.StartupObject =
+build_property.ApplicationDefaultFont =
+build_property.ApplicationHighDpiMode =
+build_property.ApplicationUseCompatibleTextRendering =
+build_property.ApplicationVisualStyles =
+build_property.TargetFramework = net6.0-windows
+build_property.TargetPlatformMinVersion = 7.0
+build_property.UsingMicrosoftNETSdkWeb =
+build_property.ProjectTypeGuids =
+build_property.InvariantGlobalization =
+build_property.PlatformNeutralAssembly =
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property.RootNamespace = Lernprogramm3_Matchinggame
+build_property.ProjectDir = D:\_ws\SDM\lernprogramme\Lernprogramm3_Matchinggame\Lernprogramm3_Matchinggame\
diff --git a/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/Debug/net6.0-windows/Lernprogramm3_Matchinggame.GlobalUsings.g.cs b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/Debug/net6.0-windows/Lernprogramm3_Matchinggame.GlobalUsings.g.cs
new file mode 100644
index 0000000..84bbb89
--- /dev/null
+++ b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/Debug/net6.0-windows/Lernprogramm3_Matchinggame.GlobalUsings.g.cs
@@ -0,0 +1,10 @@
+//
+global using global::System;
+global using global::System.Collections.Generic;
+global using global::System.Drawing;
+global using global::System.IO;
+global using global::System.Linq;
+global using global::System.Net.Http;
+global using global::System.Threading;
+global using global::System.Threading.Tasks;
+global using global::System.Windows.Forms;
diff --git a/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/Debug/net6.0-windows/Lernprogramm3_Matchinggame.assets.cache b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/Debug/net6.0-windows/Lernprogramm3_Matchinggame.assets.cache
new file mode 100644
index 0000000..dd15483
Binary files /dev/null and b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/Debug/net6.0-windows/Lernprogramm3_Matchinggame.assets.cache differ
diff --git a/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/Debug/net6.0-windows/Lernprogramm3_Matchinggame.csproj.AssemblyReference.cache b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/Debug/net6.0-windows/Lernprogramm3_Matchinggame.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..204fdef
Binary files /dev/null and b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/Debug/net6.0-windows/Lernprogramm3_Matchinggame.csproj.AssemblyReference.cache differ
diff --git a/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/Debug/net6.0-windows/Lernprogramm3_Matchinggame.designer.deps.json b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/Debug/net6.0-windows/Lernprogramm3_Matchinggame.designer.deps.json
new file mode 100644
index 0000000..706cdfa
--- /dev/null
+++ b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/Debug/net6.0-windows/Lernprogramm3_Matchinggame.designer.deps.json
@@ -0,0 +1,11 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v6.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v6.0": {}
+ },
+ "libraries": {}
+}
\ No newline at end of file
diff --git a/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/Debug/net6.0-windows/Lernprogramm3_Matchinggame.designer.runtimeconfig.json b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/Debug/net6.0-windows/Lernprogramm3_Matchinggame.designer.runtimeconfig.json
new file mode 100644
index 0000000..64c94bb
--- /dev/null
+++ b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/Debug/net6.0-windows/Lernprogramm3_Matchinggame.designer.runtimeconfig.json
@@ -0,0 +1,22 @@
+{
+ "runtimeOptions": {
+ "tfm": "net6.0",
+ "frameworks": [
+ {
+ "name": "Microsoft.NETCore.App",
+ "version": "6.0.0"
+ },
+ {
+ "name": "Microsoft.WindowsDesktop.App",
+ "version": "6.0.0"
+ }
+ ],
+ "additionalProbingPaths": [
+ "C:\\Users\\rrund\\.dotnet\\store\\|arch|\\|tfm|",
+ "C:\\Users\\rrund\\.nuget\\packages"
+ ],
+ "configProperties": {
+ "Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
+ }
+ }
+}
\ No newline at end of file
diff --git a/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/Lernprogramm3_Matchinggame.csproj.nuget.dgspec.json b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/Lernprogramm3_Matchinggame.csproj.nuget.dgspec.json
new file mode 100644
index 0000000..3c91c05
--- /dev/null
+++ b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/Lernprogramm3_Matchinggame.csproj.nuget.dgspec.json
@@ -0,0 +1,65 @@
+{
+ "format": 1,
+ "restore": {
+ "D:\\_ws\\SDM\\lernprogramme\\Lernprogramm3_Matchinggame\\Lernprogramm3_Matchinggame\\Lernprogramm3_Matchinggame.csproj": {}
+ },
+ "projects": {
+ "D:\\_ws\\SDM\\lernprogramme\\Lernprogramm3_Matchinggame\\Lernprogramm3_Matchinggame\\Lernprogramm3_Matchinggame.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "D:\\_ws\\SDM\\lernprogramme\\Lernprogramm3_Matchinggame\\Lernprogramm3_Matchinggame\\Lernprogramm3_Matchinggame.csproj",
+ "projectName": "Lernprogramm3_Matchinggame",
+ "projectPath": "D:\\_ws\\SDM\\lernprogramme\\Lernprogramm3_Matchinggame\\Lernprogramm3_Matchinggame\\Lernprogramm3_Matchinggame.csproj",
+ "packagesPath": "C:\\Users\\rrund\\.nuget\\packages\\",
+ "outputPath": "D:\\_ws\\SDM\\lernprogramme\\Lernprogramm3_Matchinggame\\Lernprogramm3_Matchinggame\\obj\\",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "C:\\Users\\rrund\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "net6.0-windows7.0"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net6.0-windows7.0": {
+ "targetAlias": "net6.0-windows",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "net6.0-windows7.0": {
+ "targetAlias": "net6.0-windows",
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ },
+ "Microsoft.WindowsDesktop.App.WindowsForms": {
+ "privateAssets": "none"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/Lernprogramm3_Matchinggame.csproj.nuget.g.props b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/Lernprogramm3_Matchinggame.csproj.nuget.g.props
new file mode 100644
index 0000000..19bdaea
--- /dev/null
+++ b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/Lernprogramm3_Matchinggame.csproj.nuget.g.props
@@ -0,0 +1,15 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\rrund\.nuget\packages\
+ PackageReference
+ 6.0.1
+
+
+
+
+
\ No newline at end of file
diff --git a/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/Lernprogramm3_Matchinggame.csproj.nuget.g.targets b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/Lernprogramm3_Matchinggame.csproj.nuget.g.targets
new file mode 100644
index 0000000..3dc06ef
--- /dev/null
+++ b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/Lernprogramm3_Matchinggame.csproj.nuget.g.targets
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/project.assets.json b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/project.assets.json
new file mode 100644
index 0000000..31a0bb1
--- /dev/null
+++ b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/project.assets.json
@@ -0,0 +1,70 @@
+{
+ "version": 3,
+ "targets": {
+ "net6.0-windows7.0": {}
+ },
+ "libraries": {},
+ "projectFileDependencyGroups": {
+ "net6.0-windows7.0": []
+ },
+ "packageFolders": {
+ "C:\\Users\\rrund\\.nuget\\packages\\": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "D:\\_ws\\SDM\\lernprogramme\\Lernprogramm3_Matchinggame\\Lernprogramm3_Matchinggame\\Lernprogramm3_Matchinggame.csproj",
+ "projectName": "Lernprogramm3_Matchinggame",
+ "projectPath": "D:\\_ws\\SDM\\lernprogramme\\Lernprogramm3_Matchinggame\\Lernprogramm3_Matchinggame\\Lernprogramm3_Matchinggame.csproj",
+ "packagesPath": "C:\\Users\\rrund\\.nuget\\packages\\",
+ "outputPath": "D:\\_ws\\SDM\\lernprogramme\\Lernprogramm3_Matchinggame\\Lernprogramm3_Matchinggame\\obj\\",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "C:\\Users\\rrund\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "net6.0-windows7.0"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net6.0-windows7.0": {
+ "targetAlias": "net6.0-windows",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "net6.0-windows7.0": {
+ "targetAlias": "net6.0-windows",
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ },
+ "Microsoft.WindowsDesktop.App.WindowsForms": {
+ "privateAssets": "none"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.101\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/project.nuget.cache b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/project.nuget.cache
new file mode 100644
index 0000000..f55bfcd
--- /dev/null
+++ b/Lernprogramm3_Matchinggame/Lernprogramm3_Matchinggame/obj/project.nuget.cache
@@ -0,0 +1,8 @@
+{
+ "version": 2,
+ "dgSpecHash": "ne+JfVGjqJ1hhzWVaqNJGXe/KS6z3nUnMB7xAywqKM8pJgw2JHbZSO9GXTGAWDrERc9k4MSaL++Q3oPrniP3jw==",
+ "success": true,
+ "projectFilePath": "D:\\_ws\\SDM\\lernprogramme\\Lernprogramm3_Matchinggame\\Lernprogramm3_Matchinggame\\Lernprogramm3_Matchinggame.csproj",
+ "expectedPackageFiles": [],
+ "logs": []
+}
\ No newline at end of file