diff --git a/WpfApp1/.vs/WpfApp1/DesignTimeBuild/.dtbcache.v2 b/WpfApp1/.vs/WpfApp1/DesignTimeBuild/.dtbcache.v2 index 94aff16..06b0b68 100644 Binary files a/WpfApp1/.vs/WpfApp1/DesignTimeBuild/.dtbcache.v2 and b/WpfApp1/.vs/WpfApp1/DesignTimeBuild/.dtbcache.v2 differ diff --git a/WpfApp1/.vs/WpfApp1/FileContentIndex/36adc0cf-ebaf-4c05-bdb6-01b09e178d04.vsidx b/WpfApp1/.vs/WpfApp1/FileContentIndex/36adc0cf-ebaf-4c05-bdb6-01b09e178d04.vsidx deleted file mode 100644 index fcc10c6..0000000 Binary files a/WpfApp1/.vs/WpfApp1/FileContentIndex/36adc0cf-ebaf-4c05-bdb6-01b09e178d04.vsidx and /dev/null differ diff --git a/WpfApp1/.vs/WpfApp1/FileContentIndex/b7712e6b-5f7d-4e9e-a730-329fe8e749f6.vsidx b/WpfApp1/.vs/WpfApp1/FileContentIndex/b7712e6b-5f7d-4e9e-a730-329fe8e749f6.vsidx new file mode 100644 index 0000000..d27c396 Binary files /dev/null and b/WpfApp1/.vs/WpfApp1/FileContentIndex/b7712e6b-5f7d-4e9e-a730-329fe8e749f6.vsidx differ diff --git a/WpfApp1/.vs/WpfApp1/v17/.futdcache.v2 b/WpfApp1/.vs/WpfApp1/v17/.futdcache.v2 index 1f7e849..a43bef1 100644 Binary files a/WpfApp1/.vs/WpfApp1/v17/.futdcache.v2 and b/WpfApp1/.vs/WpfApp1/v17/.futdcache.v2 differ diff --git a/WpfApp1/.vs/WpfApp1/v17/.suo b/WpfApp1/.vs/WpfApp1/v17/.suo index 61d5106..90e755f 100644 Binary files a/WpfApp1/.vs/WpfApp1/v17/.suo and b/WpfApp1/.vs/WpfApp1/v17/.suo differ diff --git a/WpfApp1/.vs/WpfApp1/v17/DocumentLayout.backup.json b/WpfApp1/.vs/WpfApp1/v17/DocumentLayout.backup.json index 999e3d6..7a89aac 100644 --- a/WpfApp1/.vs/WpfApp1/v17/DocumentLayout.backup.json +++ b/WpfApp1/.vs/WpfApp1/v17/DocumentLayout.backup.json @@ -18,12 +18,8 @@ "DocumentGroups": [ { "DockedWidth": 200, - "SelectedChildIndex": 1, + "SelectedChildIndex": 0, "Children": [ - { - "$type": "Bookmark", - "Name": "ST:0:0:{26341fe2-71dd-46fd-bb1b-2e51a92a0d64}" - }, { "$type": "Document", "DocumentIndex": 0, @@ -44,9 +40,10 @@ "RelativeDocumentMoniker": "MainWindow.xaml.cs", "ToolTip": "C:\\Users\\bib\\source\\repos\\ProjektGlueckspiel\\WpfApp1\\MainWindow.xaml.cs", "RelativeToolTip": "MainWindow.xaml.cs", - "ViewState": "AgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==", + "ViewState": "AgIAABEAAAAAAAAAAAA+wBgAAAAMAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", - "WhenOpened": "2025-06-04T12:38:27.389Z" + "WhenOpened": "2025-06-04T12:38:27.389Z", + "EditorCaption": "" } ] } diff --git a/WpfApp1/.vs/WpfApp1/v17/DocumentLayout.json b/WpfApp1/.vs/WpfApp1/v17/DocumentLayout.json index 086f2e0..7a89aac 100644 --- a/WpfApp1/.vs/WpfApp1/v17/DocumentLayout.json +++ b/WpfApp1/.vs/WpfApp1/v17/DocumentLayout.json @@ -18,12 +18,8 @@ "DocumentGroups": [ { "DockedWidth": 200, - "SelectedChildIndex": 1, + "SelectedChildIndex": 0, "Children": [ - { - "$type": "Bookmark", - "Name": "ST:0:0:{26341fe2-71dd-46fd-bb1b-2e51a92a0d64}" - }, { "$type": "Document", "DocumentIndex": 0, @@ -44,7 +40,7 @@ "RelativeDocumentMoniker": "MainWindow.xaml.cs", "ToolTip": "C:\\Users\\bib\\source\\repos\\ProjektGlueckspiel\\WpfApp1\\MainWindow.xaml.cs", "RelativeToolTip": "MainWindow.xaml.cs", - "ViewState": "AgIAABAAAAAAAAAAAAA6wBkAAAAAAAAAAAAAAA==", + "ViewState": "AgIAABEAAAAAAAAAAAA+wBgAAAAMAAAAAAAAAA==", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "WhenOpened": "2025-06-04T12:38:27.389Z", "EditorCaption": "" diff --git a/WpfApp1/MainWindow.xaml b/WpfApp1/MainWindow.xaml index 7c4fb50..419ad79 100644 --- a/WpfApp1/MainWindow.xaml +++ b/WpfApp1/MainWindow.xaml @@ -5,8 +5,11 @@ xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:local="clr-namespace:WpfApp1" mc:Ignorable="d" - Title="MainWindow" Height="450" Width="800"> - + Title="MainWindow" Height="450" Width="650"> + + + + @@ -85,12 +88,12 @@ - diff --git a/WpfApp1/MainWindow.xaml.cs b/WpfApp1/MainWindow.xaml.cs index 829560a..0234f21 100644 --- a/WpfApp1/MainWindow.xaml.cs +++ b/WpfApp1/MainWindow.xaml.cs @@ -1,4 +1,5 @@ -using System.Text; +using System.Reflection.Emit; +using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; @@ -16,14 +17,49 @@ namespace WpfApp1 /// public partial class MainWindow : Window { + int[] ZufallsZahlen = new int[6]; public MainWindow() { InitializeComponent(); + ErzeugeZufallszahlen(); + InLabels(); } private void Button_Click(object sender, RoutedEventArgs e) { } + + + private void ErzeugeZufallszahlen() + { + Random random = new Random(); + + int index = 0; + + while (index < 6) + { + int zahl = random.Next(1, 50); + + if (ZufallsZahlen.Contains(zahl)) + { + } + else + { + ZufallsZahlen[index] = zahl; + index++; + } + } + } + + private void InLabels() + { + Label0.Content = ZufallsZahlen[0].ToString(); + Label1.Content = ZufallsZahlen[1].ToString(); + Label2.Content = ZufallsZahlen[2].ToString(); + Label3.Content = ZufallsZahlen[3].ToString(); + Label4.Content = ZufallsZahlen[4].ToString(); + Label5.Content = ZufallsZahlen[5].ToString(); + } } } \ No newline at end of file diff --git a/WpfApp1/bin/Debug/net8.0-windows/WpfApp1.dll b/WpfApp1/bin/Debug/net8.0-windows/WpfApp1.dll index b216152..4c8d531 100644 Binary files a/WpfApp1/bin/Debug/net8.0-windows/WpfApp1.dll and b/WpfApp1/bin/Debug/net8.0-windows/WpfApp1.dll differ diff --git a/WpfApp1/bin/Debug/net8.0-windows/WpfApp1.exe b/WpfApp1/bin/Debug/net8.0-windows/WpfApp1.exe index 4038753..c43b3a0 100644 Binary files a/WpfApp1/bin/Debug/net8.0-windows/WpfApp1.exe and b/WpfApp1/bin/Debug/net8.0-windows/WpfApp1.exe differ diff --git a/WpfApp1/bin/Debug/net8.0-windows/WpfApp1.pdb b/WpfApp1/bin/Debug/net8.0-windows/WpfApp1.pdb index c2f081e..cb8cc16 100644 Binary files a/WpfApp1/bin/Debug/net8.0-windows/WpfApp1.pdb and b/WpfApp1/bin/Debug/net8.0-windows/WpfApp1.pdb differ diff --git a/WpfApp1/obj/Debug/net8.0-windows/MainWindow.baml b/WpfApp1/obj/Debug/net8.0-windows/MainWindow.baml index f21c582..b2e8389 100644 Binary files a/WpfApp1/obj/Debug/net8.0-windows/MainWindow.baml and b/WpfApp1/obj/Debug/net8.0-windows/MainWindow.baml differ diff --git a/WpfApp1/obj/Debug/net8.0-windows/MainWindow.g.cs b/WpfApp1/obj/Debug/net8.0-windows/MainWindow.g.cs index 7c9d1be..12c65b7 100644 --- a/WpfApp1/obj/Debug/net8.0-windows/MainWindow.g.cs +++ b/WpfApp1/obj/Debug/net8.0-windows/MainWindow.g.cs @@ -1,4 +1,4 @@ -#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "AD2DAB703A4FEDF8F17AD776E36D6B101A442F58" +#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "BF25F3FFC544F52E199DF28EFE89B26D23E53520" //------------------------------------------------------------------------------ // // Dieser Code wurde von einem Tool generiert. @@ -41,6 +41,54 @@ namespace WpfApp1 { /// public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { + + #line 91 "..\..\..\MainWindow.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.Label Label0; + + #line default + #line hidden + + + #line 92 "..\..\..\MainWindow.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.Label Label1; + + #line default + #line hidden + + + #line 93 "..\..\..\MainWindow.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.Label Label2; + + #line default + #line hidden + + + #line 94 "..\..\..\MainWindow.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.Label Label3; + + #line default + #line hidden + + + #line 95 "..\..\..\MainWindow.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.Label Label4; + + #line default + #line hidden + + + #line 96 "..\..\..\MainWindow.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.Label Label5; + + #line default + #line hidden + private bool _contentLoaded; /// @@ -69,6 +117,35 @@ namespace WpfApp1 { [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { + switch (connectionId) + { + case 1: + + #line 32 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click); + + #line default + #line hidden + return; + case 2: + this.Label0 = ((System.Windows.Controls.Label)(target)); + return; + case 3: + this.Label1 = ((System.Windows.Controls.Label)(target)); + return; + case 4: + this.Label2 = ((System.Windows.Controls.Label)(target)); + return; + case 5: + this.Label3 = ((System.Windows.Controls.Label)(target)); + return; + case 6: + this.Label4 = ((System.Windows.Controls.Label)(target)); + return; + case 7: + this.Label5 = ((System.Windows.Controls.Label)(target)); + return; + } this._contentLoaded = true; } } diff --git a/WpfApp1/obj/Debug/net8.0-windows/MainWindow.g.i.cs b/WpfApp1/obj/Debug/net8.0-windows/MainWindow.g.i.cs index 7c9d1be..12c65b7 100644 --- a/WpfApp1/obj/Debug/net8.0-windows/MainWindow.g.i.cs +++ b/WpfApp1/obj/Debug/net8.0-windows/MainWindow.g.i.cs @@ -1,4 +1,4 @@ -#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "AD2DAB703A4FEDF8F17AD776E36D6B101A442F58" +#pragma checksum "..\..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "BF25F3FFC544F52E199DF28EFE89B26D23E53520" //------------------------------------------------------------------------------ // // Dieser Code wurde von einem Tool generiert. @@ -41,6 +41,54 @@ namespace WpfApp1 { /// public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector { + + #line 91 "..\..\..\MainWindow.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.Label Label0; + + #line default + #line hidden + + + #line 92 "..\..\..\MainWindow.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.Label Label1; + + #line default + #line hidden + + + #line 93 "..\..\..\MainWindow.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.Label Label2; + + #line default + #line hidden + + + #line 94 "..\..\..\MainWindow.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.Label Label3; + + #line default + #line hidden + + + #line 95 "..\..\..\MainWindow.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.Label Label4; + + #line default + #line hidden + + + #line 96 "..\..\..\MainWindow.xaml" + [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")] + internal System.Windows.Controls.Label Label5; + + #line default + #line hidden + private bool _contentLoaded; /// @@ -69,6 +117,35 @@ namespace WpfApp1 { [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")] [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")] void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) { + switch (connectionId) + { + case 1: + + #line 32 "..\..\..\MainWindow.xaml" + ((System.Windows.Controls.Button)(target)).Click += new System.Windows.RoutedEventHandler(this.Button_Click); + + #line default + #line hidden + return; + case 2: + this.Label0 = ((System.Windows.Controls.Label)(target)); + return; + case 3: + this.Label1 = ((System.Windows.Controls.Label)(target)); + return; + case 4: + this.Label2 = ((System.Windows.Controls.Label)(target)); + return; + case 5: + this.Label3 = ((System.Windows.Controls.Label)(target)); + return; + case 6: + this.Label4 = ((System.Windows.Controls.Label)(target)); + return; + case 7: + this.Label5 = ((System.Windows.Controls.Label)(target)); + return; + } this._contentLoaded = true; } } diff --git a/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.AssemblyInfo.cs b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.AssemblyInfo.cs index 46eb4f4..2d2c03c 100644 --- a/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.AssemblyInfo.cs +++ b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.AssemblyInfo.cs @@ -14,7 +14,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("WpfApp1")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+72648fcaf4ef82d080dea0cbd5f1d886b7e7c348")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+744f816c0067db96224623d8cac6a610a5861560")] [assembly: System.Reflection.AssemblyProductAttribute("WpfApp1")] [assembly: System.Reflection.AssemblyTitleAttribute("WpfApp1")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.AssemblyInfoInputs.cache b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.AssemblyInfoInputs.cache index 17e2624..b66544d 100644 --- a/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.AssemblyInfoInputs.cache +++ b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.AssemblyInfoInputs.cache @@ -1 +1 @@ -43ead2f174499968285fe26149d0bf1ec706eabd4ed689c5f8cf517a8bdc9d74 +679655cafb71242be754e89529a7ab1eddbb700fb1ce77558763c76405c96f77 diff --git a/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.dll b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.dll index b216152..4c8d531 100644 Binary files a/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.dll and b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.dll differ diff --git a/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.g.resources b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.g.resources index f166634..bf7a268 100644 Binary files a/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.g.resources and b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.g.resources differ diff --git a/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.pdb b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.pdb index c2f081e..cb8cc16 100644 Binary files a/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.pdb and b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1.pdb differ diff --git a/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_42kller0_wpftmp.AssemblyInfo.cs b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_42kller0_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..2d2c03c --- /dev/null +++ b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_42kller0_wpftmp.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("WpfApp1")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+744f816c0067db96224623d8cac6a610a5861560")] +[assembly: System.Reflection.AssemblyProductAttribute("WpfApp1")] +[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp1")] +[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/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_42kller0_wpftmp.AssemblyInfoInputs.cache b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_42kller0_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..b66544d --- /dev/null +++ b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_42kller0_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +679655cafb71242be754e89529a7ab1eddbb700fb1ce77558763c76405c96f77 diff --git a/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_42kller0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_42kller0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..634a1c7 --- /dev/null +++ b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_42kller0_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,16 @@ +is_global = true +build_property.TargetFramework = net8.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = WpfApp1 +build_property.ProjectDir = C:\Users\bib\source\repos\ProjektGlueckspiel\WpfApp1\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.CsWinRTUseWindowsUIXamlProjections = false +build_property.EffectiveAnalysisLevelStyle = 8.0 +build_property.EnableCodeStyleSeverity = diff --git a/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_42kller0_wpftmp.GlobalUsings.g.cs b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_42kller0_wpftmp.GlobalUsings.g.cs new file mode 100644 index 0000000..08bb19f --- /dev/null +++ b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_42kller0_wpftmp.GlobalUsings.g.cs @@ -0,0 +1,6 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.Linq; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_42kller0_wpftmp.assets.cache b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_42kller0_wpftmp.assets.cache new file mode 100644 index 0000000..ae1258c Binary files /dev/null and b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_42kller0_wpftmp.assets.cache differ diff --git a/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_42kller0_wpftmp.csproj.BuildWithSkipAnalyzers b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_42kller0_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_4iabsfrl_wpftmp.AssemblyInfo.cs b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_4iabsfrl_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..2d2c03c --- /dev/null +++ b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_4iabsfrl_wpftmp.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("WpfApp1")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+744f816c0067db96224623d8cac6a610a5861560")] +[assembly: System.Reflection.AssemblyProductAttribute("WpfApp1")] +[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp1")] +[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/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_4iabsfrl_wpftmp.AssemblyInfoInputs.cache b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_4iabsfrl_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..b66544d --- /dev/null +++ b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_4iabsfrl_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +679655cafb71242be754e89529a7ab1eddbb700fb1ce77558763c76405c96f77 diff --git a/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_4iabsfrl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_4iabsfrl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..634a1c7 --- /dev/null +++ b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_4iabsfrl_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,16 @@ +is_global = true +build_property.TargetFramework = net8.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = WpfApp1 +build_property.ProjectDir = C:\Users\bib\source\repos\ProjektGlueckspiel\WpfApp1\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.CsWinRTUseWindowsUIXamlProjections = false +build_property.EffectiveAnalysisLevelStyle = 8.0 +build_property.EnableCodeStyleSeverity = diff --git a/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_4iabsfrl_wpftmp.GlobalUsings.g.cs b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_4iabsfrl_wpftmp.GlobalUsings.g.cs new file mode 100644 index 0000000..08bb19f --- /dev/null +++ b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_4iabsfrl_wpftmp.GlobalUsings.g.cs @@ -0,0 +1,6 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.Linq; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_4iabsfrl_wpftmp.assets.cache b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_4iabsfrl_wpftmp.assets.cache new file mode 100644 index 0000000..7813e97 Binary files /dev/null and b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_4iabsfrl_wpftmp.assets.cache differ diff --git a/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_4iabsfrl_wpftmp.csproj.BuildWithSkipAnalyzers b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_4iabsfrl_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_aqrr1hza_wpftmp.AssemblyInfo.cs b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_aqrr1hza_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..2d2c03c --- /dev/null +++ b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_aqrr1hza_wpftmp.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("WpfApp1")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+744f816c0067db96224623d8cac6a610a5861560")] +[assembly: System.Reflection.AssemblyProductAttribute("WpfApp1")] +[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp1")] +[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/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_aqrr1hza_wpftmp.AssemblyInfoInputs.cache b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_aqrr1hza_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..b66544d --- /dev/null +++ b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_aqrr1hza_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +679655cafb71242be754e89529a7ab1eddbb700fb1ce77558763c76405c96f77 diff --git a/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_aqrr1hza_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_aqrr1hza_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..634a1c7 --- /dev/null +++ b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_aqrr1hza_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,16 @@ +is_global = true +build_property.TargetFramework = net8.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = WpfApp1 +build_property.ProjectDir = C:\Users\bib\source\repos\ProjektGlueckspiel\WpfApp1\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.CsWinRTUseWindowsUIXamlProjections = false +build_property.EffectiveAnalysisLevelStyle = 8.0 +build_property.EnableCodeStyleSeverity = diff --git a/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_aqrr1hza_wpftmp.GlobalUsings.g.cs b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_aqrr1hza_wpftmp.GlobalUsings.g.cs new file mode 100644 index 0000000..08bb19f --- /dev/null +++ b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_aqrr1hza_wpftmp.GlobalUsings.g.cs @@ -0,0 +1,6 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.Linq; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_aqrr1hza_wpftmp.assets.cache b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_aqrr1hza_wpftmp.assets.cache new file mode 100644 index 0000000..fda092a Binary files /dev/null and b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_aqrr1hza_wpftmp.assets.cache differ diff --git a/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_aqrr1hza_wpftmp.csproj.BuildWithSkipAnalyzers b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_aqrr1hza_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_ge5yisiv_wpftmp.AssemblyInfo.cs b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_ge5yisiv_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..2d2c03c --- /dev/null +++ b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_ge5yisiv_wpftmp.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("WpfApp1")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+744f816c0067db96224623d8cac6a610a5861560")] +[assembly: System.Reflection.AssemblyProductAttribute("WpfApp1")] +[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp1")] +[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/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_ge5yisiv_wpftmp.AssemblyInfoInputs.cache b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_ge5yisiv_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..b66544d --- /dev/null +++ b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_ge5yisiv_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +679655cafb71242be754e89529a7ab1eddbb700fb1ce77558763c76405c96f77 diff --git a/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_ge5yisiv_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_ge5yisiv_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..634a1c7 --- /dev/null +++ b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_ge5yisiv_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,16 @@ +is_global = true +build_property.TargetFramework = net8.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = WpfApp1 +build_property.ProjectDir = C:\Users\bib\source\repos\ProjektGlueckspiel\WpfApp1\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.CsWinRTUseWindowsUIXamlProjections = false +build_property.EffectiveAnalysisLevelStyle = 8.0 +build_property.EnableCodeStyleSeverity = diff --git a/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_ge5yisiv_wpftmp.GlobalUsings.g.cs b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_ge5yisiv_wpftmp.GlobalUsings.g.cs new file mode 100644 index 0000000..08bb19f --- /dev/null +++ b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_ge5yisiv_wpftmp.GlobalUsings.g.cs @@ -0,0 +1,6 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.Linq; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_ge5yisiv_wpftmp.assets.cache b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_ge5yisiv_wpftmp.assets.cache new file mode 100644 index 0000000..cb83d78 Binary files /dev/null and b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_ge5yisiv_wpftmp.assets.cache differ diff --git a/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_ge5yisiv_wpftmp.csproj.BuildWithSkipAnalyzers b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_ge5yisiv_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_ynbyp00z_wpftmp.AssemblyInfo.cs b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_ynbyp00z_wpftmp.AssemblyInfo.cs new file mode 100644 index 0000000..2d2c03c --- /dev/null +++ b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_ynbyp00z_wpftmp.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("WpfApp1")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+744f816c0067db96224623d8cac6a610a5861560")] +[assembly: System.Reflection.AssemblyProductAttribute("WpfApp1")] +[assembly: System.Reflection.AssemblyTitleAttribute("WpfApp1")] +[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/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_ynbyp00z_wpftmp.AssemblyInfoInputs.cache b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_ynbyp00z_wpftmp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..b66544d --- /dev/null +++ b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_ynbyp00z_wpftmp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +679655cafb71242be754e89529a7ab1eddbb700fb1ce77558763c76405c96f77 diff --git a/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_ynbyp00z_wpftmp.GeneratedMSBuildEditorConfig.editorconfig b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_ynbyp00z_wpftmp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..634a1c7 --- /dev/null +++ b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_ynbyp00z_wpftmp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,16 @@ +is_global = true +build_property.TargetFramework = net8.0-windows +build_property.TargetPlatformMinVersion = 7.0 +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = WpfApp1 +build_property.ProjectDir = C:\Users\bib\source\repos\ProjektGlueckspiel\WpfApp1\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.CsWinRTUseWindowsUIXamlProjections = false +build_property.EffectiveAnalysisLevelStyle = 8.0 +build_property.EnableCodeStyleSeverity = diff --git a/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_ynbyp00z_wpftmp.GlobalUsings.g.cs b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_ynbyp00z_wpftmp.GlobalUsings.g.cs new file mode 100644 index 0000000..08bb19f --- /dev/null +++ b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_ynbyp00z_wpftmp.GlobalUsings.g.cs @@ -0,0 +1,6 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.Linq; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_ynbyp00z_wpftmp.assets.cache b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_ynbyp00z_wpftmp.assets.cache new file mode 100644 index 0000000..c987865 Binary files /dev/null and b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_ynbyp00z_wpftmp.assets.cache differ diff --git a/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_ynbyp00z_wpftmp.csproj.BuildWithSkipAnalyzers b/WpfApp1/obj/Debug/net8.0-windows/WpfApp1_ynbyp00z_wpftmp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/WpfApp1/obj/Debug/net8.0-windows/apphost.exe b/WpfApp1/obj/Debug/net8.0-windows/apphost.exe index 4038753..c43b3a0 100644 Binary files a/WpfApp1/obj/Debug/net8.0-windows/apphost.exe and b/WpfApp1/obj/Debug/net8.0-windows/apphost.exe differ diff --git a/WpfApp1/obj/Debug/net8.0-windows/ref/WpfApp1.dll b/WpfApp1/obj/Debug/net8.0-windows/ref/WpfApp1.dll index e91b400..1bd617f 100644 Binary files a/WpfApp1/obj/Debug/net8.0-windows/ref/WpfApp1.dll and b/WpfApp1/obj/Debug/net8.0-windows/ref/WpfApp1.dll differ diff --git a/WpfApp1/obj/Debug/net8.0-windows/refint/WpfApp1.dll b/WpfApp1/obj/Debug/net8.0-windows/refint/WpfApp1.dll index e91b400..1bd617f 100644 Binary files a/WpfApp1/obj/Debug/net8.0-windows/refint/WpfApp1.dll and b/WpfApp1/obj/Debug/net8.0-windows/refint/WpfApp1.dll differ