diff --git a/Presence.Desktop/App.axaml b/Presence.Desktop/App.axaml
new file mode 100644
index 0000000..eea6afa
--- /dev/null
+++ b/Presence.Desktop/App.axaml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Presence.Desktop/App.axaml.cs b/Presence.Desktop/App.axaml.cs
new file mode 100644
index 0000000..94bf268
--- /dev/null
+++ b/Presence.Desktop/App.axaml.cs
@@ -0,0 +1,29 @@
+using Avalonia;
+using Avalonia.Controls.ApplicationLifetimes;
+using Avalonia.Markup.Xaml;
+using Presence.Desktop.ViewModels;
+using Presence.Desktop.Views;
+
+namespace Presence.Desktop;
+
+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
+ {
+ DataContext = new MainWindowViewModel(),
+ };
+ }
+
+ base.OnFrameworkInitializationCompleted();
+ }
+
+}
\ No newline at end of file
diff --git a/Presence.Desktop/Assets/avalonia-logo.ico b/Presence.Desktop/Assets/avalonia-logo.ico
new file mode 100644
index 0000000..da8d49f
Binary files /dev/null and b/Presence.Desktop/Assets/avalonia-logo.ico differ
diff --git a/Presence.Desktop/Presence.Desktop.csproj b/Presence.Desktop/Presence.Desktop.csproj
new file mode 100644
index 0000000..cd9686a
--- /dev/null
+++ b/Presence.Desktop/Presence.Desktop.csproj
@@ -0,0 +1,28 @@
+
+
+ WinExe
+ net8.0
+ enable
+ true
+ app.manifest
+ true
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ None
+ All
+
+
+
+
diff --git a/Presence.Desktop/Program.cs b/Presence.Desktop/Program.cs
new file mode 100644
index 0000000..d5327f7
--- /dev/null
+++ b/Presence.Desktop/Program.cs
@@ -0,0 +1,23 @@
+using Avalonia;
+using Avalonia.ReactiveUI;
+using System;
+
+namespace Presence.Desktop;
+
+sealed 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()
+ .WithInterFont()
+ .LogToTrace()
+ .UseReactiveUI();
+}
diff --git a/Presence.Desktop/ViewLocator.cs b/Presence.Desktop/ViewLocator.cs
new file mode 100644
index 0000000..4b14d4b
--- /dev/null
+++ b/Presence.Desktop/ViewLocator.cs
@@ -0,0 +1,31 @@
+using System;
+using Avalonia.Controls;
+using Avalonia.Controls.Templates;
+using Presence.Desktop.ViewModels;
+
+namespace Presence.Desktop;
+
+public class ViewLocator : IDataTemplate
+{
+
+ public Control? Build(object? param)
+ {
+ if (param is null)
+ return null;
+
+ var name = param.GetType().FullName!.Replace("ViewModel", "View", StringComparison.Ordinal);
+ var type = Type.GetType(name);
+
+ if (type != null)
+ {
+ return (Control)Activator.CreateInstance(type)!;
+ }
+
+ return new TextBlock { Text = "Not Found: " + name };
+ }
+
+ public bool Match(object? data)
+ {
+ return data is ViewModelBase;
+ }
+}
diff --git a/Presence.Desktop/ViewModels/MainWindowViewModel.cs b/Presence.Desktop/ViewModels/MainWindowViewModel.cs
new file mode 100644
index 0000000..2bde3fc
--- /dev/null
+++ b/Presence.Desktop/ViewModels/MainWindowViewModel.cs
@@ -0,0 +1,6 @@
+namespace Presence.Desktop.ViewModels;
+
+public class MainWindowViewModel : ViewModelBase
+{
+ public string Greeting { get; } = "Welcome to Avalonia!";
+}
diff --git a/Presence.Desktop/ViewModels/ViewModelBase.cs b/Presence.Desktop/ViewModels/ViewModelBase.cs
new file mode 100644
index 0000000..5b8a1ad
--- /dev/null
+++ b/Presence.Desktop/ViewModels/ViewModelBase.cs
@@ -0,0 +1,7 @@
+using ReactiveUI;
+
+namespace Presence.Desktop.ViewModels;
+
+public class ViewModelBase : ReactiveObject
+{
+}
diff --git a/Presence.Desktop/Views/MainWindow.axaml b/Presence.Desktop/Views/MainWindow.axaml
new file mode 100644
index 0000000..a158e7f
--- /dev/null
+++ b/Presence.Desktop/Views/MainWindow.axaml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/Presence.Desktop/Views/MainWindow.axaml.cs b/Presence.Desktop/Views/MainWindow.axaml.cs
new file mode 100644
index 0000000..6de841f
--- /dev/null
+++ b/Presence.Desktop/Views/MainWindow.axaml.cs
@@ -0,0 +1,11 @@
+using Avalonia.Controls;
+
+namespace Presence.Desktop.Views;
+
+public partial class MainWindow : Window
+{
+ public MainWindow()
+ {
+ InitializeComponent();
+ }
+}
\ No newline at end of file
diff --git a/Presence.Desktop/app.manifest b/Presence.Desktop/app.manifest
new file mode 100644
index 0000000..9c877cb
--- /dev/null
+++ b/Presence.Desktop/app.manifest
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Presence.Desktop/bin/Debug/net8.0/Avalonia.Base.dll b/Presence.Desktop/bin/Debug/net8.0/Avalonia.Base.dll
new file mode 100755
index 0000000..f216543
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/Avalonia.Base.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/Avalonia.Controls.ColorPicker.dll b/Presence.Desktop/bin/Debug/net8.0/Avalonia.Controls.ColorPicker.dll
new file mode 100755
index 0000000..f4f145f
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/Avalonia.Controls.ColorPicker.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/Avalonia.Controls.DataGrid.dll b/Presence.Desktop/bin/Debug/net8.0/Avalonia.Controls.DataGrid.dll
new file mode 100755
index 0000000..81a66c8
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/Avalonia.Controls.DataGrid.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/Avalonia.Controls.dll b/Presence.Desktop/bin/Debug/net8.0/Avalonia.Controls.dll
new file mode 100755
index 0000000..186b134
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/Avalonia.Controls.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/Avalonia.DesignerSupport.dll b/Presence.Desktop/bin/Debug/net8.0/Avalonia.DesignerSupport.dll
new file mode 100755
index 0000000..fa4445c
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/Avalonia.DesignerSupport.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/Avalonia.Desktop.dll b/Presence.Desktop/bin/Debug/net8.0/Avalonia.Desktop.dll
new file mode 100755
index 0000000..9845e25
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/Avalonia.Desktop.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/Avalonia.Diagnostics.dll b/Presence.Desktop/bin/Debug/net8.0/Avalonia.Diagnostics.dll
new file mode 100755
index 0000000..01e7dd7
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/Avalonia.Diagnostics.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/Avalonia.Dialogs.dll b/Presence.Desktop/bin/Debug/net8.0/Avalonia.Dialogs.dll
new file mode 100755
index 0000000..62cd00b
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/Avalonia.Dialogs.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/Avalonia.Fonts.Inter.dll b/Presence.Desktop/bin/Debug/net8.0/Avalonia.Fonts.Inter.dll
new file mode 100755
index 0000000..d98be10
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/Avalonia.Fonts.Inter.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/Avalonia.FreeDesktop.dll b/Presence.Desktop/bin/Debug/net8.0/Avalonia.FreeDesktop.dll
new file mode 100755
index 0000000..cfb7f56
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/Avalonia.FreeDesktop.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/Avalonia.Markup.Xaml.dll b/Presence.Desktop/bin/Debug/net8.0/Avalonia.Markup.Xaml.dll
new file mode 100755
index 0000000..f5c5597
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/Avalonia.Markup.Xaml.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/Avalonia.Markup.dll b/Presence.Desktop/bin/Debug/net8.0/Avalonia.Markup.dll
new file mode 100755
index 0000000..466b5b0
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/Avalonia.Markup.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/Avalonia.Metal.dll b/Presence.Desktop/bin/Debug/net8.0/Avalonia.Metal.dll
new file mode 100755
index 0000000..2a3bf0b
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/Avalonia.Metal.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/Avalonia.MicroCom.dll b/Presence.Desktop/bin/Debug/net8.0/Avalonia.MicroCom.dll
new file mode 100755
index 0000000..afcdd03
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/Avalonia.MicroCom.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/Avalonia.Native.dll b/Presence.Desktop/bin/Debug/net8.0/Avalonia.Native.dll
new file mode 100755
index 0000000..18ce8b7
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/Avalonia.Native.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/Avalonia.OpenGL.dll b/Presence.Desktop/bin/Debug/net8.0/Avalonia.OpenGL.dll
new file mode 100755
index 0000000..bfbacb3
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/Avalonia.OpenGL.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/Avalonia.ReactiveUI.dll b/Presence.Desktop/bin/Debug/net8.0/Avalonia.ReactiveUI.dll
new file mode 100755
index 0000000..615383f
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/Avalonia.ReactiveUI.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/Avalonia.Remote.Protocol.dll b/Presence.Desktop/bin/Debug/net8.0/Avalonia.Remote.Protocol.dll
new file mode 100755
index 0000000..7f0c0e4
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/Avalonia.Remote.Protocol.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/Avalonia.Skia.dll b/Presence.Desktop/bin/Debug/net8.0/Avalonia.Skia.dll
new file mode 100755
index 0000000..734cdf8
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/Avalonia.Skia.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/Avalonia.Themes.Fluent.dll b/Presence.Desktop/bin/Debug/net8.0/Avalonia.Themes.Fluent.dll
new file mode 100755
index 0000000..8ac3678
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/Avalonia.Themes.Fluent.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/Avalonia.Themes.Simple.dll b/Presence.Desktop/bin/Debug/net8.0/Avalonia.Themes.Simple.dll
new file mode 100755
index 0000000..766a2a9
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/Avalonia.Themes.Simple.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/Avalonia.Vulkan.dll b/Presence.Desktop/bin/Debug/net8.0/Avalonia.Vulkan.dll
new file mode 100755
index 0000000..81fee11
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/Avalonia.Vulkan.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/Avalonia.Win32.dll b/Presence.Desktop/bin/Debug/net8.0/Avalonia.Win32.dll
new file mode 100755
index 0000000..5ada12b
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/Avalonia.Win32.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/Avalonia.X11.dll b/Presence.Desktop/bin/Debug/net8.0/Avalonia.X11.dll
new file mode 100755
index 0000000..d668c1e
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/Avalonia.X11.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/Avalonia.dll b/Presence.Desktop/bin/Debug/net8.0/Avalonia.dll
new file mode 100755
index 0000000..c4696d7
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/Avalonia.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/DynamicData.dll b/Presence.Desktop/bin/Debug/net8.0/DynamicData.dll
new file mode 100755
index 0000000..e1a5dfe
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/DynamicData.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/HarfBuzzSharp.dll b/Presence.Desktop/bin/Debug/net8.0/HarfBuzzSharp.dll
new file mode 100755
index 0000000..ce0580a
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/HarfBuzzSharp.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/MicroCom.Runtime.dll b/Presence.Desktop/bin/Debug/net8.0/MicroCom.Runtime.dll
new file mode 100755
index 0000000..f6cf008
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/MicroCom.Runtime.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/Presence.Desktop b/Presence.Desktop/bin/Debug/net8.0/Presence.Desktop
new file mode 100755
index 0000000..1d58ae8
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/Presence.Desktop differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/Presence.Desktop.deps.json b/Presence.Desktop/bin/Debug/net8.0/Presence.Desktop.deps.json
new file mode 100644
index 0000000..fb614a0
--- /dev/null
+++ b/Presence.Desktop/bin/Debug/net8.0/Presence.Desktop.deps.json
@@ -0,0 +1,732 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v8.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v8.0": {
+ "Presence.Desktop/1.0.0": {
+ "dependencies": {
+ "Avalonia": "11.2.1",
+ "Avalonia.Desktop": "11.2.1",
+ "Avalonia.Diagnostics": "11.2.1",
+ "Avalonia.Fonts.Inter": "11.2.1",
+ "Avalonia.ReactiveUI": "11.2.1",
+ "Avalonia.Themes.Fluent": "11.2.1"
+ },
+ "runtime": {
+ "Presence.Desktop.dll": {}
+ }
+ },
+ "Avalonia/11.2.1": {
+ "dependencies": {
+ "Avalonia.BuildServices": "0.0.29",
+ "Avalonia.Remote.Protocol": "11.2.1",
+ "MicroCom.Runtime": "0.11.0"
+ },
+ "runtime": {
+ "lib/net8.0/Avalonia.Base.dll": {
+ "assemblyVersion": "11.2.1.0",
+ "fileVersion": "11.2.1.0"
+ },
+ "lib/net8.0/Avalonia.Controls.dll": {
+ "assemblyVersion": "11.2.1.0",
+ "fileVersion": "11.2.1.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.2.1.0",
+ "fileVersion": "11.2.1.0"
+ },
+ "lib/net8.0/Avalonia.Markup.Xaml.dll": {
+ "assemblyVersion": "11.2.1.0",
+ "fileVersion": "11.2.1.0"
+ },
+ "lib/net8.0/Avalonia.Markup.dll": {
+ "assemblyVersion": "11.2.1.0",
+ "fileVersion": "11.2.1.0"
+ },
+ "lib/net8.0/Avalonia.Metal.dll": {
+ "assemblyVersion": "11.2.1.0",
+ "fileVersion": "11.2.1.0"
+ },
+ "lib/net8.0/Avalonia.MicroCom.dll": {
+ "assemblyVersion": "11.2.1.0",
+ "fileVersion": "11.2.1.0"
+ },
+ "lib/net8.0/Avalonia.OpenGL.dll": {
+ "assemblyVersion": "11.2.1.0",
+ "fileVersion": "11.2.1.0"
+ },
+ "lib/net8.0/Avalonia.Vulkan.dll": {
+ "assemblyVersion": "11.2.1.0",
+ "fileVersion": "11.2.1.0"
+ },
+ "lib/net8.0/Avalonia.dll": {
+ "assemblyVersion": "11.2.1.0",
+ "fileVersion": "11.2.1.0"
+ }
+ }
+ },
+ "Avalonia.Angle.Windows.Natives/2.1.22045.20230930": {
+ "runtimeTargets": {
+ "runtimes/win-arm64/native/av_libglesv2.dll": {
+ "rid": "win-arm64",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/win-x64/native/av_libglesv2.dll": {
+ "rid": "win-x64",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/win-x86/native/av_libglesv2.dll": {
+ "rid": "win-x86",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ }
+ }
+ },
+ "Avalonia.BuildServices/0.0.29": {},
+ "Avalonia.Controls.ColorPicker/11.2.1": {
+ "dependencies": {
+ "Avalonia": "11.2.1",
+ "Avalonia.Remote.Protocol": "11.2.1"
+ },
+ "runtime": {
+ "lib/net8.0/Avalonia.Controls.ColorPicker.dll": {
+ "assemblyVersion": "11.2.1.0",
+ "fileVersion": "11.2.1.0"
+ }
+ }
+ },
+ "Avalonia.Controls.DataGrid/11.2.1": {
+ "dependencies": {
+ "Avalonia": "11.2.1",
+ "Avalonia.Remote.Protocol": "11.2.1"
+ },
+ "runtime": {
+ "lib/net8.0/Avalonia.Controls.DataGrid.dll": {
+ "assemblyVersion": "11.2.1.0",
+ "fileVersion": "11.2.1.0"
+ }
+ }
+ },
+ "Avalonia.Desktop/11.2.1": {
+ "dependencies": {
+ "Avalonia": "11.2.1",
+ "Avalonia.Native": "11.2.1",
+ "Avalonia.Skia": "11.2.1",
+ "Avalonia.Win32": "11.2.1",
+ "Avalonia.X11": "11.2.1"
+ },
+ "runtime": {
+ "lib/net8.0/Avalonia.Desktop.dll": {
+ "assemblyVersion": "11.2.1.0",
+ "fileVersion": "11.2.1.0"
+ }
+ }
+ },
+ "Avalonia.Diagnostics/11.2.1": {
+ "dependencies": {
+ "Avalonia": "11.2.1",
+ "Avalonia.Controls.ColorPicker": "11.2.1",
+ "Avalonia.Controls.DataGrid": "11.2.1",
+ "Avalonia.Themes.Simple": "11.2.1"
+ },
+ "runtime": {
+ "lib/net8.0/Avalonia.Diagnostics.dll": {
+ "assemblyVersion": "11.2.1.0",
+ "fileVersion": "11.2.1.0"
+ }
+ }
+ },
+ "Avalonia.Fonts.Inter/11.2.1": {
+ "dependencies": {
+ "Avalonia": "11.2.1"
+ },
+ "runtime": {
+ "lib/net8.0/Avalonia.Fonts.Inter.dll": {
+ "assemblyVersion": "11.2.1.0",
+ "fileVersion": "11.2.1.0"
+ }
+ }
+ },
+ "Avalonia.FreeDesktop/11.2.1": {
+ "dependencies": {
+ "Avalonia": "11.2.1",
+ "Tmds.DBus.Protocol": "0.20.0"
+ },
+ "runtime": {
+ "lib/net8.0/Avalonia.FreeDesktop.dll": {
+ "assemblyVersion": "11.2.1.0",
+ "fileVersion": "11.2.1.0"
+ }
+ }
+ },
+ "Avalonia.Native/11.2.1": {
+ "dependencies": {
+ "Avalonia": "11.2.1"
+ },
+ "runtime": {
+ "lib/net8.0/Avalonia.Native.dll": {
+ "assemblyVersion": "11.2.1.0",
+ "fileVersion": "11.2.1.0"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/osx/native/libAvaloniaNative.dylib": {
+ "rid": "osx",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ }
+ }
+ },
+ "Avalonia.ReactiveUI/11.2.1": {
+ "dependencies": {
+ "Avalonia": "11.2.1",
+ "ReactiveUI": "20.1.1",
+ "System.Reactive": "6.0.1"
+ },
+ "runtime": {
+ "lib/net8.0/Avalonia.ReactiveUI.dll": {
+ "assemblyVersion": "11.2.1.0",
+ "fileVersion": "11.2.1.0"
+ }
+ }
+ },
+ "Avalonia.Remote.Protocol/11.2.1": {
+ "runtime": {
+ "lib/net8.0/Avalonia.Remote.Protocol.dll": {
+ "assemblyVersion": "11.2.1.0",
+ "fileVersion": "11.2.1.0"
+ }
+ }
+ },
+ "Avalonia.Skia/11.2.1": {
+ "dependencies": {
+ "Avalonia": "11.2.1",
+ "HarfBuzzSharp": "7.3.0.2",
+ "HarfBuzzSharp.NativeAssets.Linux": "7.3.0.2",
+ "HarfBuzzSharp.NativeAssets.WebAssembly": "7.3.0.3-preview.2.2",
+ "SkiaSharp": "2.88.8",
+ "SkiaSharp.NativeAssets.Linux": "2.88.8",
+ "SkiaSharp.NativeAssets.WebAssembly": "2.88.8"
+ },
+ "runtime": {
+ "lib/net8.0/Avalonia.Skia.dll": {
+ "assemblyVersion": "11.2.1.0",
+ "fileVersion": "11.2.1.0"
+ }
+ }
+ },
+ "Avalonia.Themes.Fluent/11.2.1": {
+ "dependencies": {
+ "Avalonia": "11.2.1"
+ },
+ "runtime": {
+ "lib/net8.0/Avalonia.Themes.Fluent.dll": {
+ "assemblyVersion": "11.2.1.0",
+ "fileVersion": "11.2.1.0"
+ }
+ }
+ },
+ "Avalonia.Themes.Simple/11.2.1": {
+ "dependencies": {
+ "Avalonia": "11.2.1"
+ },
+ "runtime": {
+ "lib/net8.0/Avalonia.Themes.Simple.dll": {
+ "assemblyVersion": "11.2.1.0",
+ "fileVersion": "11.2.1.0"
+ }
+ }
+ },
+ "Avalonia.Win32/11.2.1": {
+ "dependencies": {
+ "Avalonia": "11.2.1",
+ "Avalonia.Angle.Windows.Natives": "2.1.22045.20230930"
+ },
+ "runtime": {
+ "lib/net8.0/Avalonia.Win32.dll": {
+ "assemblyVersion": "11.2.1.0",
+ "fileVersion": "11.2.1.0"
+ }
+ }
+ },
+ "Avalonia.X11/11.2.1": {
+ "dependencies": {
+ "Avalonia": "11.2.1",
+ "Avalonia.FreeDesktop": "11.2.1",
+ "Avalonia.Skia": "11.2.1"
+ },
+ "runtime": {
+ "lib/net8.0/Avalonia.X11.dll": {
+ "assemblyVersion": "11.2.1.0",
+ "fileVersion": "11.2.1.0"
+ }
+ }
+ },
+ "DynamicData/8.4.1": {
+ "dependencies": {
+ "System.Reactive": "6.0.1"
+ },
+ "runtime": {
+ "lib/net8.0/DynamicData.dll": {
+ "assemblyVersion": "8.4.0.0",
+ "fileVersion": "8.4.1.20756"
+ }
+ }
+ },
+ "HarfBuzzSharp/7.3.0.2": {
+ "dependencies": {
+ "HarfBuzzSharp.NativeAssets.Win32": "7.3.0.2",
+ "HarfBuzzSharp.NativeAssets.macOS": "7.3.0.2"
+ },
+ "runtime": {
+ "lib/net6.0/HarfBuzzSharp.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "7.3.0.2"
+ }
+ }
+ },
+ "HarfBuzzSharp.NativeAssets.Linux/7.3.0.2": {
+ "dependencies": {
+ "HarfBuzzSharp": "7.3.0.2"
+ },
+ "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-musl-x64/native/libHarfBuzzSharp.so": {
+ "rid": "linux-musl-x64",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/linux-x64/native/libHarfBuzzSharp.so": {
+ "rid": "linux-x64",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ }
+ }
+ },
+ "HarfBuzzSharp.NativeAssets.macOS/7.3.0.2": {
+ "runtimeTargets": {
+ "runtimes/osx/native/libHarfBuzzSharp.dylib": {
+ "rid": "osx",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ }
+ }
+ },
+ "HarfBuzzSharp.NativeAssets.WebAssembly/7.3.0.3-preview.2.2": {},
+ "HarfBuzzSharp.NativeAssets.Win32/7.3.0.2": {
+ "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"
+ }
+ }
+ },
+ "ReactiveUI/20.1.1": {
+ "dependencies": {
+ "DynamicData": "8.4.1",
+ "Splat": "15.1.1",
+ "System.ComponentModel.Annotations": "5.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/ReactiveUI.dll": {
+ "assemblyVersion": "20.1.0.0",
+ "fileVersion": "20.1.1.46356"
+ }
+ }
+ },
+ "SkiaSharp/2.88.8": {
+ "dependencies": {
+ "SkiaSharp.NativeAssets.Win32": "2.88.8",
+ "SkiaSharp.NativeAssets.macOS": "2.88.8"
+ },
+ "runtime": {
+ "lib/net6.0/SkiaSharp.dll": {
+ "assemblyVersion": "2.88.0.0",
+ "fileVersion": "2.88.8.0"
+ }
+ }
+ },
+ "SkiaSharp.NativeAssets.Linux/2.88.8": {
+ "dependencies": {
+ "SkiaSharp": "2.88.8"
+ },
+ "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.8": {
+ "runtimeTargets": {
+ "runtimes/osx/native/libSkiaSharp.dylib": {
+ "rid": "osx",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ }
+ }
+ },
+ "SkiaSharp.NativeAssets.WebAssembly/2.88.8": {},
+ "SkiaSharp.NativeAssets.Win32/2.88.8": {
+ "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"
+ }
+ }
+ },
+ "Splat/15.1.1": {
+ "runtime": {
+ "lib/net8.0/Splat.dll": {
+ "assemblyVersion": "15.1.0.0",
+ "fileVersion": "15.1.1.17670"
+ }
+ }
+ },
+ "System.ComponentModel.Annotations/5.0.0": {},
+ "System.IO.Pipelines/8.0.0": {
+ "runtime": {
+ "lib/net8.0/System.IO.Pipelines.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "System.Reactive/6.0.1": {
+ "runtime": {
+ "lib/net6.0/System.Reactive.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.1.7420"
+ }
+ }
+ },
+ "Tmds.DBus.Protocol/0.20.0": {
+ "dependencies": {
+ "System.IO.Pipelines": "8.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/Tmds.DBus.Protocol.dll": {
+ "assemblyVersion": "0.20.0.0",
+ "fileVersion": "0.20.0.0"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Presence.Desktop/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Avalonia/11.2.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-AyYhIN2A7bRwxp6BFHrIbXAHUFPXegzSMYwDrUnw1BzZs9ctwYTiCPCM5wbE2PXsEBwFDVJ/a2YHTOp56fSYAw==",
+ "path": "avalonia/11.2.1",
+ "hashPath": "avalonia.11.2.1.nupkg.sha512"
+ },
+ "Avalonia.Angle.Windows.Natives/2.1.22045.20230930": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Bo3qOhKC1b84BIhiogndMdAzB3UrrESKK7hS769f5HWeoMw/pcd42US5KFYW2JJ4ZSTrXnP8mXwLTMzh+S+9Lg==",
+ "path": "avalonia.angle.windows.natives/2.1.22045.20230930",
+ "hashPath": "avalonia.angle.windows.natives.2.1.22045.20230930.nupkg.sha512"
+ },
+ "Avalonia.BuildServices/0.0.29": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-U4eJLQdoDNHXtEba7MZUCwrBErBTxFp6sUewXBOdAhU0Kwzwaa/EKFcYm8kpcysjzKtfB4S0S9n0uxKZFz/ikw==",
+ "path": "avalonia.buildservices/0.0.29",
+ "hashPath": "avalonia.buildservices.0.0.29.nupkg.sha512"
+ },
+ "Avalonia.Controls.ColorPicker/11.2.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-t8ViFwfIe6jCO5HvzPWOtwGNSMHYNc8XakWp76Rgy1MOiht8tHKry9cU7k40AHEYU6wVjiYBkl0c8zYZyyha1g==",
+ "path": "avalonia.controls.colorpicker/11.2.1",
+ "hashPath": "avalonia.controls.colorpicker.11.2.1.nupkg.sha512"
+ },
+ "Avalonia.Controls.DataGrid/11.2.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UaNQrY86GBqMZqZ/N/5/wLzr4Emh2N405VZI/IgH0I8BoMrjnosNr+++D7BOcahMNce0lUZLOsFyy+OY02PUAw==",
+ "path": "avalonia.controls.datagrid/11.2.1",
+ "hashPath": "avalonia.controls.datagrid.11.2.1.nupkg.sha512"
+ },
+ "Avalonia.Desktop/11.2.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-q6alzkTgFjukOrbiiFlh0mkhkxGRMRTMS8zdNEixIl9apPnD2ln9sjAC4NR2agNz5+HmZVfXYu6kYK12rMmKwA==",
+ "path": "avalonia.desktop/11.2.1",
+ "hashPath": "avalonia.desktop.11.2.1.nupkg.sha512"
+ },
+ "Avalonia.Diagnostics/11.2.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-axUWa4sZoe9HgUXPEDhbZXijL8ex+lwQGVwNQLmD299O7pCqKcYThjyG/eCETO/boqjKTt3H85LHEPx94BP9dg==",
+ "path": "avalonia.diagnostics/11.2.1",
+ "hashPath": "avalonia.diagnostics.11.2.1.nupkg.sha512"
+ },
+ "Avalonia.Fonts.Inter/11.2.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-egEFQWLHuSzyWKolPy9u4qPor270N2GL/4CI33eBxr09chrUVQsOlxQ6zeWPiBLzzgv/lCrZhOMCAIWsOz3tNg==",
+ "path": "avalonia.fonts.inter/11.2.1",
+ "hashPath": "avalonia.fonts.inter.11.2.1.nupkg.sha512"
+ },
+ "Avalonia.FreeDesktop/11.2.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ChKdPjQ2uBJUN0y+/RsdoETzXRn/q1eWFBDwprDy+Zi/AVkUfRk06hKbsb/U+Q3zO65CMEprRcMPbys0EkK2vg==",
+ "path": "avalonia.freedesktop/11.2.1",
+ "hashPath": "avalonia.freedesktop.11.2.1.nupkg.sha512"
+ },
+ "Avalonia.Native/11.2.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-1cVasDUIkqfAYLkaLFDx+VDZymer2v643OYD6Jd6nzP20TNTqN2LfFOpxXCTYMrWc9Dk5AoVJJCrz3wRE5kooQ==",
+ "path": "avalonia.native/11.2.1",
+ "hashPath": "avalonia.native.11.2.1.nupkg.sha512"
+ },
+ "Avalonia.ReactiveUI/11.2.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-SgjmPrkpAyxnG9z9Ms1Nj53xTvD2W00GQ0w+WGMrt3Jm8UNHha8b0LK1Gx9WT4Do/ggH51j76RfRdXchbardWw==",
+ "path": "avalonia.reactiveui/11.2.1",
+ "hashPath": "avalonia.reactiveui.11.2.1.nupkg.sha512"
+ },
+ "Avalonia.Remote.Protocol/11.2.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-aqEialxjir7DO/dOFf7BGN/yQ4/adSC5UuVfqBr/RUHOENSH6CqoHj8kmtmJxnuz7ESQFSB2+h1kLVnk5csiDw==",
+ "path": "avalonia.remote.protocol/11.2.1",
+ "hashPath": "avalonia.remote.protocol.11.2.1.nupkg.sha512"
+ },
+ "Avalonia.Skia/11.2.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-FkqiXWT1hN0s5MIx5IKDGZaqewQENikQh6aBQyApiZVu5koa8H8RW1yfb2cFK3M4IVIyhqwl8ZirkXsS18lf/Q==",
+ "path": "avalonia.skia/11.2.1",
+ "hashPath": "avalonia.skia.11.2.1.nupkg.sha512"
+ },
+ "Avalonia.Themes.Fluent/11.2.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-9YUzDmZO5oDppsoA3Igeu/v1cVi4xu8jdO6ZrBzXJXJ9mma/htK0Ub9+V1lRoCW/O70nQfBX+ZDpm0dca1PVgw==",
+ "path": "avalonia.themes.fluent/11.2.1",
+ "hashPath": "avalonia.themes.fluent.11.2.1.nupkg.sha512"
+ },
+ "Avalonia.Themes.Simple/11.2.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ToiYv8hhJ5gcEtD54VZv7NpBFiqGasj4bjFh/AtjXApiYOp8r3orFPX8Nsc3kHcUCvNNjbjAy9dmBG65nYePkw==",
+ "path": "avalonia.themes.simple/11.2.1",
+ "hashPath": "avalonia.themes.simple.11.2.1.nupkg.sha512"
+ },
+ "Avalonia.Win32/11.2.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-7Gfw7S1PoINaCXaIV1rh7zo82IhsqhR7a0PAt281cBrfDkJiNU0DYgW2RZxKl3oVFxtfbxJZbdP7hSVmHvoDfw==",
+ "path": "avalonia.win32/11.2.1",
+ "hashPath": "avalonia.win32.11.2.1.nupkg.sha512"
+ },
+ "Avalonia.X11/11.2.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-h2aCpyLmxGkldPK7cbncEgyobrJ5En7gQtrwVARLmN32Rw6dHut3jyF3P8at2DmWxRuKwZVXgWBSSI62hINgrQ==",
+ "path": "avalonia.x11/11.2.1",
+ "hashPath": "avalonia.x11.11.2.1.nupkg.sha512"
+ },
+ "DynamicData/8.4.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Mn1+fU/jqxgONEJq8KLQPGWEi7g/hUVTbjZyn4QM0sWWDAVOHPO9WjXWORSykwdfg/6S3GM15qsfz+2EvO+QAQ==",
+ "path": "dynamicdata/8.4.1",
+ "hashPath": "dynamicdata.8.4.1.nupkg.sha512"
+ },
+ "HarfBuzzSharp/7.3.0.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-0tCd6HyCmNsX/DniCp2b00fo0xPbdNwKOs9BxxyT8oOOuMlWjcSFwzONKyeckCKVBFEsbSmsAHPDTqxoSDwZMg==",
+ "path": "harfbuzzsharp/7.3.0.2",
+ "hashPath": "harfbuzzsharp.7.3.0.2.nupkg.sha512"
+ },
+ "HarfBuzzSharp.NativeAssets.Linux/7.3.0.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-aKa5J1RqjXKAtdcZJp5wjC78klfBIzJHM6CneN76lFmQ9LLRJA9Oa0TkIDaV8lVLDKMAy5fCKHXFlXUK1YfL/g==",
+ "path": "harfbuzzsharp.nativeassets.linux/7.3.0.2",
+ "hashPath": "harfbuzzsharp.nativeassets.linux.7.3.0.2.nupkg.sha512"
+ },
+ "HarfBuzzSharp.NativeAssets.macOS/7.3.0.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-nycYH/WLJ6ogm+I+QSFCdPJsdxSb5GANWYbQyp1vsd/KjXN56RVUJWPhbgP2GKb/Y7mrsHM7EProqVXlO/EMsA==",
+ "path": "harfbuzzsharp.nativeassets.macos/7.3.0.2",
+ "hashPath": "harfbuzzsharp.nativeassets.macos.7.3.0.2.nupkg.sha512"
+ },
+ "HarfBuzzSharp.NativeAssets.WebAssembly/7.3.0.3-preview.2.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Dc+dolrhmkpqwT25NfNEEgceW0//KRR2WIOvxlyIIHIIMBCn0FfUeJX5RhFll8kyaZwF8tuKsxRJtQG/rzSBog==",
+ "path": "harfbuzzsharp.nativeassets.webassembly/7.3.0.3-preview.2.2",
+ "hashPath": "harfbuzzsharp.nativeassets.webassembly.7.3.0.3-preview.2.2.nupkg.sha512"
+ },
+ "HarfBuzzSharp.NativeAssets.Win32/7.3.0.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-DpF9JBzwws2dupOLnjME65hxQWWbN/GD40AoTkwB4S05WANvxo3n81AnQJKxWDCnrWfWhLPB36OF27TvEqzb/A==",
+ "path": "harfbuzzsharp.nativeassets.win32/7.3.0.2",
+ "hashPath": "harfbuzzsharp.nativeassets.win32.7.3.0.2.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"
+ },
+ "ReactiveUI/20.1.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-9hNPknWjijnaSWs6auypoXqUptPZcRpUypF+cf1zD50fgW+SEoQda502N3fVZ2eWPcaiUad+z6GaLwOWmUVHNw==",
+ "path": "reactiveui/20.1.1",
+ "hashPath": "reactiveui.20.1.1.nupkg.sha512"
+ },
+ "SkiaSharp/2.88.8": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-bRkp3uKp5ZI8gXYQT57uKwil1uobb2p8c69n7v5evlB/2JNcMAXVcw9DZAP5Ig3WSvgzGm2YSn27UVeOi05NlA==",
+ "path": "skiasharp/2.88.8",
+ "hashPath": "skiasharp.2.88.8.nupkg.sha512"
+ },
+ "SkiaSharp.NativeAssets.Linux/2.88.8": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-0FO6YA7paNFBMJULvEyecPmCvL9/STvOAi5VOUw2srqJ7pNTbiiZkfl7sulAzcumbWgfzaVjRXYTgMj7SoUnWQ==",
+ "path": "skiasharp.nativeassets.linux/2.88.8",
+ "hashPath": "skiasharp.nativeassets.linux.2.88.8.nupkg.sha512"
+ },
+ "SkiaSharp.NativeAssets.macOS/2.88.8": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6Kn5TSkKlfyS6azWHF3Jk2sW5C4jCE5uSshM/5AbfFrR+5n6qM5XEnz9h4VaVl7LTxBvHvMkuPb/3bpbq0vxTw==",
+ "path": "skiasharp.nativeassets.macos/2.88.8",
+ "hashPath": "skiasharp.nativeassets.macos.2.88.8.nupkg.sha512"
+ },
+ "SkiaSharp.NativeAssets.WebAssembly/2.88.8": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-S3qRo8c+gVYOyfrdf6FYnjx/ft+gPkb4dNY2IPv5Oy5yNBhDhXhKqHFr9h4+ne6ZU+7D4dbuRQqsIqCo8u1/DA==",
+ "path": "skiasharp.nativeassets.webassembly/2.88.8",
+ "hashPath": "skiasharp.nativeassets.webassembly.2.88.8.nupkg.sha512"
+ },
+ "SkiaSharp.NativeAssets.Win32/2.88.8": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-O9QXoWEXA+6cweR4h3BOnwMz+pO9vL9mXdjLrpDd0w1QzCgWmLQBxa1VgySDITiH7nQndrDG1h6937zm9pLj1Q==",
+ "path": "skiasharp.nativeassets.win32/2.88.8",
+ "hashPath": "skiasharp.nativeassets.win32.2.88.8.nupkg.sha512"
+ },
+ "Splat/15.1.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-RHDTdF90FwVbRia2cmuIzkiVoETqnXSB2dDBBi/I35HWXqv4OKGqoMcfcd6obMvO2OmmY5PjU1M62K8LkJafAA==",
+ "path": "splat/15.1.1",
+ "hashPath": "splat.15.1.1.nupkg.sha512"
+ },
+ "System.ComponentModel.Annotations/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
+ "path": "system.componentmodel.annotations/5.0.0",
+ "hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512"
+ },
+ "System.IO.Pipelines/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-FHNOatmUq0sqJOkTx+UF/9YK1f180cnW5FVqnQMvYUN0elp6wFzbtPSiqbo1/ru8ICp43JM1i7kKkk6GsNGHlA==",
+ "path": "system.io.pipelines/8.0.0",
+ "hashPath": "system.io.pipelines.8.0.0.nupkg.sha512"
+ },
+ "System.Reactive/6.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rHaWtKDwCi9qJ3ObKo8LHPMuuwv33YbmQi7TcUK1C264V3MFnOr5Im7QgCTdLniztP3GJyeiSg5x8NqYJFqRmg==",
+ "path": "system.reactive/6.0.1",
+ "hashPath": "system.reactive.6.0.1.nupkg.sha512"
+ },
+ "Tmds.DBus.Protocol/0.20.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-2gkt2kuYPhDKd8gtl34jZSJOnn4nRJfFngCDcTZT/uySbK++ua0YQx2418l9Rn1Y4dE5XNq6zG9ZsE5ltLlNNw==",
+ "path": "tmds.dbus.protocol/0.20.0",
+ "hashPath": "tmds.dbus.protocol.0.20.0.nupkg.sha512"
+ }
+ }
+}
\ No newline at end of file
diff --git a/Presence.Desktop/bin/Debug/net8.0/Presence.Desktop.dll b/Presence.Desktop/bin/Debug/net8.0/Presence.Desktop.dll
new file mode 100644
index 0000000..2ca96f3
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/Presence.Desktop.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/Presence.Desktop.pdb b/Presence.Desktop/bin/Debug/net8.0/Presence.Desktop.pdb
new file mode 100644
index 0000000..ae6dc93
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/Presence.Desktop.pdb differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/Presence.Desktop.runtimeconfig.json b/Presence.Desktop/bin/Debug/net8.0/Presence.Desktop.runtimeconfig.json
new file mode 100644
index 0000000..61e5180
--- /dev/null
+++ b/Presence.Desktop/bin/Debug/net8.0/Presence.Desktop.runtimeconfig.json
@@ -0,0 +1,13 @@
+{
+ "runtimeOptions": {
+ "tfm": "net8.0",
+ "framework": {
+ "name": "Microsoft.NETCore.App",
+ "version": "8.0.0"
+ },
+ "configProperties": {
+ "System.Runtime.InteropServices.BuiltInComInterop.IsSupported": true,
+ "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/Presence.Desktop/bin/Debug/net8.0/ReactiveUI.dll b/Presence.Desktop/bin/Debug/net8.0/ReactiveUI.dll
new file mode 100755
index 0000000..ec02680
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/ReactiveUI.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/SkiaSharp.dll b/Presence.Desktop/bin/Debug/net8.0/SkiaSharp.dll
new file mode 100755
index 0000000..6e8e7ca
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/SkiaSharp.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/Splat.dll b/Presence.Desktop/bin/Debug/net8.0/Splat.dll
new file mode 100755
index 0000000..63eb27e
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/Splat.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/System.IO.Pipelines.dll b/Presence.Desktop/bin/Debug/net8.0/System.IO.Pipelines.dll
new file mode 100755
index 0000000..83a1b24
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/System.IO.Pipelines.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/System.Reactive.dll b/Presence.Desktop/bin/Debug/net8.0/System.Reactive.dll
new file mode 100755
index 0000000..d6d2efa
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/System.Reactive.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/Tmds.DBus.Protocol.dll b/Presence.Desktop/bin/Debug/net8.0/Tmds.DBus.Protocol.dll
new file mode 100755
index 0000000..8f42654
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/Tmds.DBus.Protocol.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-arm/native/libHarfBuzzSharp.so b/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-arm/native/libHarfBuzzSharp.so
new file mode 100755
index 0000000..2c6fbe3
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-arm/native/libHarfBuzzSharp.so differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-arm/native/libSkiaSharp.so b/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-arm/native/libSkiaSharp.so
new file mode 100755
index 0000000..e438777
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-arm/native/libSkiaSharp.so differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so b/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so
new file mode 100755
index 0000000..89e71b5
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-arm64/native/libSkiaSharp.so b/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-arm64/native/libSkiaSharp.so
new file mode 100755
index 0000000..f159ff4
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-arm64/native/libSkiaSharp.so differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so b/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so
new file mode 100755
index 0000000..43ea300
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libSkiaSharp.so b/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libSkiaSharp.so
new file mode 100755
index 0000000..6c63070
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libSkiaSharp.so differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-x64/native/libHarfBuzzSharp.so b/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-x64/native/libHarfBuzzSharp.so
new file mode 100755
index 0000000..d8548f3
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-x64/native/libHarfBuzzSharp.so differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-x64/native/libSkiaSharp.so b/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-x64/native/libSkiaSharp.so
new file mode 100755
index 0000000..7501c49
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-x64/native/libSkiaSharp.so differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/runtimes/osx/native/libAvaloniaNative.dylib b/Presence.Desktop/bin/Debug/net8.0/runtimes/osx/native/libAvaloniaNative.dylib
new file mode 100755
index 0000000..b2cd098
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/runtimes/osx/native/libAvaloniaNative.dylib differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/runtimes/osx/native/libHarfBuzzSharp.dylib b/Presence.Desktop/bin/Debug/net8.0/runtimes/osx/native/libHarfBuzzSharp.dylib
new file mode 100755
index 0000000..4006008
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/runtimes/osx/native/libHarfBuzzSharp.dylib differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/runtimes/osx/native/libSkiaSharp.dylib b/Presence.Desktop/bin/Debug/net8.0/runtimes/osx/native/libSkiaSharp.dylib
new file mode 100755
index 0000000..996a7b9
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/runtimes/osx/native/libSkiaSharp.dylib differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/runtimes/win-arm64/native/av_libglesv2.dll b/Presence.Desktop/bin/Debug/net8.0/runtimes/win-arm64/native/av_libglesv2.dll
new file mode 100755
index 0000000..7b5c978
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/runtimes/win-arm64/native/av_libglesv2.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll b/Presence.Desktop/bin/Debug/net8.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll
new file mode 100755
index 0000000..9075de6
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/runtimes/win-arm64/native/libSkiaSharp.dll b/Presence.Desktop/bin/Debug/net8.0/runtimes/win-arm64/native/libSkiaSharp.dll
new file mode 100755
index 0000000..3aaf63f
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/runtimes/win-arm64/native/libSkiaSharp.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/runtimes/win-x64/native/av_libglesv2.dll b/Presence.Desktop/bin/Debug/net8.0/runtimes/win-x64/native/av_libglesv2.dll
new file mode 100755
index 0000000..c327f9e
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/runtimes/win-x64/native/av_libglesv2.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/runtimes/win-x64/native/libHarfBuzzSharp.dll b/Presence.Desktop/bin/Debug/net8.0/runtimes/win-x64/native/libHarfBuzzSharp.dll
new file mode 100755
index 0000000..6e91171
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/runtimes/win-x64/native/libHarfBuzzSharp.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/runtimes/win-x64/native/libSkiaSharp.dll b/Presence.Desktop/bin/Debug/net8.0/runtimes/win-x64/native/libSkiaSharp.dll
new file mode 100755
index 0000000..d00d746
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/runtimes/win-x64/native/libSkiaSharp.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/runtimes/win-x86/native/av_libglesv2.dll b/Presence.Desktop/bin/Debug/net8.0/runtimes/win-x86/native/av_libglesv2.dll
new file mode 100755
index 0000000..e517c3c
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/runtimes/win-x86/native/av_libglesv2.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/runtimes/win-x86/native/libHarfBuzzSharp.dll b/Presence.Desktop/bin/Debug/net8.0/runtimes/win-x86/native/libHarfBuzzSharp.dll
new file mode 100755
index 0000000..c555971
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/runtimes/win-x86/native/libHarfBuzzSharp.dll differ
diff --git a/Presence.Desktop/bin/Debug/net8.0/runtimes/win-x86/native/libSkiaSharp.dll b/Presence.Desktop/bin/Debug/net8.0/runtimes/win-x86/native/libSkiaSharp.dll
new file mode 100755
index 0000000..2414e4c
Binary files /dev/null and b/Presence.Desktop/bin/Debug/net8.0/runtimes/win-x86/native/libSkiaSharp.dll differ
diff --git a/Presence.Desktop/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/Presence.Desktop/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..2217181
--- /dev/null
+++ b/Presence.Desktop/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
diff --git a/Presence.Desktop/obj/Debug/net8.0/Avalonia/Presence.Desktop.dll b/Presence.Desktop/obj/Debug/net8.0/Avalonia/Presence.Desktop.dll
new file mode 100644
index 0000000..2ca96f3
Binary files /dev/null and b/Presence.Desktop/obj/Debug/net8.0/Avalonia/Presence.Desktop.dll differ
diff --git a/Presence.Desktop/obj/Debug/net8.0/Avalonia/Presence.Desktop.pdb b/Presence.Desktop/obj/Debug/net8.0/Avalonia/Presence.Desktop.pdb
new file mode 100644
index 0000000..ae6dc93
Binary files /dev/null and b/Presence.Desktop/obj/Debug/net8.0/Avalonia/Presence.Desktop.pdb differ
diff --git a/Presence.Desktop/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache b/Presence.Desktop/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache
new file mode 100644
index 0000000..d9135ee
--- /dev/null
+++ b/Presence.Desktop/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache
@@ -0,0 +1 @@
+15f2befdcd594ebd13b58232a419e51eeef63891a84ce4128e3145ca606a550a
diff --git a/Presence.Desktop/obj/Debug/net8.0/Avalonia/references b/Presence.Desktop/obj/Debug/net8.0/Avalonia/references
new file mode 100644
index 0000000..d54d8f6
--- /dev/null
+++ b/Presence.Desktop/obj/Debug/net8.0/Avalonia/references
@@ -0,0 +1,197 @@
+/home/gara/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Base.dll
+/home/gara/.nuget/packages/avalonia.controls.colorpicker/11.2.1/lib/net8.0/Avalonia.Controls.ColorPicker.dll
+/home/gara/.nuget/packages/avalonia.controls.datagrid/11.2.1/lib/net8.0/Avalonia.Controls.DataGrid.dll
+/home/gara/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Controls.dll
+/home/gara/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.DesignerSupport.dll
+/home/gara/.nuget/packages/avalonia.desktop/11.2.1/lib/net8.0/Avalonia.Desktop.dll
+/home/gara/.nuget/packages/avalonia.diagnostics/11.2.1/lib/net8.0/Avalonia.Diagnostics.dll
+/home/gara/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Dialogs.dll
+/home/gara/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.dll
+/home/gara/.nuget/packages/avalonia.fonts.inter/11.2.1/lib/net8.0/Avalonia.Fonts.Inter.dll
+/home/gara/.nuget/packages/avalonia.freedesktop/11.2.1/lib/net8.0/Avalonia.FreeDesktop.dll
+/home/gara/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Markup.dll
+/home/gara/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Markup.Xaml.dll
+/home/gara/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Metal.dll
+/home/gara/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.MicroCom.dll
+/home/gara/.nuget/packages/avalonia.native/11.2.1/lib/net8.0/Avalonia.Native.dll
+/home/gara/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.OpenGL.dll
+/home/gara/.nuget/packages/avalonia.reactiveui/11.2.1/lib/net8.0/Avalonia.ReactiveUI.dll
+/home/gara/.nuget/packages/avalonia.remote.protocol/11.2.1/lib/net8.0/Avalonia.Remote.Protocol.dll
+/home/gara/.nuget/packages/avalonia.skia/11.2.1/lib/net8.0/Avalonia.Skia.dll
+/home/gara/.nuget/packages/avalonia.themes.fluent/11.2.1/lib/net8.0/Avalonia.Themes.Fluent.dll
+/home/gara/.nuget/packages/avalonia.themes.simple/11.2.1/lib/net8.0/Avalonia.Themes.Simple.dll
+/home/gara/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Vulkan.dll
+/home/gara/.nuget/packages/avalonia.win32/11.2.1/lib/net8.0/Avalonia.Win32.dll
+/home/gara/.nuget/packages/avalonia.x11/11.2.1/lib/net8.0/Avalonia.X11.dll
+/home/gara/.nuget/packages/dynamicdata/8.4.1/lib/net8.0/DynamicData.dll
+/home/gara/.nuget/packages/harfbuzzsharp/7.3.0.2/lib/net6.0/HarfBuzzSharp.dll
+/home/gara/.nuget/packages/microcom.runtime/0.11.0/lib/net5.0/MicroCom.Runtime.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/Microsoft.CSharp.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/Microsoft.VisualBasic.Core.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/Microsoft.VisualBasic.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/Microsoft.Win32.Primitives.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/Microsoft.Win32.Registry.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/mscorlib.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/netstandard.dll
+/home/gara/.nuget/packages/reactiveui/20.1.1/lib/net8.0/ReactiveUI.dll
+/home/gara/.nuget/packages/skiasharp/2.88.8/lib/net6.0/SkiaSharp.dll
+/home/gara/.nuget/packages/splat/15.1.1/lib/net8.0/Splat.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.AppContext.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Buffers.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Collections.Concurrent.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Collections.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Collections.Immutable.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Collections.NonGeneric.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Collections.Specialized.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ComponentModel.Annotations.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ComponentModel.DataAnnotations.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ComponentModel.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ComponentModel.EventBasedAsync.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ComponentModel.Primitives.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ComponentModel.TypeConverter.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Configuration.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Console.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Core.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Data.Common.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Data.DataSetExtensions.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Data.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.Contracts.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.Debug.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.DiagnosticSource.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.FileVersionInfo.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.Process.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.StackTrace.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.TextWriterTraceListener.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.Tools.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.TraceSource.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Diagnostics.Tracing.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Drawing.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Drawing.Primitives.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Dynamic.Runtime.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Formats.Asn1.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Formats.Tar.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Globalization.Calendars.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Globalization.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Globalization.Extensions.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.Compression.Brotli.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.Compression.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.Compression.FileSystem.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.Compression.ZipFile.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.FileSystem.AccessControl.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.FileSystem.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.FileSystem.DriveInfo.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.FileSystem.Primitives.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.FileSystem.Watcher.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.IsolatedStorage.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.MemoryMappedFiles.dll
+/home/gara/.nuget/packages/system.io.pipelines/8.0.0/lib/net8.0/System.IO.Pipelines.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.Pipes.AccessControl.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.Pipes.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.IO.UnmanagedMemoryStream.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Linq.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Linq.Expressions.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Linq.Parallel.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Linq.Queryable.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Memory.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.Http.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.Http.Json.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.HttpListener.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.Mail.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.NameResolution.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.NetworkInformation.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.Ping.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.Primitives.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.Quic.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.Requests.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.Security.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.ServicePoint.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.Sockets.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.WebClient.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.WebHeaderCollection.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.WebProxy.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.WebSockets.Client.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Net.WebSockets.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Numerics.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Numerics.Vectors.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ObjectModel.dll
+/home/gara/.nuget/packages/system.reactive/6.0.1/lib/net6.0/System.Reactive.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Reflection.DispatchProxy.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Reflection.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Reflection.Emit.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Reflection.Emit.ILGeneration.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Reflection.Emit.Lightweight.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Reflection.Extensions.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Reflection.Metadata.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Reflection.Primitives.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Reflection.TypeExtensions.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Resources.Reader.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Resources.ResourceManager.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Resources.Writer.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.CompilerServices.Unsafe.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.CompilerServices.VisualC.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Extensions.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Handles.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.InteropServices.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.InteropServices.JavaScript.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.InteropServices.RuntimeInformation.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Intrinsics.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Loader.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Numerics.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Serialization.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Serialization.Formatters.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Serialization.Json.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Serialization.Primitives.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Runtime.Serialization.Xml.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.AccessControl.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Claims.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Cryptography.Algorithms.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Cryptography.Cng.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Cryptography.Csp.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Cryptography.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Cryptography.Encoding.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Cryptography.OpenSsl.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Cryptography.Primitives.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Cryptography.X509Certificates.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Principal.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.Principal.Windows.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Security.SecureString.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ServiceModel.Web.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ServiceProcess.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Text.Encoding.CodePages.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Text.Encoding.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Text.Encoding.Extensions.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Text.Encodings.Web.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Text.Json.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Text.RegularExpressions.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.Channels.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.Overlapped.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.Tasks.Dataflow.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.Tasks.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.Tasks.Extensions.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.Tasks.Parallel.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.Thread.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.ThreadPool.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Threading.Timer.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Transactions.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Transactions.Local.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.ValueTuple.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Web.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Web.HttpUtility.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Windows.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Xml.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Xml.Linq.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Xml.ReaderWriter.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Xml.Serialization.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Xml.XDocument.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Xml.XmlDocument.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Xml.XmlSerializer.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Xml.XPath.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/System.Xml.XPath.XDocument.dll
+/home/gara/.nuget/packages/tmds.dbus.protocol/0.20.0/lib/net8.0/Tmds.DBus.Protocol.dll
+/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.11/ref/net8.0/WindowsBase.dll
diff --git a/Presence.Desktop/obj/Debug/net8.0/Avalonia/resources b/Presence.Desktop/obj/Debug/net8.0/Avalonia/resources
new file mode 100644
index 0000000..e9a7746
Binary files /dev/null and b/Presence.Desktop/obj/Debug/net8.0/Avalonia/resources differ
diff --git a/Presence.Desktop/obj/Debug/net8.0/Presence.C94E1B86.Up2Date b/Presence.Desktop/obj/Debug/net8.0/Presence.C94E1B86.Up2Date
new file mode 100644
index 0000000..e69de29
diff --git a/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.AssemblyInfo.cs b/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.AssemblyInfo.cs
new file mode 100644
index 0000000..4934519
--- /dev/null
+++ b/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.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("Presence.Desktop")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+427bb6d1639a554afe63c4c9b999f31f3af7ae76")]
+[assembly: System.Reflection.AssemblyProductAttribute("Presence.Desktop")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Presence.Desktop")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.AssemblyInfoInputs.cache b/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..6963dd6
--- /dev/null
+++ b/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+ae6e219e97a2e1895985d0650b802aceec95cd96cba399cff6364b57cb7f3a93
diff --git a/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.GeneratedMSBuildEditorConfig.editorconfig b/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..28694ed
--- /dev/null
+++ b/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,26 @@
+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 = net8.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 = Presence.Desktop
+build_property.ProjectDir = /home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
+
+[/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/App.axaml]
+build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
+
+[/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/Views/MainWindow.axaml]
+build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
diff --git a/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.assets.cache b/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.assets.cache
new file mode 100644
index 0000000..ca2d580
Binary files /dev/null and b/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.assets.cache differ
diff --git a/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.csproj.AssemblyReference.cache b/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..8fad425
Binary files /dev/null and b/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.csproj.AssemblyReference.cache differ
diff --git a/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.csproj.CoreCompileInputs.cache b/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..548969e
--- /dev/null
+++ b/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+ad0226e00477ef82b79936269033a260c079ca0e61334c2fa472eb7f676734f1
diff --git a/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.csproj.FileListAbsolute.txt b/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..ba7fe24
--- /dev/null
+++ b/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.csproj.FileListAbsolute.txt
@@ -0,0 +1,72 @@
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Presence.Desktop
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Presence.Desktop.deps.json
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Presence.Desktop.runtimeconfig.json
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Presence.Desktop.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Presence.Desktop.pdb
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.Base.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.Controls.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.DesignerSupport.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.Dialogs.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.Markup.Xaml.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.Markup.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.Metal.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.MicroCom.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.OpenGL.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.Vulkan.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.Controls.ColorPicker.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.Controls.DataGrid.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.Desktop.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.Diagnostics.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.Fonts.Inter.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.FreeDesktop.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.Native.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.ReactiveUI.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.Remote.Protocol.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.Skia.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.Themes.Fluent.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.Themes.Simple.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.Win32.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Avalonia.X11.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/DynamicData.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/HarfBuzzSharp.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/MicroCom.Runtime.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/ReactiveUI.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/SkiaSharp.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Splat.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/System.IO.Pipelines.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/System.Reactive.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/Tmds.DBus.Protocol.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/win-arm64/native/av_libglesv2.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/win-x64/native/av_libglesv2.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/win-x86/native/av_libglesv2.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/osx/native/libAvaloniaNative.dylib
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-arm/native/libHarfBuzzSharp.so
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-x64/native/libHarfBuzzSharp.so
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/osx/native/libHarfBuzzSharp.dylib
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/win-x64/native/libHarfBuzzSharp.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/win-x86/native/libHarfBuzzSharp.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-arm/native/libSkiaSharp.so
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-arm64/native/libSkiaSharp.so
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libSkiaSharp.so
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/linux-x64/native/libSkiaSharp.so
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/osx/native/libSkiaSharp.dylib
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/win-arm64/native/libSkiaSharp.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/win-x64/native/libSkiaSharp.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/bin/Debug/net8.0/runtimes/win-x86/native/libSkiaSharp.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.csproj.AssemblyReference.cache
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/obj/Debug/net8.0/Avalonia/resources
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.GeneratedMSBuildEditorConfig.editorconfig
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.AssemblyInfoInputs.cache
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.AssemblyInfo.cs
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.csproj.CoreCompileInputs.cache
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/obj/Debug/net8.0/Avalonia/Presence.Desktop.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/obj/Debug/net8.0/Avalonia/Presence.Desktop.pdb
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/obj/Debug/net8.0/refint/Avalonia/Presence.Desktop.dll
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/obj/Debug/net8.0/Presence.C94E1B86.Up2Date
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.genruntimeconfig.cache
+/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/obj/Debug/net8.0/ref/Presence.Desktop.dll
diff --git a/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.dll b/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.dll
new file mode 100644
index 0000000..4681bc4
Binary files /dev/null and b/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.dll differ
diff --git a/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.genruntimeconfig.cache b/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.genruntimeconfig.cache
new file mode 100644
index 0000000..821d14c
--- /dev/null
+++ b/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.genruntimeconfig.cache
@@ -0,0 +1 @@
+be20363c74f23ae794fc0c198cce5d75dc9dee71954abbd6a521762e33422600
diff --git a/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.pdb b/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.pdb
new file mode 100644
index 0000000..301905a
Binary files /dev/null and b/Presence.Desktop/obj/Debug/net8.0/Presence.Desktop.pdb differ
diff --git a/Presence.Desktop/obj/Debug/net8.0/apphost b/Presence.Desktop/obj/Debug/net8.0/apphost
new file mode 100755
index 0000000..1d58ae8
Binary files /dev/null and b/Presence.Desktop/obj/Debug/net8.0/apphost differ
diff --git a/Presence.Desktop/obj/Debug/net8.0/ref/Presence.Desktop.dll b/Presence.Desktop/obj/Debug/net8.0/ref/Presence.Desktop.dll
new file mode 100644
index 0000000..f474996
Binary files /dev/null and b/Presence.Desktop/obj/Debug/net8.0/ref/Presence.Desktop.dll differ
diff --git a/Presence.Desktop/obj/Debug/net8.0/refint/Avalonia/Presence.Desktop.dll b/Presence.Desktop/obj/Debug/net8.0/refint/Avalonia/Presence.Desktop.dll
new file mode 100644
index 0000000..f474996
Binary files /dev/null and b/Presence.Desktop/obj/Debug/net8.0/refint/Avalonia/Presence.Desktop.dll differ
diff --git a/Presence.Desktop/obj/Debug/net8.0/refint/Presence.Desktop.dll b/Presence.Desktop/obj/Debug/net8.0/refint/Presence.Desktop.dll
new file mode 100644
index 0000000..b201652
Binary files /dev/null and b/Presence.Desktop/obj/Debug/net8.0/refint/Presence.Desktop.dll differ
diff --git a/Presence.Desktop/obj/Presence.Desktop.csproj.nuget.dgspec.json b/Presence.Desktop/obj/Presence.Desktop.csproj.nuget.dgspec.json
new file mode 100644
index 0000000..d6ca39f
--- /dev/null
+++ b/Presence.Desktop/obj/Presence.Desktop.csproj.nuget.dgspec.json
@@ -0,0 +1,92 @@
+{
+ "format": 1,
+ "restore": {
+ "/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/Presence.Desktop.csproj": {}
+ },
+ "projects": {
+ "/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/Presence.Desktop.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/Presence.Desktop.csproj",
+ "projectName": "Presence.Desktop",
+ "projectPath": "/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/Presence.Desktop.csproj",
+ "packagesPath": "/home/gara/.nuget/packages/",
+ "outputPath": "/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/obj/",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "/home/gara/.nuget/NuGet/NuGet.Config"
+ ],
+ "originalTargetFrameworks": [
+ "net8.0"
+ ],
+ "sources": {
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net8.0": {
+ "targetAlias": "net8.0",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "direct"
+ }
+ },
+ "frameworks": {
+ "net8.0": {
+ "targetAlias": "net8.0",
+ "dependencies": {
+ "Avalonia": {
+ "target": "Package",
+ "version": "[11.2.1, )"
+ },
+ "Avalonia.Desktop": {
+ "target": "Package",
+ "version": "[11.2.1, )"
+ },
+ "Avalonia.Diagnostics": {
+ "target": "Package",
+ "version": "[11.2.1, )"
+ },
+ "Avalonia.Fonts.Inter": {
+ "target": "Package",
+ "version": "[11.2.1, )"
+ },
+ "Avalonia.ReactiveUI": {
+ "target": "Package",
+ "version": "[11.2.1, )"
+ },
+ "Avalonia.Themes.Fluent": {
+ "target": "Package",
+ "version": "[11.2.1, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.404/PortableRuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/Presence.Desktop/obj/Presence.Desktop.csproj.nuget.g.props b/Presence.Desktop/obj/Presence.Desktop.csproj.nuget.g.props
new file mode 100644
index 0000000..4aa5c30
--- /dev/null
+++ b/Presence.Desktop/obj/Presence.Desktop.csproj.nuget.g.props
@@ -0,0 +1,24 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ /home/gara/.nuget/packages/
+ /home/gara/.nuget/packages/
+ PackageReference
+ 6.11.1
+
+
+
+
+
+
+
+
+
+
+ /home/gara/.nuget/packages/avalonia.buildservices/0.0.29
+ /home/gara/.nuget/packages/avalonia/11.2.1
+
+
\ No newline at end of file
diff --git a/Presence.Desktop/obj/Presence.Desktop.csproj.nuget.g.targets b/Presence.Desktop/obj/Presence.Desktop.csproj.nuget.g.targets
new file mode 100644
index 0000000..c671c75
--- /dev/null
+++ b/Presence.Desktop/obj/Presence.Desktop.csproj.nuget.g.targets
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Presence.Desktop/obj/project.assets.json b/Presence.Desktop/obj/project.assets.json
new file mode 100644
index 0000000..6d3e6dc
--- /dev/null
+++ b/Presence.Desktop/obj/project.assets.json
@@ -0,0 +1,1838 @@
+{
+ "version": 3,
+ "targets": {
+ "net8.0": {
+ "Avalonia/11.2.1": {
+ "type": "package",
+ "dependencies": {
+ "Avalonia.BuildServices": "0.0.29",
+ "Avalonia.Remote.Protocol": "11.2.1",
+ "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.22045.20230930": {
+ "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/0.0.29": {
+ "type": "package",
+ "build": {
+ "buildTransitive/Avalonia.BuildServices.targets": {}
+ }
+ },
+ "Avalonia.Controls.ColorPicker/11.2.1": {
+ "type": "package",
+ "dependencies": {
+ "Avalonia": "11.2.1",
+ "Avalonia.Remote.Protocol": "11.2.1"
+ },
+ "compile": {
+ "lib/net8.0/Avalonia.Controls.ColorPicker.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Avalonia.Controls.ColorPicker.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Avalonia.Controls.DataGrid/11.2.1": {
+ "type": "package",
+ "dependencies": {
+ "Avalonia": "11.2.1",
+ "Avalonia.Remote.Protocol": "11.2.1"
+ },
+ "compile": {
+ "lib/net8.0/Avalonia.Controls.DataGrid.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Avalonia.Controls.DataGrid.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Avalonia.Desktop/11.2.1": {
+ "type": "package",
+ "dependencies": {
+ "Avalonia": "11.2.1",
+ "Avalonia.Native": "11.2.1",
+ "Avalonia.Skia": "11.2.1",
+ "Avalonia.Win32": "11.2.1",
+ "Avalonia.X11": "11.2.1"
+ },
+ "compile": {
+ "lib/net8.0/Avalonia.Desktop.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Avalonia.Desktop.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Avalonia.Diagnostics/11.2.1": {
+ "type": "package",
+ "dependencies": {
+ "Avalonia": "11.2.1",
+ "Avalonia.Controls.ColorPicker": "11.2.1",
+ "Avalonia.Controls.DataGrid": "11.2.1",
+ "Avalonia.Themes.Simple": "11.2.1"
+ },
+ "compile": {
+ "lib/net8.0/Avalonia.Diagnostics.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Avalonia.Diagnostics.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Avalonia.Fonts.Inter/11.2.1": {
+ "type": "package",
+ "dependencies": {
+ "Avalonia": "11.2.1"
+ },
+ "compile": {
+ "lib/net8.0/Avalonia.Fonts.Inter.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Avalonia.Fonts.Inter.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Avalonia.FreeDesktop/11.2.1": {
+ "type": "package",
+ "dependencies": {
+ "Avalonia": "11.2.1",
+ "Tmds.DBus.Protocol": "0.20.0"
+ },
+ "compile": {
+ "lib/net8.0/Avalonia.FreeDesktop.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Avalonia.FreeDesktop.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Avalonia.Native/11.2.1": {
+ "type": "package",
+ "dependencies": {
+ "Avalonia": "11.2.1"
+ },
+ "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.ReactiveUI/11.2.1": {
+ "type": "package",
+ "dependencies": {
+ "Avalonia": "11.2.1",
+ "ReactiveUI": "20.1.1",
+ "System.Reactive": "6.0.1"
+ },
+ "compile": {
+ "lib/net8.0/Avalonia.ReactiveUI.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Avalonia.ReactiveUI.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Avalonia.Remote.Protocol/11.2.1": {
+ "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.2.1": {
+ "type": "package",
+ "dependencies": {
+ "Avalonia": "11.2.1",
+ "HarfBuzzSharp": "7.3.0.2",
+ "HarfBuzzSharp.NativeAssets.Linux": "7.3.0.2",
+ "HarfBuzzSharp.NativeAssets.WebAssembly": "7.3.0.3-preview.2.2",
+ "SkiaSharp": "2.88.8",
+ "SkiaSharp.NativeAssets.Linux": "2.88.8",
+ "SkiaSharp.NativeAssets.WebAssembly": "2.88.8"
+ },
+ "compile": {
+ "lib/net8.0/Avalonia.Skia.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Avalonia.Skia.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Avalonia.Themes.Fluent/11.2.1": {
+ "type": "package",
+ "dependencies": {
+ "Avalonia": "11.2.1"
+ },
+ "compile": {
+ "lib/net8.0/Avalonia.Themes.Fluent.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Avalonia.Themes.Fluent.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Avalonia.Themes.Simple/11.2.1": {
+ "type": "package",
+ "dependencies": {
+ "Avalonia": "11.2.1"
+ },
+ "compile": {
+ "lib/net8.0/Avalonia.Themes.Simple.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Avalonia.Themes.Simple.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Avalonia.Win32/11.2.1": {
+ "type": "package",
+ "dependencies": {
+ "Avalonia": "11.2.1",
+ "Avalonia.Angle.Windows.Natives": "2.1.22045.20230930"
+ },
+ "compile": {
+ "lib/net8.0/Avalonia.Win32.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Avalonia.Win32.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Avalonia.X11/11.2.1": {
+ "type": "package",
+ "dependencies": {
+ "Avalonia": "11.2.1",
+ "Avalonia.FreeDesktop": "11.2.1",
+ "Avalonia.Skia": "11.2.1"
+ },
+ "compile": {
+ "lib/net8.0/Avalonia.X11.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Avalonia.X11.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "DynamicData/8.4.1": {
+ "type": "package",
+ "dependencies": {
+ "System.Reactive": "6.0.0"
+ },
+ "compile": {
+ "lib/net8.0/DynamicData.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/DynamicData.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "HarfBuzzSharp/7.3.0.2": {
+ "type": "package",
+ "dependencies": {
+ "HarfBuzzSharp.NativeAssets.Win32": "7.3.0.2",
+ "HarfBuzzSharp.NativeAssets.macOS": "7.3.0.2"
+ },
+ "compile": {
+ "lib/net6.0/HarfBuzzSharp.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/HarfBuzzSharp.dll": {
+ "related": ".pdb;.xml"
+ }
+ }
+ },
+ "HarfBuzzSharp.NativeAssets.Linux/7.3.0.2": {
+ "type": "package",
+ "dependencies": {
+ "HarfBuzzSharp": "7.3.0.2"
+ },
+ "compile": {
+ "lib/net6.0/_._": {}
+ },
+ "runtime": {
+ "lib/net6.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-musl-x64/native/libHarfBuzzSharp.so": {
+ "assetType": "native",
+ "rid": "linux-musl-x64"
+ },
+ "runtimes/linux-x64/native/libHarfBuzzSharp.so": {
+ "assetType": "native",
+ "rid": "linux-x64"
+ }
+ }
+ },
+ "HarfBuzzSharp.NativeAssets.macOS/7.3.0.2": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/_._": {}
+ },
+ "runtime": {
+ "lib/net6.0/_._": {}
+ },
+ "runtimeTargets": {
+ "runtimes/osx/native/libHarfBuzzSharp.dylib": {
+ "assetType": "native",
+ "rid": "osx"
+ }
+ }
+ },
+ "HarfBuzzSharp.NativeAssets.WebAssembly/7.3.0.3-preview.2.2": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard1.0/_._": {}
+ },
+ "build": {
+ "buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.props": {},
+ "buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.targets": {}
+ }
+ },
+ "HarfBuzzSharp.NativeAssets.Win32/7.3.0.2": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/_._": {}
+ },
+ "runtime": {
+ "lib/net6.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": {}
+ }
+ },
+ "ReactiveUI/20.1.1": {
+ "type": "package",
+ "dependencies": {
+ "DynamicData": "8.4.1",
+ "Splat": "15.1.1",
+ "System.ComponentModel.Annotations": "5.0.0"
+ },
+ "compile": {
+ "lib/net8.0/ReactiveUI.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/ReactiveUI.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "SkiaSharp/2.88.8": {
+ "type": "package",
+ "dependencies": {
+ "SkiaSharp.NativeAssets.Win32": "2.88.8",
+ "SkiaSharp.NativeAssets.macOS": "2.88.8"
+ },
+ "compile": {
+ "lib/net6.0/SkiaSharp.dll": {
+ "related": ".pdb;.xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/SkiaSharp.dll": {
+ "related": ".pdb;.xml"
+ }
+ }
+ },
+ "SkiaSharp.NativeAssets.Linux/2.88.8": {
+ "type": "package",
+ "dependencies": {
+ "SkiaSharp": "2.88.8"
+ },
+ "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.8": {
+ "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.8": {
+ "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.8": {
+ "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"
+ }
+ }
+ },
+ "Splat/15.1.1": {
+ "type": "package",
+ "compile": {
+ "lib/net8.0/Splat.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/Splat.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.ComponentModel.Annotations/5.0.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "System.IO.Pipelines/8.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net8.0/System.IO.Pipelines.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net8.0/System.IO.Pipelines.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "System.Reactive/6.0.1": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/System.Reactive.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Reactive.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Tmds.DBus.Protocol/0.20.0": {
+ "type": "package",
+ "dependencies": {
+ "System.IO.Pipelines": "8.0.0"
+ },
+ "compile": {
+ "lib/net8.0/Tmds.DBus.Protocol.dll": {}
+ },
+ "runtime": {
+ "lib/net8.0/Tmds.DBus.Protocol.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Avalonia/11.2.1": {
+ "sha512": "AyYhIN2A7bRwxp6BFHrIbXAHUFPXegzSMYwDrUnw1BzZs9ctwYTiCPCM5wbE2PXsEBwFDVJ/a2YHTOp56fSYAw==",
+ "type": "package",
+ "path": "avalonia/11.2.1",
+ "hasTools": true,
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "analyzers/dotnet/cs/Avalonia.Analyzers.dll",
+ "analyzers/dotnet/cs/Avalonia.Generators.dll",
+ "avalonia.11.2.1.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.22045.20230930": {
+ "sha512": "Bo3qOhKC1b84BIhiogndMdAzB3UrrESKK7hS769f5HWeoMw/pcd42US5KFYW2JJ4ZSTrXnP8mXwLTMzh+S+9Lg==",
+ "type": "package",
+ "path": "avalonia.angle.windows.natives/2.1.22045.20230930",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE",
+ "avalonia.angle.windows.natives.2.1.22045.20230930.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/0.0.29": {
+ "sha512": "U4eJLQdoDNHXtEba7MZUCwrBErBTxFp6sUewXBOdAhU0Kwzwaa/EKFcYm8kpcysjzKtfB4S0S9n0uxKZFz/ikw==",
+ "type": "package",
+ "path": "avalonia.buildservices/0.0.29",
+ "hasTools": true,
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "avalonia.buildservices.0.0.29.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.Controls.ColorPicker/11.2.1": {
+ "sha512": "t8ViFwfIe6jCO5HvzPWOtwGNSMHYNc8XakWp76Rgy1MOiht8tHKry9cU7k40AHEYU6wVjiYBkl0c8zYZyyha1g==",
+ "type": "package",
+ "path": "avalonia.controls.colorpicker/11.2.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "avalonia.controls.colorpicker.11.2.1.nupkg.sha512",
+ "avalonia.controls.colorpicker.nuspec",
+ "lib/net6.0/Avalonia.Controls.ColorPicker.dll",
+ "lib/net6.0/Avalonia.Controls.ColorPicker.xml",
+ "lib/net8.0/Avalonia.Controls.ColorPicker.dll",
+ "lib/net8.0/Avalonia.Controls.ColorPicker.xml",
+ "lib/netstandard2.0/Avalonia.Controls.ColorPicker.dll",
+ "lib/netstandard2.0/Avalonia.Controls.ColorPicker.xml"
+ ]
+ },
+ "Avalonia.Controls.DataGrid/11.2.1": {
+ "sha512": "UaNQrY86GBqMZqZ/N/5/wLzr4Emh2N405VZI/IgH0I8BoMrjnosNr+++D7BOcahMNce0lUZLOsFyy+OY02PUAw==",
+ "type": "package",
+ "path": "avalonia.controls.datagrid/11.2.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "avalonia.controls.datagrid.11.2.1.nupkg.sha512",
+ "avalonia.controls.datagrid.nuspec",
+ "lib/net6.0/Avalonia.Controls.DataGrid.dll",
+ "lib/net6.0/Avalonia.Controls.DataGrid.xml",
+ "lib/net8.0/Avalonia.Controls.DataGrid.dll",
+ "lib/net8.0/Avalonia.Controls.DataGrid.xml",
+ "lib/netstandard2.0/Avalonia.Controls.DataGrid.dll",
+ "lib/netstandard2.0/Avalonia.Controls.DataGrid.xml"
+ ]
+ },
+ "Avalonia.Desktop/11.2.1": {
+ "sha512": "q6alzkTgFjukOrbiiFlh0mkhkxGRMRTMS8zdNEixIl9apPnD2ln9sjAC4NR2agNz5+HmZVfXYu6kYK12rMmKwA==",
+ "type": "package",
+ "path": "avalonia.desktop/11.2.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "avalonia.desktop.11.2.1.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.Diagnostics/11.2.1": {
+ "sha512": "axUWa4sZoe9HgUXPEDhbZXijL8ex+lwQGVwNQLmD299O7pCqKcYThjyG/eCETO/boqjKTt3H85LHEPx94BP9dg==",
+ "type": "package",
+ "path": "avalonia.diagnostics/11.2.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "avalonia.diagnostics.11.2.1.nupkg.sha512",
+ "avalonia.diagnostics.nuspec",
+ "lib/net6.0/Avalonia.Diagnostics.dll",
+ "lib/net6.0/Avalonia.Diagnostics.xml",
+ "lib/net8.0/Avalonia.Diagnostics.dll",
+ "lib/net8.0/Avalonia.Diagnostics.xml",
+ "lib/netstandard2.0/Avalonia.Diagnostics.dll",
+ "lib/netstandard2.0/Avalonia.Diagnostics.xml"
+ ]
+ },
+ "Avalonia.Fonts.Inter/11.2.1": {
+ "sha512": "egEFQWLHuSzyWKolPy9u4qPor270N2GL/4CI33eBxr09chrUVQsOlxQ6zeWPiBLzzgv/lCrZhOMCAIWsOz3tNg==",
+ "type": "package",
+ "path": "avalonia.fonts.inter/11.2.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "avalonia.fonts.inter.11.2.1.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.2.1": {
+ "sha512": "ChKdPjQ2uBJUN0y+/RsdoETzXRn/q1eWFBDwprDy+Zi/AVkUfRk06hKbsb/U+Q3zO65CMEprRcMPbys0EkK2vg==",
+ "type": "package",
+ "path": "avalonia.freedesktop/11.2.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "avalonia.freedesktop.11.2.1.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.2.1": {
+ "sha512": "1cVasDUIkqfAYLkaLFDx+VDZymer2v643OYD6Jd6nzP20TNTqN2LfFOpxXCTYMrWc9Dk5AoVJJCrz3wRE5kooQ==",
+ "type": "package",
+ "path": "avalonia.native/11.2.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "avalonia.native.11.2.1.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.ReactiveUI/11.2.1": {
+ "sha512": "SgjmPrkpAyxnG9z9Ms1Nj53xTvD2W00GQ0w+WGMrt3Jm8UNHha8b0LK1Gx9WT4Do/ggH51j76RfRdXchbardWw==",
+ "type": "package",
+ "path": "avalonia.reactiveui/11.2.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "avalonia.reactiveui.11.2.1.nupkg.sha512",
+ "avalonia.reactiveui.nuspec",
+ "lib/net6.0/Avalonia.ReactiveUI.dll",
+ "lib/net6.0/Avalonia.ReactiveUI.xml",
+ "lib/net8.0/Avalonia.ReactiveUI.dll",
+ "lib/net8.0/Avalonia.ReactiveUI.xml",
+ "lib/netstandard2.0/Avalonia.ReactiveUI.dll",
+ "lib/netstandard2.0/Avalonia.ReactiveUI.xml"
+ ]
+ },
+ "Avalonia.Remote.Protocol/11.2.1": {
+ "sha512": "aqEialxjir7DO/dOFf7BGN/yQ4/adSC5UuVfqBr/RUHOENSH6CqoHj8kmtmJxnuz7ESQFSB2+h1kLVnk5csiDw==",
+ "type": "package",
+ "path": "avalonia.remote.protocol/11.2.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "avalonia.remote.protocol.11.2.1.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.2.1": {
+ "sha512": "FkqiXWT1hN0s5MIx5IKDGZaqewQENikQh6aBQyApiZVu5koa8H8RW1yfb2cFK3M4IVIyhqwl8ZirkXsS18lf/Q==",
+ "type": "package",
+ "path": "avalonia.skia/11.2.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "avalonia.skia.11.2.1.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.2.1": {
+ "sha512": "9YUzDmZO5oDppsoA3Igeu/v1cVi4xu8jdO6ZrBzXJXJ9mma/htK0Ub9+V1lRoCW/O70nQfBX+ZDpm0dca1PVgw==",
+ "type": "package",
+ "path": "avalonia.themes.fluent/11.2.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "avalonia.themes.fluent.11.2.1.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.Themes.Simple/11.2.1": {
+ "sha512": "ToiYv8hhJ5gcEtD54VZv7NpBFiqGasj4bjFh/AtjXApiYOp8r3orFPX8Nsc3kHcUCvNNjbjAy9dmBG65nYePkw==",
+ "type": "package",
+ "path": "avalonia.themes.simple/11.2.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "avalonia.themes.simple.11.2.1.nupkg.sha512",
+ "avalonia.themes.simple.nuspec",
+ "lib/net6.0/Avalonia.Themes.Simple.dll",
+ "lib/net6.0/Avalonia.Themes.Simple.xml",
+ "lib/net8.0/Avalonia.Themes.Simple.dll",
+ "lib/net8.0/Avalonia.Themes.Simple.xml",
+ "lib/netstandard2.0/Avalonia.Themes.Simple.dll",
+ "lib/netstandard2.0/Avalonia.Themes.Simple.xml"
+ ]
+ },
+ "Avalonia.Win32/11.2.1": {
+ "sha512": "7Gfw7S1PoINaCXaIV1rh7zo82IhsqhR7a0PAt281cBrfDkJiNU0DYgW2RZxKl3oVFxtfbxJZbdP7hSVmHvoDfw==",
+ "type": "package",
+ "path": "avalonia.win32/11.2.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "avalonia.win32.11.2.1.nupkg.sha512",
+ "avalonia.win32.nuspec",
+ "lib/net6.0/Avalonia.Win32.dll",
+ "lib/net6.0/Avalonia.Win32.xml",
+ "lib/net8.0/Avalonia.Win32.dll",
+ "lib/net8.0/Avalonia.Win32.xml",
+ "lib/netstandard2.0/Avalonia.Win32.dll",
+ "lib/netstandard2.0/Avalonia.Win32.xml"
+ ]
+ },
+ "Avalonia.X11/11.2.1": {
+ "sha512": "h2aCpyLmxGkldPK7cbncEgyobrJ5En7gQtrwVARLmN32Rw6dHut3jyF3P8at2DmWxRuKwZVXgWBSSI62hINgrQ==",
+ "type": "package",
+ "path": "avalonia.x11/11.2.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "avalonia.x11.11.2.1.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"
+ ]
+ },
+ "DynamicData/8.4.1": {
+ "sha512": "Mn1+fU/jqxgONEJq8KLQPGWEi7g/hUVTbjZyn4QM0sWWDAVOHPO9WjXWORSykwdfg/6S3GM15qsfz+2EvO+QAQ==",
+ "type": "package",
+ "path": "dynamicdata/8.4.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE/LICENSE",
+ "README.md",
+ "dynamicdata.8.4.1.nupkg.sha512",
+ "dynamicdata.nuspec",
+ "lib/net462/DynamicData.dll",
+ "lib/net462/DynamicData.xml",
+ "lib/net6.0/DynamicData.dll",
+ "lib/net6.0/DynamicData.xml",
+ "lib/net7.0/DynamicData.dll",
+ "lib/net7.0/DynamicData.xml",
+ "lib/net8.0/DynamicData.dll",
+ "lib/net8.0/DynamicData.xml",
+ "lib/netstandard2.0/DynamicData.dll",
+ "lib/netstandard2.0/DynamicData.xml",
+ "logo.png"
+ ]
+ },
+ "HarfBuzzSharp/7.3.0.2": {
+ "sha512": "0tCd6HyCmNsX/DniCp2b00fo0xPbdNwKOs9BxxyT8oOOuMlWjcSFwzONKyeckCKVBFEsbSmsAHPDTqxoSDwZMg==",
+ "type": "package",
+ "path": "harfbuzzsharp/7.3.0.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.txt",
+ "THIRD-PARTY-NOTICES.txt",
+ "harfbuzzsharp.7.3.0.2.nupkg.sha512",
+ "harfbuzzsharp.nuspec",
+ "lib/monoandroid1.0/HarfBuzzSharp.dll",
+ "lib/monoandroid1.0/HarfBuzzSharp.pdb",
+ "lib/monoandroid1.0/HarfBuzzSharp.xml",
+ "lib/net462/HarfBuzzSharp.dll",
+ "lib/net462/HarfBuzzSharp.pdb",
+ "lib/net462/HarfBuzzSharp.xml",
+ "lib/net6.0-android30.0/HarfBuzzSharp.dll",
+ "lib/net6.0-android30.0/HarfBuzzSharp.pdb",
+ "lib/net6.0-android30.0/HarfBuzzSharp.xml",
+ "lib/net6.0-ios13.6/HarfBuzzSharp.dll",
+ "lib/net6.0-ios13.6/HarfBuzzSharp.pdb",
+ "lib/net6.0-ios13.6/HarfBuzzSharp.xml",
+ "lib/net6.0-maccatalyst13.5/HarfBuzzSharp.dll",
+ "lib/net6.0-maccatalyst13.5/HarfBuzzSharp.pdb",
+ "lib/net6.0-maccatalyst13.5/HarfBuzzSharp.xml",
+ "lib/net6.0-macos10.15/HarfBuzzSharp.dll",
+ "lib/net6.0-macos10.15/HarfBuzzSharp.pdb",
+ "lib/net6.0-macos10.15/HarfBuzzSharp.xml",
+ "lib/net6.0-tvos13.4/HarfBuzzSharp.dll",
+ "lib/net6.0-tvos13.4/HarfBuzzSharp.pdb",
+ "lib/net6.0-tvos13.4/HarfBuzzSharp.xml",
+ "lib/net6.0/HarfBuzzSharp.dll",
+ "lib/net6.0/HarfBuzzSharp.pdb",
+ "lib/net6.0/HarfBuzzSharp.xml",
+ "lib/netcoreapp3.1/HarfBuzzSharp.dll",
+ "lib/netcoreapp3.1/HarfBuzzSharp.pdb",
+ "lib/netcoreapp3.1/HarfBuzzSharp.xml",
+ "lib/netstandard1.3/HarfBuzzSharp.dll",
+ "lib/netstandard1.3/HarfBuzzSharp.pdb",
+ "lib/netstandard1.3/HarfBuzzSharp.xml",
+ "lib/netstandard2.0/HarfBuzzSharp.dll",
+ "lib/netstandard2.0/HarfBuzzSharp.pdb",
+ "lib/netstandard2.0/HarfBuzzSharp.xml",
+ "lib/netstandard2.1/HarfBuzzSharp.dll",
+ "lib/netstandard2.1/HarfBuzzSharp.pdb",
+ "lib/netstandard2.1/HarfBuzzSharp.xml",
+ "lib/tizen40/HarfBuzzSharp.dll",
+ "lib/tizen40/HarfBuzzSharp.pdb",
+ "lib/tizen40/HarfBuzzSharp.xml",
+ "lib/uap10.0.10240/HarfBuzzSharp.dll",
+ "lib/uap10.0.10240/HarfBuzzSharp.pdb",
+ "lib/uap10.0.10240/HarfBuzzSharp.xml",
+ "lib/uap10.0.16299/HarfBuzzSharp.dll",
+ "lib/uap10.0.16299/HarfBuzzSharp.pdb",
+ "lib/uap10.0.16299/HarfBuzzSharp.xml",
+ "lib/xamarinios1.0/HarfBuzzSharp.dll",
+ "lib/xamarinios1.0/HarfBuzzSharp.pdb",
+ "lib/xamarinios1.0/HarfBuzzSharp.xml",
+ "lib/xamarinmac2.0/HarfBuzzSharp.dll",
+ "lib/xamarinmac2.0/HarfBuzzSharp.pdb",
+ "lib/xamarinmac2.0/HarfBuzzSharp.xml",
+ "lib/xamarintvos1.0/HarfBuzzSharp.dll",
+ "lib/xamarintvos1.0/HarfBuzzSharp.pdb",
+ "lib/xamarintvos1.0/HarfBuzzSharp.xml",
+ "lib/xamarinwatchos1.0/HarfBuzzSharp.dll",
+ "lib/xamarinwatchos1.0/HarfBuzzSharp.pdb",
+ "lib/xamarinwatchos1.0/HarfBuzzSharp.xml"
+ ]
+ },
+ "HarfBuzzSharp.NativeAssets.Linux/7.3.0.2": {
+ "sha512": "aKa5J1RqjXKAtdcZJp5wjC78klfBIzJHM6CneN76lFmQ9LLRJA9Oa0TkIDaV8lVLDKMAy5fCKHXFlXUK1YfL/g==",
+ "type": "package",
+ "path": "harfbuzzsharp.nativeassets.linux/7.3.0.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.txt",
+ "THIRD-PARTY-NOTICES.txt",
+ "build/net462/HarfBuzzSharp.NativeAssets.Linux.targets",
+ "buildTransitive/net462/HarfBuzzSharp.NativeAssets.Linux.targets",
+ "harfbuzzsharp.nativeassets.linux.7.3.0.2.nupkg.sha512",
+ "harfbuzzsharp.nativeassets.linux.nuspec",
+ "lib/net462/_._",
+ "lib/net6.0/_._",
+ "lib/netcoreapp3.1/_._",
+ "lib/netstandard1.3/_._",
+ "runtimes/linux-arm/native/libHarfBuzzSharp.so",
+ "runtimes/linux-arm64/native/libHarfBuzzSharp.so",
+ "runtimes/linux-musl-x64/native/libHarfBuzzSharp.so",
+ "runtimes/linux-x64/native/libHarfBuzzSharp.so"
+ ]
+ },
+ "HarfBuzzSharp.NativeAssets.macOS/7.3.0.2": {
+ "sha512": "nycYH/WLJ6ogm+I+QSFCdPJsdxSb5GANWYbQyp1vsd/KjXN56RVUJWPhbgP2GKb/Y7mrsHM7EProqVXlO/EMsA==",
+ "type": "package",
+ "path": "harfbuzzsharp.nativeassets.macos/7.3.0.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.txt",
+ "THIRD-PARTY-NOTICES.txt",
+ "build/net462/HarfBuzzSharp.NativeAssets.macOS.targets",
+ "build/net6.0-macos10.15/HarfBuzzSharp.NativeAssets.macOS.targets",
+ "build/xamarinmac2.0/HarfBuzzSharp.NativeAssets.macOS.targets",
+ "buildTransitive/net462/HarfBuzzSharp.NativeAssets.macOS.targets",
+ "buildTransitive/net6.0-macos10.15/HarfBuzzSharp.NativeAssets.macOS.targets",
+ "buildTransitive/xamarinmac2.0/HarfBuzzSharp.NativeAssets.macOS.targets",
+ "harfbuzzsharp.nativeassets.macos.7.3.0.2.nupkg.sha512",
+ "harfbuzzsharp.nativeassets.macos.nuspec",
+ "lib/net462/_._",
+ "lib/net6.0-macos10.15/_._",
+ "lib/net6.0/_._",
+ "lib/netcoreapp3.1/_._",
+ "lib/netstandard1.3/_._",
+ "lib/xamarinmac2.0/_._",
+ "runtimes/osx/native/libHarfBuzzSharp.dylib"
+ ]
+ },
+ "HarfBuzzSharp.NativeAssets.WebAssembly/7.3.0.3-preview.2.2": {
+ "sha512": "Dc+dolrhmkpqwT25NfNEEgceW0//KRR2WIOvxlyIIHIIMBCn0FfUeJX5RhFll8kyaZwF8tuKsxRJtQG/rzSBog==",
+ "type": "package",
+ "path": "harfbuzzsharp.nativeassets.webassembly/7.3.0.3-preview.2.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.txt",
+ "THIRD-PARTY-NOTICES.txt",
+ "build/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.props",
+ "build/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.targets",
+ "build/netstandard1.0/libHarfBuzzSharp.a/2.0.23/libHarfBuzzSharp.a",
+ "build/netstandard1.0/libHarfBuzzSharp.a/2.0.6/libHarfBuzzSharp.a",
+ "build/netstandard1.0/libHarfBuzzSharp.a/3.1.12/mt,simd/libHarfBuzzSharp.a",
+ "build/netstandard1.0/libHarfBuzzSharp.a/3.1.12/mt/libHarfBuzzSharp.a",
+ "build/netstandard1.0/libHarfBuzzSharp.a/3.1.12/simd/libHarfBuzzSharp.a",
+ "build/netstandard1.0/libHarfBuzzSharp.a/3.1.12/st/libHarfBuzzSharp.a",
+ "build/netstandard1.0/libHarfBuzzSharp.a/3.1.34/mt/libHarfBuzzSharp.a",
+ "build/netstandard1.0/libHarfBuzzSharp.a/3.1.34/simd,mt/libHarfBuzzSharp.a",
+ "build/netstandard1.0/libHarfBuzzSharp.a/3.1.34/simd,st/libHarfBuzzSharp.a",
+ "build/netstandard1.0/libHarfBuzzSharp.a/3.1.34/st/libHarfBuzzSharp.a",
+ "build/netstandard1.0/libHarfBuzzSharp.a/3.1.56/mt/libHarfBuzzSharp.a",
+ "build/netstandard1.0/libHarfBuzzSharp.a/3.1.56/simd,mt/libHarfBuzzSharp.a",
+ "build/netstandard1.0/libHarfBuzzSharp.a/3.1.56/simd,st/libHarfBuzzSharp.a",
+ "build/netstandard1.0/libHarfBuzzSharp.a/3.1.56/st/libHarfBuzzSharp.a",
+ "build/netstandard1.0/libHarfBuzzSharp.a/3.1.7/libHarfBuzzSharp.a",
+ "buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.props",
+ "buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.targets",
+ "harfbuzzsharp.nativeassets.webassembly.7.3.0.3-preview.2.2.nupkg.sha512",
+ "harfbuzzsharp.nativeassets.webassembly.nuspec",
+ "lib/netstandard1.0/_._"
+ ]
+ },
+ "HarfBuzzSharp.NativeAssets.Win32/7.3.0.2": {
+ "sha512": "DpF9JBzwws2dupOLnjME65hxQWWbN/GD40AoTkwB4S05WANvxo3n81AnQJKxWDCnrWfWhLPB36OF27TvEqzb/A==",
+ "type": "package",
+ "path": "harfbuzzsharp.nativeassets.win32/7.3.0.2",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.txt",
+ "THIRD-PARTY-NOTICES.txt",
+ "build/net462/HarfBuzzSharp.NativeAssets.Win32.targets",
+ "buildTransitive/net462/HarfBuzzSharp.NativeAssets.Win32.targets",
+ "harfbuzzsharp.nativeassets.win32.7.3.0.2.nupkg.sha512",
+ "harfbuzzsharp.nativeassets.win32.nuspec",
+ "lib/net462/_._",
+ "lib/net6.0/_._",
+ "lib/netcoreapp3.1/_._",
+ "lib/netstandard1.3/_._",
+ "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"
+ ]
+ },
+ "ReactiveUI/20.1.1": {
+ "sha512": "9hNPknWjijnaSWs6auypoXqUptPZcRpUypF+cf1zD50fgW+SEoQda502N3fVZ2eWPcaiUad+z6GaLwOWmUVHNw==",
+ "type": "package",
+ "path": "reactiveui/20.1.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE/LICENSE",
+ "README.md",
+ "lib/net462/ReactiveUI.dll",
+ "lib/net462/ReactiveUI.xml",
+ "lib/net472/ReactiveUI.dll",
+ "lib/net472/ReactiveUI.xml",
+ "lib/net6.0-windows10.0.17763/ReactiveUI.dll",
+ "lib/net6.0-windows10.0.17763/ReactiveUI.xml",
+ "lib/net6.0-windows10.0.19041/ReactiveUI.dll",
+ "lib/net6.0-windows10.0.19041/ReactiveUI.xml",
+ "lib/net6.0/ReactiveUI.dll",
+ "lib/net6.0/ReactiveUI.xml",
+ "lib/net8.0-android34.0/ReactiveUI.dll",
+ "lib/net8.0-android34.0/ReactiveUI.xml",
+ "lib/net8.0-ios17.2/ReactiveUI.dll",
+ "lib/net8.0-ios17.2/ReactiveUI.xml",
+ "lib/net8.0-maccatalyst17.2/ReactiveUI.dll",
+ "lib/net8.0-maccatalyst17.2/ReactiveUI.xml",
+ "lib/net8.0-macos14.2/ReactiveUI.dll",
+ "lib/net8.0-macos14.2/ReactiveUI.xml",
+ "lib/net8.0-tvos17.2/ReactiveUI.dll",
+ "lib/net8.0-tvos17.2/ReactiveUI.xml",
+ "lib/net8.0-windows10.0.17763/ReactiveUI.dll",
+ "lib/net8.0-windows10.0.17763/ReactiveUI.xml",
+ "lib/net8.0-windows10.0.19041/ReactiveUI.dll",
+ "lib/net8.0-windows10.0.19041/ReactiveUI.xml",
+ "lib/net8.0/ReactiveUI.dll",
+ "lib/net8.0/ReactiveUI.xml",
+ "lib/netstandard2.0/ReactiveUI.dll",
+ "lib/netstandard2.0/ReactiveUI.xml",
+ "logo.png",
+ "reactiveui.20.1.1.nupkg.sha512",
+ "reactiveui.nuspec"
+ ]
+ },
+ "SkiaSharp/2.88.8": {
+ "sha512": "bRkp3uKp5ZI8gXYQT57uKwil1uobb2p8c69n7v5evlB/2JNcMAXVcw9DZAP5Ig3WSvgzGm2YSn27UVeOi05NlA==",
+ "type": "package",
+ "path": "skiasharp/2.88.8",
+ "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.8.nupkg.sha512",
+ "skiasharp.nuspec"
+ ]
+ },
+ "SkiaSharp.NativeAssets.Linux/2.88.8": {
+ "sha512": "0FO6YA7paNFBMJULvEyecPmCvL9/STvOAi5VOUw2srqJ7pNTbiiZkfl7sulAzcumbWgfzaVjRXYTgMj7SoUnWQ==",
+ "type": "package",
+ "path": "skiasharp.nativeassets.linux/2.88.8",
+ "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.8.nupkg.sha512",
+ "skiasharp.nativeassets.linux.nuspec"
+ ]
+ },
+ "SkiaSharp.NativeAssets.macOS/2.88.8": {
+ "sha512": "6Kn5TSkKlfyS6azWHF3Jk2sW5C4jCE5uSshM/5AbfFrR+5n6qM5XEnz9h4VaVl7LTxBvHvMkuPb/3bpbq0vxTw==",
+ "type": "package",
+ "path": "skiasharp.nativeassets.macos/2.88.8",
+ "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.8.nupkg.sha512",
+ "skiasharp.nativeassets.macos.nuspec"
+ ]
+ },
+ "SkiaSharp.NativeAssets.WebAssembly/2.88.8": {
+ "sha512": "S3qRo8c+gVYOyfrdf6FYnjx/ft+gPkb4dNY2IPv5Oy5yNBhDhXhKqHFr9h4+ne6ZU+7D4dbuRQqsIqCo8u1/DA==",
+ "type": "package",
+ "path": "skiasharp.nativeassets.webassembly/2.88.8",
+ "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.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.8.nupkg.sha512",
+ "skiasharp.nativeassets.webassembly.nuspec"
+ ]
+ },
+ "SkiaSharp.NativeAssets.Win32/2.88.8": {
+ "sha512": "O9QXoWEXA+6cweR4h3BOnwMz+pO9vL9mXdjLrpDd0w1QzCgWmLQBxa1VgySDITiH7nQndrDG1h6937zm9pLj1Q==",
+ "type": "package",
+ "path": "skiasharp.nativeassets.win32/2.88.8",
+ "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.8.nupkg.sha512",
+ "skiasharp.nativeassets.win32.nuspec"
+ ]
+ },
+ "Splat/15.1.1": {
+ "sha512": "RHDTdF90FwVbRia2cmuIzkiVoETqnXSB2dDBBi/I35HWXqv4OKGqoMcfcd6obMvO2OmmY5PjU1M62K8LkJafAA==",
+ "type": "package",
+ "path": "splat/15.1.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE/LICENSE",
+ "lib/net6.0/Splat.dll",
+ "lib/net6.0/Splat.xml",
+ "lib/net8.0/Splat.dll",
+ "lib/net8.0/Splat.xml",
+ "lib/netstandard2.0/Splat.dll",
+ "lib/netstandard2.0/Splat.xml",
+ "splat.15.1.1.nupkg.sha512",
+ "splat.nuspec"
+ ]
+ },
+ "System.ComponentModel.Annotations/5.0.0": {
+ "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==",
+ "type": "package",
+ "path": "system.componentmodel.annotations/5.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/MonoAndroid10/_._",
+ "lib/MonoTouch10/_._",
+ "lib/net45/_._",
+ "lib/net461/System.ComponentModel.Annotations.dll",
+ "lib/netcore50/System.ComponentModel.Annotations.dll",
+ "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
+ "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
+ "lib/netstandard2.1/System.ComponentModel.Annotations.dll",
+ "lib/netstandard2.1/System.ComponentModel.Annotations.xml",
+ "lib/portable-net45+win8/_._",
+ "lib/win8/_._",
+ "lib/xamarinios10/_._",
+ "lib/xamarinmac20/_._",
+ "lib/xamarintvos10/_._",
+ "lib/xamarinwatchos10/_._",
+ "ref/MonoAndroid10/_._",
+ "ref/MonoTouch10/_._",
+ "ref/net45/_._",
+ "ref/net461/System.ComponentModel.Annotations.dll",
+ "ref/net461/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/System.ComponentModel.Annotations.dll",
+ "ref/netcore50/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/de/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/es/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/fr/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/it/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/ja/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/ko/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/ru/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/System.ComponentModel.Annotations.dll",
+ "ref/netstandard1.1/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/System.ComponentModel.Annotations.dll",
+ "ref/netstandard1.3/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/System.ComponentModel.Annotations.dll",
+ "ref/netstandard1.4/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml",
+ "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml",
+ "ref/netstandard2.0/System.ComponentModel.Annotations.dll",
+ "ref/netstandard2.0/System.ComponentModel.Annotations.xml",
+ "ref/netstandard2.1/System.ComponentModel.Annotations.dll",
+ "ref/netstandard2.1/System.ComponentModel.Annotations.xml",
+ "ref/portable-net45+win8/_._",
+ "ref/win8/_._",
+ "ref/xamarinios10/_._",
+ "ref/xamarinmac20/_._",
+ "ref/xamarintvos10/_._",
+ "ref/xamarinwatchos10/_._",
+ "system.componentmodel.annotations.5.0.0.nupkg.sha512",
+ "system.componentmodel.annotations.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.IO.Pipelines/8.0.0": {
+ "sha512": "FHNOatmUq0sqJOkTx+UF/9YK1f180cnW5FVqnQMvYUN0elp6wFzbtPSiqbo1/ru8ICp43JM1i7kKkk6GsNGHlA==",
+ "type": "package",
+ "path": "system.io.pipelines/8.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/System.IO.Pipelines.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets",
+ "lib/net462/System.IO.Pipelines.dll",
+ "lib/net462/System.IO.Pipelines.xml",
+ "lib/net6.0/System.IO.Pipelines.dll",
+ "lib/net6.0/System.IO.Pipelines.xml",
+ "lib/net7.0/System.IO.Pipelines.dll",
+ "lib/net7.0/System.IO.Pipelines.xml",
+ "lib/net8.0/System.IO.Pipelines.dll",
+ "lib/net8.0/System.IO.Pipelines.xml",
+ "lib/netstandard2.0/System.IO.Pipelines.dll",
+ "lib/netstandard2.0/System.IO.Pipelines.xml",
+ "system.io.pipelines.8.0.0.nupkg.sha512",
+ "system.io.pipelines.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Reactive/6.0.1": {
+ "sha512": "rHaWtKDwCi9qJ3ObKo8LHPMuuwv33YbmQi7TcUK1C264V3MFnOr5Im7QgCTdLniztP3GJyeiSg5x8NqYJFqRmg==",
+ "type": "package",
+ "path": "system.reactive/6.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "build/net6.0-windows10.0.19041/_._",
+ "build/net6.0/_._",
+ "buildTransitive/net6.0-windows10.0.19041/_._",
+ "buildTransitive/net6.0/_._",
+ "icon.png",
+ "lib/net472/System.Reactive.dll",
+ "lib/net472/System.Reactive.xml",
+ "lib/net6.0-windows10.0.19041/System.Reactive.dll",
+ "lib/net6.0-windows10.0.19041/System.Reactive.xml",
+ "lib/net6.0/System.Reactive.dll",
+ "lib/net6.0/System.Reactive.xml",
+ "lib/netstandard2.0/System.Reactive.dll",
+ "lib/netstandard2.0/System.Reactive.xml",
+ "lib/uap10.0.18362/System.Reactive.dll",
+ "lib/uap10.0.18362/System.Reactive.pri",
+ "lib/uap10.0.18362/System.Reactive.xml",
+ "readme.md",
+ "system.reactive.6.0.1.nupkg.sha512",
+ "system.reactive.nuspec"
+ ]
+ },
+ "Tmds.DBus.Protocol/0.20.0": {
+ "sha512": "2gkt2kuYPhDKd8gtl34jZSJOnn4nRJfFngCDcTZT/uySbK++ua0YQx2418l9Rn1Y4dE5XNq6zG9ZsE5ltLlNNw==",
+ "type": "package",
+ "path": "tmds.dbus.protocol/0.20.0",
+ "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.20.0.nupkg.sha512",
+ "tmds.dbus.protocol.nuspec"
+ ]
+ }
+ },
+ "projectFileDependencyGroups": {
+ "net8.0": [
+ "Avalonia >= 11.2.1",
+ "Avalonia.Desktop >= 11.2.1",
+ "Avalonia.Diagnostics >= 11.2.1",
+ "Avalonia.Fonts.Inter >= 11.2.1",
+ "Avalonia.ReactiveUI >= 11.2.1",
+ "Avalonia.Themes.Fluent >= 11.2.1"
+ ]
+ },
+ "packageFolders": {
+ "/home/gara/.nuget/packages/": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/Presence.Desktop.csproj",
+ "projectName": "Presence.Desktop",
+ "projectPath": "/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/Presence.Desktop.csproj",
+ "packagesPath": "/home/gara/.nuget/packages/",
+ "outputPath": "/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/obj/",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "/home/gara/.nuget/NuGet/NuGet.Config"
+ ],
+ "originalTargetFrameworks": [
+ "net8.0"
+ ],
+ "sources": {
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net8.0": {
+ "targetAlias": "net8.0",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "direct"
+ }
+ },
+ "frameworks": {
+ "net8.0": {
+ "targetAlias": "net8.0",
+ "dependencies": {
+ "Avalonia": {
+ "target": "Package",
+ "version": "[11.2.1, )"
+ },
+ "Avalonia.Desktop": {
+ "target": "Package",
+ "version": "[11.2.1, )"
+ },
+ "Avalonia.Diagnostics": {
+ "target": "Package",
+ "version": "[11.2.1, )"
+ },
+ "Avalonia.Fonts.Inter": {
+ "target": "Package",
+ "version": "[11.2.1, )"
+ },
+ "Avalonia.ReactiveUI": {
+ "target": "Package",
+ "version": "[11.2.1, )"
+ },
+ "Avalonia.Themes.Fluent": {
+ "target": "Package",
+ "version": "[11.2.1, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.404/PortableRuntimeIdentifierGraph.json"
+ }
+ }
+ },
+ "logs": [
+ {
+ "code": "NU1900",
+ "level": "Warning",
+ "warningLevel": 1,
+ "message": "Error occurred while getting package vulnerability data: Unable to load the service index for source https://api.nuget.org/v3/index.json."
+ }
+ ]
+}
\ No newline at end of file
diff --git a/Presence.Desktop/obj/project.nuget.cache b/Presence.Desktop/obj/project.nuget.cache
new file mode 100644
index 0000000..4a5d680
--- /dev/null
+++ b/Presence.Desktop/obj/project.nuget.cache
@@ -0,0 +1,51 @@
+{
+ "version": 2,
+ "dgSpecHash": "ZzTBU9VE+ec=",
+ "success": true,
+ "projectFilePath": "/home/gara/csharp/BIGPROGECT/presence/Presence.Desktop/Presence.Desktop.csproj",
+ "expectedPackageFiles": [
+ "/home/gara/.nuget/packages/avalonia/11.2.1/avalonia.11.2.1.nupkg.sha512",
+ "/home/gara/.nuget/packages/avalonia.angle.windows.natives/2.1.22045.20230930/avalonia.angle.windows.natives.2.1.22045.20230930.nupkg.sha512",
+ "/home/gara/.nuget/packages/avalonia.buildservices/0.0.29/avalonia.buildservices.0.0.29.nupkg.sha512",
+ "/home/gara/.nuget/packages/avalonia.controls.colorpicker/11.2.1/avalonia.controls.colorpicker.11.2.1.nupkg.sha512",
+ "/home/gara/.nuget/packages/avalonia.controls.datagrid/11.2.1/avalonia.controls.datagrid.11.2.1.nupkg.sha512",
+ "/home/gara/.nuget/packages/avalonia.desktop/11.2.1/avalonia.desktop.11.2.1.nupkg.sha512",
+ "/home/gara/.nuget/packages/avalonia.diagnostics/11.2.1/avalonia.diagnostics.11.2.1.nupkg.sha512",
+ "/home/gara/.nuget/packages/avalonia.fonts.inter/11.2.1/avalonia.fonts.inter.11.2.1.nupkg.sha512",
+ "/home/gara/.nuget/packages/avalonia.freedesktop/11.2.1/avalonia.freedesktop.11.2.1.nupkg.sha512",
+ "/home/gara/.nuget/packages/avalonia.native/11.2.1/avalonia.native.11.2.1.nupkg.sha512",
+ "/home/gara/.nuget/packages/avalonia.reactiveui/11.2.1/avalonia.reactiveui.11.2.1.nupkg.sha512",
+ "/home/gara/.nuget/packages/avalonia.remote.protocol/11.2.1/avalonia.remote.protocol.11.2.1.nupkg.sha512",
+ "/home/gara/.nuget/packages/avalonia.skia/11.2.1/avalonia.skia.11.2.1.nupkg.sha512",
+ "/home/gara/.nuget/packages/avalonia.themes.fluent/11.2.1/avalonia.themes.fluent.11.2.1.nupkg.sha512",
+ "/home/gara/.nuget/packages/avalonia.themes.simple/11.2.1/avalonia.themes.simple.11.2.1.nupkg.sha512",
+ "/home/gara/.nuget/packages/avalonia.win32/11.2.1/avalonia.win32.11.2.1.nupkg.sha512",
+ "/home/gara/.nuget/packages/avalonia.x11/11.2.1/avalonia.x11.11.2.1.nupkg.sha512",
+ "/home/gara/.nuget/packages/dynamicdata/8.4.1/dynamicdata.8.4.1.nupkg.sha512",
+ "/home/gara/.nuget/packages/harfbuzzsharp/7.3.0.2/harfbuzzsharp.7.3.0.2.nupkg.sha512",
+ "/home/gara/.nuget/packages/harfbuzzsharp.nativeassets.linux/7.3.0.2/harfbuzzsharp.nativeassets.linux.7.3.0.2.nupkg.sha512",
+ "/home/gara/.nuget/packages/harfbuzzsharp.nativeassets.macos/7.3.0.2/harfbuzzsharp.nativeassets.macos.7.3.0.2.nupkg.sha512",
+ "/home/gara/.nuget/packages/harfbuzzsharp.nativeassets.webassembly/7.3.0.3-preview.2.2/harfbuzzsharp.nativeassets.webassembly.7.3.0.3-preview.2.2.nupkg.sha512",
+ "/home/gara/.nuget/packages/harfbuzzsharp.nativeassets.win32/7.3.0.2/harfbuzzsharp.nativeassets.win32.7.3.0.2.nupkg.sha512",
+ "/home/gara/.nuget/packages/microcom.runtime/0.11.0/microcom.runtime.0.11.0.nupkg.sha512",
+ "/home/gara/.nuget/packages/reactiveui/20.1.1/reactiveui.20.1.1.nupkg.sha512",
+ "/home/gara/.nuget/packages/skiasharp/2.88.8/skiasharp.2.88.8.nupkg.sha512",
+ "/home/gara/.nuget/packages/skiasharp.nativeassets.linux/2.88.8/skiasharp.nativeassets.linux.2.88.8.nupkg.sha512",
+ "/home/gara/.nuget/packages/skiasharp.nativeassets.macos/2.88.8/skiasharp.nativeassets.macos.2.88.8.nupkg.sha512",
+ "/home/gara/.nuget/packages/skiasharp.nativeassets.webassembly/2.88.8/skiasharp.nativeassets.webassembly.2.88.8.nupkg.sha512",
+ "/home/gara/.nuget/packages/skiasharp.nativeassets.win32/2.88.8/skiasharp.nativeassets.win32.2.88.8.nupkg.sha512",
+ "/home/gara/.nuget/packages/splat/15.1.1/splat.15.1.1.nupkg.sha512",
+ "/home/gara/.nuget/packages/system.componentmodel.annotations/5.0.0/system.componentmodel.annotations.5.0.0.nupkg.sha512",
+ "/home/gara/.nuget/packages/system.io.pipelines/8.0.0/system.io.pipelines.8.0.0.nupkg.sha512",
+ "/home/gara/.nuget/packages/system.reactive/6.0.1/system.reactive.6.0.1.nupkg.sha512",
+ "/home/gara/.nuget/packages/tmds.dbus.protocol/0.20.0/tmds.dbus.protocol.0.20.0.nupkg.sha512"
+ ],
+ "logs": [
+ {
+ "code": "NU1900",
+ "level": "Warning",
+ "warningLevel": 1,
+ "message": "Error occurred while getting package vulnerability data: Unable to load the service index for source https://api.nuget.org/v3/index.json."
+ }
+ ]
+}
\ No newline at end of file
diff --git a/console_ui/bin/Debug/net8.0/console_ui b/console_ui/bin/Debug/net8.0/console_ui
index ea01dca..fb10842 100755
Binary files a/console_ui/bin/Debug/net8.0/console_ui and b/console_ui/bin/Debug/net8.0/console_ui differ
diff --git a/console_ui/bin/Debug/net8.0/console_ui.dll b/console_ui/bin/Debug/net8.0/console_ui.dll
index 4faa2e2..2dfb109 100644
Binary files a/console_ui/bin/Debug/net8.0/console_ui.dll and b/console_ui/bin/Debug/net8.0/console_ui.dll differ
diff --git a/console_ui/bin/Debug/net8.0/console_ui.pdb b/console_ui/bin/Debug/net8.0/console_ui.pdb
index 7433590..3c4b800 100644
Binary files a/console_ui/bin/Debug/net8.0/console_ui.pdb and b/console_ui/bin/Debug/net8.0/console_ui.pdb differ
diff --git a/console_ui/bin/Debug/net8.0/data.dll b/console_ui/bin/Debug/net8.0/data.dll
index 2e18b67..632fae8 100644
Binary files a/console_ui/bin/Debug/net8.0/data.dll and b/console_ui/bin/Debug/net8.0/data.dll differ
diff --git a/console_ui/bin/Debug/net8.0/data.pdb b/console_ui/bin/Debug/net8.0/data.pdb
index 0864644..ba9850d 100644
Binary files a/console_ui/bin/Debug/net8.0/data.pdb and b/console_ui/bin/Debug/net8.0/data.pdb differ
diff --git a/console_ui/bin/Debug/net8.0/domain.dll b/console_ui/bin/Debug/net8.0/domain.dll
index 80b5251..bc8dbbd 100644
Binary files a/console_ui/bin/Debug/net8.0/domain.dll and b/console_ui/bin/Debug/net8.0/domain.dll differ
diff --git a/console_ui/bin/Debug/net8.0/domain.pdb b/console_ui/bin/Debug/net8.0/domain.pdb
index a704173..5918cc0 100644
Binary files a/console_ui/bin/Debug/net8.0/domain.pdb and b/console_ui/bin/Debug/net8.0/domain.pdb differ
diff --git a/console_ui/bin/Debug/net8.0/ui.dll b/console_ui/bin/Debug/net8.0/ui.dll
index 3892d0f..e304331 100644
Binary files a/console_ui/bin/Debug/net8.0/ui.dll and b/console_ui/bin/Debug/net8.0/ui.dll differ
diff --git a/console_ui/bin/Debug/net8.0/ui.pdb b/console_ui/bin/Debug/net8.0/ui.pdb
index c1b30b7..ba37027 100644
Binary files a/console_ui/bin/Debug/net8.0/ui.pdb and b/console_ui/bin/Debug/net8.0/ui.pdb differ
diff --git a/console_ui/obj/Debug/net8.0/apphost b/console_ui/obj/Debug/net8.0/apphost
index ea01dca..fb10842 100755
Binary files a/console_ui/obj/Debug/net8.0/apphost and b/console_ui/obj/Debug/net8.0/apphost differ
diff --git a/console_ui/obj/Debug/net8.0/console_ui.AssemblyInfo.cs b/console_ui/obj/Debug/net8.0/console_ui.AssemblyInfo.cs
index 5d1ba83..04e5e92 100644
--- a/console_ui/obj/Debug/net8.0/console_ui.AssemblyInfo.cs
+++ b/console_ui/obj/Debug/net8.0/console_ui.AssemblyInfo.cs
@@ -13,7 +13,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("console_ui")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d03600cac4088e592e3a84368946b3e313cc8b5")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+427bb6d1639a554afe63c4c9b999f31f3af7ae76")]
[assembly: System.Reflection.AssemblyProductAttribute("console_ui")]
[assembly: System.Reflection.AssemblyTitleAttribute("console_ui")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
diff --git a/console_ui/obj/Debug/net8.0/console_ui.AssemblyInfoInputs.cache b/console_ui/obj/Debug/net8.0/console_ui.AssemblyInfoInputs.cache
index b842807..7c0de2e 100644
--- a/console_ui/obj/Debug/net8.0/console_ui.AssemblyInfoInputs.cache
+++ b/console_ui/obj/Debug/net8.0/console_ui.AssemblyInfoInputs.cache
@@ -1 +1 @@
-6ad1ce5ea61b754a82503202c636b3fa3b325dace303f66d8b4958f60658bbb7
+49a3e78568fbafc89d6a10ad50eda8e7e08d9455475e01c26535741e0d17c7c9
diff --git a/console_ui/obj/Debug/net8.0/console_ui.assets.cache b/console_ui/obj/Debug/net8.0/console_ui.assets.cache
index a6ef1d7..75be9e4 100644
Binary files a/console_ui/obj/Debug/net8.0/console_ui.assets.cache and b/console_ui/obj/Debug/net8.0/console_ui.assets.cache differ
diff --git a/console_ui/obj/Debug/net8.0/console_ui.csproj.AssemblyReference.cache b/console_ui/obj/Debug/net8.0/console_ui.csproj.AssemblyReference.cache
index 8bfafaa..b8f3733 100644
Binary files a/console_ui/obj/Debug/net8.0/console_ui.csproj.AssemblyReference.cache and b/console_ui/obj/Debug/net8.0/console_ui.csproj.AssemblyReference.cache differ
diff --git a/console_ui/obj/Debug/net8.0/console_ui.csproj.CoreCompileInputs.cache b/console_ui/obj/Debug/net8.0/console_ui.csproj.CoreCompileInputs.cache
index 28a1449..9d424ae 100644
--- a/console_ui/obj/Debug/net8.0/console_ui.csproj.CoreCompileInputs.cache
+++ b/console_ui/obj/Debug/net8.0/console_ui.csproj.CoreCompileInputs.cache
@@ -1 +1 @@
-4fc6feac09be4ce7548c02247d2ebdf67d9d4336f71383e359c998a9afa519ed
+5392e6cca2f4bb70846c34e815580ab6e813974fbb206d0d84d7e0bc5ca2b740
diff --git a/console_ui/obj/Debug/net8.0/console_ui.dll b/console_ui/obj/Debug/net8.0/console_ui.dll
index 4faa2e2..2dfb109 100644
Binary files a/console_ui/obj/Debug/net8.0/console_ui.dll and b/console_ui/obj/Debug/net8.0/console_ui.dll differ
diff --git a/console_ui/obj/Debug/net8.0/console_ui.pdb b/console_ui/obj/Debug/net8.0/console_ui.pdb
index 7433590..3c4b800 100644
Binary files a/console_ui/obj/Debug/net8.0/console_ui.pdb and b/console_ui/obj/Debug/net8.0/console_ui.pdb differ
diff --git a/console_ui/obj/Debug/net8.0/ref/console_ui.dll b/console_ui/obj/Debug/net8.0/ref/console_ui.dll
index 561ae12..82fb28f 100644
Binary files a/console_ui/obj/Debug/net8.0/ref/console_ui.dll and b/console_ui/obj/Debug/net8.0/ref/console_ui.dll differ
diff --git a/console_ui/obj/Debug/net8.0/refint/console_ui.dll b/console_ui/obj/Debug/net8.0/refint/console_ui.dll
index 561ae12..82fb28f 100644
Binary files a/console_ui/obj/Debug/net8.0/refint/console_ui.dll and b/console_ui/obj/Debug/net8.0/refint/console_ui.dll differ
diff --git a/console_ui/obj/console_ui.csproj.nuget.dgspec.json b/console_ui/obj/console_ui.csproj.nuget.dgspec.json
index 724e883..79f5750 100644
--- a/console_ui/obj/console_ui.csproj.nuget.dgspec.json
+++ b/console_ui/obj/console_ui.csproj.nuget.dgspec.json
@@ -74,7 +74,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.403/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.404/PortableRuntimeIdentifierGraph.json"
}
}
},
@@ -148,7 +148,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.403/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.404/PortableRuntimeIdentifierGraph.json"
}
}
},
@@ -210,7 +210,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.403/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.404/PortableRuntimeIdentifierGraph.json"
}
}
},
@@ -278,7 +278,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.403/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.404/PortableRuntimeIdentifierGraph.json"
}
}
}
diff --git a/console_ui/obj/project.assets.json b/console_ui/obj/project.assets.json
index 0d781c6..b037de1 100644
--- a/console_ui/obj/project.assets.json
+++ b/console_ui/obj/project.assets.json
@@ -1130,8 +1130,16 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.403/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.404/PortableRuntimeIdentifierGraph.json"
}
}
- }
+ },
+ "logs": [
+ {
+ "code": "NU1900",
+ "level": "Warning",
+ "warningLevel": 1,
+ "message": "Error occurred while getting package vulnerability data: Unable to load the service index for source https://api.nuget.org/v3/index.json."
+ }
+ ]
}
\ No newline at end of file
diff --git a/console_ui/obj/project.nuget.cache b/console_ui/obj/project.nuget.cache
index a99bf25..14d3285 100644
--- a/console_ui/obj/project.nuget.cache
+++ b/console_ui/obj/project.nuget.cache
@@ -1,6 +1,6 @@
{
"version": 2,
- "dgSpecHash": "b3bYNr2l9SM=",
+ "dgSpecHash": "SQ8tAKy3OoE=",
"success": true,
"projectFilePath": "/home/gara/csharp/BIGPROGECT/presence/console_ui/console_ui.csproj",
"expectedPackageFiles": [
@@ -28,5 +28,12 @@
"/home/gara/.nuget/packages/sixlabors.fonts/1.0.0/sixlabors.fonts.1.0.0.nupkg.sha512",
"/home/gara/.nuget/packages/system.io.packaging/8.0.0/system.io.packaging.8.0.0.nupkg.sha512"
],
- "logs": []
+ "logs": [
+ {
+ "code": "NU1900",
+ "level": "Warning",
+ "warningLevel": 1,
+ "message": "Error occurred while getting package vulnerability data: Unable to load the service index for source https://api.nuget.org/v3/index.json."
+ }
+ ]
}
\ No newline at end of file
diff --git a/data/bin/Debug/net8.0/data.dll b/data/bin/Debug/net8.0/data.dll
index 848fb7c..632fae8 100644
Binary files a/data/bin/Debug/net8.0/data.dll and b/data/bin/Debug/net8.0/data.dll differ
diff --git a/data/bin/Debug/net8.0/data.pdb b/data/bin/Debug/net8.0/data.pdb
index cabdb88..ba9850d 100644
Binary files a/data/bin/Debug/net8.0/data.pdb and b/data/bin/Debug/net8.0/data.pdb differ
diff --git a/data/obj/Debug/net8.0/data.AssemblyInfo.cs b/data/obj/Debug/net8.0/data.AssemblyInfo.cs
index 4a9ce91..7d265c6 100644
--- a/data/obj/Debug/net8.0/data.AssemblyInfo.cs
+++ b/data/obj/Debug/net8.0/data.AssemblyInfo.cs
@@ -13,10 +13,10 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("data")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d03600cac4088e592e3a84368946b3e313cc8b5")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+427bb6d1639a554afe63c4c9b999f31f3af7ae76")]
[assembly: System.Reflection.AssemblyProductAttribute("data")]
[assembly: System.Reflection.AssemblyTitleAttribute("data")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
-// Создано классом WriteCodeFragment MSBuild.
+// Generated by the MSBuild WriteCodeFragment class.
diff --git a/data/obj/Debug/net8.0/data.AssemblyInfoInputs.cache b/data/obj/Debug/net8.0/data.AssemblyInfoInputs.cache
index c459e54..f7259bc 100644
--- a/data/obj/Debug/net8.0/data.AssemblyInfoInputs.cache
+++ b/data/obj/Debug/net8.0/data.AssemblyInfoInputs.cache
@@ -1 +1 @@
-731b1d5c69b5572fabec0fbf95abad126efb155dcf8719a9eebf3ca961eb9311
+f9352d11b37234a085d1a7821bab4c2bcbb2f5f47e47212cce4b55148647f193
diff --git a/data/obj/Debug/net8.0/data.assets.cache b/data/obj/Debug/net8.0/data.assets.cache
index 3f4531f..9ab45fb 100644
Binary files a/data/obj/Debug/net8.0/data.assets.cache and b/data/obj/Debug/net8.0/data.assets.cache differ
diff --git a/data/obj/Debug/net8.0/data.csproj.CoreCompileInputs.cache b/data/obj/Debug/net8.0/data.csproj.CoreCompileInputs.cache
index f1ad052..45f7e1c 100644
--- a/data/obj/Debug/net8.0/data.csproj.CoreCompileInputs.cache
+++ b/data/obj/Debug/net8.0/data.csproj.CoreCompileInputs.cache
@@ -1 +1 @@
-a21506b9097c7cce01fc449026dd9bd6129fa7118e8947174bed36605e7fb801
+ed423dbbb70d54abc3f17cab0182331466b8c742e1ddb70f2b3459d3600be9ee
diff --git a/data/obj/Debug/net8.0/data.dll b/data/obj/Debug/net8.0/data.dll
index 848fb7c..632fae8 100644
Binary files a/data/obj/Debug/net8.0/data.dll and b/data/obj/Debug/net8.0/data.dll differ
diff --git a/data/obj/Debug/net8.0/data.pdb b/data/obj/Debug/net8.0/data.pdb
index cabdb88..ba9850d 100644
Binary files a/data/obj/Debug/net8.0/data.pdb and b/data/obj/Debug/net8.0/data.pdb differ
diff --git a/data/obj/Debug/net8.0/ref/data.dll b/data/obj/Debug/net8.0/ref/data.dll
index fa7864a..fd98a1d 100644
Binary files a/data/obj/Debug/net8.0/ref/data.dll and b/data/obj/Debug/net8.0/ref/data.dll differ
diff --git a/data/obj/Debug/net8.0/refint/data.dll b/data/obj/Debug/net8.0/refint/data.dll
index fa7864a..fd98a1d 100644
Binary files a/data/obj/Debug/net8.0/refint/data.dll and b/data/obj/Debug/net8.0/refint/data.dll differ
diff --git a/data/obj/data.csproj.nuget.dgspec.json b/data/obj/data.csproj.nuget.dgspec.json
index 3a0bcce..1d121b0 100644
--- a/data/obj/data.csproj.nuget.dgspec.json
+++ b/data/obj/data.csproj.nuget.dgspec.json
@@ -74,7 +74,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.403/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.404/PortableRuntimeIdentifierGraph.json"
}
}
}
diff --git a/data/obj/project.assets.json b/data/obj/project.assets.json
index ed2769d..fa7a746 100644
--- a/data/obj/project.assets.json
+++ b/data/obj/project.assets.json
@@ -2182,8 +2182,16 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.403/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.404/PortableRuntimeIdentifierGraph.json"
}
}
- }
+ },
+ "logs": [
+ {
+ "code": "NU1900",
+ "level": "Warning",
+ "warningLevel": 1,
+ "message": "Error occurred while getting package vulnerability data: Unable to load the service index for source https://api.nuget.org/v3/index.json."
+ }
+ ]
}
\ No newline at end of file
diff --git a/data/obj/project.nuget.cache b/data/obj/project.nuget.cache
index f55ee31..b9c7871 100644
--- a/data/obj/project.nuget.cache
+++ b/data/obj/project.nuget.cache
@@ -1,6 +1,6 @@
{
"version": 2,
- "dgSpecHash": "VbuUvYFKLnY=",
+ "dgSpecHash": "KP70yVpteEI=",
"success": true,
"projectFilePath": "/home/gara/csharp/BIGPROGECT/presence/data/data.csproj",
"expectedPackageFiles": [
@@ -43,5 +43,12 @@
"/home/gara/.nuget/packages/system.text.encoding.codepages/6.0.0/system.text.encoding.codepages.6.0.0.nupkg.sha512",
"/home/gara/.nuget/packages/system.threading.channels/6.0.0/system.threading.channels.6.0.0.nupkg.sha512"
],
- "logs": []
+ "logs": [
+ {
+ "code": "NU1900",
+ "level": "Warning",
+ "warningLevel": 1,
+ "message": "Error occurred while getting package vulnerability data: Unable to load the service index for source https://api.nuget.org/v3/index.json."
+ }
+ ]
}
\ No newline at end of file
diff --git a/domain/UseCase/AdminUseCase.cs b/domain/UseCase/AdminUseCase.cs
index e94bd8d..116b709 100644
--- a/domain/UseCase/AdminUseCase.cs
+++ b/domain/UseCase/AdminUseCase.cs
@@ -14,14 +14,12 @@ namespace domain.UseCase
{
private readonly IAdminRepository _adminRepository;
private readonly IGroupRepository _groupRepository;
- private readonly IUserRepository _userRepository;
- public AdminUseCase(IAdminRepository adminRepository, IGroupRepository groupRepository, IUserRepository userRepository)
+ public AdminUseCase(IAdminRepository adminRepository, IGroupRepository groupRepository)
{
_adminRepository = adminRepository;
_groupRepository = groupRepository;
- _userRepository = userRepository;
}
public IEnumerable GetAllGroupsWithStudents() =>
diff --git a/domain/bin/Debug/net8.0/data.dll b/domain/bin/Debug/net8.0/data.dll
index 848fb7c..632fae8 100644
Binary files a/domain/bin/Debug/net8.0/data.dll and b/domain/bin/Debug/net8.0/data.dll differ
diff --git a/domain/bin/Debug/net8.0/data.pdb b/domain/bin/Debug/net8.0/data.pdb
index cabdb88..ba9850d 100644
Binary files a/domain/bin/Debug/net8.0/data.pdb and b/domain/bin/Debug/net8.0/data.pdb differ
diff --git a/domain/bin/Debug/net8.0/domain.dll b/domain/bin/Debug/net8.0/domain.dll
index 3e7f5e9..bc8dbbd 100644
Binary files a/domain/bin/Debug/net8.0/domain.dll and b/domain/bin/Debug/net8.0/domain.dll differ
diff --git a/domain/bin/Debug/net8.0/domain.pdb b/domain/bin/Debug/net8.0/domain.pdb
index ef82c28..5918cc0 100644
Binary files a/domain/bin/Debug/net8.0/domain.pdb and b/domain/bin/Debug/net8.0/domain.pdb differ
diff --git a/domain/obj/Debug/net8.0/domain.AssemblyInfo.cs b/domain/obj/Debug/net8.0/domain.AssemblyInfo.cs
index 2d27595..4416fbd 100644
--- a/domain/obj/Debug/net8.0/domain.AssemblyInfo.cs
+++ b/domain/obj/Debug/net8.0/domain.AssemblyInfo.cs
@@ -13,10 +13,10 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("domain")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d03600cac4088e592e3a84368946b3e313cc8b5")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+427bb6d1639a554afe63c4c9b999f31f3af7ae76")]
[assembly: System.Reflection.AssemblyProductAttribute("domain")]
[assembly: System.Reflection.AssemblyTitleAttribute("domain")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
-// Создано классом WriteCodeFragment MSBuild.
+// Generated by the MSBuild WriteCodeFragment class.
diff --git a/domain/obj/Debug/net8.0/domain.AssemblyInfoInputs.cache b/domain/obj/Debug/net8.0/domain.AssemblyInfoInputs.cache
index 5a0d4c5..af3975b 100644
--- a/domain/obj/Debug/net8.0/domain.AssemblyInfoInputs.cache
+++ b/domain/obj/Debug/net8.0/domain.AssemblyInfoInputs.cache
@@ -1 +1 @@
-0245376b560f5cb2e4a470a5144535facc90ed6189da3440a9addc1c5ff980f7
+421bbb27b234aeeb3e8a0dd963d9c36d9a69163f8ffc91f242ca454b2c574fe8
diff --git a/domain/obj/Debug/net8.0/domain.assets.cache b/domain/obj/Debug/net8.0/domain.assets.cache
index d055ea0..fc84c61 100644
Binary files a/domain/obj/Debug/net8.0/domain.assets.cache and b/domain/obj/Debug/net8.0/domain.assets.cache differ
diff --git a/domain/obj/Debug/net8.0/domain.csproj.AssemblyReference.cache b/domain/obj/Debug/net8.0/domain.csproj.AssemblyReference.cache
index 3a24a8a..457435a 100644
Binary files a/domain/obj/Debug/net8.0/domain.csproj.AssemblyReference.cache and b/domain/obj/Debug/net8.0/domain.csproj.AssemblyReference.cache differ
diff --git a/domain/obj/Debug/net8.0/domain.csproj.CoreCompileInputs.cache b/domain/obj/Debug/net8.0/domain.csproj.CoreCompileInputs.cache
index 62a4d07..d343454 100644
--- a/domain/obj/Debug/net8.0/domain.csproj.CoreCompileInputs.cache
+++ b/domain/obj/Debug/net8.0/domain.csproj.CoreCompileInputs.cache
@@ -1 +1 @@
-39d5017ade2f977b488b3c519c01dabccf98b78aec07d7faf03198773ce4ae62
+911d9573732d1fc380d91486860b2874ebb6e8fcc72a2feadc02621a14a4bef7
diff --git a/domain/obj/Debug/net8.0/domain.dll b/domain/obj/Debug/net8.0/domain.dll
index 3e7f5e9..bc8dbbd 100644
Binary files a/domain/obj/Debug/net8.0/domain.dll and b/domain/obj/Debug/net8.0/domain.dll differ
diff --git a/domain/obj/Debug/net8.0/domain.pdb b/domain/obj/Debug/net8.0/domain.pdb
index ef82c28..5918cc0 100644
Binary files a/domain/obj/Debug/net8.0/domain.pdb and b/domain/obj/Debug/net8.0/domain.pdb differ
diff --git a/domain/obj/Debug/net8.0/ref/domain.dll b/domain/obj/Debug/net8.0/ref/domain.dll
index 2726696..bc5de48 100644
Binary files a/domain/obj/Debug/net8.0/ref/domain.dll and b/domain/obj/Debug/net8.0/ref/domain.dll differ
diff --git a/domain/obj/Debug/net8.0/refint/domain.dll b/domain/obj/Debug/net8.0/refint/domain.dll
index 2726696..bc5de48 100644
Binary files a/domain/obj/Debug/net8.0/refint/domain.dll and b/domain/obj/Debug/net8.0/refint/domain.dll differ
diff --git a/domain/obj/domain.csproj.nuget.dgspec.json b/domain/obj/domain.csproj.nuget.dgspec.json
index 4f24be1..ee186bb 100644
--- a/domain/obj/domain.csproj.nuget.dgspec.json
+++ b/domain/obj/domain.csproj.nuget.dgspec.json
@@ -74,7 +74,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.403/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.404/PortableRuntimeIdentifierGraph.json"
}
}
},
@@ -136,7 +136,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.403/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.404/PortableRuntimeIdentifierGraph.json"
}
}
}
diff --git a/domain/obj/project.assets.json b/domain/obj/project.assets.json
index 40cc3bf..465967c 100644
--- a/domain/obj/project.assets.json
+++ b/domain/obj/project.assets.json
@@ -794,8 +794,16 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.403/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.404/PortableRuntimeIdentifierGraph.json"
}
}
- }
+ },
+ "logs": [
+ {
+ "code": "NU1900",
+ "level": "Warning",
+ "warningLevel": 1,
+ "message": "Error occurred while getting package vulnerability data: Unable to load the service index for source https://api.nuget.org/v3/index.json."
+ }
+ ]
}
\ No newline at end of file
diff --git a/domain/obj/project.nuget.cache b/domain/obj/project.nuget.cache
index 01ae595..00f6a00 100644
--- a/domain/obj/project.nuget.cache
+++ b/domain/obj/project.nuget.cache
@@ -1,6 +1,6 @@
{
"version": 2,
- "dgSpecHash": "FLJsNFlp5Ps=",
+ "dgSpecHash": "HAoexZCrILo=",
"success": true,
"projectFilePath": "/home/gara/csharp/BIGPROGECT/presence/domain/domain.csproj",
"expectedPackageFiles": [
@@ -20,5 +20,12 @@
"/home/gara/.nuget/packages/npgsql/8.0.5/npgsql.8.0.5.nupkg.sha512",
"/home/gara/.nuget/packages/npgsql.entityframeworkcore.postgresql/8.0.10/npgsql.entityframeworkcore.postgresql.8.0.10.nupkg.sha512"
],
- "logs": []
+ "logs": [
+ {
+ "code": "NU1900",
+ "level": "Warning",
+ "warningLevel": 1,
+ "message": "Error occurred while getting package vulnerability data: Unable to load the service index for source https://api.nuget.org/v3/index.json."
+ }
+ ]
}
\ No newline at end of file
diff --git a/presence.sln b/presence.sln
index e56bdf4..ef89a5d 100644
--- a/presence.sln
+++ b/presence.sln
@@ -13,6 +13,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "console_ui", "console_ui\co
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "presence_api", "presence_api\presence_api.csproj", "{63535AE0-390E-4E77-84AA-FCD186E98C15}"
EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Presence.Desktop", "Presence.Desktop\Presence.Desktop.csproj", "{9A4B5E24-844D-483B-8956-3A3729DB1683}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -42,5 +44,9 @@ Global
{63535AE0-390E-4E77-84AA-FCD186E98C15}.Debug|Any CPU.Build.0 = Debug|Any CPU
{63535AE0-390E-4E77-84AA-FCD186E98C15}.Release|Any CPU.ActiveCfg = Release|Any CPU
{63535AE0-390E-4E77-84AA-FCD186E98C15}.Release|Any CPU.Build.0 = Release|Any CPU
+ {9A4B5E24-844D-483B-8956-3A3729DB1683}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {9A4B5E24-844D-483B-8956-3A3729DB1683}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {9A4B5E24-844D-483B-8956-3A3729DB1683}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {9A4B5E24-844D-483B-8956-3A3729DB1683}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
diff --git a/presence_api/bin/Debug/net8.0/data.dll b/presence_api/bin/Debug/net8.0/data.dll
index 848fb7c..632fae8 100644
Binary files a/presence_api/bin/Debug/net8.0/data.dll and b/presence_api/bin/Debug/net8.0/data.dll differ
diff --git a/presence_api/bin/Debug/net8.0/data.pdb b/presence_api/bin/Debug/net8.0/data.pdb
index cabdb88..ba9850d 100644
Binary files a/presence_api/bin/Debug/net8.0/data.pdb and b/presence_api/bin/Debug/net8.0/data.pdb differ
diff --git a/presence_api/bin/Debug/net8.0/domain.dll b/presence_api/bin/Debug/net8.0/domain.dll
index 3e7f5e9..bc8dbbd 100644
Binary files a/presence_api/bin/Debug/net8.0/domain.dll and b/presence_api/bin/Debug/net8.0/domain.dll differ
diff --git a/presence_api/bin/Debug/net8.0/domain.pdb b/presence_api/bin/Debug/net8.0/domain.pdb
index ef82c28..5918cc0 100644
Binary files a/presence_api/bin/Debug/net8.0/domain.pdb and b/presence_api/bin/Debug/net8.0/domain.pdb differ
diff --git a/presence_api/bin/Debug/net8.0/presence_api b/presence_api/bin/Debug/net8.0/presence_api
index 77eb408..8084641 100755
Binary files a/presence_api/bin/Debug/net8.0/presence_api and b/presence_api/bin/Debug/net8.0/presence_api differ
diff --git a/presence_api/bin/Debug/net8.0/presence_api.dll b/presence_api/bin/Debug/net8.0/presence_api.dll
index 6344f52..c66e7f9 100644
Binary files a/presence_api/bin/Debug/net8.0/presence_api.dll and b/presence_api/bin/Debug/net8.0/presence_api.dll differ
diff --git a/presence_api/bin/Debug/net8.0/presence_api.pdb b/presence_api/bin/Debug/net8.0/presence_api.pdb
index 79878e8..05c2330 100644
Binary files a/presence_api/bin/Debug/net8.0/presence_api.pdb and b/presence_api/bin/Debug/net8.0/presence_api.pdb differ
diff --git a/presence_api/obj/Debug/net8.0/apphost b/presence_api/obj/Debug/net8.0/apphost
index 77eb408..8084641 100755
Binary files a/presence_api/obj/Debug/net8.0/apphost and b/presence_api/obj/Debug/net8.0/apphost differ
diff --git a/presence_api/obj/Debug/net8.0/presence_api.AssemblyInfo.cs b/presence_api/obj/Debug/net8.0/presence_api.AssemblyInfo.cs
index fab1f01..afae948 100644
--- a/presence_api/obj/Debug/net8.0/presence_api.AssemblyInfo.cs
+++ b/presence_api/obj/Debug/net8.0/presence_api.AssemblyInfo.cs
@@ -13,10 +13,10 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("presence_api")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d03600cac4088e592e3a84368946b3e313cc8b5")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+427bb6d1639a554afe63c4c9b999f31f3af7ae76")]
[assembly: System.Reflection.AssemblyProductAttribute("presence_api")]
[assembly: System.Reflection.AssemblyTitleAttribute("presence_api")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
-// Создано классом WriteCodeFragment MSBuild.
+// Generated by the MSBuild WriteCodeFragment class.
diff --git a/presence_api/obj/Debug/net8.0/presence_api.AssemblyInfoInputs.cache b/presence_api/obj/Debug/net8.0/presence_api.AssemblyInfoInputs.cache
index b076df0..5217e98 100644
--- a/presence_api/obj/Debug/net8.0/presence_api.AssemblyInfoInputs.cache
+++ b/presence_api/obj/Debug/net8.0/presence_api.AssemblyInfoInputs.cache
@@ -1 +1 @@
-798a76f8e4e88ed691b932584ec55b49cd4295dad39d90d41b25f766a324819e
+0f888d6ee77d75b6d7c64349ec419a7095328a0c07d3485f0bd7349fa8f4ae08
diff --git a/presence_api/obj/Debug/net8.0/presence_api.assets.cache b/presence_api/obj/Debug/net8.0/presence_api.assets.cache
index 5665c28..cf5e94b 100644
Binary files a/presence_api/obj/Debug/net8.0/presence_api.assets.cache and b/presence_api/obj/Debug/net8.0/presence_api.assets.cache differ
diff --git a/presence_api/obj/Debug/net8.0/presence_api.csproj.AssemblyReference.cache b/presence_api/obj/Debug/net8.0/presence_api.csproj.AssemblyReference.cache
index 2b1f16a..c583406 100644
Binary files a/presence_api/obj/Debug/net8.0/presence_api.csproj.AssemblyReference.cache and b/presence_api/obj/Debug/net8.0/presence_api.csproj.AssemblyReference.cache differ
diff --git a/presence_api/obj/Debug/net8.0/presence_api.csproj.CoreCompileInputs.cache b/presence_api/obj/Debug/net8.0/presence_api.csproj.CoreCompileInputs.cache
index 07a406b..5ea6296 100644
--- a/presence_api/obj/Debug/net8.0/presence_api.csproj.CoreCompileInputs.cache
+++ b/presence_api/obj/Debug/net8.0/presence_api.csproj.CoreCompileInputs.cache
@@ -1 +1 @@
-14cfac9208e7f1e1bd6f6867da3895abc7d7237c391a4adda871de15fc41ad95
+510470c1845d81e0dbb22760769d0611ad26c1aac11ae976303121185efe5273
diff --git a/presence_api/obj/Debug/net8.0/presence_api.dll b/presence_api/obj/Debug/net8.0/presence_api.dll
index 6344f52..c66e7f9 100644
Binary files a/presence_api/obj/Debug/net8.0/presence_api.dll and b/presence_api/obj/Debug/net8.0/presence_api.dll differ
diff --git a/presence_api/obj/Debug/net8.0/presence_api.pdb b/presence_api/obj/Debug/net8.0/presence_api.pdb
index 79878e8..05c2330 100644
Binary files a/presence_api/obj/Debug/net8.0/presence_api.pdb and b/presence_api/obj/Debug/net8.0/presence_api.pdb differ
diff --git a/presence_api/obj/Debug/net8.0/ref/presence_api.dll b/presence_api/obj/Debug/net8.0/ref/presence_api.dll
index 61ec9a9..8a85278 100644
Binary files a/presence_api/obj/Debug/net8.0/ref/presence_api.dll and b/presence_api/obj/Debug/net8.0/ref/presence_api.dll differ
diff --git a/presence_api/obj/Debug/net8.0/refint/presence_api.dll b/presence_api/obj/Debug/net8.0/refint/presence_api.dll
index 61ec9a9..8a85278 100644
Binary files a/presence_api/obj/Debug/net8.0/refint/presence_api.dll and b/presence_api/obj/Debug/net8.0/refint/presence_api.dll differ
diff --git a/presence_api/obj/presence_api.csproj.nuget.dgspec.json b/presence_api/obj/presence_api.csproj.nuget.dgspec.json
index ce45826..d4d3835 100644
--- a/presence_api/obj/presence_api.csproj.nuget.dgspec.json
+++ b/presence_api/obj/presence_api.csproj.nuget.dgspec.json
@@ -74,7 +74,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.403/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.404/PortableRuntimeIdentifierGraph.json"
}
}
},
@@ -136,7 +136,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.403/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.404/PortableRuntimeIdentifierGraph.json"
}
}
},
@@ -211,7 +211,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.403/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.404/PortableRuntimeIdentifierGraph.json"
}
}
}
diff --git a/presence_api/obj/project.assets.json b/presence_api/obj/project.assets.json
index 5e30f4c..07c85d7 100644
--- a/presence_api/obj/project.assets.json
+++ b/presence_api/obj/project.assets.json
@@ -1296,8 +1296,16 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.403/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.404/PortableRuntimeIdentifierGraph.json"
}
}
- }
+ },
+ "logs": [
+ {
+ "code": "NU1900",
+ "level": "Warning",
+ "warningLevel": 1,
+ "message": "Error occurred while getting package vulnerability data: Unable to load the service index for source https://api.nuget.org/v3/index.json."
+ }
+ ]
}
\ No newline at end of file
diff --git a/presence_api/obj/project.nuget.cache b/presence_api/obj/project.nuget.cache
index 299f145..20e2223 100644
--- a/presence_api/obj/project.nuget.cache
+++ b/presence_api/obj/project.nuget.cache
@@ -1,6 +1,6 @@
{
"version": 2,
- "dgSpecHash": "UbKyeLr9DPg=",
+ "dgSpecHash": "Gmskp4rq3Yc=",
"success": true,
"projectFilePath": "/home/gara/csharp/BIGPROGECT/presence/presence_api/presence_api.csproj",
"expectedPackageFiles": [
@@ -27,5 +27,12 @@
"/home/gara/.nuget/packages/swashbuckle.aspnetcore.swaggergen/6.6.2/swashbuckle.aspnetcore.swaggergen.6.6.2.nupkg.sha512",
"/home/gara/.nuget/packages/swashbuckle.aspnetcore.swaggerui/6.6.2/swashbuckle.aspnetcore.swaggerui.6.6.2.nupkg.sha512"
],
- "logs": []
+ "logs": [
+ {
+ "code": "NU1900",
+ "level": "Warning",
+ "warningLevel": 1,
+ "message": "Error occurred while getting package vulnerability data: Unable to load the service index for source https://api.nuget.org/v3/index.json."
+ }
+ ]
}
\ No newline at end of file
diff --git a/ui/bin/Debug/net8.0/data.dll b/ui/bin/Debug/net8.0/data.dll
index 2e18b67..632fae8 100644
Binary files a/ui/bin/Debug/net8.0/data.dll and b/ui/bin/Debug/net8.0/data.dll differ
diff --git a/ui/bin/Debug/net8.0/data.pdb b/ui/bin/Debug/net8.0/data.pdb
index 0864644..ba9850d 100644
Binary files a/ui/bin/Debug/net8.0/data.pdb and b/ui/bin/Debug/net8.0/data.pdb differ
diff --git a/ui/bin/Debug/net8.0/domain.dll b/ui/bin/Debug/net8.0/domain.dll
index 80b5251..bc8dbbd 100644
Binary files a/ui/bin/Debug/net8.0/domain.dll and b/ui/bin/Debug/net8.0/domain.dll differ
diff --git a/ui/bin/Debug/net8.0/domain.pdb b/ui/bin/Debug/net8.0/domain.pdb
index a704173..5918cc0 100644
Binary files a/ui/bin/Debug/net8.0/domain.pdb and b/ui/bin/Debug/net8.0/domain.pdb differ
diff --git a/ui/bin/Debug/net8.0/ui.dll b/ui/bin/Debug/net8.0/ui.dll
index 3892d0f..e304331 100644
Binary files a/ui/bin/Debug/net8.0/ui.dll and b/ui/bin/Debug/net8.0/ui.dll differ
diff --git a/ui/bin/Debug/net8.0/ui.pdb b/ui/bin/Debug/net8.0/ui.pdb
index c1b30b7..ba37027 100644
Binary files a/ui/bin/Debug/net8.0/ui.pdb and b/ui/bin/Debug/net8.0/ui.pdb differ
diff --git a/ui/obj/Debug/net8.0/ref/ui.dll b/ui/obj/Debug/net8.0/ref/ui.dll
index a5a9e14..7de952d 100644
Binary files a/ui/obj/Debug/net8.0/ref/ui.dll and b/ui/obj/Debug/net8.0/ref/ui.dll differ
diff --git a/ui/obj/Debug/net8.0/refint/ui.dll b/ui/obj/Debug/net8.0/refint/ui.dll
index a5a9e14..7de952d 100644
Binary files a/ui/obj/Debug/net8.0/refint/ui.dll and b/ui/obj/Debug/net8.0/refint/ui.dll differ
diff --git a/ui/obj/Debug/net8.0/ui.AssemblyInfo.cs b/ui/obj/Debug/net8.0/ui.AssemblyInfo.cs
index b9bd0c2..0db5a28 100644
--- a/ui/obj/Debug/net8.0/ui.AssemblyInfo.cs
+++ b/ui/obj/Debug/net8.0/ui.AssemblyInfo.cs
@@ -13,7 +13,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("ui")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7d03600cac4088e592e3a84368946b3e313cc8b5")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+427bb6d1639a554afe63c4c9b999f31f3af7ae76")]
[assembly: System.Reflection.AssemblyProductAttribute("ui")]
[assembly: System.Reflection.AssemblyTitleAttribute("ui")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
diff --git a/ui/obj/Debug/net8.0/ui.AssemblyInfoInputs.cache b/ui/obj/Debug/net8.0/ui.AssemblyInfoInputs.cache
index a182d8e..c92d556 100644
--- a/ui/obj/Debug/net8.0/ui.AssemblyInfoInputs.cache
+++ b/ui/obj/Debug/net8.0/ui.AssemblyInfoInputs.cache
@@ -1 +1 @@
-d777f0bc903b8628182786e327f34a1218980e149c2424c39e1b85b062853bcd
+6b2706fd1f27814daa069ff07e06b64f3629ae9da285a319059bb4f65025a36c
diff --git a/ui/obj/Debug/net8.0/ui.assets.cache b/ui/obj/Debug/net8.0/ui.assets.cache
index 0665931..f6376bb 100644
Binary files a/ui/obj/Debug/net8.0/ui.assets.cache and b/ui/obj/Debug/net8.0/ui.assets.cache differ
diff --git a/ui/obj/Debug/net8.0/ui.csproj.AssemblyReference.cache b/ui/obj/Debug/net8.0/ui.csproj.AssemblyReference.cache
index a599e77..c2c9552 100644
Binary files a/ui/obj/Debug/net8.0/ui.csproj.AssemblyReference.cache and b/ui/obj/Debug/net8.0/ui.csproj.AssemblyReference.cache differ
diff --git a/ui/obj/Debug/net8.0/ui.csproj.CoreCompileInputs.cache b/ui/obj/Debug/net8.0/ui.csproj.CoreCompileInputs.cache
index 3a0f28b..fd1ca50 100644
--- a/ui/obj/Debug/net8.0/ui.csproj.CoreCompileInputs.cache
+++ b/ui/obj/Debug/net8.0/ui.csproj.CoreCompileInputs.cache
@@ -1 +1 @@
-d795b368ad8e7faaf21492709439546ed556b4339dc5f9a554b1df010a2a1e1f
+04e68b0716a4cc0ae5ae4b57a632d0942b74a65fde83ae2096c5af44f8cc9642
diff --git a/ui/obj/Debug/net8.0/ui.dll b/ui/obj/Debug/net8.0/ui.dll
index 3892d0f..e304331 100644
Binary files a/ui/obj/Debug/net8.0/ui.dll and b/ui/obj/Debug/net8.0/ui.dll differ
diff --git a/ui/obj/Debug/net8.0/ui.pdb b/ui/obj/Debug/net8.0/ui.pdb
index c1b30b7..ba37027 100644
Binary files a/ui/obj/Debug/net8.0/ui.pdb and b/ui/obj/Debug/net8.0/ui.pdb differ
diff --git a/ui/obj/project.assets.json b/ui/obj/project.assets.json
index be0a5ff..9472c93 100644
--- a/ui/obj/project.assets.json
+++ b/ui/obj/project.assets.json
@@ -1103,8 +1103,16 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.403/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.404/PortableRuntimeIdentifierGraph.json"
}
}
- }
+ },
+ "logs": [
+ {
+ "code": "NU1900",
+ "level": "Warning",
+ "warningLevel": 1,
+ "message": "Error occurred while getting package vulnerability data: Unable to load the service index for source https://api.nuget.org/v3/index.json."
+ }
+ ]
}
\ No newline at end of file
diff --git a/ui/obj/project.nuget.cache b/ui/obj/project.nuget.cache
index fd3d208..f1ef86a 100644
--- a/ui/obj/project.nuget.cache
+++ b/ui/obj/project.nuget.cache
@@ -1,6 +1,6 @@
{
"version": 2,
- "dgSpecHash": "vsrua9sX8Dg=",
+ "dgSpecHash": "/7XvFk2kKB0=",
"success": true,
"projectFilePath": "/home/gara/csharp/BIGPROGECT/presence/ui/ui.csproj",
"expectedPackageFiles": [
@@ -28,5 +28,12 @@
"/home/gara/.nuget/packages/sixlabors.fonts/1.0.0/sixlabors.fonts.1.0.0.nupkg.sha512",
"/home/gara/.nuget/packages/system.io.packaging/8.0.0/system.io.packaging.8.0.0.nupkg.sha512"
],
- "logs": []
+ "logs": [
+ {
+ "code": "NU1900",
+ "level": "Warning",
+ "warningLevel": 1,
+ "message": "Error occurred while getting package vulnerability data: Unable to load the service index for source https://api.nuget.org/v3/index.json."
+ }
+ ]
}
\ No newline at end of file
diff --git a/ui/obj/ui.csproj.nuget.dgspec.json b/ui/obj/ui.csproj.nuget.dgspec.json
index 6748794..085a05f 100644
--- a/ui/obj/ui.csproj.nuget.dgspec.json
+++ b/ui/obj/ui.csproj.nuget.dgspec.json
@@ -74,7 +74,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.403/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.404/PortableRuntimeIdentifierGraph.json"
}
}
},
@@ -136,7 +136,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.403/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.404/PortableRuntimeIdentifierGraph.json"
}
}
},
@@ -204,7 +204,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.403/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.404/PortableRuntimeIdentifierGraph.json"
}
}
}