commit 668a21abd09a45a170b62bf3780d8e46e23b1c67 Author: NickiCloud Date: Fri Jun 5 17:11:11 2026 +0200 Initial commit diff --git a/.idea/.idea.ZahlenRaten/.idea/.gitignore b/.idea/.idea.ZahlenRaten/.idea/.gitignore new file mode 100644 index 0000000..7ebbcdc --- /dev/null +++ b/.idea/.idea.ZahlenRaten/.idea/.gitignore @@ -0,0 +1,13 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Rider ignored files +/projectSettingsUpdater.xml +/.idea.ZahlenRaten.iml +/contentModel.xml +/modules.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/.idea.ZahlenRaten/.idea/avalonia.xml b/.idea/.idea.ZahlenRaten/.idea/avalonia.xml new file mode 100644 index 0000000..5c27876 --- /dev/null +++ b/.idea/.idea.ZahlenRaten/.idea/avalonia.xml @@ -0,0 +1,10 @@ + + + + + + \ No newline at end of file diff --git a/.idea/.idea.ZahlenRaten/.idea/encodings.xml b/.idea/.idea.ZahlenRaten/.idea/encodings.xml new file mode 100644 index 0000000..df87cf9 --- /dev/null +++ b/.idea/.idea.ZahlenRaten/.idea/encodings.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/.idea.ZahlenRaten/.idea/indexLayout.xml b/.idea/.idea.ZahlenRaten/.idea/indexLayout.xml new file mode 100644 index 0000000..7b08163 --- /dev/null +++ b/.idea/.idea.ZahlenRaten/.idea/indexLayout.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.ZahlenRaten/.idea/material_theme_project_new.xml b/.idea/.idea.ZahlenRaten/.idea/material_theme_project_new.xml new file mode 100644 index 0000000..184e55e --- /dev/null +++ b/.idea/.idea.ZahlenRaten/.idea/material_theme_project_new.xml @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..1a5e1cc --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# ZahlenRaten +Ein einfaches Zahlenratespiel in Avalonia. \ No newline at end of file diff --git a/ZahlenRaten.sln b/ZahlenRaten.sln new file mode 100644 index 0000000..6d510a6 --- /dev/null +++ b/ZahlenRaten.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ZahlenRaten", "ZahlenRaten\ZahlenRaten.csproj", "{D266AD91-06B3-4D30-92F0-C68168B86816}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {D266AD91-06B3-4D30-92F0-C68168B86816}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D266AD91-06B3-4D30-92F0-C68168B86816}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D266AD91-06B3-4D30-92F0-C68168B86816}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D266AD91-06B3-4D30-92F0-C68168B86816}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/ZahlenRaten/App.axaml b/ZahlenRaten/App.axaml new file mode 100644 index 0000000..424c73e --- /dev/null +++ b/ZahlenRaten/App.axaml @@ -0,0 +1,10 @@ + + + + + + + \ No newline at end of file diff --git a/ZahlenRaten/App.axaml.cs b/ZahlenRaten/App.axaml.cs new file mode 100644 index 0000000..8777ae0 --- /dev/null +++ b/ZahlenRaten/App.axaml.cs @@ -0,0 +1,23 @@ +using Avalonia; +using Avalonia.Controls.ApplicationLifetimes; +using Avalonia.Markup.Xaml; + +namespace ZahlenRaten; + +public partial class App : Application +{ + public override void Initialize() + { + AvaloniaXamlLoader.Load(this); + } + + public override void OnFrameworkInitializationCompleted() + { + if (ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop) + { + desktop.MainWindow = new MainWindow(); + } + + base.OnFrameworkInitializationCompleted(); + } +} \ No newline at end of file diff --git a/ZahlenRaten/MainWindow.axaml b/ZahlenRaten/MainWindow.axaml new file mode 100644 index 0000000..7b67dab --- /dev/null +++ b/ZahlenRaten/MainWindow.axaml @@ -0,0 +1,16 @@ + + + + Gib deine Zahl ein: + + + + + + diff --git a/ZahlenRaten/MainWindow.axaml.cs b/ZahlenRaten/MainWindow.axaml.cs new file mode 100644 index 0000000..d5548c5 --- /dev/null +++ b/ZahlenRaten/MainWindow.axaml.cs @@ -0,0 +1,69 @@ +using System; +using Avalonia.Controls; +using Avalonia.Interactivity; + +namespace ZahlenRaten; + +public partial class MainWindow : Window +{ + private int _zielZahl; + private const int StandartLeben = 5; + private int _leben = StandartLeben; + + public MainWindow() + { + InitializeComponent(); + _zielZahl = ZahlErstellen(); + } + + public static int ZahlErstellen() + { + Random rnd = new Random(); + int zahl = rnd.Next(10); + return zahl; + } + + private void btnRaten_OnClick(object sender, RoutedEventArgs e) + { + if (_leben > 0) + { + int input = Convert.ToInt32(txtInput.Text); + if (input == _zielZahl) + { + txtOutput.Text = $"Du hast die Zahl erraten! Es war die Zahl: {_zielZahl}"; + btnRaten.IsVisible = false; + btnNeueZahl.IsVisible = true; + } + else if (input > _zielZahl) + { + txtOutput.Text = $"Deine Zahl ist kleiner als die Gesuchte Zahl. \nDu hast noch {_leben} Leben. \nDeine zuletzt geratene Zahl war die {input}"; + } + else + { + txtOutput.Text = $"Deine Zahl ist höher als die gesuchte Zahl. \nDu hast noch {_leben} Leben. \nDeine zuletzt geratene Zahl war die {input}"; + } + + txtInput.Text = ""; + txtInput.Focus(); + _leben--; + } + else + { + txtOutput.Text = $"Du hast Verloren! Die Zahl war die {_zielZahl}"; + btnRaten.IsVisible = false; + btnNeueZahl.IsVisible = true; + } + + } + + private void btnNeueZahl_OnClick(object sender, RoutedEventArgs e) + { + _leben = StandartLeben; + txtInput.Text = ""; + txtOutput.Text = String.Empty; + _zielZahl = ZahlErstellen(); + btnRaten.IsVisible = true; + btnNeueZahl.IsVisible = false; + txtInput.Focus(); + } +} \ No newline at end of file diff --git a/ZahlenRaten/Program.cs b/ZahlenRaten/Program.cs new file mode 100644 index 0000000..ffb1b88 --- /dev/null +++ b/ZahlenRaten/Program.cs @@ -0,0 +1,24 @@ +using Avalonia; +using System; + +namespace ZahlenRaten; + +class Program +{ + // Initialization code. Don't use any Avalonia, third-party APIs or any + // SynchronizationContext-reliant code before AppMain is called: things aren't initialized + // yet and stuff might break. + [STAThread] + public static void Main(string[] args) => BuildAvaloniaApp() + .StartWithClassicDesktopLifetime(args); + + // Avalonia configuration, don't remove; also used by visual designer. + public static AppBuilder BuildAvaloniaApp() + => AppBuilder.Configure() + .UsePlatformDetect() +#if DEBUG + .WithDeveloperTools() +#endif + .WithInterFont() + .LogToTrace(); +} \ No newline at end of file diff --git a/ZahlenRaten/ZahlenRaten.csproj b/ZahlenRaten/ZahlenRaten.csproj new file mode 100644 index 0000000..3f25107 --- /dev/null +++ b/ZahlenRaten/ZahlenRaten.csproj @@ -0,0 +1,20 @@ + + + WinExe + net10.0 + enable + app.manifest + true + + + + + + + + + None + All + + + diff --git a/ZahlenRaten/app.manifest b/ZahlenRaten/app.manifest new file mode 100644 index 0000000..57f75be --- /dev/null +++ b/ZahlenRaten/app.manifest @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + diff --git a/ZahlenRaten/bin/Debug/net10.0/Avalonia.Base.dll b/ZahlenRaten/bin/Debug/net10.0/Avalonia.Base.dll new file mode 100644 index 0000000..bba9bb9 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/Avalonia.Base.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/Avalonia.Controls.dll b/ZahlenRaten/bin/Debug/net10.0/Avalonia.Controls.dll new file mode 100644 index 0000000..168d7a1 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/Avalonia.Controls.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/Avalonia.DesignerSupport.dll b/ZahlenRaten/bin/Debug/net10.0/Avalonia.DesignerSupport.dll new file mode 100644 index 0000000..339d057 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/Avalonia.DesignerSupport.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/Avalonia.Desktop.dll b/ZahlenRaten/bin/Debug/net10.0/Avalonia.Desktop.dll new file mode 100644 index 0000000..a0edbf2 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/Avalonia.Desktop.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/Avalonia.Dialogs.dll b/ZahlenRaten/bin/Debug/net10.0/Avalonia.Dialogs.dll new file mode 100644 index 0000000..a558a06 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/Avalonia.Dialogs.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/Avalonia.Fonts.Inter.dll b/ZahlenRaten/bin/Debug/net10.0/Avalonia.Fonts.Inter.dll new file mode 100644 index 0000000..6b2d51a Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/Avalonia.Fonts.Inter.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/Avalonia.FreeDesktop.dll b/ZahlenRaten/bin/Debug/net10.0/Avalonia.FreeDesktop.dll new file mode 100644 index 0000000..4cf133a Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/Avalonia.FreeDesktop.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/Avalonia.Markup.Xaml.dll b/ZahlenRaten/bin/Debug/net10.0/Avalonia.Markup.Xaml.dll new file mode 100644 index 0000000..04d1203 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/Avalonia.Markup.Xaml.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/Avalonia.Markup.dll b/ZahlenRaten/bin/Debug/net10.0/Avalonia.Markup.dll new file mode 100644 index 0000000..b5c8d19 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/Avalonia.Markup.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/Avalonia.Metal.dll b/ZahlenRaten/bin/Debug/net10.0/Avalonia.Metal.dll new file mode 100644 index 0000000..0ad0481 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/Avalonia.Metal.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/Avalonia.MicroCom.dll b/ZahlenRaten/bin/Debug/net10.0/Avalonia.MicroCom.dll new file mode 100644 index 0000000..bf9dcdf Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/Avalonia.MicroCom.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/Avalonia.Native.dll b/ZahlenRaten/bin/Debug/net10.0/Avalonia.Native.dll new file mode 100644 index 0000000..d1529c5 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/Avalonia.Native.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/Avalonia.OpenGL.dll b/ZahlenRaten/bin/Debug/net10.0/Avalonia.OpenGL.dll new file mode 100644 index 0000000..2eff5f6 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/Avalonia.OpenGL.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/Avalonia.Remote.Protocol.dll b/ZahlenRaten/bin/Debug/net10.0/Avalonia.Remote.Protocol.dll new file mode 100644 index 0000000..60013ed Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/Avalonia.Remote.Protocol.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/Avalonia.Skia.dll b/ZahlenRaten/bin/Debug/net10.0/Avalonia.Skia.dll new file mode 100644 index 0000000..dc44ed0 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/Avalonia.Skia.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/Avalonia.Themes.Fluent.dll b/ZahlenRaten/bin/Debug/net10.0/Avalonia.Themes.Fluent.dll new file mode 100644 index 0000000..2b96f86 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/Avalonia.Themes.Fluent.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/Avalonia.Vulkan.dll b/ZahlenRaten/bin/Debug/net10.0/Avalonia.Vulkan.dll new file mode 100644 index 0000000..923a42c Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/Avalonia.Vulkan.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/Avalonia.Win32.Automation.dll b/ZahlenRaten/bin/Debug/net10.0/Avalonia.Win32.Automation.dll new file mode 100644 index 0000000..e4c3838 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/Avalonia.Win32.Automation.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/Avalonia.Win32.dll b/ZahlenRaten/bin/Debug/net10.0/Avalonia.Win32.dll new file mode 100644 index 0000000..f2a407a Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/Avalonia.Win32.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/Avalonia.X11.dll b/ZahlenRaten/bin/Debug/net10.0/Avalonia.X11.dll new file mode 100644 index 0000000..2e4c314 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/Avalonia.X11.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/Avalonia.dll b/ZahlenRaten/bin/Debug/net10.0/Avalonia.dll new file mode 100644 index 0000000..756f8f1 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/Avalonia.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/AvaloniaUI.DiagnosticsSupport.Avalonia.dll b/ZahlenRaten/bin/Debug/net10.0/AvaloniaUI.DiagnosticsSupport.Avalonia.dll new file mode 100644 index 0000000..4d4ee5f Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/AvaloniaUI.DiagnosticsSupport.Avalonia.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/HarfBuzzSharp.dll b/ZahlenRaten/bin/Debug/net10.0/HarfBuzzSharp.dll new file mode 100644 index 0000000..ee75381 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/HarfBuzzSharp.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/MicroCom.Runtime.dll b/ZahlenRaten/bin/Debug/net10.0/MicroCom.Runtime.dll new file mode 100644 index 0000000..f6cf008 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/MicroCom.Runtime.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/ZahlenRaten/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100644 index 0000000..0b3c8e9 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/Microsoft.Extensions.Logging.Abstractions.dll b/ZahlenRaten/bin/Debug/net10.0/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 0000000..085f415 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/Microsoft.IO.RecyclableMemoryStream.dll b/ZahlenRaten/bin/Debug/net10.0/Microsoft.IO.RecyclableMemoryStream.dll new file mode 100644 index 0000000..6e0ea40 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/Microsoft.IO.RecyclableMemoryStream.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/SkiaSharp.dll b/ZahlenRaten/bin/Debug/net10.0/SkiaSharp.dll new file mode 100644 index 0000000..5d7e9cd Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/SkiaSharp.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/Tmds.DBus.Protocol.dll b/ZahlenRaten/bin/Debug/net10.0/Tmds.DBus.Protocol.dll new file mode 100644 index 0000000..b66137d Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/Tmds.DBus.Protocol.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/ZahlenRaten.deps.json b/ZahlenRaten/bin/Debug/net10.0/ZahlenRaten.deps.json new file mode 100644 index 0000000..b61931a --- /dev/null +++ b/ZahlenRaten/bin/Debug/net10.0/ZahlenRaten.deps.json @@ -0,0 +1,630 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "ZahlenRaten/1.0.0": { + "dependencies": { + "Avalonia": "11.3.10", + "Avalonia.Desktop": "11.3.10", + "Avalonia.Fonts.Inter": "11.3.10", + "Avalonia.Themes.Fluent": "11.3.10", + "AvaloniaUI.DiagnosticsSupport": "2.2.1", + "AvaloniaUI.DiagnosticsSupport.Avalonia": "2.2.1.0" + }, + "runtime": { + "ZahlenRaten.dll": {} + } + }, + "Avalonia/11.3.10": { + "dependencies": { + "Avalonia.Remote.Protocol": "11.3.10", + "MicroCom.Runtime": "0.11.0" + }, + "runtime": { + "lib/net8.0/Avalonia.Base.dll": { + "assemblyVersion": "11.3.10.0", + "fileVersion": "11.3.10.0" + }, + "lib/net8.0/Avalonia.Controls.dll": { + "assemblyVersion": "11.3.10.0", + "fileVersion": "11.3.10.0" + }, + "lib/net8.0/Avalonia.DesignerSupport.dll": { + "assemblyVersion": "0.7.0.0", + "fileVersion": "0.7.0.0" + }, + "lib/net8.0/Avalonia.Dialogs.dll": { + "assemblyVersion": "11.3.10.0", + "fileVersion": "11.3.10.0" + }, + "lib/net8.0/Avalonia.Markup.Xaml.dll": { + "assemblyVersion": "11.3.10.0", + "fileVersion": "11.3.10.0" + }, + "lib/net8.0/Avalonia.Markup.dll": { + "assemblyVersion": "11.3.10.0", + "fileVersion": "11.3.10.0" + }, + "lib/net8.0/Avalonia.Metal.dll": { + "assemblyVersion": "11.3.10.0", + "fileVersion": "11.3.10.0" + }, + "lib/net8.0/Avalonia.MicroCom.dll": { + "assemblyVersion": "11.3.10.0", + "fileVersion": "11.3.10.0" + }, + "lib/net8.0/Avalonia.OpenGL.dll": { + "assemblyVersion": "11.3.10.0", + "fileVersion": "11.3.10.0" + }, + "lib/net8.0/Avalonia.Vulkan.dll": { + "assemblyVersion": "11.3.10.0", + "fileVersion": "11.3.10.0" + }, + "lib/net8.0/Avalonia.dll": { + "assemblyVersion": "11.3.10.0", + "fileVersion": "11.3.10.0" + } + } + }, + "Avalonia.Angle.Windows.Natives/2.1.25547.20250602": { + "runtimeTargets": { + "runtimes/win-arm64/native/av_libglesv2.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "2.1.25606.0" + }, + "runtimes/win-x64/native/av_libglesv2.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "2.1.25606.0" + }, + "runtimes/win-x86/native/av_libglesv2.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "2.1.25606.0" + } + } + }, + "Avalonia.Desktop/11.3.10": { + "dependencies": { + "Avalonia": "11.3.10", + "Avalonia.Native": "11.3.10", + "Avalonia.Skia": "11.3.10", + "Avalonia.Win32": "11.3.10", + "Avalonia.X11": "11.3.10" + }, + "runtime": { + "lib/net8.0/Avalonia.Desktop.dll": { + "assemblyVersion": "11.3.10.0", + "fileVersion": "11.3.10.0" + } + } + }, + "Avalonia.Fonts.Inter/11.3.10": { + "dependencies": { + "Avalonia": "11.3.10" + }, + "runtime": { + "lib/net8.0/Avalonia.Fonts.Inter.dll": { + "assemblyVersion": "11.3.10.0", + "fileVersion": "11.3.10.0" + } + } + }, + "Avalonia.FreeDesktop/11.3.10": { + "dependencies": { + "Avalonia": "11.3.10", + "Tmds.DBus.Protocol": "0.21.2" + }, + "runtime": { + "lib/net8.0/Avalonia.FreeDesktop.dll": { + "assemblyVersion": "11.3.10.0", + "fileVersion": "11.3.10.0" + } + } + }, + "Avalonia.Native/11.3.10": { + "dependencies": { + "Avalonia": "11.3.10" + }, + "runtime": { + "lib/net8.0/Avalonia.Native.dll": { + "assemblyVersion": "11.3.10.0", + "fileVersion": "11.3.10.0" + } + }, + "runtimeTargets": { + "runtimes/osx/native/libAvaloniaNative.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "Avalonia.Remote.Protocol/11.3.10": { + "runtime": { + "lib/net8.0/Avalonia.Remote.Protocol.dll": { + "assemblyVersion": "11.3.10.0", + "fileVersion": "11.3.10.0" + } + } + }, + "Avalonia.Skia/11.3.10": { + "dependencies": { + "Avalonia": "11.3.10", + "HarfBuzzSharp": "8.3.1.1", + "HarfBuzzSharp.NativeAssets.Linux": "8.3.1.1", + "SkiaSharp": "2.88.9", + "SkiaSharp.NativeAssets.Linux": "2.88.9" + }, + "runtime": { + "lib/net8.0/Avalonia.Skia.dll": { + "assemblyVersion": "11.3.10.0", + "fileVersion": "11.3.10.0" + } + } + }, + "Avalonia.Themes.Fluent/11.3.10": { + "dependencies": { + "Avalonia": "11.3.10" + }, + "runtime": { + "lib/net8.0/Avalonia.Themes.Fluent.dll": { + "assemblyVersion": "11.3.10.0", + "fileVersion": "11.3.10.0" + } + } + }, + "Avalonia.Win32/11.3.10": { + "dependencies": { + "Avalonia": "11.3.10", + "Avalonia.Angle.Windows.Natives": "2.1.25547.20250602" + }, + "runtime": { + "lib/net8.0/Avalonia.Win32.Automation.dll": { + "assemblyVersion": "11.3.10.0", + "fileVersion": "11.3.10.0" + }, + "lib/net8.0/Avalonia.Win32.dll": { + "assemblyVersion": "11.3.10.0", + "fileVersion": "11.3.10.0" + } + } + }, + "Avalonia.X11/11.3.10": { + "dependencies": { + "Avalonia": "11.3.10", + "Avalonia.FreeDesktop": "11.3.10", + "Avalonia.Skia": "11.3.10" + }, + "runtime": { + "lib/net8.0/Avalonia.X11.dll": { + "assemblyVersion": "11.3.10.0", + "fileVersion": "11.3.10.0" + } + } + }, + "AvaloniaUI.DiagnosticsSupport/2.2.1": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.IO.RecyclableMemoryStream": "3.0.1" + }, + "runtime": { + "lib/net10.0/AvaloniaUI.DiagnosticsSupport.Avalonia.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + }, + "HarfBuzzSharp/8.3.1.1": { + "dependencies": { + "HarfBuzzSharp.NativeAssets.Win32": "8.3.1.1", + "HarfBuzzSharp.NativeAssets.macOS": "8.3.1.1" + }, + "runtime": { + "lib/net8.0/HarfBuzzSharp.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "8.3.1.1" + } + } + }, + "HarfBuzzSharp.NativeAssets.Linux/8.3.1.1": { + "runtimeTargets": { + "runtimes/linux-arm/native/libHarfBuzzSharp.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libHarfBuzzSharp.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-loongarch64/native/libHarfBuzzSharp.so": { + "rid": "linux-loongarch64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-arm/native/libHarfBuzzSharp.so": { + "rid": "linux-musl-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-arm64/native/libHarfBuzzSharp.so": { + "rid": "linux-musl-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-loongarch64/native/libHarfBuzzSharp.so": { + "rid": "linux-musl-loongarch64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-riscv64/native/libHarfBuzzSharp.so": { + "rid": "linux-musl-riscv64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libHarfBuzzSharp.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-riscv64/native/libHarfBuzzSharp.so": { + "rid": "linux-riscv64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libHarfBuzzSharp.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libHarfBuzzSharp.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "HarfBuzzSharp.NativeAssets.macOS/8.3.1.1": { + "runtimeTargets": { + "runtimes/osx/native/libHarfBuzzSharp.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "HarfBuzzSharp.NativeAssets.Win32/8.3.1.1": { + "runtimeTargets": { + "runtimes/win-arm64/native/libHarfBuzzSharp.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/libHarfBuzzSharp.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/libHarfBuzzSharp.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "MicroCom.Runtime/0.11.0": { + "runtime": { + "lib/net5.0/MicroCom.Runtime.dll": { + "assemblyVersion": "0.11.0.0", + "fileVersion": "0.11.0.0" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.IO.RecyclableMemoryStream/3.0.1": { + "runtime": { + "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": { + "assemblyVersion": "3.0.1.0", + "fileVersion": "3.0.1.0" + } + } + }, + "SkiaSharp/2.88.9": { + "dependencies": { + "SkiaSharp.NativeAssets.Win32": "2.88.9", + "SkiaSharp.NativeAssets.macOS": "2.88.9" + }, + "runtime": { + "lib/net6.0/SkiaSharp.dll": { + "assemblyVersion": "2.88.0.0", + "fileVersion": "2.88.9.0" + } + } + }, + "SkiaSharp.NativeAssets.Linux/2.88.9": { + "dependencies": { + "SkiaSharp": "2.88.9" + }, + "runtimeTargets": { + "runtimes/linux-arm/native/libSkiaSharp.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libSkiaSharp.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libSkiaSharp.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libSkiaSharp.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SkiaSharp.NativeAssets.macOS/2.88.9": { + "runtimeTargets": { + "runtimes/osx/native/libSkiaSharp.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SkiaSharp.NativeAssets.Win32/2.88.9": { + "runtimeTargets": { + "runtimes/win-arm64/native/libSkiaSharp.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/libSkiaSharp.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/libSkiaSharp.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "Tmds.DBus.Protocol/0.21.2": { + "runtime": { + "lib/net8.0/Tmds.DBus.Protocol.dll": { + "assemblyVersion": "0.21.2.0", + "fileVersion": "0.21.2.0" + } + } + }, + "AvaloniaUI.DiagnosticsSupport.Avalonia/2.2.1.0": { + "runtime": { + "AvaloniaUI.DiagnosticsSupport.Avalonia.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + } + } + }, + "libraries": { + "ZahlenRaten/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Avalonia/11.3.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fAZmy1oOzQzBlg0Mm8QawA2439LmXHmX7hHEucfvGmAfibCUtQ0wgedl4b3XRd4Y8pH50kAlsg5DPG7ARtGa2A==", + "path": "avalonia/11.3.10", + "hashPath": "avalonia.11.3.10.nupkg.sha512" + }, + "Avalonia.Angle.Windows.Natives/2.1.25547.20250602": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZL0VLc4s9rvNNFt19Pxm5UNAkmKNylugAwJPX9ulXZ6JWs/l6XZihPWWTyezaoNOVyEPU8YbURtW7XMAtqXH5A==", + "path": "avalonia.angle.windows.natives/2.1.25547.20250602", + "hashPath": "avalonia.angle.windows.natives.2.1.25547.20250602.nupkg.sha512" + }, + "Avalonia.Desktop/11.3.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Enb/6GTCO3+GlSxyhyxYuMjiyBT1EGdFkOLdAPKXYTxgCcnWvqdC6lwBslD0y18P8B8pOnlYryTEmBRsBSvHjQ==", + "path": "avalonia.desktop/11.3.10", + "hashPath": "avalonia.desktop.11.3.10.nupkg.sha512" + }, + "Avalonia.Fonts.Inter/11.3.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k55hTUepo0++6k5pogZGeGfnaqgrJKQbur1R6G2KEfcuVEI8VEeHIrPVm14ItFoB68xH+E9LnRjs7bvhlXNcvg==", + "path": "avalonia.fonts.inter/11.3.10", + "hashPath": "avalonia.fonts.inter.11.3.10.nupkg.sha512" + }, + "Avalonia.FreeDesktop/11.3.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jSGEfIvCSXTX5N8LUgxmXk9J09NlSchkakwQZKqMW57SmZpxSolqU6z40fC5pU0uToZ0kIGY79+gfER+Q9gODA==", + "path": "avalonia.freedesktop/11.3.10", + "hashPath": "avalonia.freedesktop.11.3.10.nupkg.sha512" + }, + "Avalonia.Native/11.3.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-74QbUY4K9YVE3yELih6qohauQn/oSSHMfSRIdZmGyQIE/d2Jfu98lirpbECtZ2QCVBpVbbbpHWuT6mbc/IYp8g==", + "path": "avalonia.native/11.3.10", + "hashPath": "avalonia.native.11.3.10.nupkg.sha512" + }, + "Avalonia.Remote.Protocol/11.3.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DyNUbh9IfH+AL3KKob8p4IPZk7BvDMIB3ub13gJTrICfaMQiU7QsE0U05rfNFKJEdMmK0MBTL/Y+8BnaLVrDPw==", + "path": "avalonia.remote.protocol/11.3.10", + "hashPath": "avalonia.remote.protocol.11.3.10.nupkg.sha512" + }, + "Avalonia.Skia/11.3.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AvBmDgblDkPuC+VSgSFlNVHCHMiQ1NEojm02imiXOj7m/CGoBorvbhbJob6suvdsSRfFIjLf4Oay1ULFSsEWOA==", + "path": "avalonia.skia/11.3.10", + "hashPath": "avalonia.skia.11.3.10.nupkg.sha512" + }, + "Avalonia.Themes.Fluent/11.3.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-K5QkJZYKbKUqLY9FbtSfihzO7n35cDcisQY9ohTfKBe/GQpmEqhy6BdazBDu8Iq/o7DfLUaNINbqCysvouiJIw==", + "path": "avalonia.themes.fluent/11.3.10", + "hashPath": "avalonia.themes.fluent.11.3.10.nupkg.sha512" + }, + "Avalonia.Win32/11.3.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iMCnKRoOOlRnjV4Oyt6rD1lj4U5BrgO2Y/q6npFwcXZUwz9GWJUo7NpwDLjGsjMONE+WngQ1T9qAO2cBpnUN1A==", + "path": "avalonia.win32/11.3.10", + "hashPath": "avalonia.win32.11.3.10.nupkg.sha512" + }, + "Avalonia.X11/11.3.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dDVWIi7gWxzDJnXysF0rR6B/aoxliO+JQ8g9OOaUk/qZPRhLPP5tLjQdyEuRGwX74ip8IUbf44L4XU6GZt0+7g==", + "path": "avalonia.x11/11.3.10", + "hashPath": "avalonia.x11.11.3.10.nupkg.sha512" + }, + "AvaloniaUI.DiagnosticsSupport/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PXviRj+8t6IT7JdnVhs1EET+VgGB/K1Ju3yL/Q9sXR2YD9NzkIYybyfJG3DPXcTYXpEJZJvxGiCTjH1N8AkLhQ==", + "path": "avaloniaui.diagnosticssupport/2.2.1", + "hashPath": "avaloniaui.diagnosticssupport.2.2.1.nupkg.sha512" + }, + "HarfBuzzSharp/8.3.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tLZN66oe/uiRPTZfrCU4i8ScVGwqHNh5MHrXj0yVf4l7Mz0FhTGnQ71RGySROTmdognAs0JtluHkL41pIabWuQ==", + "path": "harfbuzzsharp/8.3.1.1", + "hashPath": "harfbuzzsharp.8.3.1.1.nupkg.sha512" + }, + "HarfBuzzSharp.NativeAssets.Linux/8.3.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3EZ1mpIiKWRLL5hUYA82ZHteeDIVaEA/Z0rA/wU6tjx6crcAkJnBPwDXZugBSfo8+J3EznvRJf49uMsqYfKrHg==", + "path": "harfbuzzsharp.nativeassets.linux/8.3.1.1", + "hashPath": "harfbuzzsharp.nativeassets.linux.8.3.1.1.nupkg.sha512" + }, + "HarfBuzzSharp.NativeAssets.macOS/8.3.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jbtCsgftcaFLCA13tVKo5iWdElJScrulLTKJre36O4YQTIlwDtPPqhRZNk+Y0vv4D1gxbscasGRucUDfS44ofQ==", + "path": "harfbuzzsharp.nativeassets.macos/8.3.1.1", + "hashPath": "harfbuzzsharp.nativeassets.macos.8.3.1.1.nupkg.sha512" + }, + "HarfBuzzSharp.NativeAssets.Win32/8.3.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UsJtQsfAJoFDZrXc4hCUfRPMqccfKZ0iumJ/upcUjz/cmsTgVFGNEL5yaJWmkqsuFYdMWbj/En5/kS4PFl9hBA==", + "path": "harfbuzzsharp.nativeassets.win32/8.3.1.1", + "hashPath": "harfbuzzsharp.nativeassets.win32.8.3.1.1.nupkg.sha512" + }, + "MicroCom.Runtime/0.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MEnrZ3UIiH40hjzMDsxrTyi8dtqB5ziv3iBeeU4bXsL/7NLSal9F1lZKpK+tfBRnUoDSdtcW3KufE4yhATOMCA==", + "path": "microcom.runtime/0.11.0", + "hashPath": "microcom.runtime.0.11.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", + "path": "microsoft.extensions.logging.abstractions/8.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.IO.RecyclableMemoryStream/3.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-s/s20YTVY9r9TPfTrN5g8zPF1YhwxyqO6PxUkrYTGI2B+OGPe9AdajWZrLhFqXIvqIW23fnUE4+ztrUWNU1+9g==", + "path": "microsoft.io.recyclablememorystream/3.0.1", + "hashPath": "microsoft.io.recyclablememorystream.3.0.1.nupkg.sha512" + }, + "SkiaSharp/2.88.9": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3MD5VHjXXieSHCleRLuaTXmL2pD0mB7CcOB1x2kA1I4bhptf4e3R27iM93264ZYuAq6mkUyX5XbcxnZvMJYc1Q==", + "path": "skiasharp/2.88.9", + "hashPath": "skiasharp.2.88.9.nupkg.sha512" + }, + "SkiaSharp.NativeAssets.Linux/2.88.9": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cWSaJKVPWAaT/WIn9c8T5uT/l4ETwHxNJTkEOtNKjphNo8AW6TF9O32aRkxqw3l8GUdUo66Bu7EiqtFh/XG0Zg==", + "path": "skiasharp.nativeassets.linux/2.88.9", + "hashPath": "skiasharp.nativeassets.linux.2.88.9.nupkg.sha512" + }, + "SkiaSharp.NativeAssets.macOS/2.88.9": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nv5spmKc4505Ep7oUoJ5vp3KweFpeNqxpyGDWyeEPTX2uR6S6syXIm3gj75dM0YJz7NPvcix48mR5laqs8dPuA==", + "path": "skiasharp.nativeassets.macos/2.88.9", + "hashPath": "skiasharp.nativeassets.macos.2.88.9.nupkg.sha512" + }, + "SkiaSharp.NativeAssets.Win32/2.88.9": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wb2kYgU7iy84nQLYZwMeJXixvK++GoIuECjU4ECaUKNuflyRlJKyiRhN1MAHswvlvzuvkrjRWlK0Za6+kYQK7w==", + "path": "skiasharp.nativeassets.win32/2.88.9", + "hashPath": "skiasharp.nativeassets.win32.2.88.9.nupkg.sha512" + }, + "Tmds.DBus.Protocol/0.21.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ScSMrUrrw8px4kK1Glh0fZv/HQUlg1078bNXNPfRPKQ3WbRzV9HpsydYEOgSoMK5LWICMf2bMwIFH0pGjxjcMA==", + "path": "tmds.dbus.protocol/0.21.2", + "hashPath": "tmds.dbus.protocol.0.21.2.nupkg.sha512" + }, + "AvaloniaUI.DiagnosticsSupport.Avalonia/2.2.1.0": { + "type": "reference", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/ZahlenRaten/bin/Debug/net10.0/ZahlenRaten.dll b/ZahlenRaten/bin/Debug/net10.0/ZahlenRaten.dll new file mode 100644 index 0000000..4864ab2 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/ZahlenRaten.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/ZahlenRaten.exe b/ZahlenRaten/bin/Debug/net10.0/ZahlenRaten.exe new file mode 100644 index 0000000..5fb9dea Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/ZahlenRaten.exe differ diff --git a/ZahlenRaten/bin/Debug/net10.0/ZahlenRaten.pdb b/ZahlenRaten/bin/Debug/net10.0/ZahlenRaten.pdb new file mode 100644 index 0000000..f71ffd7 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/ZahlenRaten.pdb differ diff --git a/ZahlenRaten/bin/Debug/net10.0/ZahlenRaten.runtimeconfig.json b/ZahlenRaten/bin/Debug/net10.0/ZahlenRaten.runtimeconfig.json new file mode 100644 index 0000000..5115195 --- /dev/null +++ b/ZahlenRaten/bin/Debug/net10.0/ZahlenRaten.runtimeconfig.json @@ -0,0 +1,14 @@ +{ + "runtimeOptions": { + "tfm": "net10.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "10.0.0" + }, + "configProperties": { + "Avalonia.Diagnostics.Diagnostic.IsEnabled": true, + "System.Diagnostics.Metrics.Meter.IsSupported": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-arm/native/libHarfBuzzSharp.so b/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-arm/native/libHarfBuzzSharp.so new file mode 100644 index 0000000..2dadd4c Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-arm/native/libHarfBuzzSharp.so differ diff --git a/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-arm/native/libSkiaSharp.so b/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-arm/native/libSkiaSharp.so new file mode 100644 index 0000000..cf26d78 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-arm/native/libSkiaSharp.so differ diff --git a/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so b/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so new file mode 100644 index 0000000..ddcf11d Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so differ diff --git a/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-arm64/native/libSkiaSharp.so b/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-arm64/native/libSkiaSharp.so new file mode 100644 index 0000000..8154cf2 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-arm64/native/libSkiaSharp.so differ diff --git a/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-loongarch64/native/libHarfBuzzSharp.so b/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-loongarch64/native/libHarfBuzzSharp.so new file mode 100644 index 0000000..eaeb8ef Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-loongarch64/native/libHarfBuzzSharp.so differ diff --git a/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-musl-arm/native/libHarfBuzzSharp.so b/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-musl-arm/native/libHarfBuzzSharp.so new file mode 100644 index 0000000..517d2de Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-musl-arm/native/libHarfBuzzSharp.so differ diff --git a/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-musl-arm64/native/libHarfBuzzSharp.so b/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-musl-arm64/native/libHarfBuzzSharp.so new file mode 100644 index 0000000..496593b Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-musl-arm64/native/libHarfBuzzSharp.so differ diff --git a/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-musl-loongarch64/native/libHarfBuzzSharp.so b/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-musl-loongarch64/native/libHarfBuzzSharp.so new file mode 100644 index 0000000..6439855 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-musl-loongarch64/native/libHarfBuzzSharp.so differ diff --git a/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-musl-riscv64/native/libHarfBuzzSharp.so b/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-musl-riscv64/native/libHarfBuzzSharp.so new file mode 100644 index 0000000..1df9da1 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-musl-riscv64/native/libHarfBuzzSharp.so differ diff --git a/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so b/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so new file mode 100644 index 0000000..bdc9a8d Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so differ diff --git a/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-musl-x64/native/libSkiaSharp.so b/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-musl-x64/native/libSkiaSharp.so new file mode 100644 index 0000000..6c63070 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-musl-x64/native/libSkiaSharp.so differ diff --git a/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-riscv64/native/libHarfBuzzSharp.so b/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-riscv64/native/libHarfBuzzSharp.so new file mode 100644 index 0000000..034d0cf Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-riscv64/native/libHarfBuzzSharp.so differ diff --git a/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-x64/native/libHarfBuzzSharp.so b/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-x64/native/libHarfBuzzSharp.so new file mode 100644 index 0000000..2d442dc Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-x64/native/libHarfBuzzSharp.so differ diff --git a/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-x64/native/libSkiaSharp.so b/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-x64/native/libSkiaSharp.so new file mode 100644 index 0000000..af626a4 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-x64/native/libSkiaSharp.so differ diff --git a/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-x86/native/libHarfBuzzSharp.so b/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-x86/native/libHarfBuzzSharp.so new file mode 100644 index 0000000..d8e2a6d Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/runtimes/linux-x86/native/libHarfBuzzSharp.so differ diff --git a/ZahlenRaten/bin/Debug/net10.0/runtimes/osx/native/libAvaloniaNative.dylib b/ZahlenRaten/bin/Debug/net10.0/runtimes/osx/native/libAvaloniaNative.dylib new file mode 100644 index 0000000..8ae3b5e Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/runtimes/osx/native/libAvaloniaNative.dylib differ diff --git a/ZahlenRaten/bin/Debug/net10.0/runtimes/osx/native/libHarfBuzzSharp.dylib b/ZahlenRaten/bin/Debug/net10.0/runtimes/osx/native/libHarfBuzzSharp.dylib new file mode 100644 index 0000000..3305506 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/runtimes/osx/native/libHarfBuzzSharp.dylib differ diff --git a/ZahlenRaten/bin/Debug/net10.0/runtimes/osx/native/libSkiaSharp.dylib b/ZahlenRaten/bin/Debug/net10.0/runtimes/osx/native/libSkiaSharp.dylib new file mode 100644 index 0000000..9731583 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/runtimes/osx/native/libSkiaSharp.dylib differ diff --git a/ZahlenRaten/bin/Debug/net10.0/runtimes/win-arm64/native/av_libglesv2.dll b/ZahlenRaten/bin/Debug/net10.0/runtimes/win-arm64/native/av_libglesv2.dll new file mode 100644 index 0000000..595d899 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/runtimes/win-arm64/native/av_libglesv2.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll b/ZahlenRaten/bin/Debug/net10.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll new file mode 100644 index 0000000..3a43c6b Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/runtimes/win-arm64/native/libSkiaSharp.dll b/ZahlenRaten/bin/Debug/net10.0/runtimes/win-arm64/native/libSkiaSharp.dll new file mode 100644 index 0000000..48404a0 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/runtimes/win-arm64/native/libSkiaSharp.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/runtimes/win-x64/native/av_libglesv2.dll b/ZahlenRaten/bin/Debug/net10.0/runtimes/win-x64/native/av_libglesv2.dll new file mode 100644 index 0000000..487d711 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/runtimes/win-x64/native/av_libglesv2.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/runtimes/win-x64/native/libHarfBuzzSharp.dll b/ZahlenRaten/bin/Debug/net10.0/runtimes/win-x64/native/libHarfBuzzSharp.dll new file mode 100644 index 0000000..2bb6849 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/runtimes/win-x64/native/libHarfBuzzSharp.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/runtimes/win-x64/native/libSkiaSharp.dll b/ZahlenRaten/bin/Debug/net10.0/runtimes/win-x64/native/libSkiaSharp.dll new file mode 100644 index 0000000..3f8c6f2 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/runtimes/win-x64/native/libSkiaSharp.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/runtimes/win-x86/native/av_libglesv2.dll b/ZahlenRaten/bin/Debug/net10.0/runtimes/win-x86/native/av_libglesv2.dll new file mode 100644 index 0000000..adabd02 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/runtimes/win-x86/native/av_libglesv2.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/runtimes/win-x86/native/libHarfBuzzSharp.dll b/ZahlenRaten/bin/Debug/net10.0/runtimes/win-x86/native/libHarfBuzzSharp.dll new file mode 100644 index 0000000..c7b1d43 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/runtimes/win-x86/native/libHarfBuzzSharp.dll differ diff --git a/ZahlenRaten/bin/Debug/net10.0/runtimes/win-x86/native/libSkiaSharp.dll b/ZahlenRaten/bin/Debug/net10.0/runtimes/win-x86/native/libSkiaSharp.dll new file mode 100644 index 0000000..655f773 Binary files /dev/null and b/ZahlenRaten/bin/Debug/net10.0/runtimes/win-x86/native/libSkiaSharp.dll differ diff --git a/ZahlenRaten/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/ZahlenRaten/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/ZahlenRaten/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/ZahlenRaten/obj/Debug/net10.0/Avalonia/Resources.Inputs.cache b/ZahlenRaten/obj/Debug/net10.0/Avalonia/Resources.Inputs.cache new file mode 100644 index 0000000..00a8e2d --- /dev/null +++ b/ZahlenRaten/obj/Debug/net10.0/Avalonia/Resources.Inputs.cache @@ -0,0 +1 @@ +b0351c15975af347e1dc74f3527c56de0414c117801aabaf18913649b8789783 diff --git a/ZahlenRaten/obj/Debug/net10.0/Avalonia/references b/ZahlenRaten/obj/Debug/net10.0/Avalonia/references new file mode 100644 index 0000000..b921e55 --- /dev/null +++ b/ZahlenRaten/obj/Debug/net10.0/Avalonia/references @@ -0,0 +1,196 @@ +C:\Users\teewr\.nuget\packages\avalonia\11.3.10\ref\net8.0\Avalonia.Base.dll +C:\Users\teewr\.nuget\packages\avalonia\11.3.10\ref\net8.0\Avalonia.Controls.dll +C:\Users\teewr\.nuget\packages\avalonia\11.3.10\ref\net8.0\Avalonia.DesignerSupport.dll +C:\Users\teewr\.nuget\packages\avalonia.desktop\11.3.10\lib\net8.0\Avalonia.Desktop.dll +C:\Users\teewr\.nuget\packages\avalonia\11.3.10\ref\net8.0\Avalonia.Dialogs.dll +C:\Users\teewr\.nuget\packages\avalonia\11.3.10\ref\net8.0\Avalonia.dll +C:\Users\teewr\.nuget\packages\avalonia.fonts.inter\11.3.10\lib\net8.0\Avalonia.Fonts.Inter.dll +C:\Users\teewr\.nuget\packages\avalonia.freedesktop\11.3.10\lib\net8.0\Avalonia.FreeDesktop.dll +C:\Users\teewr\.nuget\packages\avalonia\11.3.10\ref\net8.0\Avalonia.Markup.dll +C:\Users\teewr\.nuget\packages\avalonia\11.3.10\ref\net8.0\Avalonia.Markup.Xaml.dll +C:\Users\teewr\.nuget\packages\avalonia\11.3.10\ref\net8.0\Avalonia.Metal.dll +C:\Users\teewr\.nuget\packages\avalonia\11.3.10\ref\net8.0\Avalonia.MicroCom.dll +C:\Users\teewr\.nuget\packages\avalonia.native\11.3.10\lib\net8.0\Avalonia.Native.dll +C:\Users\teewr\.nuget\packages\avalonia\11.3.10\ref\net8.0\Avalonia.OpenGL.dll +C:\Users\teewr\.nuget\packages\avalonia.remote.protocol\11.3.10\lib\net8.0\Avalonia.Remote.Protocol.dll +C:\Users\teewr\.nuget\packages\avalonia.skia\11.3.10\lib\net8.0\Avalonia.Skia.dll +C:\Users\teewr\.nuget\packages\avalonia.themes.fluent\11.3.10\lib\net8.0\Avalonia.Themes.Fluent.dll +C:\Users\teewr\.nuget\packages\avalonia\11.3.10\ref\net8.0\Avalonia.Vulkan.dll +C:\Users\teewr\.nuget\packages\avalonia.win32\11.3.10\lib\net8.0\Avalonia.Win32.Automation.dll +C:\Users\teewr\.nuget\packages\avalonia.win32\11.3.10\lib\net8.0\Avalonia.Win32.dll +C:\Users\teewr\.nuget\packages\avalonia.x11\11.3.10\lib\net8.0\Avalonia.X11.dll +C:\Users\teewr\.nuget\packages\avaloniaui.diagnosticssupport\2.2.1\lib\net10.0\v11\AvaloniaUI.DiagnosticsSupport.Avalonia.dll +C:\Users\teewr\.nuget\packages\harfbuzzsharp\8.3.1.1\lib\net8.0\HarfBuzzSharp.dll +C:\Users\teewr\.nuget\packages\microcom.runtime\0.11.0\lib\net5.0\MicroCom.Runtime.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\Microsoft.CSharp.dll +C:\Users\teewr\.nuget\packages\microsoft.extensions.dependencyinjection.abstractions\8.0.0\lib\net8.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll +C:\Users\teewr\.nuget\packages\microsoft.extensions.logging.abstractions\8.0.0\lib\net8.0\Microsoft.Extensions.Logging.Abstractions.dll +C:\Users\teewr\.nuget\packages\microsoft.io.recyclablememorystream\3.0.1\lib\net6.0\Microsoft.IO.RecyclableMemoryStream.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\Microsoft.VisualBasic.Core.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\Microsoft.VisualBasic.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\Microsoft.Win32.Primitives.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\Microsoft.Win32.Registry.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\mscorlib.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\netstandard.dll +C:\Users\teewr\.nuget\packages\skiasharp\2.88.9\lib\net6.0\SkiaSharp.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.AppContext.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Buffers.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Collections.Concurrent.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Collections.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Collections.Immutable.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Collections.NonGeneric.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Collections.Specialized.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.ComponentModel.Annotations.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.ComponentModel.DataAnnotations.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.ComponentModel.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.ComponentModel.EventBasedAsync.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.ComponentModel.Primitives.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.ComponentModel.TypeConverter.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Configuration.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Console.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Core.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Data.Common.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Data.DataSetExtensions.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Data.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Diagnostics.Contracts.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Diagnostics.Debug.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Diagnostics.DiagnosticSource.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Diagnostics.FileVersionInfo.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Diagnostics.Process.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Diagnostics.StackTrace.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Diagnostics.TextWriterTraceListener.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Diagnostics.Tools.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Diagnostics.TraceSource.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Diagnostics.Tracing.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Drawing.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Drawing.Primitives.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Dynamic.Runtime.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Formats.Asn1.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Formats.Tar.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Globalization.Calendars.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Globalization.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Globalization.Extensions.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.IO.Compression.Brotli.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.IO.Compression.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.IO.Compression.FileSystem.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.IO.Compression.ZipFile.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.IO.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.IO.FileSystem.AccessControl.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.IO.FileSystem.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.IO.FileSystem.DriveInfo.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.IO.FileSystem.Primitives.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.IO.FileSystem.Watcher.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.IO.IsolatedStorage.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.IO.MemoryMappedFiles.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.IO.Pipelines.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.IO.Pipes.AccessControl.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.IO.Pipes.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.IO.UnmanagedMemoryStream.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Linq.AsyncEnumerable.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Linq.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Linq.Expressions.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Linq.Parallel.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Linq.Queryable.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Memory.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Net.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Net.Http.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Net.Http.Json.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Net.HttpListener.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Net.Mail.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Net.NameResolution.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Net.NetworkInformation.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Net.Ping.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Net.Primitives.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Net.Quic.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Net.Requests.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Net.Security.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Net.ServerSentEvents.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Net.ServicePoint.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Net.Sockets.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Net.WebClient.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Net.WebHeaderCollection.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Net.WebProxy.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Net.WebSockets.Client.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Net.WebSockets.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Numerics.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Numerics.Vectors.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.ObjectModel.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Reflection.DispatchProxy.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Reflection.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Reflection.Emit.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Reflection.Emit.ILGeneration.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Reflection.Emit.Lightweight.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Reflection.Extensions.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Reflection.Metadata.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Reflection.Primitives.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Reflection.TypeExtensions.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Resources.Reader.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Resources.ResourceManager.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Resources.Writer.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Runtime.CompilerServices.Unsafe.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Runtime.CompilerServices.VisualC.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Runtime.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Runtime.Extensions.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Runtime.Handles.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Runtime.InteropServices.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Runtime.InteropServices.JavaScript.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Runtime.InteropServices.RuntimeInformation.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Runtime.Intrinsics.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Runtime.Loader.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Runtime.Numerics.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Runtime.Serialization.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Runtime.Serialization.Formatters.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Runtime.Serialization.Json.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Runtime.Serialization.Primitives.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Runtime.Serialization.Xml.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Security.AccessControl.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Security.Claims.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Security.Cryptography.Algorithms.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Security.Cryptography.Cng.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Security.Cryptography.Csp.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Security.Cryptography.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Security.Cryptography.Encoding.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Security.Cryptography.OpenSsl.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Security.Cryptography.Primitives.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Security.Cryptography.X509Certificates.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Security.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Security.Principal.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Security.Principal.Windows.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Security.SecureString.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.ServiceModel.Web.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.ServiceProcess.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Text.Encoding.CodePages.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Text.Encoding.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Text.Encoding.Extensions.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Text.Encodings.Web.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Text.Json.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Text.RegularExpressions.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Threading.AccessControl.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Threading.Channels.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Threading.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Threading.Overlapped.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Threading.Tasks.Dataflow.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Threading.Tasks.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Threading.Tasks.Extensions.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Threading.Tasks.Parallel.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Threading.Thread.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Threading.ThreadPool.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Threading.Timer.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Transactions.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Transactions.Local.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.ValueTuple.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Web.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Web.HttpUtility.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Windows.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Xml.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Xml.Linq.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Xml.ReaderWriter.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Xml.Serialization.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Xml.XDocument.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Xml.XmlDocument.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Xml.XmlSerializer.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Xml.XPath.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\System.Xml.XPath.XDocument.dll +C:\Users\teewr\.nuget\packages\tmds.dbus.protocol\0.21.2\lib\net8.0\Tmds.DBus.Protocol.dll +C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\10.0.1\ref\net10.0\WindowsBase.dll diff --git a/ZahlenRaten/obj/Debug/net10.0/Avalonia/resources b/ZahlenRaten/obj/Debug/net10.0/Avalonia/resources new file mode 100644 index 0000000..acd084a Binary files /dev/null and b/ZahlenRaten/obj/Debug/net10.0/Avalonia/resources differ diff --git a/ZahlenRaten/obj/Debug/net10.0/ZahlenRa.BC146C03.Up2Date b/ZahlenRaten/obj/Debug/net10.0/ZahlenRa.BC146C03.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/ZahlenRaten/obj/Debug/net10.0/ZahlenRaten.AssemblyInfo.cs b/ZahlenRaten/obj/Debug/net10.0/ZahlenRaten.AssemblyInfo.cs new file mode 100644 index 0000000..09a4577 --- /dev/null +++ b/ZahlenRaten/obj/Debug/net10.0/ZahlenRaten.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ZahlenRaten")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ZahlenRaten")] +[assembly: System.Reflection.AssemblyTitleAttribute("ZahlenRaten")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Von der MSBuild WriteCodeFragment-Klasse generiert. + diff --git a/ZahlenRaten/obj/Debug/net10.0/ZahlenRaten.AssemblyInfoInputs.cache b/ZahlenRaten/obj/Debug/net10.0/ZahlenRaten.AssemblyInfoInputs.cache new file mode 100644 index 0000000..c4965f2 --- /dev/null +++ b/ZahlenRaten/obj/Debug/net10.0/ZahlenRaten.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +f93a9366a989cb1b34fe487bdcb104c8c4f6e0edc88af14844591a28c252bd90 diff --git a/ZahlenRaten/obj/Debug/net10.0/ZahlenRaten.GeneratedMSBuildEditorConfig.editorconfig b/ZahlenRaten/obj/Debug/net10.0/ZahlenRaten.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..dd0870b --- /dev/null +++ b/ZahlenRaten/obj/Debug/net10.0/ZahlenRaten.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,30 @@ +is_global = true +build_property.AvaloniaNameGeneratorIsEnabled = true +build_property.AvaloniaNameGeneratorBehavior = InitializeComponent +build_property.AvaloniaNameGeneratorDefaultFieldModifier = internal +build_property.AvaloniaNameGeneratorFilterByPath = * +build_property.AvaloniaNameGeneratorFilterByNamespace = * +build_property.AvaloniaNameGeneratorViewFileNamingStrategy = NamespaceAndClassName +build_property.AvaloniaNameGeneratorAttachDevTools = true +build_property.TargetFramework = net10.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ZahlenRaten +build_property.ProjectDir = E:\ZahlenRaten\ZahlenRaten\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = + +[E:/ZahlenRaten/ZahlenRaten/App.axaml] +build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml + +[E:/ZahlenRaten/ZahlenRaten/MainWindow.axaml] +build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml diff --git a/ZahlenRaten/obj/Debug/net10.0/ZahlenRaten.assets.cache b/ZahlenRaten/obj/Debug/net10.0/ZahlenRaten.assets.cache new file mode 100644 index 0000000..3489b86 Binary files /dev/null and b/ZahlenRaten/obj/Debug/net10.0/ZahlenRaten.assets.cache differ diff --git a/ZahlenRaten/obj/Debug/net10.0/ZahlenRaten.csproj.AssemblyReference.cache b/ZahlenRaten/obj/Debug/net10.0/ZahlenRaten.csproj.AssemblyReference.cache new file mode 100644 index 0000000..d17188c Binary files /dev/null and b/ZahlenRaten/obj/Debug/net10.0/ZahlenRaten.csproj.AssemblyReference.cache differ diff --git a/ZahlenRaten/obj/Debug/net10.0/ZahlenRaten.csproj.CoreCompileInputs.cache b/ZahlenRaten/obj/Debug/net10.0/ZahlenRaten.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..aec9675 --- /dev/null +++ b/ZahlenRaten/obj/Debug/net10.0/ZahlenRaten.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +4d789fdfd2e21b41be20b31c97afd81fa2371b82e78709d5cf8b71bdee9ce3fe diff --git a/ZahlenRaten/obj/Debug/net10.0/ZahlenRaten.csproj.FileListAbsolute.txt b/ZahlenRaten/obj/Debug/net10.0/ZahlenRaten.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..f6ff7c1 --- /dev/null +++ b/ZahlenRaten/obj/Debug/net10.0/ZahlenRaten.csproj.FileListAbsolute.txt @@ -0,0 +1,74 @@ +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\ZahlenRaten.exe +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\ZahlenRaten.deps.json +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\ZahlenRaten.runtimeconfig.json +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\ZahlenRaten.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\ZahlenRaten.pdb +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\Avalonia.Base.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\Avalonia.Controls.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\Avalonia.DesignerSupport.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\Avalonia.Dialogs.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\Avalonia.Markup.Xaml.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\Avalonia.Markup.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\Avalonia.Metal.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\Avalonia.MicroCom.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\Avalonia.OpenGL.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\Avalonia.Vulkan.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\Avalonia.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\Avalonia.Desktop.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\Avalonia.Fonts.Inter.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\Avalonia.FreeDesktop.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\Avalonia.Native.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\Avalonia.Remote.Protocol.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\Avalonia.Skia.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\Avalonia.Themes.Fluent.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\Avalonia.Win32.Automation.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\Avalonia.Win32.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\Avalonia.X11.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\AvaloniaUI.DiagnosticsSupport.Avalonia.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\HarfBuzzSharp.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\MicroCom.Runtime.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\Microsoft.Extensions.Logging.Abstractions.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\Microsoft.IO.RecyclableMemoryStream.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\SkiaSharp.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\Tmds.DBus.Protocol.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\runtimes\win-arm64\native\av_libglesv2.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\runtimes\win-x64\native\av_libglesv2.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\runtimes\win-x86\native\av_libglesv2.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\runtimes\osx\native\libAvaloniaNative.dylib +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\runtimes\linux-arm\native\libHarfBuzzSharp.so +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\runtimes\linux-arm64\native\libHarfBuzzSharp.so +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\runtimes\linux-loongarch64\native\libHarfBuzzSharp.so +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\runtimes\linux-musl-arm\native\libHarfBuzzSharp.so +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\runtimes\linux-musl-arm64\native\libHarfBuzzSharp.so +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\runtimes\linux-musl-loongarch64\native\libHarfBuzzSharp.so +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\runtimes\linux-musl-riscv64\native\libHarfBuzzSharp.so +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\runtimes\linux-musl-x64\native\libHarfBuzzSharp.so +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\runtimes\linux-riscv64\native\libHarfBuzzSharp.so +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\runtimes\linux-x64\native\libHarfBuzzSharp.so +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\runtimes\linux-x86\native\libHarfBuzzSharp.so +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\runtimes\osx\native\libHarfBuzzSharp.dylib +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\runtimes\win-arm64\native\libHarfBuzzSharp.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\runtimes\win-x64\native\libHarfBuzzSharp.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\runtimes\win-x86\native\libHarfBuzzSharp.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\runtimes\linux-arm\native\libSkiaSharp.so +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\runtimes\linux-arm64\native\libSkiaSharp.so +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\runtimes\linux-musl-x64\native\libSkiaSharp.so +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\runtimes\linux-x64\native\libSkiaSharp.so +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\runtimes\osx\native\libSkiaSharp.dylib +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\runtimes\win-arm64\native\libSkiaSharp.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\runtimes\win-x64\native\libSkiaSharp.dll +E:\ZahlenRaten\ZahlenRaten\bin\Debug\net10.0\runtimes\win-x86\native\libSkiaSharp.dll +E:\ZahlenRaten\ZahlenRaten\obj\Debug\net10.0\ZahlenRaten.csproj.AssemblyReference.cache +E:\ZahlenRaten\ZahlenRaten\obj\Debug\net10.0\Avalonia\Resources.Inputs.cache +E:\ZahlenRaten\ZahlenRaten\obj\Debug\net10.0\Avalonia\resources +E:\ZahlenRaten\ZahlenRaten\obj\Debug\net10.0\ZahlenRaten.GeneratedMSBuildEditorConfig.editorconfig +E:\ZahlenRaten\ZahlenRaten\obj\Debug\net10.0\ZahlenRaten.AssemblyInfoInputs.cache +E:\ZahlenRaten\ZahlenRaten\obj\Debug\net10.0\ZahlenRaten.AssemblyInfo.cs +E:\ZahlenRaten\ZahlenRaten\obj\Debug\net10.0\ZahlenRaten.csproj.CoreCompileInputs.cache +E:\ZahlenRaten\ZahlenRaten\obj\Debug\net10.0\ZahlenRa.BC146C03.Up2Date +E:\ZahlenRaten\ZahlenRaten\obj\Debug\net10.0\ZahlenRaten.dll +E:\ZahlenRaten\ZahlenRaten\obj\Debug\net10.0\refint\ZahlenRaten.dll +E:\ZahlenRaten\ZahlenRaten\obj\Debug\net10.0\ZahlenRaten.pdb +E:\ZahlenRaten\ZahlenRaten\obj\Debug\net10.0\ZahlenRaten.genruntimeconfig.cache +E:\ZahlenRaten\ZahlenRaten\obj\Debug\net10.0\ref\ZahlenRaten.dll diff --git a/ZahlenRaten/obj/Debug/net10.0/ZahlenRaten.dll b/ZahlenRaten/obj/Debug/net10.0/ZahlenRaten.dll new file mode 100644 index 0000000..4864ab2 Binary files /dev/null and b/ZahlenRaten/obj/Debug/net10.0/ZahlenRaten.dll differ diff --git a/ZahlenRaten/obj/Debug/net10.0/ZahlenRaten.genruntimeconfig.cache b/ZahlenRaten/obj/Debug/net10.0/ZahlenRaten.genruntimeconfig.cache new file mode 100644 index 0000000..2f37649 --- /dev/null +++ b/ZahlenRaten/obj/Debug/net10.0/ZahlenRaten.genruntimeconfig.cache @@ -0,0 +1 @@ +5f7df08efd419b315ea2b32caf378ce83a4c47cb1047cb863ac955e886bf7f18 diff --git a/ZahlenRaten/obj/Debug/net10.0/ZahlenRaten.pdb b/ZahlenRaten/obj/Debug/net10.0/ZahlenRaten.pdb new file mode 100644 index 0000000..f71ffd7 Binary files /dev/null and b/ZahlenRaten/obj/Debug/net10.0/ZahlenRaten.pdb differ diff --git a/ZahlenRaten/obj/Debug/net10.0/apphost.exe b/ZahlenRaten/obj/Debug/net10.0/apphost.exe new file mode 100644 index 0000000..5fb9dea Binary files /dev/null and b/ZahlenRaten/obj/Debug/net10.0/apphost.exe differ diff --git a/ZahlenRaten/obj/Debug/net10.0/ref/ZahlenRaten.dll b/ZahlenRaten/obj/Debug/net10.0/ref/ZahlenRaten.dll new file mode 100644 index 0000000..0b979a4 Binary files /dev/null and b/ZahlenRaten/obj/Debug/net10.0/ref/ZahlenRaten.dll differ diff --git a/ZahlenRaten/obj/Debug/net10.0/refint/ZahlenRaten.dll b/ZahlenRaten/obj/Debug/net10.0/refint/ZahlenRaten.dll new file mode 100644 index 0000000..0b979a4 Binary files /dev/null and b/ZahlenRaten/obj/Debug/net10.0/refint/ZahlenRaten.dll differ diff --git a/ZahlenRaten/obj/ZahlenRaten.csproj.nuget.dgspec.json b/ZahlenRaten/obj/ZahlenRaten.csproj.nuget.dgspec.json new file mode 100644 index 0000000..43a3a5a --- /dev/null +++ b/ZahlenRaten/obj/ZahlenRaten.csproj.nuget.dgspec.json @@ -0,0 +1,365 @@ +{ + "format": 1, + "restore": { + "E:\\ZahlenRaten\\ZahlenRaten\\ZahlenRaten.csproj": {} + }, + "projects": { + "E:\\ZahlenRaten\\ZahlenRaten\\ZahlenRaten.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\ZahlenRaten\\ZahlenRaten\\ZahlenRaten.csproj", + "projectName": "ZahlenRaten", + "projectPath": "E:\\ZahlenRaten\\ZahlenRaten\\ZahlenRaten.csproj", + "packagesPath": "C:\\Users\\teewr\\.nuget\\packages\\", + "outputPath": "E:\\ZahlenRaten\\ZahlenRaten\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\teewr\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Avalonia": { + "target": "Package", + "version": "[11.3.10, )" + }, + "Avalonia.Desktop": { + "target": "Package", + "version": "[11.3.10, )" + }, + "Avalonia.Fonts.Inter": { + "target": "Package", + "version": "[11.3.10, )" + }, + "Avalonia.Themes.Fluent": { + "target": "Package", + "version": "[11.3.10, )" + }, + "AvaloniaUI.DiagnosticsSupport": { + "target": "Package", + "version": "[2.2.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.101/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } + } +} \ No newline at end of file diff --git a/ZahlenRaten/obj/ZahlenRaten.csproj.nuget.g.props b/ZahlenRaten/obj/ZahlenRaten.csproj.nuget.g.props new file mode 100644 index 0000000..cb36663 --- /dev/null +++ b/ZahlenRaten/obj/ZahlenRaten.csproj.nuget.g.props @@ -0,0 +1,25 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\teewr\.nuget\packages\ + PackageReference + 7.0.0 + + + + + + + + + + + + C:\Users\teewr\.nuget\packages\avalonia.buildservices\11.3.2 + C:\Users\teewr\.nuget\packages\avalonia\11.3.10 + + \ No newline at end of file diff --git a/ZahlenRaten/obj/ZahlenRaten.csproj.nuget.g.targets b/ZahlenRaten/obj/ZahlenRaten.csproj.nuget.g.targets new file mode 100644 index 0000000..bb61d65 --- /dev/null +++ b/ZahlenRaten/obj/ZahlenRaten.csproj.nuget.g.targets @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/ZahlenRaten/obj/project.assets.json b/ZahlenRaten/obj/project.assets.json new file mode 100644 index 0000000..483ddc2 --- /dev/null +++ b/ZahlenRaten/obj/project.assets.json @@ -0,0 +1,1851 @@ +{ + "version": 3, + "targets": { + "net10.0": { + "Avalonia/11.3.10": { + "type": "package", + "dependencies": { + "Avalonia.BuildServices": "11.3.2", + "Avalonia.Remote.Protocol": "11.3.10", + "MicroCom.Runtime": "0.11.0" + }, + "compile": { + "ref/net8.0/Avalonia.Base.dll": { + "related": ".xml" + }, + "ref/net8.0/Avalonia.Controls.dll": { + "related": ".xml" + }, + "ref/net8.0/Avalonia.DesignerSupport.dll": { + "related": ".xml" + }, + "ref/net8.0/Avalonia.Dialogs.dll": { + "related": ".xml" + }, + "ref/net8.0/Avalonia.Markup.Xaml.dll": { + "related": ".xml" + }, + "ref/net8.0/Avalonia.Markup.dll": { + "related": ".Xaml.xml;.xml" + }, + "ref/net8.0/Avalonia.Metal.dll": { + "related": ".xml" + }, + "ref/net8.0/Avalonia.MicroCom.dll": { + "related": ".xml" + }, + "ref/net8.0/Avalonia.OpenGL.dll": { + "related": ".xml" + }, + "ref/net8.0/Avalonia.Vulkan.dll": { + "related": ".xml" + }, + "ref/net8.0/Avalonia.dll": { + "related": ".Base.xml;.Controls.xml;.DesignerSupport.xml;.Dialogs.xml;.Markup.Xaml.xml;.Markup.xml;.Metal.xml;.MicroCom.xml;.OpenGL.xml;.Vulkan.xml;.xml" + } + }, + "runtime": { + "lib/net8.0/Avalonia.Base.dll": { + "related": ".xml" + }, + "lib/net8.0/Avalonia.Controls.dll": { + "related": ".xml" + }, + "lib/net8.0/Avalonia.DesignerSupport.dll": { + "related": ".xml" + }, + "lib/net8.0/Avalonia.Dialogs.dll": { + "related": ".xml" + }, + "lib/net8.0/Avalonia.Markup.Xaml.dll": { + "related": ".xml" + }, + "lib/net8.0/Avalonia.Markup.dll": { + "related": ".Xaml.xml;.xml" + }, + "lib/net8.0/Avalonia.Metal.dll": { + "related": ".xml" + }, + "lib/net8.0/Avalonia.MicroCom.dll": { + "related": ".xml" + }, + "lib/net8.0/Avalonia.OpenGL.dll": { + "related": ".xml" + }, + "lib/net8.0/Avalonia.Vulkan.dll": { + "related": ".xml" + }, + "lib/net8.0/Avalonia.dll": { + "related": ".Base.xml;.Controls.xml;.DesignerSupport.xml;.Dialogs.xml;.Markup.Xaml.xml;.Markup.xml;.Metal.xml;.MicroCom.xml;.OpenGL.xml;.Vulkan.xml;.xml" + } + }, + "build": { + "buildTransitive/Avalonia.props": {}, + "buildTransitive/Avalonia.targets": {} + } + }, + "Avalonia.Angle.Windows.Natives/2.1.25547.20250602": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm64/native/av_libglesv2.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/av_libglesv2.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/av_libglesv2.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Avalonia.BuildServices/11.3.2": { + "type": "package", + "build": { + "buildTransitive/Avalonia.BuildServices.targets": {} + } + }, + "Avalonia.Desktop/11.3.10": { + "type": "package", + "dependencies": { + "Avalonia": "11.3.10", + "Avalonia.Native": "11.3.10", + "Avalonia.Skia": "11.3.10", + "Avalonia.Win32": "11.3.10", + "Avalonia.X11": "11.3.10" + }, + "compile": { + "lib/net8.0/Avalonia.Desktop.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Avalonia.Desktop.dll": { + "related": ".xml" + } + } + }, + "Avalonia.Fonts.Inter/11.3.10": { + "type": "package", + "dependencies": { + "Avalonia": "11.3.10" + }, + "compile": { + "lib/net8.0/Avalonia.Fonts.Inter.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Avalonia.Fonts.Inter.dll": { + "related": ".xml" + } + } + }, + "Avalonia.FreeDesktop/11.3.10": { + "type": "package", + "dependencies": { + "Avalonia": "11.3.10", + "Tmds.DBus.Protocol": "0.21.2" + }, + "compile": { + "lib/net8.0/Avalonia.FreeDesktop.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Avalonia.FreeDesktop.dll": { + "related": ".xml" + } + } + }, + "Avalonia.Native/11.3.10": { + "type": "package", + "dependencies": { + "Avalonia": "11.3.10" + }, + "compile": { + "lib/net8.0/Avalonia.Native.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Avalonia.Native.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/osx/native/libAvaloniaNative.dylib": { + "assetType": "native", + "rid": "osx" + } + } + }, + "Avalonia.Remote.Protocol/11.3.10": { + "type": "package", + "compile": { + "lib/net8.0/Avalonia.Remote.Protocol.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Avalonia.Remote.Protocol.dll": { + "related": ".xml" + } + } + }, + "Avalonia.Skia/11.3.10": { + "type": "package", + "dependencies": { + "Avalonia": "11.3.10", + "HarfBuzzSharp": "8.3.1.1", + "HarfBuzzSharp.NativeAssets.Linux": "8.3.1.1", + "HarfBuzzSharp.NativeAssets.WebAssembly": "8.3.1.1", + "SkiaSharp": "2.88.9", + "SkiaSharp.NativeAssets.Linux": "2.88.9", + "SkiaSharp.NativeAssets.WebAssembly": "2.88.9" + }, + "compile": { + "lib/net8.0/Avalonia.Skia.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Avalonia.Skia.dll": { + "related": ".xml" + } + } + }, + "Avalonia.Themes.Fluent/11.3.10": { + "type": "package", + "dependencies": { + "Avalonia": "11.3.10" + }, + "compile": { + "lib/net8.0/Avalonia.Themes.Fluent.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Avalonia.Themes.Fluent.dll": { + "related": ".xml" + } + } + }, + "Avalonia.Win32/11.3.10": { + "type": "package", + "dependencies": { + "Avalonia": "11.3.10", + "Avalonia.Angle.Windows.Natives": "2.1.25547.20250602" + }, + "compile": { + "lib/net8.0/Avalonia.Win32.Automation.dll": { + "related": ".xml" + }, + "lib/net8.0/Avalonia.Win32.dll": { + "related": ".Automation.xml;.xml" + } + }, + "runtime": { + "lib/net8.0/Avalonia.Win32.Automation.dll": { + "related": ".xml" + }, + "lib/net8.0/Avalonia.Win32.dll": { + "related": ".Automation.xml;.xml" + } + } + }, + "Avalonia.X11/11.3.10": { + "type": "package", + "dependencies": { + "Avalonia": "11.3.10", + "Avalonia.FreeDesktop": "11.3.10", + "Avalonia.Skia": "11.3.10" + }, + "compile": { + "lib/net8.0/Avalonia.X11.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Avalonia.X11.dll": { + "related": ".xml" + } + } + }, + "AvaloniaUI.DiagnosticsSupport/2.2.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.IO.RecyclableMemoryStream": "3.0.1" + }, + "compile": { + "lib/net10.0/AvaloniaUI.DiagnosticsSupport.Avalonia.dll": {} + }, + "runtime": { + "lib/net10.0/AvaloniaUI.DiagnosticsSupport.Avalonia.dll": {} + }, + "build": { + "buildTransitive/AvaloniaUI.DiagnosticsSupport.props": {}, + "buildTransitive/AvaloniaUI.DiagnosticsSupport.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/AvaloniaUI.DiagnosticsSupport.props": {} + } + }, + "HarfBuzzSharp/8.3.1.1": { + "type": "package", + "dependencies": { + "HarfBuzzSharp.NativeAssets.Win32": "8.3.1.1", + "HarfBuzzSharp.NativeAssets.macOS": "8.3.1.1" + }, + "compile": { + "lib/net8.0/HarfBuzzSharp.dll": { + "related": ".pdb" + } + }, + "runtime": { + "lib/net8.0/HarfBuzzSharp.dll": { + "related": ".pdb" + } + } + }, + "HarfBuzzSharp.NativeAssets.Linux/8.3.1.1": { + "type": "package", + "compile": { + "lib/net8.0/_._": {} + }, + "runtime": { + "lib/net8.0/_._": {} + }, + "runtimeTargets": { + "runtimes/linux-arm/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-loongarch64/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-loongarch64" + }, + "runtimes/linux-musl-arm/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-musl-arm" + }, + "runtimes/linux-musl-arm64/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-musl-arm64" + }, + "runtimes/linux-musl-loongarch64/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-musl-loongarch64" + }, + "runtimes/linux-musl-riscv64/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-musl-riscv64" + }, + "runtimes/linux-musl-x64/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-riscv64/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-riscv64" + }, + "runtimes/linux-x64/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/linux-x86/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-x86" + } + } + }, + "HarfBuzzSharp.NativeAssets.macOS/8.3.1.1": { + "type": "package", + "compile": { + "lib/net8.0/_._": {} + }, + "runtime": { + "lib/net8.0/_._": {} + }, + "runtimeTargets": { + "runtimes/osx/native/libHarfBuzzSharp.dylib": { + "assetType": "native", + "rid": "osx" + } + } + }, + "HarfBuzzSharp.NativeAssets.WebAssembly/8.3.1.1": { + "type": "package", + "compile": { + "lib/net8.0/_._": {} + }, + "runtime": { + "lib/net8.0/_._": {} + }, + "build": { + "buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.props": {}, + "buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.targets": {} + } + }, + "HarfBuzzSharp.NativeAssets.Win32/8.3.1.1": { + "type": "package", + "compile": { + "lib/net8.0/_._": {} + }, + "runtime": { + "lib/net8.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win-arm64/native/libHarfBuzzSharp.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/libHarfBuzzSharp.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/libHarfBuzzSharp.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "MicroCom.Runtime/0.11.0": { + "type": "package", + "compile": { + "lib/net5.0/MicroCom.Runtime.dll": {} + }, + "runtime": { + "lib/net5.0/MicroCom.Runtime.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.IO.RecyclableMemoryStream/3.0.1": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll": { + "related": ".xml" + } + } + }, + "SkiaSharp/2.88.9": { + "type": "package", + "dependencies": { + "SkiaSharp.NativeAssets.Win32": "2.88.9", + "SkiaSharp.NativeAssets.macOS": "2.88.9" + }, + "compile": { + "lib/net6.0/SkiaSharp.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/SkiaSharp.dll": { + "related": ".pdb;.xml" + } + } + }, + "SkiaSharp.NativeAssets.Linux/2.88.9": { + "type": "package", + "dependencies": { + "SkiaSharp": "2.88.9" + }, + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/linux-arm/native/libSkiaSharp.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libSkiaSharp.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-musl-x64/native/libSkiaSharp.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-x64/native/libSkiaSharp.so": { + "assetType": "native", + "rid": "linux-x64" + } + } + }, + "SkiaSharp.NativeAssets.macOS/2.88.9": { + "type": "package", + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/osx/native/libSkiaSharp.dylib": { + "assetType": "native", + "rid": "osx" + } + } + }, + "SkiaSharp.NativeAssets.WebAssembly/2.88.9": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + }, + "build": { + "buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.props": {}, + "buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.targets": {} + } + }, + "SkiaSharp.NativeAssets.Win32/2.88.9": { + "type": "package", + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win-arm64/native/libSkiaSharp.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/libSkiaSharp.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/libSkiaSharp.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Tmds.DBus.Protocol/0.21.2": { + "type": "package", + "compile": { + "lib/net8.0/Tmds.DBus.Protocol.dll": {} + }, + "runtime": { + "lib/net8.0/Tmds.DBus.Protocol.dll": {} + } + } + } + }, + "libraries": { + "Avalonia/11.3.10": { + "sha512": "fAZmy1oOzQzBlg0Mm8QawA2439LmXHmX7hHEucfvGmAfibCUtQ0wgedl4b3XRd4Y8pH50kAlsg5DPG7ARtGa2A==", + "type": "package", + "path": "avalonia/11.3.10", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/Avalonia.Analyzers.dll", + "analyzers/dotnet/cs/Avalonia.Generators.dll", + "avalonia.11.3.10.nupkg.sha512", + "avalonia.nuspec", + "build/Avalonia.Generators.props", + "build/Avalonia.props", + "build/Avalonia.targets", + "build/AvaloniaBuildTasks.props", + "build/AvaloniaBuildTasks.targets", + "build/AvaloniaItemSchema.xaml", + "build/AvaloniaPrivateApis.targets", + "build/AvaloniaRules.Project.xml", + "build/AvaloniaSingleProject.targets", + "build/AvaloniaVersion.props", + "buildTransitive/Avalonia.Generators.props", + "buildTransitive/Avalonia.props", + "buildTransitive/Avalonia.targets", + "buildTransitive/AvaloniaBuildTasks.props", + "buildTransitive/AvaloniaBuildTasks.targets", + "buildTransitive/AvaloniaItemSchema.xaml", + "buildTransitive/AvaloniaPrivateApis.targets", + "buildTransitive/AvaloniaRules.Project.xml", + "buildTransitive/AvaloniaSingleProject.targets", + "lib/net6.0/Avalonia.Base.dll", + "lib/net6.0/Avalonia.Base.xml", + "lib/net6.0/Avalonia.Controls.dll", + "lib/net6.0/Avalonia.Controls.xml", + "lib/net6.0/Avalonia.DesignerSupport.dll", + "lib/net6.0/Avalonia.DesignerSupport.xml", + "lib/net6.0/Avalonia.Dialogs.dll", + "lib/net6.0/Avalonia.Dialogs.xml", + "lib/net6.0/Avalonia.Markup.Xaml.dll", + "lib/net6.0/Avalonia.Markup.Xaml.xml", + "lib/net6.0/Avalonia.Markup.dll", + "lib/net6.0/Avalonia.Markup.xml", + "lib/net6.0/Avalonia.Metal.dll", + "lib/net6.0/Avalonia.Metal.xml", + "lib/net6.0/Avalonia.MicroCom.dll", + "lib/net6.0/Avalonia.MicroCom.xml", + "lib/net6.0/Avalonia.OpenGL.dll", + "lib/net6.0/Avalonia.OpenGL.xml", + "lib/net6.0/Avalonia.Vulkan.dll", + "lib/net6.0/Avalonia.Vulkan.xml", + "lib/net6.0/Avalonia.dll", + "lib/net6.0/Avalonia.xml", + "lib/net8.0/Avalonia.Base.dll", + "lib/net8.0/Avalonia.Base.xml", + "lib/net8.0/Avalonia.Controls.dll", + "lib/net8.0/Avalonia.Controls.xml", + "lib/net8.0/Avalonia.DesignerSupport.dll", + "lib/net8.0/Avalonia.DesignerSupport.xml", + "lib/net8.0/Avalonia.Dialogs.dll", + "lib/net8.0/Avalonia.Dialogs.xml", + "lib/net8.0/Avalonia.Markup.Xaml.dll", + "lib/net8.0/Avalonia.Markup.Xaml.xml", + "lib/net8.0/Avalonia.Markup.dll", + "lib/net8.0/Avalonia.Markup.xml", + "lib/net8.0/Avalonia.Metal.dll", + "lib/net8.0/Avalonia.Metal.xml", + "lib/net8.0/Avalonia.MicroCom.dll", + "lib/net8.0/Avalonia.MicroCom.xml", + "lib/net8.0/Avalonia.OpenGL.dll", + "lib/net8.0/Avalonia.OpenGL.xml", + "lib/net8.0/Avalonia.Vulkan.dll", + "lib/net8.0/Avalonia.Vulkan.xml", + "lib/net8.0/Avalonia.dll", + "lib/net8.0/Avalonia.xml", + "lib/netstandard2.0/Avalonia.Base.dll", + "lib/netstandard2.0/Avalonia.Base.xml", + "lib/netstandard2.0/Avalonia.Controls.dll", + "lib/netstandard2.0/Avalonia.Controls.xml", + "lib/netstandard2.0/Avalonia.DesignerSupport.dll", + "lib/netstandard2.0/Avalonia.DesignerSupport.xml", + "lib/netstandard2.0/Avalonia.Dialogs.dll", + "lib/netstandard2.0/Avalonia.Dialogs.xml", + "lib/netstandard2.0/Avalonia.Markup.Xaml.dll", + "lib/netstandard2.0/Avalonia.Markup.Xaml.xml", + "lib/netstandard2.0/Avalonia.Markup.dll", + "lib/netstandard2.0/Avalonia.Markup.xml", + "lib/netstandard2.0/Avalonia.Metal.dll", + "lib/netstandard2.0/Avalonia.Metal.xml", + "lib/netstandard2.0/Avalonia.MicroCom.dll", + "lib/netstandard2.0/Avalonia.MicroCom.xml", + "lib/netstandard2.0/Avalonia.OpenGL.dll", + "lib/netstandard2.0/Avalonia.OpenGL.xml", + "lib/netstandard2.0/Avalonia.Vulkan.dll", + "lib/netstandard2.0/Avalonia.Vulkan.xml", + "lib/netstandard2.0/Avalonia.dll", + "lib/netstandard2.0/Avalonia.xml", + "ref/net6.0/Avalonia.Base.dll", + "ref/net6.0/Avalonia.Base.xml", + "ref/net6.0/Avalonia.Controls.dll", + "ref/net6.0/Avalonia.Controls.xml", + "ref/net6.0/Avalonia.DesignerSupport.dll", + "ref/net6.0/Avalonia.DesignerSupport.xml", + "ref/net6.0/Avalonia.Dialogs.dll", + "ref/net6.0/Avalonia.Dialogs.xml", + "ref/net6.0/Avalonia.Markup.Xaml.dll", + "ref/net6.0/Avalonia.Markup.Xaml.xml", + "ref/net6.0/Avalonia.Markup.dll", + "ref/net6.0/Avalonia.Markup.xml", + "ref/net6.0/Avalonia.Metal.dll", + "ref/net6.0/Avalonia.Metal.xml", + "ref/net6.0/Avalonia.MicroCom.dll", + "ref/net6.0/Avalonia.MicroCom.xml", + "ref/net6.0/Avalonia.OpenGL.dll", + "ref/net6.0/Avalonia.OpenGL.xml", + "ref/net6.0/Avalonia.Vulkan.dll", + "ref/net6.0/Avalonia.Vulkan.xml", + "ref/net6.0/Avalonia.dll", + "ref/net6.0/Avalonia.xml", + "ref/net8.0/Avalonia.Base.dll", + "ref/net8.0/Avalonia.Base.xml", + "ref/net8.0/Avalonia.Controls.dll", + "ref/net8.0/Avalonia.Controls.xml", + "ref/net8.0/Avalonia.DesignerSupport.dll", + "ref/net8.0/Avalonia.DesignerSupport.xml", + "ref/net8.0/Avalonia.Dialogs.dll", + "ref/net8.0/Avalonia.Dialogs.xml", + "ref/net8.0/Avalonia.Markup.Xaml.dll", + "ref/net8.0/Avalonia.Markup.Xaml.xml", + "ref/net8.0/Avalonia.Markup.dll", + "ref/net8.0/Avalonia.Markup.xml", + "ref/net8.0/Avalonia.Metal.dll", + "ref/net8.0/Avalonia.Metal.xml", + "ref/net8.0/Avalonia.MicroCom.dll", + "ref/net8.0/Avalonia.MicroCom.xml", + "ref/net8.0/Avalonia.OpenGL.dll", + "ref/net8.0/Avalonia.OpenGL.xml", + "ref/net8.0/Avalonia.Vulkan.dll", + "ref/net8.0/Avalonia.Vulkan.xml", + "ref/net8.0/Avalonia.dll", + "ref/net8.0/Avalonia.xml", + "ref/netstandard2.0/Avalonia.Base.dll", + "ref/netstandard2.0/Avalonia.Base.xml", + "ref/netstandard2.0/Avalonia.Controls.dll", + "ref/netstandard2.0/Avalonia.Controls.xml", + "ref/netstandard2.0/Avalonia.DesignerSupport.dll", + "ref/netstandard2.0/Avalonia.DesignerSupport.xml", + "ref/netstandard2.0/Avalonia.Dialogs.dll", + "ref/netstandard2.0/Avalonia.Dialogs.xml", + "ref/netstandard2.0/Avalonia.Markup.Xaml.dll", + "ref/netstandard2.0/Avalonia.Markup.Xaml.xml", + "ref/netstandard2.0/Avalonia.Markup.dll", + "ref/netstandard2.0/Avalonia.Markup.xml", + "ref/netstandard2.0/Avalonia.Metal.dll", + "ref/netstandard2.0/Avalonia.Metal.xml", + "ref/netstandard2.0/Avalonia.MicroCom.dll", + "ref/netstandard2.0/Avalonia.MicroCom.xml", + "ref/netstandard2.0/Avalonia.OpenGL.dll", + "ref/netstandard2.0/Avalonia.OpenGL.xml", + "ref/netstandard2.0/Avalonia.Vulkan.dll", + "ref/netstandard2.0/Avalonia.Vulkan.xml", + "ref/netstandard2.0/Avalonia.dll", + "ref/netstandard2.0/Avalonia.xml", + "tools/net461/designer/Avalonia.Designer.HostApp.exe", + "tools/netstandard2.0/Avalonia.Build.Tasks.dll", + "tools/netstandard2.0/designer/Avalonia.Designer.HostApp.dll" + ] + }, + "Avalonia.Angle.Windows.Natives/2.1.25547.20250602": { + "sha512": "ZL0VLc4s9rvNNFt19Pxm5UNAkmKNylugAwJPX9ulXZ6JWs/l6XZihPWWTyezaoNOVyEPU8YbURtW7XMAtqXH5A==", + "type": "package", + "path": "avalonia.angle.windows.natives/2.1.25547.20250602", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "avalonia.angle.windows.natives.2.1.25547.20250602.nupkg.sha512", + "avalonia.angle.windows.natives.nuspec", + "runtimes/win-arm64/native/av_libglesv2.dll", + "runtimes/win-x64/native/av_libglesv2.dll", + "runtimes/win-x86/native/av_libglesv2.dll" + ] + }, + "Avalonia.BuildServices/11.3.2": { + "sha512": "qHDToxto1e3hci5YqbG9n0Ty8mlp3zBUN5wT66wKqaDVzXyQ0do3EnRILd4Ke9jpvsktaPpgE0YjEk7hornryQ==", + "type": "package", + "path": "avalonia.buildservices/11.3.2", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "README.md", + "avalonia.buildservices.11.3.2.nupkg.sha512", + "avalonia.buildservices.nuspec", + "build/Avalonia.BuildServices.targets", + "buildTransitive/Avalonia.BuildServices.targets", + "tools/netstandard2.0/Avalonia.BuildServices.Collector.dll", + "tools/netstandard2.0/Avalonia.BuildServices.dll", + "tools/netstandard2.0/runtimeconfig.json" + ] + }, + "Avalonia.Desktop/11.3.10": { + "sha512": "Enb/6GTCO3+GlSxyhyxYuMjiyBT1EGdFkOLdAPKXYTxgCcnWvqdC6lwBslD0y18P8B8pOnlYryTEmBRsBSvHjQ==", + "type": "package", + "path": "avalonia.desktop/11.3.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "avalonia.desktop.11.3.10.nupkg.sha512", + "avalonia.desktop.nuspec", + "lib/net6.0/Avalonia.Desktop.dll", + "lib/net6.0/Avalonia.Desktop.xml", + "lib/net8.0/Avalonia.Desktop.dll", + "lib/net8.0/Avalonia.Desktop.xml", + "lib/netstandard2.0/Avalonia.Desktop.dll", + "lib/netstandard2.0/Avalonia.Desktop.xml" + ] + }, + "Avalonia.Fonts.Inter/11.3.10": { + "sha512": "k55hTUepo0++6k5pogZGeGfnaqgrJKQbur1R6G2KEfcuVEI8VEeHIrPVm14ItFoB68xH+E9LnRjs7bvhlXNcvg==", + "type": "package", + "path": "avalonia.fonts.inter/11.3.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "avalonia.fonts.inter.11.3.10.nupkg.sha512", + "avalonia.fonts.inter.nuspec", + "lib/net6.0/Avalonia.Fonts.Inter.dll", + "lib/net6.0/Avalonia.Fonts.Inter.xml", + "lib/net8.0/Avalonia.Fonts.Inter.dll", + "lib/net8.0/Avalonia.Fonts.Inter.xml", + "lib/netstandard2.0/Avalonia.Fonts.Inter.dll", + "lib/netstandard2.0/Avalonia.Fonts.Inter.xml" + ] + }, + "Avalonia.FreeDesktop/11.3.10": { + "sha512": "jSGEfIvCSXTX5N8LUgxmXk9J09NlSchkakwQZKqMW57SmZpxSolqU6z40fC5pU0uToZ0kIGY79+gfER+Q9gODA==", + "type": "package", + "path": "avalonia.freedesktop/11.3.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "avalonia.freedesktop.11.3.10.nupkg.sha512", + "avalonia.freedesktop.nuspec", + "lib/net6.0/Avalonia.FreeDesktop.dll", + "lib/net6.0/Avalonia.FreeDesktop.xml", + "lib/net8.0/Avalonia.FreeDesktop.dll", + "lib/net8.0/Avalonia.FreeDesktop.xml", + "lib/netstandard2.0/Avalonia.FreeDesktop.dll", + "lib/netstandard2.0/Avalonia.FreeDesktop.xml" + ] + }, + "Avalonia.Native/11.3.10": { + "sha512": "74QbUY4K9YVE3yELih6qohauQn/oSSHMfSRIdZmGyQIE/d2Jfu98lirpbECtZ2QCVBpVbbbpHWuT6mbc/IYp8g==", + "type": "package", + "path": "avalonia.native/11.3.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "avalonia.native.11.3.10.nupkg.sha512", + "avalonia.native.nuspec", + "lib/net6.0/Avalonia.Native.dll", + "lib/net6.0/Avalonia.Native.xml", + "lib/net8.0/Avalonia.Native.dll", + "lib/net8.0/Avalonia.Native.xml", + "lib/netstandard2.0/Avalonia.Native.dll", + "lib/netstandard2.0/Avalonia.Native.xml", + "runtimes/osx/native/libAvaloniaNative.dylib" + ] + }, + "Avalonia.Remote.Protocol/11.3.10": { + "sha512": "DyNUbh9IfH+AL3KKob8p4IPZk7BvDMIB3ub13gJTrICfaMQiU7QsE0U05rfNFKJEdMmK0MBTL/Y+8BnaLVrDPw==", + "type": "package", + "path": "avalonia.remote.protocol/11.3.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "avalonia.remote.protocol.11.3.10.nupkg.sha512", + "avalonia.remote.protocol.nuspec", + "lib/net6.0/Avalonia.Remote.Protocol.dll", + "lib/net6.0/Avalonia.Remote.Protocol.xml", + "lib/net8.0/Avalonia.Remote.Protocol.dll", + "lib/net8.0/Avalonia.Remote.Protocol.xml", + "lib/netstandard2.0/Avalonia.Remote.Protocol.dll", + "lib/netstandard2.0/Avalonia.Remote.Protocol.xml" + ] + }, + "Avalonia.Skia/11.3.10": { + "sha512": "AvBmDgblDkPuC+VSgSFlNVHCHMiQ1NEojm02imiXOj7m/CGoBorvbhbJob6suvdsSRfFIjLf4Oay1ULFSsEWOA==", + "type": "package", + "path": "avalonia.skia/11.3.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "avalonia.skia.11.3.10.nupkg.sha512", + "avalonia.skia.nuspec", + "lib/net6.0/Avalonia.Skia.dll", + "lib/net6.0/Avalonia.Skia.xml", + "lib/net8.0/Avalonia.Skia.dll", + "lib/net8.0/Avalonia.Skia.xml", + "lib/netstandard2.0/Avalonia.Skia.dll", + "lib/netstandard2.0/Avalonia.Skia.xml" + ] + }, + "Avalonia.Themes.Fluent/11.3.10": { + "sha512": "K5QkJZYKbKUqLY9FbtSfihzO7n35cDcisQY9ohTfKBe/GQpmEqhy6BdazBDu8Iq/o7DfLUaNINbqCysvouiJIw==", + "type": "package", + "path": "avalonia.themes.fluent/11.3.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "avalonia.themes.fluent.11.3.10.nupkg.sha512", + "avalonia.themes.fluent.nuspec", + "lib/net6.0/Avalonia.Themes.Fluent.dll", + "lib/net6.0/Avalonia.Themes.Fluent.xml", + "lib/net8.0/Avalonia.Themes.Fluent.dll", + "lib/net8.0/Avalonia.Themes.Fluent.xml", + "lib/netstandard2.0/Avalonia.Themes.Fluent.dll", + "lib/netstandard2.0/Avalonia.Themes.Fluent.xml" + ] + }, + "Avalonia.Win32/11.3.10": { + "sha512": "iMCnKRoOOlRnjV4Oyt6rD1lj4U5BrgO2Y/q6npFwcXZUwz9GWJUo7NpwDLjGsjMONE+WngQ1T9qAO2cBpnUN1A==", + "type": "package", + "path": "avalonia.win32/11.3.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "avalonia.win32.11.3.10.nupkg.sha512", + "avalonia.win32.nuspec", + "lib/net6.0/Avalonia.Win32.Automation.dll", + "lib/net6.0/Avalonia.Win32.Automation.xml", + "lib/net6.0/Avalonia.Win32.dll", + "lib/net6.0/Avalonia.Win32.xml", + "lib/net8.0/Avalonia.Win32.Automation.dll", + "lib/net8.0/Avalonia.Win32.Automation.xml", + "lib/net8.0/Avalonia.Win32.dll", + "lib/net8.0/Avalonia.Win32.xml", + "lib/netstandard2.0/Avalonia.Win32.Automation.dll", + "lib/netstandard2.0/Avalonia.Win32.Automation.xml", + "lib/netstandard2.0/Avalonia.Win32.dll", + "lib/netstandard2.0/Avalonia.Win32.xml" + ] + }, + "Avalonia.X11/11.3.10": { + "sha512": "dDVWIi7gWxzDJnXysF0rR6B/aoxliO+JQ8g9OOaUk/qZPRhLPP5tLjQdyEuRGwX74ip8IUbf44L4XU6GZt0+7g==", + "type": "package", + "path": "avalonia.x11/11.3.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "avalonia.x11.11.3.10.nupkg.sha512", + "avalonia.x11.nuspec", + "lib/net6.0/Avalonia.X11.dll", + "lib/net6.0/Avalonia.X11.xml", + "lib/net8.0/Avalonia.X11.dll", + "lib/net8.0/Avalonia.X11.xml", + "lib/netstandard2.0/Avalonia.X11.dll", + "lib/netstandard2.0/Avalonia.X11.xml" + ] + }, + "AvaloniaUI.DiagnosticsSupport/2.2.1": { + "sha512": "PXviRj+8t6IT7JdnVhs1EET+VgGB/K1Ju3yL/Q9sXR2YD9NzkIYybyfJG3DPXcTYXpEJZJvxGiCTjH1N8AkLhQ==", + "type": "package", + "path": "avaloniaui.diagnosticssupport/2.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "avaloniaui.diagnosticssupport.2.2.1.nupkg.sha512", + "avaloniaui.diagnosticssupport.nuspec", + "build/AvaloniaUI.DiagnosticsSupport.props", + "build/AvaloniaUI.DiagnosticsSupport.targets", + "buildMultiTargeting/AvaloniaUI.DiagnosticsSupport.props", + "buildTransitive/AvaloniaUI.DiagnosticsSupport.props", + "buildTransitive/AvaloniaUI.DiagnosticsSupport.targets", + "icon.png", + "lib/net10.0/AvaloniaUI.DiagnosticsSupport.Avalonia.dll", + "lib/net10.0/v11/AvaloniaUI.DiagnosticsSupport.Avalonia.dll", + "lib/net8.0/AvaloniaUI.DiagnosticsSupport.Avalonia.dll", + "lib/net8.0/v11/AvaloniaUI.DiagnosticsSupport.Avalonia.dll" + ] + }, + "HarfBuzzSharp/8.3.1.1": { + "sha512": "tLZN66oe/uiRPTZfrCU4i8ScVGwqHNh5MHrXj0yVf4l7Mz0FhTGnQ71RGySROTmdognAs0JtluHkL41pIabWuQ==", + "type": "package", + "path": "harfbuzzsharp/8.3.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "README.md", + "harfbuzzsharp.8.3.1.1.nupkg.sha512", + "harfbuzzsharp.nuspec", + "icon.png", + "lib/net462/HarfBuzzSharp.dll", + "lib/net462/HarfBuzzSharp.pdb", + "lib/net6.0/HarfBuzzSharp.dll", + "lib/net6.0/HarfBuzzSharp.pdb", + "lib/net8.0-android34.0/HarfBuzzSharp.dll", + "lib/net8.0-android34.0/HarfBuzzSharp.pdb", + "lib/net8.0-android34.0/HarfBuzzSharp.xml", + "lib/net8.0-ios17.0/HarfBuzzSharp.dll", + "lib/net8.0-ios17.0/HarfBuzzSharp.pdb", + "lib/net8.0-maccatalyst17.0/HarfBuzzSharp.dll", + "lib/net8.0-maccatalyst17.0/HarfBuzzSharp.pdb", + "lib/net8.0-macos14.0/HarfBuzzSharp.dll", + "lib/net8.0-macos14.0/HarfBuzzSharp.pdb", + "lib/net8.0-tizen7.0/HarfBuzzSharp.dll", + "lib/net8.0-tizen7.0/HarfBuzzSharp.pdb", + "lib/net8.0-tvos17.0/HarfBuzzSharp.dll", + "lib/net8.0-tvos17.0/HarfBuzzSharp.pdb", + "lib/net8.0-windows10.0.19041/HarfBuzzSharp.dll", + "lib/net8.0-windows10.0.19041/HarfBuzzSharp.pdb", + "lib/net8.0/HarfBuzzSharp.dll", + "lib/net8.0/HarfBuzzSharp.pdb", + "lib/netstandard2.0/HarfBuzzSharp.dll", + "lib/netstandard2.0/HarfBuzzSharp.pdb", + "lib/netstandard2.1/HarfBuzzSharp.dll", + "lib/netstandard2.1/HarfBuzzSharp.pdb" + ] + }, + "HarfBuzzSharp.NativeAssets.Linux/8.3.1.1": { + "sha512": "3EZ1mpIiKWRLL5hUYA82ZHteeDIVaEA/Z0rA/wU6tjx6crcAkJnBPwDXZugBSfo8+J3EznvRJf49uMsqYfKrHg==", + "type": "package", + "path": "harfbuzzsharp.nativeassets.linux/8.3.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "README.md", + "THIRD-PARTY-NOTICES.txt", + "buildTransitive/net462/HarfBuzzSharp.NativeAssets.Linux.targets", + "harfbuzzsharp.nativeassets.linux.8.3.1.1.nupkg.sha512", + "harfbuzzsharp.nativeassets.linux.nuspec", + "icon.png", + "lib/net462/_._", + "lib/net6.0/_._", + "lib/net8.0/_._", + "lib/netstandard2.0/_._", + "lib/netstandard2.1/_._", + "runtimes/linux-arm/native/libHarfBuzzSharp.so", + "runtimes/linux-arm64/native/libHarfBuzzSharp.so", + "runtimes/linux-loongarch64/native/libHarfBuzzSharp.so", + "runtimes/linux-musl-arm/native/libHarfBuzzSharp.so", + "runtimes/linux-musl-arm64/native/libHarfBuzzSharp.so", + "runtimes/linux-musl-loongarch64/native/libHarfBuzzSharp.so", + "runtimes/linux-musl-riscv64/native/libHarfBuzzSharp.so", + "runtimes/linux-musl-x64/native/libHarfBuzzSharp.so", + "runtimes/linux-riscv64/native/libHarfBuzzSharp.so", + "runtimes/linux-x64/native/libHarfBuzzSharp.so", + "runtimes/linux-x86/native/libHarfBuzzSharp.so" + ] + }, + "HarfBuzzSharp.NativeAssets.macOS/8.3.1.1": { + "sha512": "jbtCsgftcaFLCA13tVKo5iWdElJScrulLTKJre36O4YQTIlwDtPPqhRZNk+Y0vv4D1gxbscasGRucUDfS44ofQ==", + "type": "package", + "path": "harfbuzzsharp.nativeassets.macos/8.3.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "README.md", + "THIRD-PARTY-NOTICES.txt", + "buildTransitive/net462/HarfBuzzSharp.NativeAssets.macOS.targets", + "buildTransitive/net8.0-macos14.0/HarfBuzzSharp.NativeAssets.macOS.targets", + "harfbuzzsharp.nativeassets.macos.8.3.1.1.nupkg.sha512", + "harfbuzzsharp.nativeassets.macos.nuspec", + "icon.png", + "lib/net462/_._", + "lib/net6.0/_._", + "lib/net8.0-macos14.0/_._", + "lib/net8.0/_._", + "lib/netstandard2.0/_._", + "lib/netstandard2.1/_._", + "runtimes/osx/native/libHarfBuzzSharp.dylib" + ] + }, + "HarfBuzzSharp.NativeAssets.WebAssembly/8.3.1.1": { + "sha512": "loJweK2u/mH/3C2zBa0ggJlITIszOkK64HLAZB7FUT670dTg965whLFYHDQo69NmC4+d9UN0icLC9VHidXaVCA==", + "type": "package", + "path": "harfbuzzsharp.nativeassets.webassembly/8.3.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "README.md", + "THIRD-PARTY-NOTICES.txt", + "buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.props", + "buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.targets", + "buildTransitive/netstandard1.0/libHarfBuzzSharp.a/2.0.23/libHarfBuzzSharp.a", + "buildTransitive/netstandard1.0/libHarfBuzzSharp.a/2.0.6/libHarfBuzzSharp.a", + "buildTransitive/netstandard1.0/libHarfBuzzSharp.a/3.1.12/mt,simd/libHarfBuzzSharp.a", + "buildTransitive/netstandard1.0/libHarfBuzzSharp.a/3.1.12/mt/libHarfBuzzSharp.a", + "buildTransitive/netstandard1.0/libHarfBuzzSharp.a/3.1.12/st,simd/libHarfBuzzSharp.a", + "buildTransitive/netstandard1.0/libHarfBuzzSharp.a/3.1.12/st/libHarfBuzzSharp.a", + "buildTransitive/netstandard1.0/libHarfBuzzSharp.a/3.1.34/mt,simd/libHarfBuzzSharp.a", + "buildTransitive/netstandard1.0/libHarfBuzzSharp.a/3.1.34/mt/libHarfBuzzSharp.a", + "buildTransitive/netstandard1.0/libHarfBuzzSharp.a/3.1.34/st,simd/libHarfBuzzSharp.a", + "buildTransitive/netstandard1.0/libHarfBuzzSharp.a/3.1.34/st/libHarfBuzzSharp.a", + "buildTransitive/netstandard1.0/libHarfBuzzSharp.a/3.1.56/mt,simd/libHarfBuzzSharp.a", + "buildTransitive/netstandard1.0/libHarfBuzzSharp.a/3.1.56/mt/libHarfBuzzSharp.a", + "buildTransitive/netstandard1.0/libHarfBuzzSharp.a/3.1.56/st,simd/libHarfBuzzSharp.a", + "buildTransitive/netstandard1.0/libHarfBuzzSharp.a/3.1.56/st/libHarfBuzzSharp.a", + "buildTransitive/netstandard1.0/libHarfBuzzSharp.a/3.1.7/libHarfBuzzSharp.a", + "harfbuzzsharp.nativeassets.webassembly.8.3.1.1.nupkg.sha512", + "harfbuzzsharp.nativeassets.webassembly.nuspec", + "icon.png", + "lib/net462/_._", + "lib/net6.0/_._", + "lib/net8.0/_._", + "lib/netstandard2.0/_._", + "lib/netstandard2.1/_._" + ] + }, + "HarfBuzzSharp.NativeAssets.Win32/8.3.1.1": { + "sha512": "UsJtQsfAJoFDZrXc4hCUfRPMqccfKZ0iumJ/upcUjz/cmsTgVFGNEL5yaJWmkqsuFYdMWbj/En5/kS4PFl9hBA==", + "type": "package", + "path": "harfbuzzsharp.nativeassets.win32/8.3.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "README.md", + "THIRD-PARTY-NOTICES.txt", + "buildTransitive/net462/HarfBuzzSharp.NativeAssets.Win32.targets", + "harfbuzzsharp.nativeassets.win32.8.3.1.1.nupkg.sha512", + "harfbuzzsharp.nativeassets.win32.nuspec", + "icon.png", + "lib/net462/_._", + "lib/net6.0-windows10.0.19041/_._", + "lib/net6.0/_._", + "lib/net8.0-windows10.0.19041/_._", + "lib/net8.0/_._", + "lib/netstandard2.0/_._", + "lib/netstandard2.1/_._", + "runtimes/win-arm64/native/libHarfBuzzSharp.dll", + "runtimes/win-x64/native/libHarfBuzzSharp.dll", + "runtimes/win-x86/native/libHarfBuzzSharp.dll" + ] + }, + "MicroCom.Runtime/0.11.0": { + "sha512": "MEnrZ3UIiH40hjzMDsxrTyi8dtqB5ziv3iBeeU4bXsL/7NLSal9F1lZKpK+tfBRnUoDSdtcW3KufE4yhATOMCA==", + "type": "package", + "path": "microcom.runtime/0.11.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/MicroCom.Runtime.dll", + "lib/netstandard2.0/MicroCom.Runtime.dll", + "microcom.runtime.0.11.0.nupkg.sha512", + "microcom.runtime.nuspec" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "sha512": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "sha512": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.IO.RecyclableMemoryStream/3.0.1": { + "sha512": "s/s20YTVY9r9TPfTrN5g8zPF1YhwxyqO6PxUkrYTGI2B+OGPe9AdajWZrLhFqXIvqIW23fnUE4+ztrUWNU1+9g==", + "type": "package", + "path": "microsoft.io.recyclablememorystream/3.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.dll", + "lib/net6.0/Microsoft.IO.RecyclableMemoryStream.xml", + "lib/netstandard2.0/Microsoft.IO.RecyclableMemoryStream.dll", + "lib/netstandard2.0/Microsoft.IO.RecyclableMemoryStream.xml", + "lib/netstandard2.1/Microsoft.IO.RecyclableMemoryStream.dll", + "lib/netstandard2.1/Microsoft.IO.RecyclableMemoryStream.xml", + "microsoft.io.recyclablememorystream.3.0.1.nupkg.sha512", + "microsoft.io.recyclablememorystream.nuspec" + ] + }, + "SkiaSharp/2.88.9": { + "sha512": "3MD5VHjXXieSHCleRLuaTXmL2pD0mB7CcOB1x2kA1I4bhptf4e3R27iM93264ZYuAq6mkUyX5XbcxnZvMJYc1Q==", + "type": "package", + "path": "skiasharp/2.88.9", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "interactive-extensions/dotnet/SkiaSharp.DotNet.Interactive.dll", + "lib/monoandroid1.0/SkiaSharp.dll", + "lib/monoandroid1.0/SkiaSharp.pdb", + "lib/monoandroid1.0/SkiaSharp.xml", + "lib/net462/SkiaSharp.dll", + "lib/net462/SkiaSharp.pdb", + "lib/net462/SkiaSharp.xml", + "lib/net6.0-android30.0/SkiaSharp.dll", + "lib/net6.0-android30.0/SkiaSharp.pdb", + "lib/net6.0-android30.0/SkiaSharp.xml", + "lib/net6.0-ios13.6/SkiaSharp.dll", + "lib/net6.0-ios13.6/SkiaSharp.pdb", + "lib/net6.0-ios13.6/SkiaSharp.xml", + "lib/net6.0-maccatalyst13.5/SkiaSharp.dll", + "lib/net6.0-maccatalyst13.5/SkiaSharp.pdb", + "lib/net6.0-maccatalyst13.5/SkiaSharp.xml", + "lib/net6.0-macos10.15/SkiaSharp.dll", + "lib/net6.0-macos10.15/SkiaSharp.pdb", + "lib/net6.0-macos10.15/SkiaSharp.xml", + "lib/net6.0-tizen7.0/SkiaSharp.dll", + "lib/net6.0-tizen7.0/SkiaSharp.pdb", + "lib/net6.0-tizen7.0/SkiaSharp.xml", + "lib/net6.0-tvos13.4/SkiaSharp.dll", + "lib/net6.0-tvos13.4/SkiaSharp.pdb", + "lib/net6.0-tvos13.4/SkiaSharp.xml", + "lib/net6.0/SkiaSharp.dll", + "lib/net6.0/SkiaSharp.pdb", + "lib/net6.0/SkiaSharp.xml", + "lib/netcoreapp3.1/SkiaSharp.dll", + "lib/netcoreapp3.1/SkiaSharp.pdb", + "lib/netcoreapp3.1/SkiaSharp.xml", + "lib/netstandard1.3/SkiaSharp.dll", + "lib/netstandard1.3/SkiaSharp.pdb", + "lib/netstandard1.3/SkiaSharp.xml", + "lib/netstandard2.0/SkiaSharp.dll", + "lib/netstandard2.0/SkiaSharp.pdb", + "lib/netstandard2.0/SkiaSharp.xml", + "lib/netstandard2.1/SkiaSharp.dll", + "lib/netstandard2.1/SkiaSharp.pdb", + "lib/netstandard2.1/SkiaSharp.xml", + "lib/tizen40/SkiaSharp.dll", + "lib/tizen40/SkiaSharp.pdb", + "lib/tizen40/SkiaSharp.xml", + "lib/uap10.0.10240/SkiaSharp.dll", + "lib/uap10.0.10240/SkiaSharp.pdb", + "lib/uap10.0.10240/SkiaSharp.xml", + "lib/uap10.0.16299/SkiaSharp.dll", + "lib/uap10.0.16299/SkiaSharp.pdb", + "lib/uap10.0.16299/SkiaSharp.xml", + "lib/xamarinios1.0/SkiaSharp.dll", + "lib/xamarinios1.0/SkiaSharp.pdb", + "lib/xamarinios1.0/SkiaSharp.xml", + "lib/xamarinmac2.0/SkiaSharp.dll", + "lib/xamarinmac2.0/SkiaSharp.pdb", + "lib/xamarinmac2.0/SkiaSharp.xml", + "lib/xamarintvos1.0/SkiaSharp.dll", + "lib/xamarintvos1.0/SkiaSharp.pdb", + "lib/xamarintvos1.0/SkiaSharp.xml", + "lib/xamarinwatchos1.0/SkiaSharp.dll", + "lib/xamarinwatchos1.0/SkiaSharp.pdb", + "lib/xamarinwatchos1.0/SkiaSharp.xml", + "skiasharp.2.88.9.nupkg.sha512", + "skiasharp.nuspec" + ] + }, + "SkiaSharp.NativeAssets.Linux/2.88.9": { + "sha512": "cWSaJKVPWAaT/WIn9c8T5uT/l4ETwHxNJTkEOtNKjphNo8AW6TF9O32aRkxqw3l8GUdUo66Bu7EiqtFh/XG0Zg==", + "type": "package", + "path": "skiasharp.nativeassets.linux/2.88.9", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/SkiaSharp.NativeAssets.Linux.targets", + "buildTransitive/net462/SkiaSharp.NativeAssets.Linux.targets", + "lib/net462/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "runtimes/linux-arm/native/libSkiaSharp.so", + "runtimes/linux-arm64/native/libSkiaSharp.so", + "runtimes/linux-musl-x64/native/libSkiaSharp.so", + "runtimes/linux-x64/native/libSkiaSharp.so", + "skiasharp.nativeassets.linux.2.88.9.nupkg.sha512", + "skiasharp.nativeassets.linux.nuspec" + ] + }, + "SkiaSharp.NativeAssets.macOS/2.88.9": { + "sha512": "Nv5spmKc4505Ep7oUoJ5vp3KweFpeNqxpyGDWyeEPTX2uR6S6syXIm3gj75dM0YJz7NPvcix48mR5laqs8dPuA==", + "type": "package", + "path": "skiasharp.nativeassets.macos/2.88.9", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/SkiaSharp.NativeAssets.macOS.targets", + "build/net6.0-macos10.15/SkiaSharp.NativeAssets.macOS.targets", + "build/xamarinmac2.0/SkiaSharp.NativeAssets.macOS.targets", + "buildTransitive/net462/SkiaSharp.NativeAssets.macOS.targets", + "buildTransitive/net6.0-macos10.15/SkiaSharp.NativeAssets.macOS.targets", + "buildTransitive/xamarinmac2.0/SkiaSharp.NativeAssets.macOS.targets", + "lib/net462/_._", + "lib/net6.0-macos10.15/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "lib/xamarinmac2.0/_._", + "runtimes/osx/native/libSkiaSharp.dylib", + "skiasharp.nativeassets.macos.2.88.9.nupkg.sha512", + "skiasharp.nativeassets.macos.nuspec" + ] + }, + "SkiaSharp.NativeAssets.WebAssembly/2.88.9": { + "sha512": "kt06RccBHSnAs2wDYdBSfsjIDbY3EpsOVqnlDgKdgvyuRA8ZFDaHRdWNx1VHjGgYzmnFCGiTJBnXFl5BqGwGnA==", + "type": "package", + "path": "skiasharp.nativeassets.webassembly/2.88.9", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.props", + "build/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.targets", + "build/netstandard1.0/libSkiaSharp.a/2.0.23/libSkiaSharp.a", + "build/netstandard1.0/libSkiaSharp.a/2.0.6/libSkiaSharp.a", + "build/netstandard1.0/libSkiaSharp.a/3.1.12/mt,simd/libSkiaSharp.a", + "build/netstandard1.0/libSkiaSharp.a/3.1.12/mt/libSkiaSharp.a", + "build/netstandard1.0/libSkiaSharp.a/3.1.12/simd/libSkiaSharp.a", + "build/netstandard1.0/libSkiaSharp.a/3.1.12/st/libSkiaSharp.a", + "build/netstandard1.0/libSkiaSharp.a/3.1.34/mt/libSkiaSharp.a", + "build/netstandard1.0/libSkiaSharp.a/3.1.34/simd,mt/libSkiaSharp.a", + "build/netstandard1.0/libSkiaSharp.a/3.1.34/simd,st/libSkiaSharp.a", + "build/netstandard1.0/libSkiaSharp.a/3.1.34/st/libSkiaSharp.a", + "build/netstandard1.0/libSkiaSharp.a/3.1.56/mt/libSkiaSharp.a", + "build/netstandard1.0/libSkiaSharp.a/3.1.56/simd,mt/libSkiaSharp.a", + "build/netstandard1.0/libSkiaSharp.a/3.1.56/simd,st/libSkiaSharp.a", + "build/netstandard1.0/libSkiaSharp.a/3.1.56/st/libSkiaSharp.a", + "build/netstandard1.0/libSkiaSharp.a/3.1.7/libSkiaSharp.a", + "buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.props", + "buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.targets", + "lib/netstandard1.0/_._", + "skiasharp.nativeassets.webassembly.2.88.9.nupkg.sha512", + "skiasharp.nativeassets.webassembly.nuspec" + ] + }, + "SkiaSharp.NativeAssets.Win32/2.88.9": { + "sha512": "wb2kYgU7iy84nQLYZwMeJXixvK++GoIuECjU4ECaUKNuflyRlJKyiRhN1MAHswvlvzuvkrjRWlK0Za6+kYQK7w==", + "type": "package", + "path": "skiasharp.nativeassets.win32/2.88.9", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/SkiaSharp.NativeAssets.Win32.targets", + "buildTransitive/net462/SkiaSharp.NativeAssets.Win32.targets", + "lib/net462/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "runtimes/win-arm64/native/libSkiaSharp.dll", + "runtimes/win-x64/native/libSkiaSharp.dll", + "runtimes/win-x86/native/libSkiaSharp.dll", + "skiasharp.nativeassets.win32.2.88.9.nupkg.sha512", + "skiasharp.nativeassets.win32.nuspec" + ] + }, + "Tmds.DBus.Protocol/0.21.2": { + "sha512": "ScSMrUrrw8px4kK1Glh0fZv/HQUlg1078bNXNPfRPKQ3WbRzV9HpsydYEOgSoMK5LWICMf2bMwIFH0pGjxjcMA==", + "type": "package", + "path": "tmds.dbus.protocol/0.21.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net6.0/Tmds.DBus.Protocol.dll", + "lib/net8.0/Tmds.DBus.Protocol.dll", + "lib/netstandard2.0/Tmds.DBus.Protocol.dll", + "lib/netstandard2.1/Tmds.DBus.Protocol.dll", + "tmds.dbus.protocol.0.21.2.nupkg.sha512", + "tmds.dbus.protocol.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "net10.0": [ + "Avalonia >= 11.3.10", + "Avalonia.Desktop >= 11.3.10", + "Avalonia.Fonts.Inter >= 11.3.10", + "Avalonia.Themes.Fluent >= 11.3.10", + "AvaloniaUI.DiagnosticsSupport >= 2.2.1" + ] + }, + "packageFolders": { + "C:\\Users\\teewr\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\ZahlenRaten\\ZahlenRaten\\ZahlenRaten.csproj", + "projectName": "ZahlenRaten", + "projectPath": "E:\\ZahlenRaten\\ZahlenRaten\\ZahlenRaten.csproj", + "packagesPath": "C:\\Users\\teewr\\.nuget\\packages\\", + "outputPath": "E:\\ZahlenRaten\\ZahlenRaten\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\teewr\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Avalonia": { + "target": "Package", + "version": "[11.3.10, )" + }, + "Avalonia.Desktop": { + "target": "Package", + "version": "[11.3.10, )" + }, + "Avalonia.Fonts.Inter": { + "target": "Package", + "version": "[11.3.10, )" + }, + "Avalonia.Themes.Fluent": { + "target": "Package", + "version": "[11.3.10, )" + }, + "AvaloniaUI.DiagnosticsSupport": { + "target": "Package", + "version": "[2.2.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.101/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + }, + "logs": [ + { + "code": "NU1903", + "level": "Warning", + "warningLevel": 1, + "message": "Das Paket \"Tmds.DBus.Protocol\" 0.21.2 weist eine bekannte hoch Schweregrad-Sicherheitsanfälligkeit auf, https://github.com/advisories/GHSA-xrw6-gwf8-vvr9.", + "libraryId": "Tmds.DBus.Protocol", + "targetGraphs": [ + "net10.0" + ] + } + ] +} \ No newline at end of file diff --git a/ZahlenRaten/obj/project.nuget.cache b/ZahlenRaten/obj/project.nuget.cache new file mode 100644 index 0000000..139da7f --- /dev/null +++ b/ZahlenRaten/obj/project.nuget.cache @@ -0,0 +1,50 @@ +{ + "version": 2, + "dgSpecHash": "FTpm6RUP/aE=", + "success": true, + "projectFilePath": "E:\\ZahlenRaten\\ZahlenRaten\\ZahlenRaten.csproj", + "expectedPackageFiles": [ + "C:\\Users\\teewr\\.nuget\\packages\\avalonia\\11.3.10\\avalonia.11.3.10.nupkg.sha512", + "C:\\Users\\teewr\\.nuget\\packages\\avalonia.angle.windows.natives\\2.1.25547.20250602\\avalonia.angle.windows.natives.2.1.25547.20250602.nupkg.sha512", + "C:\\Users\\teewr\\.nuget\\packages\\avalonia.buildservices\\11.3.2\\avalonia.buildservices.11.3.2.nupkg.sha512", + "C:\\Users\\teewr\\.nuget\\packages\\avalonia.desktop\\11.3.10\\avalonia.desktop.11.3.10.nupkg.sha512", + "C:\\Users\\teewr\\.nuget\\packages\\avalonia.fonts.inter\\11.3.10\\avalonia.fonts.inter.11.3.10.nupkg.sha512", + "C:\\Users\\teewr\\.nuget\\packages\\avalonia.freedesktop\\11.3.10\\avalonia.freedesktop.11.3.10.nupkg.sha512", + "C:\\Users\\teewr\\.nuget\\packages\\avalonia.native\\11.3.10\\avalonia.native.11.3.10.nupkg.sha512", + "C:\\Users\\teewr\\.nuget\\packages\\avalonia.remote.protocol\\11.3.10\\avalonia.remote.protocol.11.3.10.nupkg.sha512", + "C:\\Users\\teewr\\.nuget\\packages\\avalonia.skia\\11.3.10\\avalonia.skia.11.3.10.nupkg.sha512", + "C:\\Users\\teewr\\.nuget\\packages\\avalonia.themes.fluent\\11.3.10\\avalonia.themes.fluent.11.3.10.nupkg.sha512", + "C:\\Users\\teewr\\.nuget\\packages\\avalonia.win32\\11.3.10\\avalonia.win32.11.3.10.nupkg.sha512", + "C:\\Users\\teewr\\.nuget\\packages\\avalonia.x11\\11.3.10\\avalonia.x11.11.3.10.nupkg.sha512", + "C:\\Users\\teewr\\.nuget\\packages\\avaloniaui.diagnosticssupport\\2.2.1\\avaloniaui.diagnosticssupport.2.2.1.nupkg.sha512", + "C:\\Users\\teewr\\.nuget\\packages\\harfbuzzsharp\\8.3.1.1\\harfbuzzsharp.8.3.1.1.nupkg.sha512", + "C:\\Users\\teewr\\.nuget\\packages\\harfbuzzsharp.nativeassets.linux\\8.3.1.1\\harfbuzzsharp.nativeassets.linux.8.3.1.1.nupkg.sha512", + "C:\\Users\\teewr\\.nuget\\packages\\harfbuzzsharp.nativeassets.macos\\8.3.1.1\\harfbuzzsharp.nativeassets.macos.8.3.1.1.nupkg.sha512", + "C:\\Users\\teewr\\.nuget\\packages\\harfbuzzsharp.nativeassets.webassembly\\8.3.1.1\\harfbuzzsharp.nativeassets.webassembly.8.3.1.1.nupkg.sha512", + "C:\\Users\\teewr\\.nuget\\packages\\harfbuzzsharp.nativeassets.win32\\8.3.1.1\\harfbuzzsharp.nativeassets.win32.8.3.1.1.nupkg.sha512", + "C:\\Users\\teewr\\.nuget\\packages\\microcom.runtime\\0.11.0\\microcom.runtime.0.11.0.nupkg.sha512", + "C:\\Users\\teewr\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.0\\microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\teewr\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\8.0.0\\microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\teewr\\.nuget\\packages\\microsoft.io.recyclablememorystream\\3.0.1\\microsoft.io.recyclablememorystream.3.0.1.nupkg.sha512", + "C:\\Users\\teewr\\.nuget\\packages\\skiasharp\\2.88.9\\skiasharp.2.88.9.nupkg.sha512", + "C:\\Users\\teewr\\.nuget\\packages\\skiasharp.nativeassets.linux\\2.88.9\\skiasharp.nativeassets.linux.2.88.9.nupkg.sha512", + "C:\\Users\\teewr\\.nuget\\packages\\skiasharp.nativeassets.macos\\2.88.9\\skiasharp.nativeassets.macos.2.88.9.nupkg.sha512", + "C:\\Users\\teewr\\.nuget\\packages\\skiasharp.nativeassets.webassembly\\2.88.9\\skiasharp.nativeassets.webassembly.2.88.9.nupkg.sha512", + "C:\\Users\\teewr\\.nuget\\packages\\skiasharp.nativeassets.win32\\2.88.9\\skiasharp.nativeassets.win32.2.88.9.nupkg.sha512", + "C:\\Users\\teewr\\.nuget\\packages\\tmds.dbus.protocol\\0.21.2\\tmds.dbus.protocol.0.21.2.nupkg.sha512" + ], + "logs": [ + { + "code": "NU1903", + "level": "Warning", + "message": "Das Paket \"Tmds.DBus.Protocol\" 0.21.2 weist eine bekannte hoch Schweregrad-Sicherheitsanfälligkeit auf, https://github.com/advisories/GHSA-xrw6-gwf8-vvr9.", + "projectPath": "E:\\ZahlenRaten\\ZahlenRaten\\ZahlenRaten.csproj", + "warningLevel": 1, + "filePath": "E:\\ZahlenRaten\\ZahlenRaten\\ZahlenRaten.csproj", + "libraryId": "Tmds.DBus.Protocol", + "targetGraphs": [ + "net10.0" + ] + } + ] +} \ No newline at end of file diff --git a/ZahlenRaten/obj/project.packagespec.json b/ZahlenRaten/obj/project.packagespec.json new file mode 100644 index 0000000..115fed6 --- /dev/null +++ b/ZahlenRaten/obj/project.packagespec.json @@ -0,0 +1 @@ +"restore":{"projectUniqueName":"E:\\ZahlenRaten\\ZahlenRaten\\ZahlenRaten.csproj","projectName":"ZahlenRaten","projectPath":"E:\\ZahlenRaten\\ZahlenRaten\\ZahlenRaten.csproj","outputPath":"E:\\ZahlenRaten\\ZahlenRaten\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net10.0"],"sources":{"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net10.0":{"targetAlias":"net10.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"all"},"SdkAnalysisLevel":"10.0.100"}"frameworks":{"net10.0":{"targetAlias":"net10.0","dependencies":{"Avalonia":{"target":"Package","version":"[11.3.10, )"},"Avalonia.Desktop":{"target":"Package","version":"[11.3.10, )"},"Avalonia.Fonts.Inter":{"target":"Package","version":"[11.3.10, )"},"Avalonia.Themes.Fluent":{"target":"Package","version":"[11.3.10, )"},"AvaloniaUI.DiagnosticsSupport":{"target":"Package","version":"[2.2.1, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\10.0.101/PortableRuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/ZahlenRaten/obj/rider.project.model.nuget.info b/ZahlenRaten/obj/rider.project.model.nuget.info new file mode 100644 index 0000000..8ef5677 --- /dev/null +++ b/ZahlenRaten/obj/rider.project.model.nuget.info @@ -0,0 +1 @@ +17795508548141382 \ No newline at end of file diff --git a/ZahlenRaten/obj/rider.project.restore.info b/ZahlenRaten/obj/rider.project.restore.info new file mode 100644 index 0000000..8ef5677 --- /dev/null +++ b/ZahlenRaten/obj/rider.project.restore.info @@ -0,0 +1 @@ +17795508548141382 \ No newline at end of file