diff --git a/.vscode/launch.json b/.vscode/launch.json
index c21d689..7f3f828 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -11,9 +11,9 @@
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
- "program": "${workspaceFolder}/ble-server-linux/bin/Debug/net8.0/ble-server-linux.dll",
+ "program": "${workspaceFolder}/example/bin/Debug/net8.0/ble-server-linux.dll",
"args": [],
- "cwd": "${workspaceFolder}/ble-server-linux",
+ "cwd": "${workspaceFolder}/example",
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
"console": "internalConsole",
"stopAtEntry": false
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
index 19485a0..af39500 100644
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -7,7 +7,7 @@
"type": "process",
"args": [
"build",
- "${workspaceFolder}/ble-server-linux/ble-server-linux.csproj",
+ "${workspaceFolder}/example/ble-server-linux.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary;ForceNoAlign"
],
@@ -19,7 +19,7 @@
"type": "process",
"args": [
"publish",
- "${workspaceFolder}/ble-server-linux/ble-server-linux.csproj",
+ "${workspaceFolder}/example/ble-server-linux.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary;ForceNoAlign"
],
@@ -33,7 +33,7 @@
"watch",
"run",
"--project",
- "${workspaceFolder}/ble-server-linux/ble-server-linux.csproj"
+ "${workspaceFolder}/example/ble-server-linux.csproj"
],
"problemMatcher": "$msCompile"
}
diff --git a/DotnetBleServer.sln b/DotnetBleServer.sln
index 3c50834..6d7a082 100755
--- a/DotnetBleServer.sln
+++ b/DotnetBleServer.sln
@@ -3,9 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.29418.71
MinimumVisualStudioVersion = 10.0.40219.1
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Example-server-linux", "ble-server-linux\ble-server-linux.csproj", "{AE3AAA32-DFE6-4CAD-BE3D-0CFBA5C75EC4}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Example-server-linux", "example\ble-server-linux.csproj", "{AE3AAA32-DFE6-4CAD-BE3D-0CFBA5C75EC4}"
EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DotnetBleServer", "dotnet_ble_server\dotnetbleserver.csproj", "{0D775919-ECF4-4C71-92ED-D7D70D9BF59F}"
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DotnetBluezServer", "src\dotnet_bluez_server\dotnetbleserver.csproj", "{0D775919-ECF4-4C71-92ED-D7D70D9BF59F}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
diff --git a/README.md b/README.md
index c0aa724..872a84e 100644
--- a/README.md
+++ b/README.md
@@ -2,8 +2,6 @@
.NET BlueZ Server is a powerful library designed to facilitate the creation of Bluetooth Low Energy (BLE) peripherals and efficiently manage centrals on Linux using .NET Core. Leveraging the capabilities of BlueZ under the hood, this library offers a seamless API that preserves the object structure of BlueZ while streamlining D-Bus communication for a more developer-friendly experience.
This library builds upon [.NET BLE Server](https://github.com/phylomeno/dotnet-ble-server), introducing specialized methods for handling connected centrals to BLE peripherals.
-
-[![Bluez.NET.Server](https://img.shields.io/nuget/v/Bluez.NET.Server)](https://www.nuget.org/packages/Bluez.NET.Server/)
## Key features
@@ -15,79 +13,8 @@
- Get all paired devices
- Get central object path on Read and Write request
-## Example
+### Demo Example
+Find demo project under example directory
-
-Create BLE peripheral
-
-```
-ServerContext _CurrentServerContext = new ServerContext();
-await BleAdvertisement.RegisterAdvertisement(_CurrentServerContext);
-await BleGattApplication.RegisterGattApplication(_CurrentServerContext);
-DeviceManager.SetDevicePropertyListenerAsync(_CurrentServerContext, OnDeviceConnectedAsync);
-```
-
-Listen to Central property change
-
-```
-private async void OnDeviceConnectedAsync(IDevice1 device, PropertyChanges changes)
-{
- foreach (var change in changes.Changed)
- {
- Console.WriteLine($"{change.Key}:{change.Value}");
- }
-}
-```
-
-Get BLE Adapter
-
-```
-AdapterManager.GetAdapter(_CurrentServerContext);
-```
-
-Turn ON/OFF BLE Adapter
-
-```
-var isAdapterOn = AdapterManager.SetAdapterPowerOn(_CurrentServerContext);
-var isAdapterOff = AdapterManager.SetAdapterPowerOff(_CurrentServerContext);
-```
-
-Get paired devices
-
-```
-var devices = await DeviceManager.GetDeviceListAsync(_CurrentServerContext);
-```
-
-Remove paired device
-
-```
-await DeviceManager.RemoveDeviceAsync(_CurrentServerContext, iDevice);
-```
-
-Get Device from the Address
-
-```
- var device = await DeviceManager.GetDeviceAsync(_CurrentServerContext, address);
-```
-
-Get Device from the object path
-
-```
-var device = await DeviceManager.GetDeviceByObject(_CurrentServerContext, address);
-```
-
-Pair device
-
-```
-var paired = await device.GetPairedAsync();
-if (!paired)
-{
- var response = await DeviceManager.PairDeviceAsync(_CurrentServerContext,device);
-}
-```
-
-## Useful references
-| Resource | Link |
-|-----------------------------------------|------------------------------------------------------------------------------------------------|
-| BlueZ GATT API documentation | [https://git.kernel.org/pub/scm/bluetooth/bluez.git/tree/doc/gatt-api.txt](https://git.kernel.org/pub/scm/bluetooth/bluez.git/tree/doc/gatt-api.txt) |
-| Presentation BLE on Linux | [https://elinux.org/images/3/32/Doing_Bluetooth_Low_Energy_on_Linux.pdf](https://elinux.org/images/3/32/Doing_Bluetooth_Low_Energy_on_Linux.pdf) |
+More:
+[.NET Bluez Server](https://github.com/exendahal/dotnet_bluez_server)
diff --git a/ble-server-linux/bin/Debug/net7.0/Avalonia.Base.dll b/ble-server-linux/bin/Debug/net7.0/Avalonia.Base.dll
deleted file mode 100755
index c26dd3d..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/Avalonia.Base.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/Avalonia.Controls.ColorPicker.dll b/ble-server-linux/bin/Debug/net7.0/Avalonia.Controls.ColorPicker.dll
deleted file mode 100755
index 81e9fa9..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/Avalonia.Controls.ColorPicker.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/Avalonia.Controls.DataGrid.dll b/ble-server-linux/bin/Debug/net7.0/Avalonia.Controls.DataGrid.dll
deleted file mode 100755
index d44b987..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/Avalonia.Controls.DataGrid.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/Avalonia.Controls.dll b/ble-server-linux/bin/Debug/net7.0/Avalonia.Controls.dll
deleted file mode 100755
index e1c975a..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/Avalonia.Controls.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/Avalonia.DesignerSupport.dll b/ble-server-linux/bin/Debug/net7.0/Avalonia.DesignerSupport.dll
deleted file mode 100755
index f7621ee..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/Avalonia.DesignerSupport.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/Avalonia.Desktop.dll b/ble-server-linux/bin/Debug/net7.0/Avalonia.Desktop.dll
deleted file mode 100755
index 3df7add..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/Avalonia.Desktop.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/Avalonia.Diagnostics.dll b/ble-server-linux/bin/Debug/net7.0/Avalonia.Diagnostics.dll
deleted file mode 100755
index 2d942c2..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/Avalonia.Diagnostics.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/Avalonia.Dialogs.dll b/ble-server-linux/bin/Debug/net7.0/Avalonia.Dialogs.dll
deleted file mode 100755
index 2c5af4d..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/Avalonia.Dialogs.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/Avalonia.FreeDesktop.dll b/ble-server-linux/bin/Debug/net7.0/Avalonia.FreeDesktop.dll
deleted file mode 100755
index fbc7674..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/Avalonia.FreeDesktop.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/Avalonia.Markup.Xaml.dll b/ble-server-linux/bin/Debug/net7.0/Avalonia.Markup.Xaml.dll
deleted file mode 100755
index cd9dfed..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/Avalonia.Markup.Xaml.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/Avalonia.Markup.dll b/ble-server-linux/bin/Debug/net7.0/Avalonia.Markup.dll
deleted file mode 100755
index f805945..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/Avalonia.Markup.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/Avalonia.Metal.dll b/ble-server-linux/bin/Debug/net7.0/Avalonia.Metal.dll
deleted file mode 100755
index b0f0d2d..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/Avalonia.Metal.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/Avalonia.MicroCom.dll b/ble-server-linux/bin/Debug/net7.0/Avalonia.MicroCom.dll
deleted file mode 100755
index 3a69d60..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/Avalonia.MicroCom.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/Avalonia.Native.dll b/ble-server-linux/bin/Debug/net7.0/Avalonia.Native.dll
deleted file mode 100755
index dcec5a7..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/Avalonia.Native.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/Avalonia.OpenGL.dll b/ble-server-linux/bin/Debug/net7.0/Avalonia.OpenGL.dll
deleted file mode 100755
index 1f4c255..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/Avalonia.OpenGL.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/Avalonia.Remote.Protocol.dll b/ble-server-linux/bin/Debug/net7.0/Avalonia.Remote.Protocol.dll
deleted file mode 100755
index d340b20..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/Avalonia.Remote.Protocol.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/Avalonia.Skia.dll b/ble-server-linux/bin/Debug/net7.0/Avalonia.Skia.dll
deleted file mode 100755
index 74dcf34..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/Avalonia.Skia.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/Avalonia.Themes.Fluent.dll b/ble-server-linux/bin/Debug/net7.0/Avalonia.Themes.Fluent.dll
deleted file mode 100755
index 25a68ae..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/Avalonia.Themes.Fluent.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/Avalonia.Themes.Simple.dll b/ble-server-linux/bin/Debug/net7.0/Avalonia.Themes.Simple.dll
deleted file mode 100755
index 455ca54..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/Avalonia.Themes.Simple.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/Avalonia.Win32.dll b/ble-server-linux/bin/Debug/net7.0/Avalonia.Win32.dll
deleted file mode 100755
index 733d72d..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/Avalonia.Win32.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/Avalonia.X11.dll b/ble-server-linux/bin/Debug/net7.0/Avalonia.X11.dll
deleted file mode 100755
index 8add9b5..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/Avalonia.X11.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/Avalonia.dll b/ble-server-linux/bin/Debug/net7.0/Avalonia.dll
deleted file mode 100755
index dee97b6..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/Avalonia.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/ColorTextBlock.Avalonia.dll b/ble-server-linux/bin/Debug/net7.0/ColorTextBlock.Avalonia.dll
deleted file mode 100755
index 63b75e9..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/ColorTextBlock.Avalonia.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/DialogHost.Avalonia.dll b/ble-server-linux/bin/Debug/net7.0/DialogHost.Avalonia.dll
deleted file mode 100755
index 803e3ad..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/DialogHost.Avalonia.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/HarfBuzzSharp.dll b/ble-server-linux/bin/Debug/net7.0/HarfBuzzSharp.dll
deleted file mode 100755
index 4b59181..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/HarfBuzzSharp.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/Markdown.Avalonia.dll b/ble-server-linux/bin/Debug/net7.0/Markdown.Avalonia.dll
deleted file mode 100755
index 2cd5597..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/Markdown.Avalonia.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/MicroCom.Runtime.dll b/ble-server-linux/bin/Debug/net7.0/MicroCom.Runtime.dll
deleted file mode 100755
index f6cf008..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/MicroCom.Runtime.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll b/ble-server-linux/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll
deleted file mode 100755
index 4fc11e1..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.dll b/ble-server-linux/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.dll
deleted file mode 100755
index f8c3571..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/Microsoft.CodeAnalysis.Scripting.dll b/ble-server-linux/bin/Debug/net7.0/Microsoft.CodeAnalysis.Scripting.dll
deleted file mode 100755
index 01846bf..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/Microsoft.CodeAnalysis.Scripting.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/Microsoft.CodeAnalysis.dll b/ble-server-linux/bin/Debug/net7.0/Microsoft.CodeAnalysis.dll
deleted file mode 100755
index 100c075..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/Microsoft.CodeAnalysis.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/Microsoft.Win32.SystemEvents.dll b/ble-server-linux/bin/Debug/net7.0/Microsoft.Win32.SystemEvents.dll
deleted file mode 100755
index 3ab5850..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/Microsoft.Win32.SystemEvents.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/MsBox.Avalonia.dll b/ble-server-linux/bin/Debug/net7.0/MsBox.Avalonia.dll
deleted file mode 100755
index 6c72a85..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/MsBox.Avalonia.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/SkiaSharp.dll b/ble-server-linux/bin/Debug/net7.0/SkiaSharp.dll
deleted file mode 100755
index be13cf5..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/SkiaSharp.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/System.Drawing.Common.dll b/ble-server-linux/bin/Debug/net7.0/System.Drawing.Common.dll
deleted file mode 100755
index be6915e..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/System.Drawing.Common.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/System.IO.Pipelines.dll b/ble-server-linux/bin/Debug/net7.0/System.IO.Pipelines.dll
deleted file mode 100755
index 4f5306a..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/System.IO.Pipelines.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/System.Reactive.dll b/ble-server-linux/bin/Debug/net7.0/System.Reactive.dll
deleted file mode 100755
index f179765..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/System.Reactive.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/Tmds.DBus.Protocol.dll b/ble-server-linux/bin/Debug/net7.0/Tmds.DBus.Protocol.dll
deleted file mode 100755
index d06b276..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/Tmds.DBus.Protocol.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/Tmds.DBus.dll b/ble-server-linux/bin/Debug/net7.0/Tmds.DBus.dll
deleted file mode 100755
index e60b7d3..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/Tmds.DBus.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/ble-server-linux b/ble-server-linux/bin/Debug/net7.0/ble-server-linux
deleted file mode 100755
index 619436e..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/ble-server-linux and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/ble-server-linux.deps.json b/ble-server-linux/bin/Debug/net7.0/ble-server-linux.deps.json
deleted file mode 100644
index 6e5839f..0000000
--- a/ble-server-linux/bin/Debug/net7.0/ble-server-linux.deps.json
+++ /dev/null
@@ -1,1564 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v7.0",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v7.0": {
- "ble-server-linux/1.0.0": {
- "dependencies": {
- "Avalonia": "11.0.5",
- "Avalonia.Controls.DataGrid": "11.0.5",
- "Avalonia.Desktop": "11.0.5",
- "Avalonia.Diagnostics": "11.0.5",
- "Avalonia.Themes.Fluent": "11.0.5",
- "DotneBluezServer": "1.0.0",
- "MessageBox.Avalonia": "3.1.5.1",
- "Tmds.LibC": "0.5.0",
- "dotnetbleserver": "1.0.0.0"
- },
- "runtime": {
- "ble-server-linux.dll": {}
- }
- },
- "Avalonia/11.0.5": {
- "dependencies": {
- "Avalonia.BuildServices": "0.0.29",
- "Avalonia.Remote.Protocol": "11.0.5",
- "MicroCom.Runtime": "0.11.0",
- "System.ComponentModel.Annotations": "4.5.0"
- },
- "runtime": {
- "lib/net6.0/Avalonia.Base.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- },
- "lib/net6.0/Avalonia.Controls.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- },
- "lib/net6.0/Avalonia.DesignerSupport.dll": {
- "assemblyVersion": "0.7.0.0",
- "fileVersion": "0.7.0.0"
- },
- "lib/net6.0/Avalonia.Dialogs.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- },
- "lib/net6.0/Avalonia.Markup.Xaml.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- },
- "lib/net6.0/Avalonia.Markup.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- },
- "lib/net6.0/Avalonia.Metal.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- },
- "lib/net6.0/Avalonia.MicroCom.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- },
- "lib/net6.0/Avalonia.OpenGL.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- },
- "lib/net6.0/Avalonia.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- }
- }
- },
- "Avalonia.Angle.Windows.Natives/2.1.0.2023020321": {
- "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.0.5": {
- "dependencies": {
- "Avalonia": "11.0.5",
- "Avalonia.Remote.Protocol": "11.0.5"
- },
- "runtime": {
- "lib/net6.0/Avalonia.Controls.ColorPicker.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- }
- }
- },
- "Avalonia.Controls.DataGrid/11.0.5": {
- "dependencies": {
- "Avalonia": "11.0.5",
- "Avalonia.Remote.Protocol": "11.0.5"
- },
- "runtime": {
- "lib/net6.0/Avalonia.Controls.DataGrid.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- }
- }
- },
- "Avalonia.Desktop/11.0.5": {
- "dependencies": {
- "Avalonia": "11.0.5",
- "Avalonia.Native": "11.0.5",
- "Avalonia.Skia": "11.0.5",
- "Avalonia.Win32": "11.0.5",
- "Avalonia.X11": "11.0.5"
- },
- "runtime": {
- "lib/net6.0/Avalonia.Desktop.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- }
- }
- },
- "Avalonia.Diagnostics/11.0.5": {
- "dependencies": {
- "Avalonia": "11.0.5",
- "Avalonia.Controls.ColorPicker": "11.0.5",
- "Avalonia.Controls.DataGrid": "11.0.5",
- "Avalonia.Themes.Simple": "11.0.5",
- "Microsoft.CodeAnalysis.CSharp.Scripting": "3.8.0",
- "Microsoft.CodeAnalysis.Common": "3.8.0"
- },
- "runtime": {
- "lib/net6.0/Avalonia.Diagnostics.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- }
- }
- },
- "Avalonia.FreeDesktop/11.0.5": {
- "dependencies": {
- "Avalonia": "11.0.5",
- "Tmds.DBus.Protocol": "0.15.0"
- },
- "runtime": {
- "lib/net6.0/Avalonia.FreeDesktop.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- }
- }
- },
- "Avalonia.Native/11.0.5": {
- "dependencies": {
- "Avalonia": "11.0.5"
- },
- "runtime": {
- "lib/net6.0/Avalonia.Native.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- }
- },
- "runtimeTargets": {
- "runtimes/osx/native/libAvaloniaNative.dylib": {
- "rid": "osx",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "Avalonia.Remote.Protocol/11.0.5": {
- "runtime": {
- "lib/net6.0/Avalonia.Remote.Protocol.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- }
- }
- },
- "Avalonia.Skia/11.0.5": {
- "dependencies": {
- "Avalonia": "11.0.5",
- "HarfBuzzSharp": "2.8.2.3",
- "HarfBuzzSharp.NativeAssets.Linux": "2.8.2.3",
- "HarfBuzzSharp.NativeAssets.WebAssembly": "2.8.2.3",
- "SkiaSharp": "2.88.6",
- "SkiaSharp.NativeAssets.Linux": "2.88.6",
- "SkiaSharp.NativeAssets.WebAssembly": "2.88.6"
- },
- "runtime": {
- "lib/net6.0/Avalonia.Skia.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- }
- }
- },
- "Avalonia.Themes.Fluent/11.0.5": {
- "dependencies": {
- "Avalonia": "11.0.5"
- },
- "runtime": {
- "lib/net6.0/Avalonia.Themes.Fluent.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- }
- }
- },
- "Avalonia.Themes.Simple/11.0.5": {
- "dependencies": {
- "Avalonia": "11.0.5"
- },
- "runtime": {
- "lib/net6.0/Avalonia.Themes.Simple.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- }
- }
- },
- "Avalonia.Win32/11.0.5": {
- "dependencies": {
- "Avalonia": "11.0.5",
- "Avalonia.Angle.Windows.Natives": "2.1.0.2023020321",
- "System.Drawing.Common": "6.0.0",
- "System.Numerics.Vectors": "4.5.0"
- },
- "runtime": {
- "lib/net6.0/Avalonia.Win32.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- }
- }
- },
- "Avalonia.X11/11.0.5": {
- "dependencies": {
- "Avalonia": "11.0.5",
- "Avalonia.FreeDesktop": "11.0.5",
- "Avalonia.Skia": "11.0.5"
- },
- "runtime": {
- "lib/net6.0/Avalonia.X11.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- }
- }
- },
- "ColorTextBlock.Avalonia/11.0.2": {
- "dependencies": {
- "Avalonia": "11.0.5"
- },
- "runtime": {
- "lib/net6.0/ColorTextBlock.Avalonia.dll": {
- "assemblyVersion": "11.0.2.0",
- "fileVersion": "11.0.2.0"
- }
- }
- },
- "DialogHost.Avalonia/0.7.7": {
- "dependencies": {
- "Avalonia": "11.0.5",
- "System.Reactive": "6.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/DialogHost.Avalonia.dll": {
- "assemblyVersion": "0.7.7.0",
- "fileVersion": "0.7.7.0"
- }
- }
- },
- "HarfBuzzSharp/2.8.2.3": {
- "dependencies": {
- "HarfBuzzSharp.NativeAssets.Win32": "2.8.2.3",
- "HarfBuzzSharp.NativeAssets.macOS": "2.8.2.3"
- },
- "runtime": {
- "lib/net6.0/HarfBuzzSharp.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "2.8.2.3"
- }
- }
- },
- "HarfBuzzSharp.NativeAssets.Linux/2.8.2.3": {
- "dependencies": {
- "HarfBuzzSharp": "2.8.2.3"
- },
- "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/2.8.2.3": {
- "runtimeTargets": {
- "runtimes/osx/native/libHarfBuzzSharp.dylib": {
- "rid": "osx",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "HarfBuzzSharp.NativeAssets.WebAssembly/2.8.2.3": {},
- "HarfBuzzSharp.NativeAssets.Win32/2.8.2.3": {
- "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"
- }
- }
- },
- "Markdown.Avalonia.Tight/11.0.2": {
- "dependencies": {
- "Avalonia": "11.0.5",
- "ColorTextBlock.Avalonia": "11.0.2"
- },
- "runtime": {
- "lib/net6.0/Markdown.Avalonia.dll": {
- "assemblyVersion": "11.0.2.0",
- "fileVersion": "11.0.2.0"
- }
- }
- },
- "MessageBox.Avalonia/3.1.5.1": {
- "dependencies": {
- "Avalonia": "11.0.5",
- "DialogHost.Avalonia": "0.7.7",
- "Markdown.Avalonia.Tight": "11.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/MsBox.Avalonia.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "1.0.0.0"
- }
- }
- },
- "MicroCom.Runtime/0.11.0": {
- "runtime": {
- "lib/net5.0/MicroCom.Runtime.dll": {
- "assemblyVersion": "0.11.0.0",
- "fileVersion": "0.11.0.0"
- }
- }
- },
- "Microsoft.CodeAnalysis.Analyzers/3.0.0": {},
- "Microsoft.CodeAnalysis.Common/3.8.0": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Analyzers": "3.0.0",
- "System.Collections.Immutable": "5.0.0",
- "System.Memory": "4.5.4",
- "System.Reflection.Metadata": "5.0.0",
- "System.Runtime.CompilerServices.Unsafe": "4.7.1",
- "System.Text.Encoding.CodePages": "4.5.1",
- "System.Threading.Tasks.Extensions": "4.5.4"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
- "assemblyVersion": "3.8.0.0",
- "fileVersion": "3.800.20.56202"
- }
- },
- "resources": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.CSharp/3.8.0": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Common": "3.8.0"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
- "assemblyVersion": "3.8.0.0",
- "fileVersion": "3.800.20.56202"
- }
- },
- "resources": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.CSharp.Scripting/3.8.0": {
- "dependencies": {
- "Microsoft.CSharp": "4.3.0",
- "Microsoft.CodeAnalysis.CSharp": "3.8.0",
- "Microsoft.CodeAnalysis.Common": "3.8.0",
- "Microsoft.CodeAnalysis.Scripting.Common": "3.8.0"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Scripting.dll": {
- "assemblyVersion": "3.8.0.0",
- "fileVersion": "3.800.20.56202"
- }
- },
- "resources": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.Scripting.Common/3.8.0": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Common": "3.8.0"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll": {
- "assemblyVersion": "3.8.0.0",
- "fileVersion": "3.800.20.56202"
- }
- },
- "resources": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CSharp/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Dynamic.Runtime": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Linq.Expressions": "4.3.0",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Threading": "4.3.0"
- }
- },
- "Microsoft.NETCore.Platforms/2.1.2": {},
- "Microsoft.NETCore.Targets/1.1.0": {},
- "Microsoft.Win32.SystemEvents/6.0.0": {
- "runtime": {
- "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- },
- "runtimeTargets": {
- "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
- "rid": "win",
- "assetType": "runtime",
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- }
- },
- "SkiaSharp/2.88.6": {
- "dependencies": {
- "SkiaSharp.NativeAssets.Win32": "2.88.6",
- "SkiaSharp.NativeAssets.macOS": "2.88.6"
- },
- "runtime": {
- "lib/net6.0/SkiaSharp.dll": {
- "assemblyVersion": "2.88.0.0",
- "fileVersion": "2.88.6.0"
- }
- }
- },
- "SkiaSharp.NativeAssets.Linux/2.88.6": {
- "dependencies": {
- "SkiaSharp": "2.88.6"
- },
- "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.6": {
- "runtimeTargets": {
- "runtimes/osx/native/libSkiaSharp.dylib": {
- "rid": "osx",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "SkiaSharp.NativeAssets.WebAssembly/2.88.6": {},
- "SkiaSharp.NativeAssets.Win32/2.88.6": {
- "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"
- }
- }
- },
- "System.Collections/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.1.2",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Collections.Immutable/5.0.0": {},
- "System.ComponentModel.Annotations/4.5.0": {},
- "System.Diagnostics.Debug/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.1.2",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Drawing.Common/6.0.0": {
- "dependencies": {
- "Microsoft.Win32.SystemEvents": "6.0.0"
- },
- "runtime": {
- "lib/net6.0/System.Drawing.Common.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- },
- "runtimeTargets": {
- "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": {
- "rid": "unix",
- "assetType": "runtime",
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- },
- "runtimes/win/lib/net6.0/System.Drawing.Common.dll": {
- "rid": "win",
- "assetType": "runtime",
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- }
- },
- "System.Dynamic.Runtime/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Linq.Expressions": "4.3.0",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0"
- }
- },
- "System.Globalization/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.1.2",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.IO/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.1.2",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.IO.Pipelines/6.0.0": {
- "runtime": {
- "lib/net6.0/System.IO.Pipelines.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- }
- },
- "System.Linq/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0"
- }
- },
- "System.Linq.Expressions/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Linq": "4.3.0",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Emit.Lightweight": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0"
- }
- },
- "System.Memory/4.5.4": {},
- "System.Numerics.Vectors/4.5.0": {},
- "System.ObjectModel/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading": "4.3.0"
- }
- },
- "System.Reactive/6.0.0": {
- "runtime": {
- "lib/net6.0/System.Reactive.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.0.1"
- }
- }
- },
- "System.Reflection/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.1.2",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Emit/4.3.0": {
- "dependencies": {
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Emit.ILGeneration/4.3.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Emit.Lightweight/4.3.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Extensions/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.1.2",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Metadata/5.0.0": {},
- "System.Reflection.Primitives/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.1.2",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.TypeExtensions/4.3.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Resources.ResourceManager/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.1.2",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.1.2",
- "Microsoft.NETCore.Targets": "1.1.0"
- }
- },
- "System.Runtime.CompilerServices.Unsafe/4.7.1": {},
- "System.Runtime.Extensions/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.1.2",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime.Handles/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.1.2",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime.InteropServices/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.1.2",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0"
- }
- },
- "System.Text.Encoding/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.1.2",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Text.Encoding.CodePages/4.5.1": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.1.2",
- "System.Runtime.CompilerServices.Unsafe": "4.7.1"
- }
- },
- "System.Threading/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.Threading.Tasks/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.1.2",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Threading.Tasks.Extensions/4.5.4": {},
- "Tmds.DBus/0.15.0": {
- "runtime": {
- "lib/net6.0/Tmds.DBus.dll": {
- "assemblyVersion": "0.15.0.0",
- "fileVersion": "0.15.0.0"
- }
- }
- },
- "Tmds.DBus.Protocol/0.15.0": {
- "dependencies": {
- "System.IO.Pipelines": "6.0.0"
- },
- "runtime": {
- "lib/net6.0/Tmds.DBus.Protocol.dll": {
- "assemblyVersion": "0.15.0.0",
- "fileVersion": "0.15.0.0"
- }
- }
- },
- "Tmds.LibC/0.5.0": {
- "runtimeTargets": {
- "runtimes/linux-arm/lib/netstandard2.0/Tmds.LibC.dll": {
- "rid": "linux-arm",
- "assetType": "runtime",
- "assemblyVersion": "0.5.0.0",
- "fileVersion": "0.5.0.0"
- },
- "runtimes/linux-arm64/lib/netstandard2.0/Tmds.LibC.dll": {
- "rid": "linux-arm64",
- "assetType": "runtime",
- "assemblyVersion": "0.5.0.0",
- "fileVersion": "0.5.0.0"
- },
- "runtimes/linux-x64/lib/netstandard2.0/Tmds.LibC.dll": {
- "rid": "linux-x64",
- "assetType": "runtime",
- "assemblyVersion": "0.5.0.0",
- "fileVersion": "0.5.0.0"
- }
- }
- },
- "DotneBluezServer/1.0.0": {
- "dependencies": {
- "Tmds.DBus": "0.15.0"
- },
- "runtime": {
- "dotnetbleserver.dll": {}
- }
- },
- "dotnetbleserver/1.0.0.0": {
- "runtime": {
- "dotnetbleserver.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "1.0.0.0"
- }
- }
- }
- }
- },
- "libraries": {
- "ble-server-linux/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "Avalonia/11.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-twUjGl6gxQeyxO7wG6v+ntvAN2IeNXDr2oS6a7h5LRXy83ITbcuA0gYUqm/aeLVe0cviGSVWE9x5BVkDjZfXpQ==",
- "path": "avalonia/11.0.5",
- "hashPath": "avalonia.11.0.5.nupkg.sha512"
- },
- "Avalonia.Angle.Windows.Natives/2.1.0.2023020321": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Zlkkb8ipxrxNWVPCJgMO19fpcpYPP+bpOQ+jPtCFj8v+TzVvPdnGHuyv9IMvSHhhMfEpps4m4hjaP4FORQYVAA==",
- "path": "avalonia.angle.windows.natives/2.1.0.2023020321",
- "hashPath": "avalonia.angle.windows.natives.2.1.0.2023020321.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.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-N9RpqrDxyN52YSM6N6ViDWnE9XvC3bacZGlg0EH+uYOnxBZuh02kYw4UDa7S+TUdRXVc9HpmHpL3Y/sf/ydVTw==",
- "path": "avalonia.controls.colorpicker/11.0.5",
- "hashPath": "avalonia.controls.colorpicker.11.0.5.nupkg.sha512"
- },
- "Avalonia.Controls.DataGrid/11.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5ULaodkNkChEWE/xuRrSh6dpBExpvFDFSItdX7sDOxGqNwovaKk0+4HmzvXeQGntUeMsaAcDddZxoG+pUJ8PSA==",
- "path": "avalonia.controls.datagrid/11.0.5",
- "hashPath": "avalonia.controls.datagrid.11.0.5.nupkg.sha512"
- },
- "Avalonia.Desktop/11.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-YKgk+t42wbwsCQz/DMlLiV71jCwxN47tLRemZ1zmgclh3lf97++A3zJpxx+Cv3fGf5jJnvM1yzyeVU5HBOflJA==",
- "path": "avalonia.desktop/11.0.5",
- "hashPath": "avalonia.desktop.11.0.5.nupkg.sha512"
- },
- "Avalonia.Diagnostics/11.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-RoG+0sUlyoOlhAFc2rpkQzmJN7ztTqWqtB5mEZav3JacFLQ5npBrlLbcj9ewj2RQa+9zLiA9JmOlhK5zFprCnw==",
- "path": "avalonia.diagnostics/11.0.5",
- "hashPath": "avalonia.diagnostics.11.0.5.nupkg.sha512"
- },
- "Avalonia.FreeDesktop/11.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ChltTdFTlwrnn+3kpDD3zoBNeU4e7m2sOiff86CARUEdCaIO7d6+bmmtTishO4QGmwJOhaY0Jkjqfb4/wJmIvw==",
- "path": "avalonia.freedesktop/11.0.5",
- "hashPath": "avalonia.freedesktop.11.0.5.nupkg.sha512"
- },
- "Avalonia.Native/11.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZrOlxU7C5FdDVmTxta/xv83KKg+HqgnmX6hGTQdEK4Yn5rMVqy0h1CcuZr7UKM4kHnbWdUhbgZ3+mXeF6f8Mug==",
- "path": "avalonia.native/11.0.5",
- "hashPath": "avalonia.native.11.0.5.nupkg.sha512"
- },
- "Avalonia.Remote.Protocol/11.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-UDK2jNGWaMHOP4lENIeUp7WsNAv65PuR5Yjo6EksDgN+BfS99+O9QDskrroyCnaMredOYvyposyj5Bgur8vO1w==",
- "path": "avalonia.remote.protocol/11.0.5",
- "hashPath": "avalonia.remote.protocol.11.0.5.nupkg.sha512"
- },
- "Avalonia.Skia/11.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1t3yR1t0HOm0jITpn7+Wb2XUlwhbHPTr3i4ZrgYLKmc68fcBgBnQutJNjzLW3Iq8uWB8ymTeB3sKiD/NVkWFNw==",
- "path": "avalonia.skia/11.0.5",
- "hashPath": "avalonia.skia.11.0.5.nupkg.sha512"
- },
- "Avalonia.Themes.Fluent/11.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/sEz05Hiu20OuUm5e2LSn/Hnzz4OvnG7jLA+NvWMIBBzdaz0a7Kr4QqDJmcpyK6x/a3l+xw4HDpWxMsn3nSBGg==",
- "path": "avalonia.themes.fluent/11.0.5",
- "hashPath": "avalonia.themes.fluent.11.0.5.nupkg.sha512"
- },
- "Avalonia.Themes.Simple/11.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kDRQMs0nndFdRSeDedhGOg4NL5lw/QiTJJ9CzzuRUq7M8RzJIZz8clHh1CJZira5JZDYD3lpRmhIeNafk6bNqw==",
- "path": "avalonia.themes.simple/11.0.5",
- "hashPath": "avalonia.themes.simple.11.0.5.nupkg.sha512"
- },
- "Avalonia.Win32/11.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jjyNomyG/hG0rxelDszIUvJ1IdwazFsAtc++I00e55DIbHMQzH/CqwUEAevpAO6sh4w5fNnyXHuwS9Kl9N4zUg==",
- "path": "avalonia.win32/11.0.5",
- "hashPath": "avalonia.win32.11.0.5.nupkg.sha512"
- },
- "Avalonia.X11/11.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-FhJU/SUT2QTEhutSr8B/8w4ZZnVmmTPaHm+Y9/QiyzpS2UKz0e2lt3v8U7GKUdYpJD34ZMf6tl4zDiCnRiztgw==",
- "path": "avalonia.x11/11.0.5",
- "hashPath": "avalonia.x11.11.0.5.nupkg.sha512"
- },
- "ColorTextBlock.Avalonia/11.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-MsWu5aAbDpstAmJ+TTSgC6Q7YdjKB7Na912GMr3oWl9ag8TH2HNpglzgo+kIAuB4C4wswKfrzhso4UcpvgMuHg==",
- "path": "colortextblock.avalonia/11.0.2",
- "hashPath": "colortextblock.avalonia.11.0.2.nupkg.sha512"
- },
- "DialogHost.Avalonia/0.7.7": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-V5zq0e6dBeK1A8xDsyNouzfSx3d+aOhxPgjguaFyaDexgDF8WiSQDsawkv0fRGKbDnaPIqMk9m7P/2G5c7HPzw==",
- "path": "dialoghost.avalonia/0.7.7",
- "hashPath": "dialoghost.avalonia.0.7.7.nupkg.sha512"
- },
- "HarfBuzzSharp/2.8.2.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-8MwXm9J4dXHuTdzPo29nHgDbt4+6P+RrPrH/qrxcERf29cpLlFbjvP3eFPwHmdUrl4KL2SHEZi2ZuQ5ndeIL1w==",
- "path": "harfbuzzsharp/2.8.2.3",
- "hashPath": "harfbuzzsharp.2.8.2.3.nupkg.sha512"
- },
- "HarfBuzzSharp.NativeAssets.Linux/2.8.2.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Qu1yJSHEN7PD3+fqfkaClnORWN5e2xJ2Xoziz/GUi/oBT1Z+Dp2oZeiONKP6NFltboSOBkvH90QuOA6YN/U1zg==",
- "path": "harfbuzzsharp.nativeassets.linux/2.8.2.3",
- "hashPath": "harfbuzzsharp.nativeassets.linux.2.8.2.3.nupkg.sha512"
- },
- "HarfBuzzSharp.NativeAssets.macOS/2.8.2.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-uwz9pB3hMuxzI/bSkjVrsOJH7Wo1L+0Md5ZmEMDM/j7xDHtR9d3mfg/CfxhMIcTiUC4JgX49FZK0y2ojgu1dww==",
- "path": "harfbuzzsharp.nativeassets.macos/2.8.2.3",
- "hashPath": "harfbuzzsharp.nativeassets.macos.2.8.2.3.nupkg.sha512"
- },
- "HarfBuzzSharp.NativeAssets.WebAssembly/2.8.2.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-a6t2X1GrZDt3ErjFbG+qXdxaO8EvMMUN1AVZYfayh7EACHU3yU/SG/rveKLWhT8Ln5GFLqe2r+5dsDrHK1qScw==",
- "path": "harfbuzzsharp.nativeassets.webassembly/2.8.2.3",
- "hashPath": "harfbuzzsharp.nativeassets.webassembly.2.8.2.3.nupkg.sha512"
- },
- "HarfBuzzSharp.NativeAssets.Win32/2.8.2.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Wo6QpE4+a+PFVdfIBoLkLr4wq2uC0m9TZC8FAfy4ZnLsUc10WL0Egk9EBHHhDCeokNOXDse5YtvuTYtS/rbHfg==",
- "path": "harfbuzzsharp.nativeassets.win32/2.8.2.3",
- "hashPath": "harfbuzzsharp.nativeassets.win32.2.8.2.3.nupkg.sha512"
- },
- "Markdown.Avalonia.Tight/11.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Ylg0EkSUId42dVUFQvU7UJGWcKiJ+g7TesRe/KCzUYzlypWf1lTiVveT2j60QSldCtuAw3o/aEOEjIahMdRGig==",
- "path": "markdown.avalonia.tight/11.0.2",
- "hashPath": "markdown.avalonia.tight.11.0.2.nupkg.sha512"
- },
- "MessageBox.Avalonia/3.1.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-iE6AzefOgcNHwdmQoUIeuii09UsFzMJoo027dZ/oKXmIaX9C8isTejODlGsuRmWgvvgMNULXsQTaH0VknMSEnw==",
- "path": "messagebox.avalonia/3.1.5.1",
- "hashPath": "messagebox.avalonia.3.1.5.1.nupkg.sha512"
- },
- "MicroCom.Runtime/0.11.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-MEnrZ3UIiH40hjzMDsxrTyi8dtqB5ziv3iBeeU4bXsL/7NLSal9F1lZKpK+tfBRnUoDSdtcW3KufE4yhATOMCA==",
- "path": "microcom.runtime/0.11.0",
- "hashPath": "microcom.runtime.0.11.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Analyzers/3.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ojG5pGAhTPmjxRGTNvuszO3H8XPZqksDwr9xLd4Ae/JBjZZdl6GuoLk7uLMf+o7yl5wO0TAqoWcEKkEWqrZE5g==",
- "path": "microsoft.codeanalysis.analyzers/3.0.0",
- "hashPath": "microsoft.codeanalysis.analyzers.3.0.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Common/3.8.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-8YTZ7GpsbTdC08DITx7/kwV0k4SC6cbBAFqc13cOm5vKJZcEIAh51tNSyGSkWisMgYCr96B2wb5Zri1bsla3+g==",
- "path": "microsoft.codeanalysis.common/3.8.0",
- "hashPath": "microsoft.codeanalysis.common.3.8.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.CSharp/3.8.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-hKqFCUSk9TIMBDjiYMF8/ZfK9p9mzpU+slM73CaCHu4ctfkoqJGHLQhyT8wvrYsIg+ufrUWBF8hcJYmyr5rc5Q==",
- "path": "microsoft.codeanalysis.csharp/3.8.0",
- "hashPath": "microsoft.codeanalysis.csharp.3.8.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.CSharp.Scripting/3.8.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+XVKzByNigzzvl7rGwpzFrkUbbekNUwdMW3EghcxmNRZd9aamNXxes3I/U0tYx1LTeHEQ5y/nzb7SiEmXBmzEA==",
- "path": "microsoft.codeanalysis.csharp.scripting/3.8.0",
- "hashPath": "microsoft.codeanalysis.csharp.scripting.3.8.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Scripting.Common/3.8.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lR8Mxg/4tnwzFyqJOD7wBoXbyDKEaMxRc0E9UWtHNGBiL1qBdYyVhXPmiOPUL44tUJeQwCOHAr554jRHGBQIcw==",
- "path": "microsoft.codeanalysis.scripting.common/3.8.0",
- "hashPath": "microsoft.codeanalysis.scripting.common.3.8.0.nupkg.sha512"
- },
- "Microsoft.CSharp/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
- "path": "microsoft.csharp/4.3.0",
- "hashPath": "microsoft.csharp.4.3.0.nupkg.sha512"
- },
- "Microsoft.NETCore.Platforms/2.1.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mOJy3M0UN+LUG21dLGMxaWZEP6xYpQEpLuvuEQBaownaX4YuhH6NmNUlN9si+vNkAS6dwJ//N1O4DmLf2CikVg==",
- "path": "microsoft.netcore.platforms/2.1.2",
- "hashPath": "microsoft.netcore.platforms.2.1.2.nupkg.sha512"
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
- "path": "microsoft.netcore.targets/1.1.0",
- "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
- },
- "Microsoft.Win32.SystemEvents/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==",
- "path": "microsoft.win32.systemevents/6.0.0",
- "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512"
- },
- "SkiaSharp/2.88.6": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-wdfeBAQrEQCbJIRgAiargzP1Uy+0grZiG4CSgBnhAgcJTsPzlifIaO73JRdwIlT3TyBoeU9jEqzwFUhl4hTYnQ==",
- "path": "skiasharp/2.88.6",
- "hashPath": "skiasharp.2.88.6.nupkg.sha512"
- },
- "SkiaSharp.NativeAssets.Linux/2.88.6": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-iQcOUE0tPZvBUxOdZaP3LIdAC21H8BEMhDvpCQ/mUUvbKGLd5rF7veJVSZBNu20SuCC0oZpEdGxB+mLVOK8uzw==",
- "path": "skiasharp.nativeassets.linux/2.88.6",
- "hashPath": "skiasharp.nativeassets.linux.2.88.6.nupkg.sha512"
- },
- "SkiaSharp.NativeAssets.macOS/2.88.6": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Sko9LFxRXSjb3OGh5/RxrVRXxYo48tr5NKuuSy6jB85GrYt8WRqVY1iLOLwtjPiVAt4cp+pyD4i30azanS64dw==",
- "path": "skiasharp.nativeassets.macos/2.88.6",
- "hashPath": "skiasharp.nativeassets.macos.2.88.6.nupkg.sha512"
- },
- "SkiaSharp.NativeAssets.WebAssembly/2.88.6": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-pye92IhbHq3uqxrU/I+LdkIRAyWfiUNeJ5IIAmYWt2DQPOU44Uh1nTIcjQ2ghRIFWq62VVUJJy5saLBcQO5zyw==",
- "path": "skiasharp.nativeassets.webassembly/2.88.6",
- "hashPath": "skiasharp.nativeassets.webassembly.2.88.6.nupkg.sha512"
- },
- "SkiaSharp.NativeAssets.Win32/2.88.6": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7TzFO0u/g2MpQsTty4fyCDdMcfcWI+aLswwfnYXr3gtNS6VLKdMXPMeKpJa3pJSLnUBN6wD0JjuCe8OoLBQ6cQ==",
- "path": "skiasharp.nativeassets.win32/2.88.6",
- "hashPath": "skiasharp.nativeassets.win32.2.88.6.nupkg.sha512"
- },
- "System.Collections/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
- "path": "system.collections/4.3.0",
- "hashPath": "system.collections.4.3.0.nupkg.sha512"
- },
- "System.Collections.Immutable/5.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
- "path": "system.collections.immutable/5.0.0",
- "hashPath": "system.collections.immutable.5.0.0.nupkg.sha512"
- },
- "System.ComponentModel.Annotations/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-UxYQ3FGUOtzJ7LfSdnYSFd7+oEv6M8NgUatatIN2HxNtDdlcvFAf+VIq4Of9cDMJEJC0aSRv/x898RYhB4Yppg==",
- "path": "system.componentmodel.annotations/4.5.0",
- "hashPath": "system.componentmodel.annotations.4.5.0.nupkg.sha512"
- },
- "System.Diagnostics.Debug/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
- "path": "system.diagnostics.debug/4.3.0",
- "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
- },
- "System.Drawing.Common/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
- "path": "system.drawing.common/6.0.0",
- "hashPath": "system.drawing.common.6.0.0.nupkg.sha512"
- },
- "System.Dynamic.Runtime/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
- "path": "system.dynamic.runtime/4.3.0",
- "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512"
- },
- "System.Globalization/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
- "path": "system.globalization/4.3.0",
- "hashPath": "system.globalization.4.3.0.nupkg.sha512"
- },
- "System.IO/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
- "path": "system.io/4.3.0",
- "hashPath": "system.io.4.3.0.nupkg.sha512"
- },
- "System.IO.Pipelines/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mXX66shZ4xLlI3vNLaJ0lt8OIZdmXTvIqXRdQX5HLVGSkLhINLsVhyZuX2UdRFnOGkqnwmMUs40pIIQ7mna4+A==",
- "path": "system.io.pipelines/6.0.0",
- "hashPath": "system.io.pipelines.6.0.0.nupkg.sha512"
- },
- "System.Linq/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
- "path": "system.linq/4.3.0",
- "hashPath": "system.linq.4.3.0.nupkg.sha512"
- },
- "System.Linq.Expressions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
- "path": "system.linq.expressions/4.3.0",
- "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
- },
- "System.Memory/4.5.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
- "path": "system.memory/4.5.4",
- "hashPath": "system.memory.4.5.4.nupkg.sha512"
- },
- "System.Numerics.Vectors/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
- "path": "system.numerics.vectors/4.5.0",
- "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512"
- },
- "System.ObjectModel/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
- "path": "system.objectmodel/4.3.0",
- "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
- },
- "System.Reactive/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-31kfaW4ZupZzPsI5PVe77VhnvFF55qgma7KZr/E0iFTs6fmdhhG8j0mgEx620iLTey1EynOkEfnyTjtNEpJzGw==",
- "path": "system.reactive/6.0.0",
- "hashPath": "system.reactive.6.0.0.nupkg.sha512"
- },
- "System.Reflection/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
- "path": "system.reflection/4.3.0",
- "hashPath": "system.reflection.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Emit/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
- "path": "system.reflection.emit/4.3.0",
- "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Emit.ILGeneration/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
- "path": "system.reflection.emit.ilgeneration/4.3.0",
- "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Emit.Lightweight/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
- "path": "system.reflection.emit.lightweight/4.3.0",
- "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
- "path": "system.reflection.extensions/4.3.0",
- "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Metadata/5.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==",
- "path": "system.reflection.metadata/5.0.0",
- "hashPath": "system.reflection.metadata.5.0.0.nupkg.sha512"
- },
- "System.Reflection.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
- "path": "system.reflection.primitives/4.3.0",
- "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
- },
- "System.Reflection.TypeExtensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
- "path": "system.reflection.typeextensions/4.3.0",
- "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
- },
- "System.Resources.ResourceManager/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
- "path": "system.resources.resourcemanager/4.3.0",
- "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
- },
- "System.Runtime/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
- "path": "system.runtime/4.3.0",
- "hashPath": "system.runtime.4.3.0.nupkg.sha512"
- },
- "System.Runtime.CompilerServices.Unsafe/4.7.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-zOHkQmzPCn5zm/BH+cxC1XbUS3P4Yoi3xzW7eRgVpDR2tPGSzyMZ17Ig1iRkfJuY0nhxkQQde8pgePNiA7z7TQ==",
- "path": "system.runtime.compilerservices.unsafe/4.7.1",
- "hashPath": "system.runtime.compilerservices.unsafe.4.7.1.nupkg.sha512"
- },
- "System.Runtime.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
- "path": "system.runtime.extensions/4.3.0",
- "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Handles/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
- "path": "system.runtime.handles/4.3.0",
- "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
- },
- "System.Runtime.InteropServices/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
- "path": "system.runtime.interopservices/4.3.0",
- "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
- },
- "System.Text.Encoding/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
- "path": "system.text.encoding/4.3.0",
- "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
- },
- "System.Text.Encoding.CodePages/4.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==",
- "path": "system.text.encoding.codepages/4.5.1",
- "hashPath": "system.text.encoding.codepages.4.5.1.nupkg.sha512"
- },
- "System.Threading/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
- "path": "system.threading/4.3.0",
- "hashPath": "system.threading.4.3.0.nupkg.sha512"
- },
- "System.Threading.Tasks/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
- "path": "system.threading.tasks/4.3.0",
- "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
- },
- "System.Threading.Tasks.Extensions/4.5.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
- "path": "system.threading.tasks.extensions/4.5.4",
- "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512"
- },
- "Tmds.DBus/0.15.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-11BxHGh+8hwXNdcavX7BxNW5Qr6AC36ABYDcqvZ3bDS7alXI+O95/x0ExoVWWWxjAVTnvmDRtW1Nd3uObPIsVg==",
- "path": "tmds.dbus/0.15.0",
- "hashPath": "tmds.dbus.0.15.0.nupkg.sha512"
- },
- "Tmds.DBus.Protocol/0.15.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-QVo/Y39nTYcCKBqrZuwHjXdwaky0yTQPIT3qUTEEK2MZfDtZWrJ2XyZ59zH8LBgB2fL5cWaTuP2pBTpGz/GeDQ==",
- "path": "tmds.dbus.protocol/0.15.0",
- "hashPath": "tmds.dbus.protocol.0.15.0.nupkg.sha512"
- },
- "Tmds.LibC/0.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-IZYKZ/016mRI2tRoh25OedrAwoWEN/20TtDh5uvN3oU1h9+UG/ulYJ1jvp+GTb2rkNIYpyHOl7bY4zHjgqypLg==",
- "path": "tmds.libc/0.5.0",
- "hashPath": "tmds.libc.0.5.0.nupkg.sha512"
- },
- "DotneBluezServer/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "dotnetbleserver/1.0.0.0": {
- "type": "reference",
- "serviceable": false,
- "sha512": ""
- }
- }
-}
\ No newline at end of file
diff --git a/ble-server-linux/bin/Debug/net7.0/ble-server-linux.dll b/ble-server-linux/bin/Debug/net7.0/ble-server-linux.dll
deleted file mode 100644
index 5964366..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/ble-server-linux.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/ble-server-linux.exe b/ble-server-linux/bin/Debug/net7.0/ble-server-linux.exe
deleted file mode 100644
index d26e9d0..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/ble-server-linux.exe and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/ble-server-linux.pdb b/ble-server-linux/bin/Debug/net7.0/ble-server-linux.pdb
deleted file mode 100644
index 3264ee7..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/ble-server-linux.pdb and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/ble-server-linux.runtimeconfig.json b/ble-server-linux/bin/Debug/net7.0/ble-server-linux.runtimeconfig.json
deleted file mode 100644
index 86afe19..0000000
--- a/ble-server-linux/bin/Debug/net7.0/ble-server-linux.runtimeconfig.json
+++ /dev/null
@@ -1,12 +0,0 @@
-{
- "runtimeOptions": {
- "tfm": "net7.0",
- "framework": {
- "name": "Microsoft.NETCore.App",
- "version": "7.0.0"
- },
- "configProperties": {
- "System.Runtime.InteropServices.BuiltInComInterop.IsSupported": true
- }
- }
-}
\ No newline at end of file
diff --git a/ble-server-linux/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/ble-server-linux/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index a04b38a..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/ble-server-linux/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index 5a0f170..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll b/ble-server-linux/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 7cec0a7..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.resources.dll b/ble-server-linux/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index 68773e2..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/ble-server-linux/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index a1ae0ce..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/ble-server-linux/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index d1e20eb..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll b/ble-server-linux/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 2af4c27..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.resources.dll b/ble-server-linux/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index 75a21b2..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/dotnetbleserver.dll b/ble-server-linux/bin/Debug/net7.0/dotnetbleserver.dll
deleted file mode 100644
index 4156bb2..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/dotnetbleserver.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/dotnetbleserver.pdb b/ble-server-linux/bin/Debug/net7.0/dotnetbleserver.pdb
deleted file mode 100644
index 150f4b6..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/dotnetbleserver.pdb and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/ble-server-linux/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index 0b3479f..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/ble-server-linux/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index 992d598..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll b/ble-server-linux/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index a733359..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.resources.dll b/ble-server-linux/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index 4e8fb46..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/ble-server-linux/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index f047d59..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/ble-server-linux/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index 82065be..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll b/ble-server-linux/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 8e6fff8..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.resources.dll b/ble-server-linux/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index d7c9296..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/ble-server-linux/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index 6f14d3f..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/ble-server-linux/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index 31be39a..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll b/ble-server-linux/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 5b65759..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.resources.dll b/ble-server-linux/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index 81a7359..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/ble-server-linux/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index 5e73f0b..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/ble-server-linux/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index c32eea7..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll b/ble-server-linux/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 6568482..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.resources.dll b/ble-server-linux/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index 48c0690..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/ble-server-linux/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index 2b77647..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/ble-server-linux/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index 86283a8..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll b/ble-server-linux/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index a911604..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.resources.dll b/ble-server-linux/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index da54c73..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/ble-server-linux/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index 490d689..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/ble-server-linux/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index 2975c06..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll b/ble-server-linux/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 924661b..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.resources.dll b/ble-server-linux/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index 1143bbb..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/ble-server-linux/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index 37317cd..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/ble-server-linux/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index ea85069..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll b/ble-server-linux/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 344329c..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/ble-server-linux/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index bd8c65b..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/ble-server-linux/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index b39fba2..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/ble-server-linux/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index ee28c62..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll b/ble-server-linux/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 672bcfa..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.resources.dll b/ble-server-linux/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index c94e3b3..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/runtimes/linux-arm/lib/netstandard2.0/Tmds.LibC.dll b/ble-server-linux/bin/Debug/net7.0/runtimes/linux-arm/lib/netstandard2.0/Tmds.LibC.dll
deleted file mode 100755
index 37ff701..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/runtimes/linux-arm/lib/netstandard2.0/Tmds.LibC.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/runtimes/linux-arm/native/libHarfBuzzSharp.so b/ble-server-linux/bin/Debug/net7.0/runtimes/linux-arm/native/libHarfBuzzSharp.so
deleted file mode 100755
index 3979c3a..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/runtimes/linux-arm/native/libHarfBuzzSharp.so and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/runtimes/linux-arm/native/libSkiaSharp.so b/ble-server-linux/bin/Debug/net7.0/runtimes/linux-arm/native/libSkiaSharp.so
deleted file mode 100755
index b80d89b..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/runtimes/linux-arm/native/libSkiaSharp.so and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/runtimes/linux-arm64/lib/netstandard2.0/Tmds.LibC.dll b/ble-server-linux/bin/Debug/net7.0/runtimes/linux-arm64/lib/netstandard2.0/Tmds.LibC.dll
deleted file mode 100755
index 74cc5a3..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/runtimes/linux-arm64/lib/netstandard2.0/Tmds.LibC.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so b/ble-server-linux/bin/Debug/net7.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so
deleted file mode 100755
index 467b57d..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/runtimes/linux-arm64/native/libSkiaSharp.so b/ble-server-linux/bin/Debug/net7.0/runtimes/linux-arm64/native/libSkiaSharp.so
deleted file mode 100755
index 7e9f727..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/runtimes/linux-arm64/native/libSkiaSharp.so and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so b/ble-server-linux/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so
deleted file mode 100755
index f43631e..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libSkiaSharp.so b/ble-server-linux/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libSkiaSharp.so
deleted file mode 100755
index d446390..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libSkiaSharp.so and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/runtimes/linux-x64/lib/netstandard2.0/Tmds.LibC.dll b/ble-server-linux/bin/Debug/net7.0/runtimes/linux-x64/lib/netstandard2.0/Tmds.LibC.dll
deleted file mode 100755
index 62a6e4d..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/runtimes/linux-x64/lib/netstandard2.0/Tmds.LibC.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/runtimes/linux-x64/native/libHarfBuzzSharp.so b/ble-server-linux/bin/Debug/net7.0/runtimes/linux-x64/native/libHarfBuzzSharp.so
deleted file mode 100755
index b5b79fe..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/runtimes/linux-x64/native/libHarfBuzzSharp.so and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/runtimes/linux-x64/native/libSkiaSharp.so b/ble-server-linux/bin/Debug/net7.0/runtimes/linux-x64/native/libSkiaSharp.so
deleted file mode 100755
index 12291ca..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/runtimes/linux-x64/native/libSkiaSharp.so and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/runtimes/osx/native/libAvaloniaNative.dylib b/ble-server-linux/bin/Debug/net7.0/runtimes/osx/native/libAvaloniaNative.dylib
deleted file mode 100755
index a3f69b1..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/runtimes/osx/native/libAvaloniaNative.dylib and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/runtimes/osx/native/libHarfBuzzSharp.dylib b/ble-server-linux/bin/Debug/net7.0/runtimes/osx/native/libHarfBuzzSharp.dylib
deleted file mode 100755
index 16a1ad7..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/runtimes/osx/native/libHarfBuzzSharp.dylib and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/runtimes/osx/native/libSkiaSharp.dylib b/ble-server-linux/bin/Debug/net7.0/runtimes/osx/native/libSkiaSharp.dylib
deleted file mode 100755
index 059af87..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/runtimes/osx/native/libSkiaSharp.dylib and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll b/ble-server-linux/bin/Debug/net7.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll
deleted file mode 100755
index 9e26473..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/runtimes/win-arm64/native/av_libglesv2.dll b/ble-server-linux/bin/Debug/net7.0/runtimes/win-arm64/native/av_libglesv2.dll
deleted file mode 100755
index 51f4008..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/runtimes/win-arm64/native/av_libglesv2.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll b/ble-server-linux/bin/Debug/net7.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll
deleted file mode 100755
index 616d1cc..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/runtimes/win-arm64/native/libSkiaSharp.dll b/ble-server-linux/bin/Debug/net7.0/runtimes/win-arm64/native/libSkiaSharp.dll
deleted file mode 100755
index cf0689e..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/runtimes/win-arm64/native/libSkiaSharp.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/runtimes/win-x64/native/av_libglesv2.dll b/ble-server-linux/bin/Debug/net7.0/runtimes/win-x64/native/av_libglesv2.dll
deleted file mode 100755
index 7d94daf..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/runtimes/win-x64/native/av_libglesv2.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/runtimes/win-x64/native/libHarfBuzzSharp.dll b/ble-server-linux/bin/Debug/net7.0/runtimes/win-x64/native/libHarfBuzzSharp.dll
deleted file mode 100755
index 8031110..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/runtimes/win-x64/native/libHarfBuzzSharp.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/runtimes/win-x64/native/libSkiaSharp.dll b/ble-server-linux/bin/Debug/net7.0/runtimes/win-x64/native/libSkiaSharp.dll
deleted file mode 100755
index 1f3f7e3..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/runtimes/win-x64/native/libSkiaSharp.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/runtimes/win-x86/native/av_libglesv2.dll b/ble-server-linux/bin/Debug/net7.0/runtimes/win-x86/native/av_libglesv2.dll
deleted file mode 100755
index 473c2c5..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/runtimes/win-x86/native/av_libglesv2.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/runtimes/win-x86/native/libHarfBuzzSharp.dll b/ble-server-linux/bin/Debug/net7.0/runtimes/win-x86/native/libHarfBuzzSharp.dll
deleted file mode 100755
index 71f6711..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/runtimes/win-x86/native/libHarfBuzzSharp.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/runtimes/win-x86/native/libSkiaSharp.dll b/ble-server-linux/bin/Debug/net7.0/runtimes/win-x86/native/libSkiaSharp.dll
deleted file mode 100755
index 5736b4e..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/runtimes/win-x86/native/libSkiaSharp.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll b/ble-server-linux/bin/Debug/net7.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll
deleted file mode 100755
index 66af198..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll b/ble-server-linux/bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll
deleted file mode 100755
index 7c9e87b..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/ble-server-linux/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index 8c4ed03..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/ble-server-linux/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index 622709a..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll b/ble-server-linux/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 114df89..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.resources.dll b/ble-server-linux/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index 2bc270d..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/ble-server-linux/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index 1efa7c5..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/ble-server-linux/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index a4cbbfc..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll b/ble-server-linux/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 59d21cb..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/ble-server-linux/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index 8bac9f0..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/ble-server-linux/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index f25b9ec..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/ble-server-linux/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index 8bb283f..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll b/ble-server-linux/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 8694ff4..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/ble-server-linux/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index fd9dff3..0000000
Binary files a/ble-server-linux/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/Avalonia.Base.dll b/ble-server-linux/bin/Debug/net8.0/Avalonia.Base.dll
deleted file mode 100755
index c26dd3d..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/Avalonia.Base.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/Avalonia.Controls.ColorPicker.dll b/ble-server-linux/bin/Debug/net8.0/Avalonia.Controls.ColorPicker.dll
deleted file mode 100755
index 81e9fa9..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/Avalonia.Controls.ColorPicker.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/Avalonia.Controls.DataGrid.dll b/ble-server-linux/bin/Debug/net8.0/Avalonia.Controls.DataGrid.dll
deleted file mode 100755
index d44b987..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/Avalonia.Controls.DataGrid.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/Avalonia.Controls.dll b/ble-server-linux/bin/Debug/net8.0/Avalonia.Controls.dll
deleted file mode 100755
index e1c975a..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/Avalonia.Controls.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/Avalonia.DesignerSupport.dll b/ble-server-linux/bin/Debug/net8.0/Avalonia.DesignerSupport.dll
deleted file mode 100755
index f7621ee..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/Avalonia.DesignerSupport.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/Avalonia.Desktop.dll b/ble-server-linux/bin/Debug/net8.0/Avalonia.Desktop.dll
deleted file mode 100755
index 3df7add..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/Avalonia.Desktop.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/Avalonia.Diagnostics.dll b/ble-server-linux/bin/Debug/net8.0/Avalonia.Diagnostics.dll
deleted file mode 100755
index 2d942c2..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/Avalonia.Diagnostics.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/Avalonia.Dialogs.dll b/ble-server-linux/bin/Debug/net8.0/Avalonia.Dialogs.dll
deleted file mode 100755
index 2c5af4d..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/Avalonia.Dialogs.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/Avalonia.FreeDesktop.dll b/ble-server-linux/bin/Debug/net8.0/Avalonia.FreeDesktop.dll
deleted file mode 100755
index fbc7674..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/Avalonia.FreeDesktop.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/Avalonia.Markup.Xaml.dll b/ble-server-linux/bin/Debug/net8.0/Avalonia.Markup.Xaml.dll
deleted file mode 100755
index cd9dfed..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/Avalonia.Markup.Xaml.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/Avalonia.Markup.dll b/ble-server-linux/bin/Debug/net8.0/Avalonia.Markup.dll
deleted file mode 100755
index f805945..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/Avalonia.Markup.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/Avalonia.Metal.dll b/ble-server-linux/bin/Debug/net8.0/Avalonia.Metal.dll
deleted file mode 100755
index b0f0d2d..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/Avalonia.Metal.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/Avalonia.MicroCom.dll b/ble-server-linux/bin/Debug/net8.0/Avalonia.MicroCom.dll
deleted file mode 100755
index 3a69d60..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/Avalonia.MicroCom.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/Avalonia.Native.dll b/ble-server-linux/bin/Debug/net8.0/Avalonia.Native.dll
deleted file mode 100755
index dcec5a7..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/Avalonia.Native.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/Avalonia.OpenGL.dll b/ble-server-linux/bin/Debug/net8.0/Avalonia.OpenGL.dll
deleted file mode 100755
index 1f4c255..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/Avalonia.OpenGL.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/Avalonia.Remote.Protocol.dll b/ble-server-linux/bin/Debug/net8.0/Avalonia.Remote.Protocol.dll
deleted file mode 100755
index d340b20..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/Avalonia.Remote.Protocol.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/Avalonia.Skia.dll b/ble-server-linux/bin/Debug/net8.0/Avalonia.Skia.dll
deleted file mode 100755
index 74dcf34..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/Avalonia.Skia.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/Avalonia.Themes.Fluent.dll b/ble-server-linux/bin/Debug/net8.0/Avalonia.Themes.Fluent.dll
deleted file mode 100755
index 25a68ae..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/Avalonia.Themes.Fluent.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/Avalonia.Themes.Simple.dll b/ble-server-linux/bin/Debug/net8.0/Avalonia.Themes.Simple.dll
deleted file mode 100755
index 455ca54..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/Avalonia.Themes.Simple.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/Avalonia.Win32.dll b/ble-server-linux/bin/Debug/net8.0/Avalonia.Win32.dll
deleted file mode 100755
index 733d72d..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/Avalonia.Win32.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/Avalonia.X11.dll b/ble-server-linux/bin/Debug/net8.0/Avalonia.X11.dll
deleted file mode 100755
index 8add9b5..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/Avalonia.X11.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/Avalonia.dll b/ble-server-linux/bin/Debug/net8.0/Avalonia.dll
deleted file mode 100755
index dee97b6..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/Avalonia.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/ColorTextBlock.Avalonia.dll b/ble-server-linux/bin/Debug/net8.0/ColorTextBlock.Avalonia.dll
deleted file mode 100755
index 63b75e9..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/ColorTextBlock.Avalonia.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/DialogHost.Avalonia.dll b/ble-server-linux/bin/Debug/net8.0/DialogHost.Avalonia.dll
deleted file mode 100755
index 803e3ad..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/DialogHost.Avalonia.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/HarfBuzzSharp.dll b/ble-server-linux/bin/Debug/net8.0/HarfBuzzSharp.dll
deleted file mode 100755
index 4b59181..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/HarfBuzzSharp.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/Markdown.Avalonia.dll b/ble-server-linux/bin/Debug/net8.0/Markdown.Avalonia.dll
deleted file mode 100755
index 2cd5597..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/Markdown.Avalonia.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/MicroCom.Runtime.dll b/ble-server-linux/bin/Debug/net8.0/MicroCom.Runtime.dll
deleted file mode 100755
index f6cf008..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/MicroCom.Runtime.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll b/ble-server-linux/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll
deleted file mode 100755
index 4fc11e1..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll b/ble-server-linux/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll
deleted file mode 100755
index f8c3571..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/Microsoft.CodeAnalysis.Scripting.dll b/ble-server-linux/bin/Debug/net8.0/Microsoft.CodeAnalysis.Scripting.dll
deleted file mode 100755
index 01846bf..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/Microsoft.CodeAnalysis.Scripting.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll b/ble-server-linux/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll
deleted file mode 100755
index 100c075..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll b/ble-server-linux/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll
deleted file mode 100755
index 3ab5850..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/MsBox.Avalonia.dll b/ble-server-linux/bin/Debug/net8.0/MsBox.Avalonia.dll
deleted file mode 100755
index 6c72a85..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/MsBox.Avalonia.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/SkiaSharp.dll b/ble-server-linux/bin/Debug/net8.0/SkiaSharp.dll
deleted file mode 100755
index be13cf5..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/SkiaSharp.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/System.Drawing.Common.dll b/ble-server-linux/bin/Debug/net8.0/System.Drawing.Common.dll
deleted file mode 100755
index be6915e..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/System.Drawing.Common.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/System.IO.Pipelines.dll b/ble-server-linux/bin/Debug/net8.0/System.IO.Pipelines.dll
deleted file mode 100755
index 4f5306a..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/System.IO.Pipelines.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/System.Reactive.dll b/ble-server-linux/bin/Debug/net8.0/System.Reactive.dll
deleted file mode 100755
index f179765..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/System.Reactive.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/Tmds.DBus.Protocol.dll b/ble-server-linux/bin/Debug/net8.0/Tmds.DBus.Protocol.dll
deleted file mode 100755
index d06b276..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/Tmds.DBus.Protocol.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/Tmds.DBus.dll b/ble-server-linux/bin/Debug/net8.0/Tmds.DBus.dll
deleted file mode 100755
index e60b7d3..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/Tmds.DBus.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/ble-server-linux b/ble-server-linux/bin/Debug/net8.0/ble-server-linux
deleted file mode 100755
index e531ed1..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/ble-server-linux and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/ble-server-linux.deps.json b/ble-server-linux/bin/Debug/net8.0/ble-server-linux.deps.json
deleted file mode 100644
index 88e4c4b..0000000
--- a/ble-server-linux/bin/Debug/net8.0/ble-server-linux.deps.json
+++ /dev/null
@@ -1,1555 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v8.0",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v8.0": {
- "ble-server-linux/1.0.0": {
- "dependencies": {
- "Avalonia": "11.0.5",
- "Avalonia.Controls.DataGrid": "11.0.5",
- "Avalonia.Desktop": "11.0.5",
- "Avalonia.Diagnostics": "11.0.5",
- "Avalonia.Themes.Fluent": "11.0.5",
- "Bluez.NET.Server": "0.0.1",
- "MessageBox.Avalonia": "3.1.5.1",
- "Tmds.LibC": "0.5.0"
- },
- "runtime": {
- "ble-server-linux.dll": {}
- }
- },
- "Avalonia/11.0.5": {
- "dependencies": {
- "Avalonia.BuildServices": "0.0.29",
- "Avalonia.Remote.Protocol": "11.0.5",
- "MicroCom.Runtime": "0.11.0",
- "System.ComponentModel.Annotations": "4.5.0"
- },
- "runtime": {
- "lib/net6.0/Avalonia.Base.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- },
- "lib/net6.0/Avalonia.Controls.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- },
- "lib/net6.0/Avalonia.DesignerSupport.dll": {
- "assemblyVersion": "0.7.0.0",
- "fileVersion": "0.7.0.0"
- },
- "lib/net6.0/Avalonia.Dialogs.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- },
- "lib/net6.0/Avalonia.Markup.Xaml.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- },
- "lib/net6.0/Avalonia.Markup.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- },
- "lib/net6.0/Avalonia.Metal.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- },
- "lib/net6.0/Avalonia.MicroCom.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- },
- "lib/net6.0/Avalonia.OpenGL.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- },
- "lib/net6.0/Avalonia.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- }
- }
- },
- "Avalonia.Angle.Windows.Natives/2.1.0.2023020321": {
- "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.0.5": {
- "dependencies": {
- "Avalonia": "11.0.5",
- "Avalonia.Remote.Protocol": "11.0.5"
- },
- "runtime": {
- "lib/net6.0/Avalonia.Controls.ColorPicker.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- }
- }
- },
- "Avalonia.Controls.DataGrid/11.0.5": {
- "dependencies": {
- "Avalonia": "11.0.5",
- "Avalonia.Remote.Protocol": "11.0.5"
- },
- "runtime": {
- "lib/net6.0/Avalonia.Controls.DataGrid.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- }
- }
- },
- "Avalonia.Desktop/11.0.5": {
- "dependencies": {
- "Avalonia": "11.0.5",
- "Avalonia.Native": "11.0.5",
- "Avalonia.Skia": "11.0.5",
- "Avalonia.Win32": "11.0.5",
- "Avalonia.X11": "11.0.5"
- },
- "runtime": {
- "lib/net6.0/Avalonia.Desktop.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- }
- }
- },
- "Avalonia.Diagnostics/11.0.5": {
- "dependencies": {
- "Avalonia": "11.0.5",
- "Avalonia.Controls.ColorPicker": "11.0.5",
- "Avalonia.Controls.DataGrid": "11.0.5",
- "Avalonia.Themes.Simple": "11.0.5",
- "Microsoft.CodeAnalysis.CSharp.Scripting": "3.8.0",
- "Microsoft.CodeAnalysis.Common": "3.8.0"
- },
- "runtime": {
- "lib/net6.0/Avalonia.Diagnostics.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- }
- }
- },
- "Avalonia.FreeDesktop/11.0.5": {
- "dependencies": {
- "Avalonia": "11.0.5",
- "Tmds.DBus.Protocol": "0.15.0"
- },
- "runtime": {
- "lib/net6.0/Avalonia.FreeDesktop.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- }
- }
- },
- "Avalonia.Native/11.0.5": {
- "dependencies": {
- "Avalonia": "11.0.5"
- },
- "runtime": {
- "lib/net6.0/Avalonia.Native.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- }
- },
- "runtimeTargets": {
- "runtimes/osx/native/libAvaloniaNative.dylib": {
- "rid": "osx",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "Avalonia.Remote.Protocol/11.0.5": {
- "runtime": {
- "lib/net6.0/Avalonia.Remote.Protocol.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- }
- }
- },
- "Avalonia.Skia/11.0.5": {
- "dependencies": {
- "Avalonia": "11.0.5",
- "HarfBuzzSharp": "2.8.2.3",
- "HarfBuzzSharp.NativeAssets.Linux": "2.8.2.3",
- "HarfBuzzSharp.NativeAssets.WebAssembly": "2.8.2.3",
- "SkiaSharp": "2.88.6",
- "SkiaSharp.NativeAssets.Linux": "2.88.6",
- "SkiaSharp.NativeAssets.WebAssembly": "2.88.6"
- },
- "runtime": {
- "lib/net6.0/Avalonia.Skia.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- }
- }
- },
- "Avalonia.Themes.Fluent/11.0.5": {
- "dependencies": {
- "Avalonia": "11.0.5"
- },
- "runtime": {
- "lib/net6.0/Avalonia.Themes.Fluent.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- }
- }
- },
- "Avalonia.Themes.Simple/11.0.5": {
- "dependencies": {
- "Avalonia": "11.0.5"
- },
- "runtime": {
- "lib/net6.0/Avalonia.Themes.Simple.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- }
- }
- },
- "Avalonia.Win32/11.0.5": {
- "dependencies": {
- "Avalonia": "11.0.5",
- "Avalonia.Angle.Windows.Natives": "2.1.0.2023020321",
- "System.Drawing.Common": "6.0.0",
- "System.Numerics.Vectors": "4.5.0"
- },
- "runtime": {
- "lib/net6.0/Avalonia.Win32.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- }
- }
- },
- "Avalonia.X11/11.0.5": {
- "dependencies": {
- "Avalonia": "11.0.5",
- "Avalonia.FreeDesktop": "11.0.5",
- "Avalonia.Skia": "11.0.5"
- },
- "runtime": {
- "lib/net6.0/Avalonia.X11.dll": {
- "assemblyVersion": "11.0.5.0",
- "fileVersion": "11.0.5.0"
- }
- }
- },
- "Bluez.NET.Server/0.0.1": {
- "dependencies": {
- "Tmds.DBus": "0.15.0"
- },
- "runtime": {
- "lib/net8.0/dotnetbleserver.dll": {
- "assemblyVersion": "0.0.1.0",
- "fileVersion": "0.0.1.0"
- }
- }
- },
- "ColorTextBlock.Avalonia/11.0.2": {
- "dependencies": {
- "Avalonia": "11.0.5"
- },
- "runtime": {
- "lib/net6.0/ColorTextBlock.Avalonia.dll": {
- "assemblyVersion": "11.0.2.0",
- "fileVersion": "11.0.2.0"
- }
- }
- },
- "DialogHost.Avalonia/0.7.7": {
- "dependencies": {
- "Avalonia": "11.0.5",
- "System.Reactive": "6.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/DialogHost.Avalonia.dll": {
- "assemblyVersion": "0.7.7.0",
- "fileVersion": "0.7.7.0"
- }
- }
- },
- "HarfBuzzSharp/2.8.2.3": {
- "dependencies": {
- "HarfBuzzSharp.NativeAssets.Win32": "2.8.2.3",
- "HarfBuzzSharp.NativeAssets.macOS": "2.8.2.3"
- },
- "runtime": {
- "lib/net6.0/HarfBuzzSharp.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "2.8.2.3"
- }
- }
- },
- "HarfBuzzSharp.NativeAssets.Linux/2.8.2.3": {
- "dependencies": {
- "HarfBuzzSharp": "2.8.2.3"
- },
- "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/2.8.2.3": {
- "runtimeTargets": {
- "runtimes/osx/native/libHarfBuzzSharp.dylib": {
- "rid": "osx",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "HarfBuzzSharp.NativeAssets.WebAssembly/2.8.2.3": {},
- "HarfBuzzSharp.NativeAssets.Win32/2.8.2.3": {
- "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"
- }
- }
- },
- "Markdown.Avalonia.Tight/11.0.2": {
- "dependencies": {
- "Avalonia": "11.0.5",
- "ColorTextBlock.Avalonia": "11.0.2"
- },
- "runtime": {
- "lib/net6.0/Markdown.Avalonia.dll": {
- "assemblyVersion": "11.0.2.0",
- "fileVersion": "11.0.2.0"
- }
- }
- },
- "MessageBox.Avalonia/3.1.5.1": {
- "dependencies": {
- "Avalonia": "11.0.5",
- "DialogHost.Avalonia": "0.7.7",
- "Markdown.Avalonia.Tight": "11.0.2"
- },
- "runtime": {
- "lib/netstandard2.0/MsBox.Avalonia.dll": {
- "assemblyVersion": "1.0.0.0",
- "fileVersion": "1.0.0.0"
- }
- }
- },
- "MicroCom.Runtime/0.11.0": {
- "runtime": {
- "lib/net5.0/MicroCom.Runtime.dll": {
- "assemblyVersion": "0.11.0.0",
- "fileVersion": "0.11.0.0"
- }
- }
- },
- "Microsoft.CodeAnalysis.Analyzers/3.0.0": {},
- "Microsoft.CodeAnalysis.Common/3.8.0": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Analyzers": "3.0.0",
- "System.Collections.Immutable": "5.0.0",
- "System.Memory": "4.5.4",
- "System.Reflection.Metadata": "5.0.0",
- "System.Runtime.CompilerServices.Unsafe": "4.7.1",
- "System.Text.Encoding.CodePages": "4.5.1",
- "System.Threading.Tasks.Extensions": "4.5.4"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
- "assemblyVersion": "3.8.0.0",
- "fileVersion": "3.800.20.56202"
- }
- },
- "resources": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.CSharp/3.8.0": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Common": "3.8.0"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
- "assemblyVersion": "3.8.0.0",
- "fileVersion": "3.800.20.56202"
- }
- },
- "resources": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.CSharp.Scripting/3.8.0": {
- "dependencies": {
- "Microsoft.CSharp": "4.3.0",
- "Microsoft.CodeAnalysis.CSharp": "3.8.0",
- "Microsoft.CodeAnalysis.Common": "3.8.0",
- "Microsoft.CodeAnalysis.Scripting.Common": "3.8.0"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Scripting.dll": {
- "assemblyVersion": "3.8.0.0",
- "fileVersion": "3.800.20.56202"
- }
- },
- "resources": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.Scripting.Common/3.8.0": {
- "dependencies": {
- "Microsoft.CodeAnalysis.Common": "3.8.0"
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll": {
- "assemblyVersion": "3.8.0.0",
- "fileVersion": "3.800.20.56202"
- }
- },
- "resources": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CSharp/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Dynamic.Runtime": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Linq.Expressions": "4.3.0",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Threading": "4.3.0"
- }
- },
- "Microsoft.NETCore.Platforms/2.1.2": {},
- "Microsoft.NETCore.Targets/1.1.0": {},
- "Microsoft.Win32.SystemEvents/6.0.0": {
- "runtime": {
- "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- },
- "runtimeTargets": {
- "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
- "rid": "win",
- "assetType": "runtime",
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- }
- },
- "SkiaSharp/2.88.6": {
- "dependencies": {
- "SkiaSharp.NativeAssets.Win32": "2.88.6",
- "SkiaSharp.NativeAssets.macOS": "2.88.6"
- },
- "runtime": {
- "lib/net6.0/SkiaSharp.dll": {
- "assemblyVersion": "2.88.0.0",
- "fileVersion": "2.88.6.0"
- }
- }
- },
- "SkiaSharp.NativeAssets.Linux/2.88.6": {
- "dependencies": {
- "SkiaSharp": "2.88.6"
- },
- "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.6": {
- "runtimeTargets": {
- "runtimes/osx/native/libSkiaSharp.dylib": {
- "rid": "osx",
- "assetType": "native",
- "fileVersion": "0.0.0.0"
- }
- }
- },
- "SkiaSharp.NativeAssets.WebAssembly/2.88.6": {},
- "SkiaSharp.NativeAssets.Win32/2.88.6": {
- "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"
- }
- }
- },
- "System.Collections/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.1.2",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Collections.Immutable/5.0.0": {},
- "System.ComponentModel.Annotations/4.5.0": {},
- "System.Diagnostics.Debug/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.1.2",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Drawing.Common/6.0.0": {
- "dependencies": {
- "Microsoft.Win32.SystemEvents": "6.0.0"
- },
- "runtime": {
- "lib/net6.0/System.Drawing.Common.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- },
- "runtimeTargets": {
- "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": {
- "rid": "unix",
- "assetType": "runtime",
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- },
- "runtimes/win/lib/net6.0/System.Drawing.Common.dll": {
- "rid": "win",
- "assetType": "runtime",
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- }
- },
- "System.Dynamic.Runtime/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Linq.Expressions": "4.3.0",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0"
- }
- },
- "System.Globalization/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.1.2",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.IO/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.1.2",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.IO.Pipelines/6.0.0": {
- "runtime": {
- "lib/net6.0/System.IO.Pipelines.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- }
- },
- "System.Linq/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0"
- }
- },
- "System.Linq.Expressions/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Linq": "4.3.0",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Emit.Lightweight": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0"
- }
- },
- "System.Memory/4.5.4": {},
- "System.Numerics.Vectors/4.5.0": {},
- "System.ObjectModel/4.3.0": {
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading": "4.3.0"
- }
- },
- "System.Reactive/6.0.0": {
- "runtime": {
- "lib/net6.0/System.Reactive.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.0.1"
- }
- }
- },
- "System.Reflection/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.1.2",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Emit/4.3.0": {
- "dependencies": {
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Emit.ILGeneration/4.3.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Emit.Lightweight/4.3.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Extensions/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.1.2",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.Metadata/5.0.0": {},
- "System.Reflection.Primitives/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.1.2",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Reflection.TypeExtensions/4.3.0": {
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Resources.ResourceManager/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.1.2",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.1.2",
- "Microsoft.NETCore.Targets": "1.1.0"
- }
- },
- "System.Runtime.CompilerServices.Unsafe/4.7.1": {},
- "System.Runtime.Extensions/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.1.2",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime.Handles/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.1.2",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Runtime.InteropServices/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.1.2",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0"
- }
- },
- "System.Text.Encoding/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.1.2",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Text.Encoding.CodePages/4.5.1": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.1.2",
- "System.Runtime.CompilerServices.Unsafe": "4.7.1"
- }
- },
- "System.Threading/4.3.0": {
- "dependencies": {
- "System.Runtime": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- }
- },
- "System.Threading.Tasks/4.3.0": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.1.2",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- }
- },
- "System.Threading.Tasks.Extensions/4.5.4": {},
- "Tmds.DBus/0.15.0": {
- "runtime": {
- "lib/net6.0/Tmds.DBus.dll": {
- "assemblyVersion": "0.15.0.0",
- "fileVersion": "0.15.0.0"
- }
- }
- },
- "Tmds.DBus.Protocol/0.15.0": {
- "dependencies": {
- "System.IO.Pipelines": "6.0.0"
- },
- "runtime": {
- "lib/net6.0/Tmds.DBus.Protocol.dll": {
- "assemblyVersion": "0.15.0.0",
- "fileVersion": "0.15.0.0"
- }
- }
- },
- "Tmds.LibC/0.5.0": {
- "runtimeTargets": {
- "runtimes/linux-arm/lib/netstandard2.0/Tmds.LibC.dll": {
- "rid": "linux-arm",
- "assetType": "runtime",
- "assemblyVersion": "0.5.0.0",
- "fileVersion": "0.5.0.0"
- },
- "runtimes/linux-arm64/lib/netstandard2.0/Tmds.LibC.dll": {
- "rid": "linux-arm64",
- "assetType": "runtime",
- "assemblyVersion": "0.5.0.0",
- "fileVersion": "0.5.0.0"
- },
- "runtimes/linux-x64/lib/netstandard2.0/Tmds.LibC.dll": {
- "rid": "linux-x64",
- "assetType": "runtime",
- "assemblyVersion": "0.5.0.0",
- "fileVersion": "0.5.0.0"
- }
- }
- }
- }
- },
- "libraries": {
- "ble-server-linux/1.0.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "Avalonia/11.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-twUjGl6gxQeyxO7wG6v+ntvAN2IeNXDr2oS6a7h5LRXy83ITbcuA0gYUqm/aeLVe0cviGSVWE9x5BVkDjZfXpQ==",
- "path": "avalonia/11.0.5",
- "hashPath": "avalonia.11.0.5.nupkg.sha512"
- },
- "Avalonia.Angle.Windows.Natives/2.1.0.2023020321": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Zlkkb8ipxrxNWVPCJgMO19fpcpYPP+bpOQ+jPtCFj8v+TzVvPdnGHuyv9IMvSHhhMfEpps4m4hjaP4FORQYVAA==",
- "path": "avalonia.angle.windows.natives/2.1.0.2023020321",
- "hashPath": "avalonia.angle.windows.natives.2.1.0.2023020321.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.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-N9RpqrDxyN52YSM6N6ViDWnE9XvC3bacZGlg0EH+uYOnxBZuh02kYw4UDa7S+TUdRXVc9HpmHpL3Y/sf/ydVTw==",
- "path": "avalonia.controls.colorpicker/11.0.5",
- "hashPath": "avalonia.controls.colorpicker.11.0.5.nupkg.sha512"
- },
- "Avalonia.Controls.DataGrid/11.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5ULaodkNkChEWE/xuRrSh6dpBExpvFDFSItdX7sDOxGqNwovaKk0+4HmzvXeQGntUeMsaAcDddZxoG+pUJ8PSA==",
- "path": "avalonia.controls.datagrid/11.0.5",
- "hashPath": "avalonia.controls.datagrid.11.0.5.nupkg.sha512"
- },
- "Avalonia.Desktop/11.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-YKgk+t42wbwsCQz/DMlLiV71jCwxN47tLRemZ1zmgclh3lf97++A3zJpxx+Cv3fGf5jJnvM1yzyeVU5HBOflJA==",
- "path": "avalonia.desktop/11.0.5",
- "hashPath": "avalonia.desktop.11.0.5.nupkg.sha512"
- },
- "Avalonia.Diagnostics/11.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-RoG+0sUlyoOlhAFc2rpkQzmJN7ztTqWqtB5mEZav3JacFLQ5npBrlLbcj9ewj2RQa+9zLiA9JmOlhK5zFprCnw==",
- "path": "avalonia.diagnostics/11.0.5",
- "hashPath": "avalonia.diagnostics.11.0.5.nupkg.sha512"
- },
- "Avalonia.FreeDesktop/11.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ChltTdFTlwrnn+3kpDD3zoBNeU4e7m2sOiff86CARUEdCaIO7d6+bmmtTishO4QGmwJOhaY0Jkjqfb4/wJmIvw==",
- "path": "avalonia.freedesktop/11.0.5",
- "hashPath": "avalonia.freedesktop.11.0.5.nupkg.sha512"
- },
- "Avalonia.Native/11.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZrOlxU7C5FdDVmTxta/xv83KKg+HqgnmX6hGTQdEK4Yn5rMVqy0h1CcuZr7UKM4kHnbWdUhbgZ3+mXeF6f8Mug==",
- "path": "avalonia.native/11.0.5",
- "hashPath": "avalonia.native.11.0.5.nupkg.sha512"
- },
- "Avalonia.Remote.Protocol/11.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-UDK2jNGWaMHOP4lENIeUp7WsNAv65PuR5Yjo6EksDgN+BfS99+O9QDskrroyCnaMredOYvyposyj5Bgur8vO1w==",
- "path": "avalonia.remote.protocol/11.0.5",
- "hashPath": "avalonia.remote.protocol.11.0.5.nupkg.sha512"
- },
- "Avalonia.Skia/11.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1t3yR1t0HOm0jITpn7+Wb2XUlwhbHPTr3i4ZrgYLKmc68fcBgBnQutJNjzLW3Iq8uWB8ymTeB3sKiD/NVkWFNw==",
- "path": "avalonia.skia/11.0.5",
- "hashPath": "avalonia.skia.11.0.5.nupkg.sha512"
- },
- "Avalonia.Themes.Fluent/11.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/sEz05Hiu20OuUm5e2LSn/Hnzz4OvnG7jLA+NvWMIBBzdaz0a7Kr4QqDJmcpyK6x/a3l+xw4HDpWxMsn3nSBGg==",
- "path": "avalonia.themes.fluent/11.0.5",
- "hashPath": "avalonia.themes.fluent.11.0.5.nupkg.sha512"
- },
- "Avalonia.Themes.Simple/11.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kDRQMs0nndFdRSeDedhGOg4NL5lw/QiTJJ9CzzuRUq7M8RzJIZz8clHh1CJZira5JZDYD3lpRmhIeNafk6bNqw==",
- "path": "avalonia.themes.simple/11.0.5",
- "hashPath": "avalonia.themes.simple.11.0.5.nupkg.sha512"
- },
- "Avalonia.Win32/11.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jjyNomyG/hG0rxelDszIUvJ1IdwazFsAtc++I00e55DIbHMQzH/CqwUEAevpAO6sh4w5fNnyXHuwS9Kl9N4zUg==",
- "path": "avalonia.win32/11.0.5",
- "hashPath": "avalonia.win32.11.0.5.nupkg.sha512"
- },
- "Avalonia.X11/11.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-FhJU/SUT2QTEhutSr8B/8w4ZZnVmmTPaHm+Y9/QiyzpS2UKz0e2lt3v8U7GKUdYpJD34ZMf6tl4zDiCnRiztgw==",
- "path": "avalonia.x11/11.0.5",
- "hashPath": "avalonia.x11.11.0.5.nupkg.sha512"
- },
- "Bluez.NET.Server/0.0.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-JSXQEGD7kmiS5UbyTQ27g9Kn9hrsvXPlBqofX1yoQ430KM770t+YP1wJ4WqqwQppAcU2JQjJl0jBKVznC/Bedg==",
- "path": "bluez.net.server/0.0.1",
- "hashPath": "bluez.net.server.0.0.1.nupkg.sha512"
- },
- "ColorTextBlock.Avalonia/11.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-MsWu5aAbDpstAmJ+TTSgC6Q7YdjKB7Na912GMr3oWl9ag8TH2HNpglzgo+kIAuB4C4wswKfrzhso4UcpvgMuHg==",
- "path": "colortextblock.avalonia/11.0.2",
- "hashPath": "colortextblock.avalonia.11.0.2.nupkg.sha512"
- },
- "DialogHost.Avalonia/0.7.7": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-V5zq0e6dBeK1A8xDsyNouzfSx3d+aOhxPgjguaFyaDexgDF8WiSQDsawkv0fRGKbDnaPIqMk9m7P/2G5c7HPzw==",
- "path": "dialoghost.avalonia/0.7.7",
- "hashPath": "dialoghost.avalonia.0.7.7.nupkg.sha512"
- },
- "HarfBuzzSharp/2.8.2.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-8MwXm9J4dXHuTdzPo29nHgDbt4+6P+RrPrH/qrxcERf29cpLlFbjvP3eFPwHmdUrl4KL2SHEZi2ZuQ5ndeIL1w==",
- "path": "harfbuzzsharp/2.8.2.3",
- "hashPath": "harfbuzzsharp.2.8.2.3.nupkg.sha512"
- },
- "HarfBuzzSharp.NativeAssets.Linux/2.8.2.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Qu1yJSHEN7PD3+fqfkaClnORWN5e2xJ2Xoziz/GUi/oBT1Z+Dp2oZeiONKP6NFltboSOBkvH90QuOA6YN/U1zg==",
- "path": "harfbuzzsharp.nativeassets.linux/2.8.2.3",
- "hashPath": "harfbuzzsharp.nativeassets.linux.2.8.2.3.nupkg.sha512"
- },
- "HarfBuzzSharp.NativeAssets.macOS/2.8.2.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-uwz9pB3hMuxzI/bSkjVrsOJH7Wo1L+0Md5ZmEMDM/j7xDHtR9d3mfg/CfxhMIcTiUC4JgX49FZK0y2ojgu1dww==",
- "path": "harfbuzzsharp.nativeassets.macos/2.8.2.3",
- "hashPath": "harfbuzzsharp.nativeassets.macos.2.8.2.3.nupkg.sha512"
- },
- "HarfBuzzSharp.NativeAssets.WebAssembly/2.8.2.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-a6t2X1GrZDt3ErjFbG+qXdxaO8EvMMUN1AVZYfayh7EACHU3yU/SG/rveKLWhT8Ln5GFLqe2r+5dsDrHK1qScw==",
- "path": "harfbuzzsharp.nativeassets.webassembly/2.8.2.3",
- "hashPath": "harfbuzzsharp.nativeassets.webassembly.2.8.2.3.nupkg.sha512"
- },
- "HarfBuzzSharp.NativeAssets.Win32/2.8.2.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Wo6QpE4+a+PFVdfIBoLkLr4wq2uC0m9TZC8FAfy4ZnLsUc10WL0Egk9EBHHhDCeokNOXDse5YtvuTYtS/rbHfg==",
- "path": "harfbuzzsharp.nativeassets.win32/2.8.2.3",
- "hashPath": "harfbuzzsharp.nativeassets.win32.2.8.2.3.nupkg.sha512"
- },
- "Markdown.Avalonia.Tight/11.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Ylg0EkSUId42dVUFQvU7UJGWcKiJ+g7TesRe/KCzUYzlypWf1lTiVveT2j60QSldCtuAw3o/aEOEjIahMdRGig==",
- "path": "markdown.avalonia.tight/11.0.2",
- "hashPath": "markdown.avalonia.tight.11.0.2.nupkg.sha512"
- },
- "MessageBox.Avalonia/3.1.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-iE6AzefOgcNHwdmQoUIeuii09UsFzMJoo027dZ/oKXmIaX9C8isTejODlGsuRmWgvvgMNULXsQTaH0VknMSEnw==",
- "path": "messagebox.avalonia/3.1.5.1",
- "hashPath": "messagebox.avalonia.3.1.5.1.nupkg.sha512"
- },
- "MicroCom.Runtime/0.11.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-MEnrZ3UIiH40hjzMDsxrTyi8dtqB5ziv3iBeeU4bXsL/7NLSal9F1lZKpK+tfBRnUoDSdtcW3KufE4yhATOMCA==",
- "path": "microcom.runtime/0.11.0",
- "hashPath": "microcom.runtime.0.11.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Analyzers/3.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ojG5pGAhTPmjxRGTNvuszO3H8XPZqksDwr9xLd4Ae/JBjZZdl6GuoLk7uLMf+o7yl5wO0TAqoWcEKkEWqrZE5g==",
- "path": "microsoft.codeanalysis.analyzers/3.0.0",
- "hashPath": "microsoft.codeanalysis.analyzers.3.0.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Common/3.8.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-8YTZ7GpsbTdC08DITx7/kwV0k4SC6cbBAFqc13cOm5vKJZcEIAh51tNSyGSkWisMgYCr96B2wb5Zri1bsla3+g==",
- "path": "microsoft.codeanalysis.common/3.8.0",
- "hashPath": "microsoft.codeanalysis.common.3.8.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.CSharp/3.8.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-hKqFCUSk9TIMBDjiYMF8/ZfK9p9mzpU+slM73CaCHu4ctfkoqJGHLQhyT8wvrYsIg+ufrUWBF8hcJYmyr5rc5Q==",
- "path": "microsoft.codeanalysis.csharp/3.8.0",
- "hashPath": "microsoft.codeanalysis.csharp.3.8.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.CSharp.Scripting/3.8.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-+XVKzByNigzzvl7rGwpzFrkUbbekNUwdMW3EghcxmNRZd9aamNXxes3I/U0tYx1LTeHEQ5y/nzb7SiEmXBmzEA==",
- "path": "microsoft.codeanalysis.csharp.scripting/3.8.0",
- "hashPath": "microsoft.codeanalysis.csharp.scripting.3.8.0.nupkg.sha512"
- },
- "Microsoft.CodeAnalysis.Scripting.Common/3.8.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-lR8Mxg/4tnwzFyqJOD7wBoXbyDKEaMxRc0E9UWtHNGBiL1qBdYyVhXPmiOPUL44tUJeQwCOHAr554jRHGBQIcw==",
- "path": "microsoft.codeanalysis.scripting.common/3.8.0",
- "hashPath": "microsoft.codeanalysis.scripting.common.3.8.0.nupkg.sha512"
- },
- "Microsoft.CSharp/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
- "path": "microsoft.csharp/4.3.0",
- "hashPath": "microsoft.csharp.4.3.0.nupkg.sha512"
- },
- "Microsoft.NETCore.Platforms/2.1.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mOJy3M0UN+LUG21dLGMxaWZEP6xYpQEpLuvuEQBaownaX4YuhH6NmNUlN9si+vNkAS6dwJ//N1O4DmLf2CikVg==",
- "path": "microsoft.netcore.platforms/2.1.2",
- "hashPath": "microsoft.netcore.platforms.2.1.2.nupkg.sha512"
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
- "path": "microsoft.netcore.targets/1.1.0",
- "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
- },
- "Microsoft.Win32.SystemEvents/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==",
- "path": "microsoft.win32.systemevents/6.0.0",
- "hashPath": "microsoft.win32.systemevents.6.0.0.nupkg.sha512"
- },
- "SkiaSharp/2.88.6": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-wdfeBAQrEQCbJIRgAiargzP1Uy+0grZiG4CSgBnhAgcJTsPzlifIaO73JRdwIlT3TyBoeU9jEqzwFUhl4hTYnQ==",
- "path": "skiasharp/2.88.6",
- "hashPath": "skiasharp.2.88.6.nupkg.sha512"
- },
- "SkiaSharp.NativeAssets.Linux/2.88.6": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-iQcOUE0tPZvBUxOdZaP3LIdAC21H8BEMhDvpCQ/mUUvbKGLd5rF7veJVSZBNu20SuCC0oZpEdGxB+mLVOK8uzw==",
- "path": "skiasharp.nativeassets.linux/2.88.6",
- "hashPath": "skiasharp.nativeassets.linux.2.88.6.nupkg.sha512"
- },
- "SkiaSharp.NativeAssets.macOS/2.88.6": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Sko9LFxRXSjb3OGh5/RxrVRXxYo48tr5NKuuSy6jB85GrYt8WRqVY1iLOLwtjPiVAt4cp+pyD4i30azanS64dw==",
- "path": "skiasharp.nativeassets.macos/2.88.6",
- "hashPath": "skiasharp.nativeassets.macos.2.88.6.nupkg.sha512"
- },
- "SkiaSharp.NativeAssets.WebAssembly/2.88.6": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-pye92IhbHq3uqxrU/I+LdkIRAyWfiUNeJ5IIAmYWt2DQPOU44Uh1nTIcjQ2ghRIFWq62VVUJJy5saLBcQO5zyw==",
- "path": "skiasharp.nativeassets.webassembly/2.88.6",
- "hashPath": "skiasharp.nativeassets.webassembly.2.88.6.nupkg.sha512"
- },
- "SkiaSharp.NativeAssets.Win32/2.88.6": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7TzFO0u/g2MpQsTty4fyCDdMcfcWI+aLswwfnYXr3gtNS6VLKdMXPMeKpJa3pJSLnUBN6wD0JjuCe8OoLBQ6cQ==",
- "path": "skiasharp.nativeassets.win32/2.88.6",
- "hashPath": "skiasharp.nativeassets.win32.2.88.6.nupkg.sha512"
- },
- "System.Collections/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
- "path": "system.collections/4.3.0",
- "hashPath": "system.collections.4.3.0.nupkg.sha512"
- },
- "System.Collections.Immutable/5.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
- "path": "system.collections.immutable/5.0.0",
- "hashPath": "system.collections.immutable.5.0.0.nupkg.sha512"
- },
- "System.ComponentModel.Annotations/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-UxYQ3FGUOtzJ7LfSdnYSFd7+oEv6M8NgUatatIN2HxNtDdlcvFAf+VIq4Of9cDMJEJC0aSRv/x898RYhB4Yppg==",
- "path": "system.componentmodel.annotations/4.5.0",
- "hashPath": "system.componentmodel.annotations.4.5.0.nupkg.sha512"
- },
- "System.Diagnostics.Debug/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
- "path": "system.diagnostics.debug/4.3.0",
- "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512"
- },
- "System.Drawing.Common/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
- "path": "system.drawing.common/6.0.0",
- "hashPath": "system.drawing.common.6.0.0.nupkg.sha512"
- },
- "System.Dynamic.Runtime/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
- "path": "system.dynamic.runtime/4.3.0",
- "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512"
- },
- "System.Globalization/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
- "path": "system.globalization/4.3.0",
- "hashPath": "system.globalization.4.3.0.nupkg.sha512"
- },
- "System.IO/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
- "path": "system.io/4.3.0",
- "hashPath": "system.io.4.3.0.nupkg.sha512"
- },
- "System.IO.Pipelines/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-mXX66shZ4xLlI3vNLaJ0lt8OIZdmXTvIqXRdQX5HLVGSkLhINLsVhyZuX2UdRFnOGkqnwmMUs40pIIQ7mna4+A==",
- "path": "system.io.pipelines/6.0.0",
- "hashPath": "system.io.pipelines.6.0.0.nupkg.sha512"
- },
- "System.Linq/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
- "path": "system.linq/4.3.0",
- "hashPath": "system.linq.4.3.0.nupkg.sha512"
- },
- "System.Linq.Expressions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
- "path": "system.linq.expressions/4.3.0",
- "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512"
- },
- "System.Memory/4.5.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
- "path": "system.memory/4.5.4",
- "hashPath": "system.memory.4.5.4.nupkg.sha512"
- },
- "System.Numerics.Vectors/4.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
- "path": "system.numerics.vectors/4.5.0",
- "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512"
- },
- "System.ObjectModel/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
- "path": "system.objectmodel/4.3.0",
- "hashPath": "system.objectmodel.4.3.0.nupkg.sha512"
- },
- "System.Reactive/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-31kfaW4ZupZzPsI5PVe77VhnvFF55qgma7KZr/E0iFTs6fmdhhG8j0mgEx620iLTey1EynOkEfnyTjtNEpJzGw==",
- "path": "system.reactive/6.0.0",
- "hashPath": "system.reactive.6.0.0.nupkg.sha512"
- },
- "System.Reflection/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
- "path": "system.reflection/4.3.0",
- "hashPath": "system.reflection.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Emit/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
- "path": "system.reflection.emit/4.3.0",
- "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Emit.ILGeneration/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
- "path": "system.reflection.emit.ilgeneration/4.3.0",
- "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Emit.Lightweight/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
- "path": "system.reflection.emit.lightweight/4.3.0",
- "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
- "path": "system.reflection.extensions/4.3.0",
- "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512"
- },
- "System.Reflection.Metadata/5.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==",
- "path": "system.reflection.metadata/5.0.0",
- "hashPath": "system.reflection.metadata.5.0.0.nupkg.sha512"
- },
- "System.Reflection.Primitives/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
- "path": "system.reflection.primitives/4.3.0",
- "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
- },
- "System.Reflection.TypeExtensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
- "path": "system.reflection.typeextensions/4.3.0",
- "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512"
- },
- "System.Resources.ResourceManager/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
- "path": "system.resources.resourcemanager/4.3.0",
- "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512"
- },
- "System.Runtime/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
- "path": "system.runtime/4.3.0",
- "hashPath": "system.runtime.4.3.0.nupkg.sha512"
- },
- "System.Runtime.CompilerServices.Unsafe/4.7.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-zOHkQmzPCn5zm/BH+cxC1XbUS3P4Yoi3xzW7eRgVpDR2tPGSzyMZ17Ig1iRkfJuY0nhxkQQde8pgePNiA7z7TQ==",
- "path": "system.runtime.compilerservices.unsafe/4.7.1",
- "hashPath": "system.runtime.compilerservices.unsafe.4.7.1.nupkg.sha512"
- },
- "System.Runtime.Extensions/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
- "path": "system.runtime.extensions/4.3.0",
- "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512"
- },
- "System.Runtime.Handles/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
- "path": "system.runtime.handles/4.3.0",
- "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512"
- },
- "System.Runtime.InteropServices/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
- "path": "system.runtime.interopservices/4.3.0",
- "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512"
- },
- "System.Text.Encoding/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
- "path": "system.text.encoding/4.3.0",
- "hashPath": "system.text.encoding.4.3.0.nupkg.sha512"
- },
- "System.Text.Encoding.CodePages/4.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==",
- "path": "system.text.encoding.codepages/4.5.1",
- "hashPath": "system.text.encoding.codepages.4.5.1.nupkg.sha512"
- },
- "System.Threading/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
- "path": "system.threading/4.3.0",
- "hashPath": "system.threading.4.3.0.nupkg.sha512"
- },
- "System.Threading.Tasks/4.3.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
- "path": "system.threading.tasks/4.3.0",
- "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
- },
- "System.Threading.Tasks.Extensions/4.5.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
- "path": "system.threading.tasks.extensions/4.5.4",
- "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512"
- },
- "Tmds.DBus/0.15.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-11BxHGh+8hwXNdcavX7BxNW5Qr6AC36ABYDcqvZ3bDS7alXI+O95/x0ExoVWWWxjAVTnvmDRtW1Nd3uObPIsVg==",
- "path": "tmds.dbus/0.15.0",
- "hashPath": "tmds.dbus.0.15.0.nupkg.sha512"
- },
- "Tmds.DBus.Protocol/0.15.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-QVo/Y39nTYcCKBqrZuwHjXdwaky0yTQPIT3qUTEEK2MZfDtZWrJ2XyZ59zH8LBgB2fL5cWaTuP2pBTpGz/GeDQ==",
- "path": "tmds.dbus.protocol/0.15.0",
- "hashPath": "tmds.dbus.protocol.0.15.0.nupkg.sha512"
- },
- "Tmds.LibC/0.5.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-IZYKZ/016mRI2tRoh25OedrAwoWEN/20TtDh5uvN3oU1h9+UG/ulYJ1jvp+GTb2rkNIYpyHOl7bY4zHjgqypLg==",
- "path": "tmds.libc/0.5.0",
- "hashPath": "tmds.libc.0.5.0.nupkg.sha512"
- }
- }
-}
\ No newline at end of file
diff --git a/ble-server-linux/bin/Debug/net8.0/ble-server-linux.dll b/ble-server-linux/bin/Debug/net8.0/ble-server-linux.dll
deleted file mode 100644
index 6e3a894..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/ble-server-linux.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/ble-server-linux.pdb b/ble-server-linux/bin/Debug/net8.0/ble-server-linux.pdb
deleted file mode 100644
index d0bf732..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/ble-server-linux.pdb and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/ble-server-linux.runtimeconfig.json b/ble-server-linux/bin/Debug/net8.0/ble-server-linux.runtimeconfig.json
deleted file mode 100644
index 61e5180..0000000
--- a/ble-server-linux/bin/Debug/net8.0/ble-server-linux.runtimeconfig.json
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- "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/ble-server-linux/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/ble-server-linux/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index a04b38a..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/ble-server-linux/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index 5a0f170..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll b/ble-server-linux/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 7cec0a7..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll b/ble-server-linux/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index 68773e2..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/ble-server-linux/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index a1ae0ce..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/ble-server-linux/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index d1e20eb..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll b/ble-server-linux/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 2af4c27..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll b/ble-server-linux/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index 75a21b2..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/dotnetbleserver.dll b/ble-server-linux/bin/Debug/net8.0/dotnetbleserver.dll
deleted file mode 100755
index d8b6a85..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/dotnetbleserver.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/ble-server-linux/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index 0b3479f..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/ble-server-linux/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index 992d598..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll b/ble-server-linux/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index a733359..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll b/ble-server-linux/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index 4e8fb46..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/ble-server-linux/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index f047d59..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/ble-server-linux/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index 82065be..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll b/ble-server-linux/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 8e6fff8..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll b/ble-server-linux/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index d7c9296..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/ble-server-linux/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index 6f14d3f..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/ble-server-linux/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index 31be39a..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll b/ble-server-linux/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 5b65759..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll b/ble-server-linux/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index 81a7359..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/ble-server-linux/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index 5e73f0b..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/ble-server-linux/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index c32eea7..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll b/ble-server-linux/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 6568482..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll b/ble-server-linux/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index 48c0690..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/ble-server-linux/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index 2b77647..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/ble-server-linux/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index 86283a8..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll b/ble-server-linux/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index a911604..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll b/ble-server-linux/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index da54c73..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/ble-server-linux/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index 490d689..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/ble-server-linux/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index 2975c06..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll b/ble-server-linux/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 924661b..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll b/ble-server-linux/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index 1143bbb..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/ble-server-linux/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index 37317cd..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/ble-server-linux/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index ea85069..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll b/ble-server-linux/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 344329c..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/ble-server-linux/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index bd8c65b..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/ble-server-linux/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index b39fba2..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/ble-server-linux/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index ee28c62..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll b/ble-server-linux/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 672bcfa..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll b/ble-server-linux/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index c94e3b3..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/runtimes/linux-arm/lib/netstandard2.0/Tmds.LibC.dll b/ble-server-linux/bin/Debug/net8.0/runtimes/linux-arm/lib/netstandard2.0/Tmds.LibC.dll
deleted file mode 100755
index 37ff701..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/runtimes/linux-arm/lib/netstandard2.0/Tmds.LibC.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/runtimes/linux-arm/native/libHarfBuzzSharp.so b/ble-server-linux/bin/Debug/net8.0/runtimes/linux-arm/native/libHarfBuzzSharp.so
deleted file mode 100755
index 3979c3a..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/runtimes/linux-arm/native/libHarfBuzzSharp.so and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/runtimes/linux-arm/native/libSkiaSharp.so b/ble-server-linux/bin/Debug/net8.0/runtimes/linux-arm/native/libSkiaSharp.so
deleted file mode 100755
index b80d89b..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/runtimes/linux-arm/native/libSkiaSharp.so and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/runtimes/linux-arm64/lib/netstandard2.0/Tmds.LibC.dll b/ble-server-linux/bin/Debug/net8.0/runtimes/linux-arm64/lib/netstandard2.0/Tmds.LibC.dll
deleted file mode 100755
index 74cc5a3..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/runtimes/linux-arm64/lib/netstandard2.0/Tmds.LibC.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so b/ble-server-linux/bin/Debug/net8.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so
deleted file mode 100755
index 467b57d..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/runtimes/linux-arm64/native/libSkiaSharp.so b/ble-server-linux/bin/Debug/net8.0/runtimes/linux-arm64/native/libSkiaSharp.so
deleted file mode 100755
index 7e9f727..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/runtimes/linux-arm64/native/libSkiaSharp.so and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so b/ble-server-linux/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so
deleted file mode 100755
index f43631e..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libSkiaSharp.so b/ble-server-linux/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libSkiaSharp.so
deleted file mode 100755
index d446390..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libSkiaSharp.so and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/runtimes/linux-x64/lib/netstandard2.0/Tmds.LibC.dll b/ble-server-linux/bin/Debug/net8.0/runtimes/linux-x64/lib/netstandard2.0/Tmds.LibC.dll
deleted file mode 100755
index 62a6e4d..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/runtimes/linux-x64/lib/netstandard2.0/Tmds.LibC.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/runtimes/linux-x64/native/libHarfBuzzSharp.so b/ble-server-linux/bin/Debug/net8.0/runtimes/linux-x64/native/libHarfBuzzSharp.so
deleted file mode 100755
index b5b79fe..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/runtimes/linux-x64/native/libHarfBuzzSharp.so and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/runtimes/linux-x64/native/libSkiaSharp.so b/ble-server-linux/bin/Debug/net8.0/runtimes/linux-x64/native/libSkiaSharp.so
deleted file mode 100755
index 12291ca..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/runtimes/linux-x64/native/libSkiaSharp.so and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/runtimes/osx/native/libAvaloniaNative.dylib b/ble-server-linux/bin/Debug/net8.0/runtimes/osx/native/libAvaloniaNative.dylib
deleted file mode 100755
index a3f69b1..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/runtimes/osx/native/libAvaloniaNative.dylib and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/runtimes/osx/native/libHarfBuzzSharp.dylib b/ble-server-linux/bin/Debug/net8.0/runtimes/osx/native/libHarfBuzzSharp.dylib
deleted file mode 100755
index 16a1ad7..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/runtimes/osx/native/libHarfBuzzSharp.dylib and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/runtimes/osx/native/libSkiaSharp.dylib b/ble-server-linux/bin/Debug/net8.0/runtimes/osx/native/libSkiaSharp.dylib
deleted file mode 100755
index 059af87..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/runtimes/osx/native/libSkiaSharp.dylib and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll b/ble-server-linux/bin/Debug/net8.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll
deleted file mode 100755
index 9e26473..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/runtimes/win-arm64/native/av_libglesv2.dll b/ble-server-linux/bin/Debug/net8.0/runtimes/win-arm64/native/av_libglesv2.dll
deleted file mode 100755
index 51f4008..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/runtimes/win-arm64/native/av_libglesv2.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll b/ble-server-linux/bin/Debug/net8.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll
deleted file mode 100755
index 616d1cc..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/runtimes/win-arm64/native/libSkiaSharp.dll b/ble-server-linux/bin/Debug/net8.0/runtimes/win-arm64/native/libSkiaSharp.dll
deleted file mode 100755
index cf0689e..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/runtimes/win-arm64/native/libSkiaSharp.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/runtimes/win-x64/native/av_libglesv2.dll b/ble-server-linux/bin/Debug/net8.0/runtimes/win-x64/native/av_libglesv2.dll
deleted file mode 100755
index 7d94daf..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/runtimes/win-x64/native/av_libglesv2.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/runtimes/win-x64/native/libHarfBuzzSharp.dll b/ble-server-linux/bin/Debug/net8.0/runtimes/win-x64/native/libHarfBuzzSharp.dll
deleted file mode 100755
index 8031110..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/runtimes/win-x64/native/libHarfBuzzSharp.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/runtimes/win-x64/native/libSkiaSharp.dll b/ble-server-linux/bin/Debug/net8.0/runtimes/win-x64/native/libSkiaSharp.dll
deleted file mode 100755
index 1f3f7e3..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/runtimes/win-x64/native/libSkiaSharp.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/runtimes/win-x86/native/av_libglesv2.dll b/ble-server-linux/bin/Debug/net8.0/runtimes/win-x86/native/av_libglesv2.dll
deleted file mode 100755
index 473c2c5..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/runtimes/win-x86/native/av_libglesv2.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/runtimes/win-x86/native/libHarfBuzzSharp.dll b/ble-server-linux/bin/Debug/net8.0/runtimes/win-x86/native/libHarfBuzzSharp.dll
deleted file mode 100755
index 71f6711..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/runtimes/win-x86/native/libHarfBuzzSharp.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/runtimes/win-x86/native/libSkiaSharp.dll b/ble-server-linux/bin/Debug/net8.0/runtimes/win-x86/native/libSkiaSharp.dll
deleted file mode 100755
index 5736b4e..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/runtimes/win-x86/native/libSkiaSharp.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll b/ble-server-linux/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll
deleted file mode 100755
index 66af198..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll b/ble-server-linux/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll
deleted file mode 100755
index 7c9e87b..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/ble-server-linux/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index 8c4ed03..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/ble-server-linux/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index 622709a..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll b/ble-server-linux/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 114df89..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll b/ble-server-linux/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index 2bc270d..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/ble-server-linux/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index 1efa7c5..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/ble-server-linux/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index a4cbbfc..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll b/ble-server-linux/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 59d21cb..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/ble-server-linux/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index 8bac9f0..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/ble-server-linux/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index f25b9ec..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/ble-server-linux/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index 8bb283f..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll b/ble-server-linux/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 8694ff4..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/ble-server-linux/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/ble-server-linux/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index fd9dff3..0000000
Binary files a/ble-server-linux/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/ble-server-linux/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/ble-server-linux/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs
deleted file mode 100644
index 4257f4b..0000000
--- a/ble-server-linux/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")]
diff --git a/ble-server-linux/obj/Debug/net7.0/Avalonia/Resources.Inputs.cache b/ble-server-linux/obj/Debug/net7.0/Avalonia/Resources.Inputs.cache
deleted file mode 100644
index d284433..0000000
--- a/ble-server-linux/obj/Debug/net7.0/Avalonia/Resources.Inputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-84bda5c60935a875f9fe45d160afac68c182dfde6e939cd4277f0a84d29079be
diff --git a/ble-server-linux/obj/Debug/net7.0/Avalonia/original.dll b/ble-server-linux/obj/Debug/net7.0/Avalonia/original.dll
deleted file mode 100644
index 2d574d8..0000000
Binary files a/ble-server-linux/obj/Debug/net7.0/Avalonia/original.dll and /dev/null differ
diff --git a/ble-server-linux/obj/Debug/net7.0/Avalonia/original.pdb b/ble-server-linux/obj/Debug/net7.0/Avalonia/original.pdb
deleted file mode 100644
index 0bf5bfb..0000000
Binary files a/ble-server-linux/obj/Debug/net7.0/Avalonia/original.pdb and /dev/null differ
diff --git a/ble-server-linux/obj/Debug/net7.0/Avalonia/original.ref.dll b/ble-server-linux/obj/Debug/net7.0/Avalonia/original.ref.dll
deleted file mode 100644
index 2b92b1e..0000000
Binary files a/ble-server-linux/obj/Debug/net7.0/Avalonia/original.ref.dll and /dev/null differ
diff --git a/ble-server-linux/obj/Debug/net7.0/Avalonia/references b/ble-server-linux/obj/Debug/net7.0/Avalonia/references
deleted file mode 100644
index 9bbabff..0000000
--- a/ble-server-linux/obj/Debug/net7.0/Avalonia/references
+++ /dev/null
@@ -1,204 +0,0 @@
-/home/bajratech/.nuget/packages/avalonia/11.0.5/ref/net6.0/Avalonia.Base.dll
-/home/bajratech/.nuget/packages/avalonia.controls.colorpicker/11.0.5/lib/net6.0/Avalonia.Controls.ColorPicker.dll
-/home/bajratech/.nuget/packages/avalonia.controls.datagrid/11.0.5/lib/net6.0/Avalonia.Controls.DataGrid.dll
-/home/bajratech/.nuget/packages/avalonia/11.0.5/ref/net6.0/Avalonia.Controls.dll
-/home/bajratech/.nuget/packages/avalonia/11.0.5/ref/net6.0/Avalonia.DesignerSupport.dll
-/home/bajratech/.nuget/packages/avalonia.desktop/11.0.5/lib/net6.0/Avalonia.Desktop.dll
-/home/bajratech/.nuget/packages/avalonia.diagnostics/11.0.5/lib/net6.0/Avalonia.Diagnostics.dll
-/home/bajratech/.nuget/packages/avalonia/11.0.5/ref/net6.0/Avalonia.Dialogs.dll
-/home/bajratech/.nuget/packages/avalonia/11.0.5/ref/net6.0/Avalonia.dll
-/home/bajratech/.nuget/packages/avalonia.freedesktop/11.0.5/lib/net6.0/Avalonia.FreeDesktop.dll
-/home/bajratech/.nuget/packages/avalonia/11.0.5/ref/net6.0/Avalonia.Markup.dll
-/home/bajratech/.nuget/packages/avalonia/11.0.5/ref/net6.0/Avalonia.Markup.Xaml.dll
-/home/bajratech/.nuget/packages/avalonia/11.0.5/ref/net6.0/Avalonia.Metal.dll
-/home/bajratech/.nuget/packages/avalonia/11.0.5/ref/net6.0/Avalonia.MicroCom.dll
-/home/bajratech/.nuget/packages/avalonia.native/11.0.5/lib/net6.0/Avalonia.Native.dll
-/home/bajratech/.nuget/packages/avalonia/11.0.5/ref/net6.0/Avalonia.OpenGL.dll
-/home/bajratech/.nuget/packages/avalonia.remote.protocol/11.0.5/lib/net6.0/Avalonia.Remote.Protocol.dll
-/home/bajratech/.nuget/packages/avalonia.skia/11.0.5/lib/net6.0/Avalonia.Skia.dll
-/home/bajratech/.nuget/packages/avalonia.themes.fluent/11.0.5/lib/net6.0/Avalonia.Themes.Fluent.dll
-/home/bajratech/.nuget/packages/avalonia.themes.simple/11.0.5/lib/net6.0/Avalonia.Themes.Simple.dll
-/home/bajratech/.nuget/packages/avalonia.win32/11.0.5/lib/net6.0/Avalonia.Win32.dll
-/home/bajratech/.nuget/packages/avalonia.x11/11.0.5/lib/net6.0/Avalonia.X11.dll
-/home/bajratech/.nuget/packages/colortextblock.avalonia/11.0.2/lib/net6.0/ColorTextBlock.Avalonia.dll
-/home/bajratech/.nuget/packages/dialoghost.avalonia/0.7.7/lib/netstandard2.0/DialogHost.Avalonia.dll
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Debug/net7.0/ref/dotnetbleserver.dll
-/home/bajratech/.nuget/packages/harfbuzzsharp/2.8.2.3/lib/net6.0/HarfBuzzSharp.dll
-/home/bajratech/.nuget/packages/markdown.avalonia.tight/11.0.2/lib/net6.0/Markdown.Avalonia.dll
-/home/bajratech/.nuget/packages/microcom.runtime/0.11.0/lib/net5.0/MicroCom.Runtime.dll
-/home/bajratech/.nuget/packages/microsoft.codeanalysis.csharp/3.8.0/lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll
-/home/bajratech/.nuget/packages/microsoft.codeanalysis.csharp.scripting/3.8.0/lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Scripting.dll
-/home/bajratech/.nuget/packages/microsoft.codeanalysis.common/3.8.0/lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll
-/home/bajratech/.nuget/packages/microsoft.codeanalysis.scripting.common/3.8.0/lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/Microsoft.CSharp.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/Microsoft.VisualBasic.Core.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/Microsoft.VisualBasic.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/Microsoft.Win32.Primitives.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/Microsoft.Win32.Registry.dll
-/home/bajratech/.nuget/packages/microsoft.win32.systemevents/6.0.0/lib/net6.0/Microsoft.Win32.SystemEvents.dll
-/home/bajratech/.nuget/packages/messagebox.avalonia/3.1.5.1/lib/netstandard2.0/MsBox.Avalonia.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/mscorlib.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/netstandard.dll
-/home/bajratech/.nuget/packages/skiasharp/2.88.6/lib/net6.0/SkiaSharp.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.AppContext.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Buffers.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Collections.Concurrent.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Collections.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Collections.Immutable.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Collections.NonGeneric.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Collections.Specialized.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.ComponentModel.Annotations.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.ComponentModel.DataAnnotations.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.ComponentModel.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.ComponentModel.EventBasedAsync.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.ComponentModel.Primitives.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.ComponentModel.TypeConverter.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Configuration.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Console.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Core.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Data.Common.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Data.DataSetExtensions.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Data.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Diagnostics.Contracts.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Diagnostics.Debug.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Diagnostics.DiagnosticSource.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Diagnostics.FileVersionInfo.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Diagnostics.Process.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Diagnostics.StackTrace.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Diagnostics.TextWriterTraceListener.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Diagnostics.Tools.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Diagnostics.TraceSource.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Diagnostics.Tracing.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.dll
-/home/bajratech/.nuget/packages/system.drawing.common/6.0.0/lib/net6.0/System.Drawing.Common.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Drawing.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Drawing.Primitives.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Dynamic.Runtime.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Formats.Asn1.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Formats.Tar.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Globalization.Calendars.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Globalization.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Globalization.Extensions.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.IO.Compression.Brotli.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.IO.Compression.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.IO.Compression.FileSystem.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.IO.Compression.ZipFile.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.IO.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.IO.FileSystem.AccessControl.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.IO.FileSystem.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.IO.FileSystem.DriveInfo.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.IO.FileSystem.Primitives.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.IO.FileSystem.Watcher.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.IO.IsolatedStorage.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.IO.MemoryMappedFiles.dll
-/home/bajratech/.nuget/packages/system.io.pipelines/6.0.0/lib/net6.0/System.IO.Pipelines.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.IO.Pipes.AccessControl.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.IO.Pipes.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.IO.UnmanagedMemoryStream.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Linq.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Linq.Expressions.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Linq.Parallel.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Linq.Queryable.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Memory.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Net.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Net.Http.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Net.Http.Json.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Net.HttpListener.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Net.Mail.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Net.NameResolution.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Net.NetworkInformation.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Net.Ping.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Net.Primitives.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Net.Quic.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Net.Requests.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Net.Security.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Net.ServicePoint.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Net.Sockets.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Net.WebClient.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Net.WebHeaderCollection.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Net.WebProxy.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Net.WebSockets.Client.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Net.WebSockets.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Numerics.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Numerics.Vectors.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.ObjectModel.dll
-/home/bajratech/.nuget/packages/system.reactive/6.0.0/lib/net6.0/System.Reactive.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Reflection.DispatchProxy.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Reflection.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Reflection.Emit.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Reflection.Emit.ILGeneration.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Reflection.Emit.Lightweight.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Reflection.Extensions.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Reflection.Metadata.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Reflection.Primitives.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Reflection.TypeExtensions.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Resources.Reader.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Resources.ResourceManager.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Resources.Writer.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Runtime.CompilerServices.Unsafe.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Runtime.CompilerServices.VisualC.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Runtime.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Runtime.Extensions.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Runtime.Handles.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Runtime.InteropServices.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Runtime.InteropServices.JavaScript.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Runtime.InteropServices.RuntimeInformation.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Runtime.Intrinsics.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Runtime.Loader.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Runtime.Numerics.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Runtime.Serialization.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Runtime.Serialization.Formatters.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Runtime.Serialization.Json.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Runtime.Serialization.Primitives.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Runtime.Serialization.Xml.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Security.AccessControl.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Security.Claims.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Security.Cryptography.Algorithms.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Security.Cryptography.Cng.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Security.Cryptography.Csp.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Security.Cryptography.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Security.Cryptography.Encoding.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Security.Cryptography.OpenSsl.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Security.Cryptography.Primitives.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Security.Cryptography.X509Certificates.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Security.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Security.Principal.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Security.Principal.Windows.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Security.SecureString.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.ServiceModel.Web.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.ServiceProcess.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Text.Encoding.CodePages.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Text.Encoding.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Text.Encoding.Extensions.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Text.Encodings.Web.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Text.Json.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Text.RegularExpressions.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Threading.Channels.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Threading.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Threading.Overlapped.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Threading.Tasks.Dataflow.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Threading.Tasks.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Threading.Tasks.Extensions.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Threading.Tasks.Parallel.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Threading.Thread.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Threading.ThreadPool.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Threading.Timer.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Transactions.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Transactions.Local.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.ValueTuple.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Web.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Web.HttpUtility.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Windows.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Xml.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Xml.Linq.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Xml.ReaderWriter.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Xml.Serialization.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Xml.XDocument.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Xml.XmlDocument.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Xml.XmlSerializer.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Xml.XPath.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/System.Xml.XPath.XDocument.dll
-/home/bajratech/.nuget/packages/tmds.dbus/0.15.0/lib/net6.0/Tmds.DBus.dll
-/home/bajratech/.nuget/packages/tmds.dbus.protocol/0.15.0/lib/net6.0/Tmds.DBus.Protocol.dll
-/home/bajratech/.nuget/packages/tmds.libc/0.5.0/ref/netstandard2.0/Tmds.LibC.dll
-/home/bajratech/.nuget/packages/microsoft.netcore.app.ref/7.0.15/ref/net7.0/WindowsBase.dll
diff --git a/ble-server-linux/obj/Debug/net7.0/Avalonia/resources b/ble-server-linux/obj/Debug/net7.0/Avalonia/resources
deleted file mode 100644
index 8d5892b..0000000
Binary files a/ble-server-linux/obj/Debug/net7.0/Avalonia/resources and /dev/null differ
diff --git a/ble-server-linux/obj/Debug/net7.0/apphost b/ble-server-linux/obj/Debug/net7.0/apphost
deleted file mode 100755
index 619436e..0000000
Binary files a/ble-server-linux/obj/Debug/net7.0/apphost and /dev/null differ
diff --git a/ble-server-linux/obj/Debug/net7.0/apphost.exe b/ble-server-linux/obj/Debug/net7.0/apphost.exe
deleted file mode 100644
index d26e9d0..0000000
Binary files a/ble-server-linux/obj/Debug/net7.0/apphost.exe and /dev/null differ
diff --git a/ble-server-linux/obj/Debug/net7.0/ble-server-linux.AssemblyInfo.cs b/ble-server-linux/obj/Debug/net7.0/ble-server-linux.AssemblyInfo.cs
deleted file mode 100644
index 1e3ecfd..0000000
--- a/ble-server-linux/obj/Debug/net7.0/ble-server-linux.AssemblyInfo.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// 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("ble-server-linux")]
-[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
-[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+555385883a64c17b049bcd3a6b18c33007c3ce9f")]
-[assembly: System.Reflection.AssemblyProductAttribute("ble-server-linux")]
-[assembly: System.Reflection.AssemblyTitleAttribute("ble-server-linux")]
-[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
-
-// Generated by the MSBuild WriteCodeFragment class.
-
diff --git a/ble-server-linux/obj/Debug/net7.0/ble-server-linux.AssemblyInfoInputs.cache b/ble-server-linux/obj/Debug/net7.0/ble-server-linux.AssemblyInfoInputs.cache
deleted file mode 100644
index 746903a..0000000
--- a/ble-server-linux/obj/Debug/net7.0/ble-server-linux.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-9d8afb1f3f5562fd7ef4cabc27cb1f04e4b514ee0d582cea7de3cfd700e76349
diff --git a/ble-server-linux/obj/Debug/net7.0/ble-server-linux.GeneratedMSBuildEditorConfig.editorconfig b/ble-server-linux/obj/Debug/net7.0/ble-server-linux.GeneratedMSBuildEditorConfig.editorconfig
deleted file mode 100644
index c485ab5..0000000
--- a/ble-server-linux/obj/Debug/net7.0/ble-server-linux.GeneratedMSBuildEditorConfig.editorconfig
+++ /dev/null
@@ -1,24 +0,0 @@
-is_global = true
-build_property.AvaloniaNameGeneratorIsEnabled = true
-build_property.AvaloniaNameGeneratorBehavior = InitializeComponent
-build_property.AvaloniaNameGeneratorDefaultFieldModifier = internal
-build_property.AvaloniaNameGeneratorFilterByPath = *
-build_property.AvaloniaNameGeneratorFilterByNamespace = *
-build_property.TargetFramework = net7.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 = ble-server-linux
-build_property.ProjectDir = /home/bajratech/Desktop/dotnetbleserver/ble-server-linux/
-build_property.EnableComHosting =
-build_property.EnableGeneratedComInterfaceComImportInterop =
-
-[/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/App.axaml]
-build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
-
-[/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/MainWindow.axaml]
-build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
diff --git a/ble-server-linux/obj/Debug/net7.0/ble-server-linux.assets.cache b/ble-server-linux/obj/Debug/net7.0/ble-server-linux.assets.cache
deleted file mode 100644
index 607d493..0000000
Binary files a/ble-server-linux/obj/Debug/net7.0/ble-server-linux.assets.cache and /dev/null differ
diff --git a/ble-server-linux/obj/Debug/net7.0/ble-server-linux.csproj.AssemblyReference.cache b/ble-server-linux/obj/Debug/net7.0/ble-server-linux.csproj.AssemblyReference.cache
deleted file mode 100644
index 6e9b296..0000000
Binary files a/ble-server-linux/obj/Debug/net7.0/ble-server-linux.csproj.AssemblyReference.cache and /dev/null differ
diff --git a/ble-server-linux/obj/Debug/net7.0/ble-server-linux.csproj.BuildWithSkipAnalyzers b/ble-server-linux/obj/Debug/net7.0/ble-server-linux.csproj.BuildWithSkipAnalyzers
deleted file mode 100644
index e69de29..0000000
diff --git a/ble-server-linux/obj/Debug/net7.0/ble-server-linux.csproj.CopyComplete b/ble-server-linux/obj/Debug/net7.0/ble-server-linux.csproj.CopyComplete
deleted file mode 100644
index e69de29..0000000
diff --git a/ble-server-linux/obj/Debug/net7.0/ble-server-linux.csproj.CoreCompileInputs.cache b/ble-server-linux/obj/Debug/net7.0/ble-server-linux.csproj.CoreCompileInputs.cache
deleted file mode 100644
index 43dfb5a..0000000
--- a/ble-server-linux/obj/Debug/net7.0/ble-server-linux.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-9608b502e6c836ecf0e7e6dcfbee79116d3273e66edd1398d4838fdb55bda106
diff --git a/ble-server-linux/obj/Debug/net7.0/ble-server-linux.csproj.FileListAbsolute.txt b/ble-server-linux/obj/Debug/net7.0/ble-server-linux.csproj.FileListAbsolute.txt
deleted file mode 100644
index 5dfe84b..0000000
--- a/ble-server-linux/obj/Debug/net7.0/ble-server-linux.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,277 +0,0 @@
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/ble-server-linux.exe
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/ble-server-linux.deps.json
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/ble-server-linux.runtimeconfig.json
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/ble-server-linux.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/ble-server-linux.pdb
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/Avalonia.Animation.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/Avalonia.Base.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/Avalonia.Controls.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/Avalonia.DesignerSupport.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/Avalonia.DesktopRuntime.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/Avalonia.Dialogs.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/Avalonia.Input.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/Avalonia.Interactivity.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/Avalonia.Layout.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/Avalonia.Markup.Xaml.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/Avalonia.Markup.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/Avalonia.MicroCom.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/Avalonia.OpenGL.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/Avalonia.Styling.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/Avalonia.Themes.Default.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/Avalonia.Themes.Fluent.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/Avalonia.Visuals.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/Avalonia.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/Avalonia.Controls.DataGrid.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/Avalonia.Desktop.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/Avalonia.Diagnostics.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/Avalonia.FreeDesktop.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/Avalonia.Native.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/Avalonia.Remote.Protocol.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/Avalonia.Skia.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/Avalonia.Win32.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/Avalonia.X11.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/HarfBuzzSharp.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/JetBrains.Annotations.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/Microsoft.CodeAnalysis.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/Microsoft.CodeAnalysis.Scripting.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/Microsoft.Win32.SystemEvents.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/SkiaSharp.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/System.Drawing.Common.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/System.Reactive.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/Tmds.DBus.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/runtimes/win-arm64/native/av_libglesv2.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/runtimes/win7-x64/native/av_libglesv2.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/runtimes/win7-x86/native/av_libglesv2.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/runtimes/osx/native/libAvaloniaNative.dylib
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/runtimes/linux-arm/native/libHarfBuzzSharp.so
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/runtimes/linux-x64/native/libHarfBuzzSharp.so
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/runtimes/osx/native/libHarfBuzzSharp.dylib
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/runtimes/win-x64/native/libHarfBuzzSharp.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/runtimes/win-x86/native/libHarfBuzzSharp.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/runtimes/linux-arm/native/libSkiaSharp.so
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/runtimes/linux-arm64/native/libSkiaSharp.so
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libSkiaSharp.so
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/runtimes/linux-x64/native/libSkiaSharp.so
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/runtimes/osx/native/libSkiaSharp.dylib
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/runtimes/win-arm64/native/libSkiaSharp.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/runtimes/win-x64/native/libSkiaSharp.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/runtimes/win-x86/native/libSkiaSharp.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/runtimes/linux-arm/lib/netstandard2.0/Tmds.LibC.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/runtimes/linux-arm64/lib/netstandard2.0/Tmds.LibC.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/runtimes/linux-x64/lib/netstandard2.0/Tmds.LibC.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/dotnetbleserver.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/bin/Debug/net7.0/dotnetbleserver.pdb
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/obj/Debug/net7.0/ble-server-linux.csproj.AssemblyReference.cache
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/obj/Debug/net7.0/ble-server-linux.GeneratedMSBuildEditorConfig.editorconfig
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/obj/Debug/net7.0/ble-server-linux.AssemblyInfoInputs.cache
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/obj/Debug/net7.0/ble-server-linux.AssemblyInfo.cs
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/obj/Debug/net7.0/ble-server-linux.csproj.CoreCompileInputs.cache
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/obj/Debug/net7.0/ble-server-linux.sourcelink.json
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/obj/Debug/net7.0/ble-server-linux.csproj.CopyComplete
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/obj/Debug/net7.0/ble-server-linux.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/obj/Debug/net7.0/refint/ble-server-linux.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/obj/Debug/net7.0/ble-server-linux.pdb
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/obj/Debug/net7.0/ble-server-linux.genruntimeconfig.cache
-C:/Users/exend/Source/Repos/dotnet_ble_server/ble-server-linux/obj/Debug/net7.0/ref/ble-server-linux.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/Debug/net7.0/ble-server-linux.csproj.AssemblyReference.cache
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/ble-server-linux
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/ble-server-linux.deps.json
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/ble-server-linux.runtimeconfig.json
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/ble-server-linux.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/ble-server-linux.pdb
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/Avalonia.Base.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/Avalonia.Controls.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/Avalonia.DesignerSupport.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/Avalonia.Dialogs.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/Avalonia.Markup.Xaml.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/Avalonia.Markup.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/Avalonia.MicroCom.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/Avalonia.OpenGL.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/Avalonia.Themes.Fluent.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/Avalonia.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/Avalonia.Controls.DataGrid.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/Avalonia.Desktop.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/Avalonia.Diagnostics.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/Avalonia.FreeDesktop.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/Avalonia.Native.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/Avalonia.Remote.Protocol.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/Avalonia.Skia.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/Avalonia.Win32.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/Avalonia.X11.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/HarfBuzzSharp.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/Microsoft.CodeAnalysis.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/Microsoft.CodeAnalysis.Scripting.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/Microsoft.Win32.SystemEvents.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/SkiaSharp.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/System.Drawing.Common.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/System.Reactive.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/Tmds.DBus.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/runtimes/win-arm64/native/av_libglesv2.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/runtimes/osx/native/libAvaloniaNative.dylib
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/runtimes/linux-arm/native/libHarfBuzzSharp.so
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/runtimes/linux-x64/native/libHarfBuzzSharp.so
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/runtimes/osx/native/libHarfBuzzSharp.dylib
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/runtimes/win-x64/native/libHarfBuzzSharp.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/runtimes/win-x86/native/libHarfBuzzSharp.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/runtimes/linux-arm/native/libSkiaSharp.so
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/runtimes/linux-arm64/native/libSkiaSharp.so
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libSkiaSharp.so
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/runtimes/linux-x64/native/libSkiaSharp.so
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/runtimes/osx/native/libSkiaSharp.dylib
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/runtimes/win-arm64/native/libSkiaSharp.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/runtimes/win-x64/native/libSkiaSharp.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/runtimes/win-x86/native/libSkiaSharp.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/runtimes/linux-arm/lib/netstandard2.0/Tmds.LibC.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/runtimes/linux-arm64/lib/netstandard2.0/Tmds.LibC.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/runtimes/linux-x64/lib/netstandard2.0/Tmds.LibC.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/dotnetbleserver.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/dotnetbleserver.pdb
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/Debug/net7.0/ble-server-linux.GeneratedMSBuildEditorConfig.editorconfig
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/Debug/net7.0/ble-server-linux.AssemblyInfoInputs.cache
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/Debug/net7.0/ble-server-linux.AssemblyInfo.cs
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/Debug/net7.0/ble-server-linux.csproj.CoreCompileInputs.cache
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/Debug/net7.0/ble-server-linux.csproj.CopyComplete
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/Debug/net7.0/ble-server-linux.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/Debug/net7.0/refint/ble-server-linux.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/Debug/net7.0/ble-server-linux.pdb
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/Debug/net7.0/ble-server-linux.genruntimeconfig.cache
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/Debug/net7.0/ref/ble-server-linux.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/ColorTextBlock.Avalonia.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/Markdown.Avalonia.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/Debug/net7.0/Avalonia/Resources.Inputs.cache
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/Debug/net7.0/Avalonia/resources
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/Debug/net7.0/Avalonia/references
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/Debug/net7.0/Avalonia/original.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/Debug/net7.0/Avalonia/original.pdb
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/Debug/net7.0/Avalonia/original.ref.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/Avalonia.Metal.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/Avalonia.Controls.ColorPicker.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/Avalonia.Themes.Simple.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/DialogHost.Avalonia.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/MsBox.Avalonia.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/MicroCom.Runtime.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/System.IO.Pipelines.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/Tmds.DBus.Protocol.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/runtimes/win-x64/native/av_libglesv2.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/runtimes/win-x86/native/av_libglesv2.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/Debug/net7.0/ble-server-linux.sourcelink.json
diff --git a/ble-server-linux/obj/Debug/net7.0/ble-server-linux.dll b/ble-server-linux/obj/Debug/net7.0/ble-server-linux.dll
deleted file mode 100644
index 5964366..0000000
Binary files a/ble-server-linux/obj/Debug/net7.0/ble-server-linux.dll and /dev/null differ
diff --git a/ble-server-linux/obj/Debug/net7.0/ble-server-linux.genruntimeconfig.cache b/ble-server-linux/obj/Debug/net7.0/ble-server-linux.genruntimeconfig.cache
deleted file mode 100644
index dbb123b..0000000
--- a/ble-server-linux/obj/Debug/net7.0/ble-server-linux.genruntimeconfig.cache
+++ /dev/null
@@ -1 +0,0 @@
-393c536d3a0047aaed0e718edeee078bf4b3eeec6154fd0d0c39f9763d1e569d
diff --git a/ble-server-linux/obj/Debug/net7.0/ble-server-linux.pdb b/ble-server-linux/obj/Debug/net7.0/ble-server-linux.pdb
deleted file mode 100644
index 3264ee7..0000000
Binary files a/ble-server-linux/obj/Debug/net7.0/ble-server-linux.pdb and /dev/null differ
diff --git a/ble-server-linux/obj/Debug/net7.0/ble-server-linux.sourcelink.json b/ble-server-linux/obj/Debug/net7.0/ble-server-linux.sourcelink.json
deleted file mode 100644
index 1a4e372..0000000
--- a/ble-server-linux/obj/Debug/net7.0/ble-server-linux.sourcelink.json
+++ /dev/null
@@ -1 +0,0 @@
-{"documents":{"/home/bajratech/Desktop/dotnetbleserver/*":"https://raw.githubusercontent.com/exendahal/dotnet_ble_server/555385883a64c17b049bcd3a6b18c33007c3ce9f/*"}}
\ No newline at end of file
diff --git a/ble-server-linux/obj/Debug/net7.0/ref/ble-server-linux.dll b/ble-server-linux/obj/Debug/net7.0/ref/ble-server-linux.dll
deleted file mode 100644
index 532465e..0000000
Binary files a/ble-server-linux/obj/Debug/net7.0/ref/ble-server-linux.dll and /dev/null differ
diff --git a/ble-server-linux/obj/Debug/net7.0/refint/ble-server-linux.dll b/ble-server-linux/obj/Debug/net7.0/refint/ble-server-linux.dll
deleted file mode 100644
index 532465e..0000000
Binary files a/ble-server-linux/obj/Debug/net7.0/refint/ble-server-linux.dll and /dev/null differ
diff --git a/ble-server-linux/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/ble-server-linux/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
deleted file mode 100644
index 2217181..0000000
--- a/ble-server-linux/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
diff --git a/ble-server-linux/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache b/ble-server-linux/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache
deleted file mode 100644
index cfb1ef8..0000000
--- a/ble-server-linux/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-a334f7b1cc60b51ac71c6c2850dedd38febb34885dfda77369ab4a2c80d11fd6
diff --git a/ble-server-linux/obj/Debug/net8.0/Avalonia/original.dll b/ble-server-linux/obj/Debug/net8.0/Avalonia/original.dll
deleted file mode 100644
index a6d21c8..0000000
Binary files a/ble-server-linux/obj/Debug/net8.0/Avalonia/original.dll and /dev/null differ
diff --git a/ble-server-linux/obj/Debug/net8.0/Avalonia/original.pdb b/ble-server-linux/obj/Debug/net8.0/Avalonia/original.pdb
deleted file mode 100644
index 87ed99f..0000000
Binary files a/ble-server-linux/obj/Debug/net8.0/Avalonia/original.pdb and /dev/null differ
diff --git a/ble-server-linux/obj/Debug/net8.0/Avalonia/original.ref.dll b/ble-server-linux/obj/Debug/net8.0/Avalonia/original.ref.dll
deleted file mode 100644
index c53ebf8..0000000
Binary files a/ble-server-linux/obj/Debug/net8.0/Avalonia/original.ref.dll and /dev/null differ
diff --git a/ble-server-linux/obj/Debug/net8.0/Avalonia/references b/ble-server-linux/obj/Debug/net8.0/Avalonia/references
deleted file mode 100644
index 7b33baf..0000000
--- a/ble-server-linux/obj/Debug/net8.0/Avalonia/references
+++ /dev/null
@@ -1,204 +0,0 @@
-/home/bajratech/.nuget/packages/avalonia/11.0.5/ref/net6.0/Avalonia.Base.dll
-/home/bajratech/.nuget/packages/avalonia.controls.colorpicker/11.0.5/lib/net6.0/Avalonia.Controls.ColorPicker.dll
-/home/bajratech/.nuget/packages/avalonia.controls.datagrid/11.0.5/lib/net6.0/Avalonia.Controls.DataGrid.dll
-/home/bajratech/.nuget/packages/avalonia/11.0.5/ref/net6.0/Avalonia.Controls.dll
-/home/bajratech/.nuget/packages/avalonia/11.0.5/ref/net6.0/Avalonia.DesignerSupport.dll
-/home/bajratech/.nuget/packages/avalonia.desktop/11.0.5/lib/net6.0/Avalonia.Desktop.dll
-/home/bajratech/.nuget/packages/avalonia.diagnostics/11.0.5/lib/net6.0/Avalonia.Diagnostics.dll
-/home/bajratech/.nuget/packages/avalonia/11.0.5/ref/net6.0/Avalonia.Dialogs.dll
-/home/bajratech/.nuget/packages/avalonia/11.0.5/ref/net6.0/Avalonia.dll
-/home/bajratech/.nuget/packages/avalonia.freedesktop/11.0.5/lib/net6.0/Avalonia.FreeDesktop.dll
-/home/bajratech/.nuget/packages/avalonia/11.0.5/ref/net6.0/Avalonia.Markup.dll
-/home/bajratech/.nuget/packages/avalonia/11.0.5/ref/net6.0/Avalonia.Markup.Xaml.dll
-/home/bajratech/.nuget/packages/avalonia/11.0.5/ref/net6.0/Avalonia.Metal.dll
-/home/bajratech/.nuget/packages/avalonia/11.0.5/ref/net6.0/Avalonia.MicroCom.dll
-/home/bajratech/.nuget/packages/avalonia.native/11.0.5/lib/net6.0/Avalonia.Native.dll
-/home/bajratech/.nuget/packages/avalonia/11.0.5/ref/net6.0/Avalonia.OpenGL.dll
-/home/bajratech/.nuget/packages/avalonia.remote.protocol/11.0.5/lib/net6.0/Avalonia.Remote.Protocol.dll
-/home/bajratech/.nuget/packages/avalonia.skia/11.0.5/lib/net6.0/Avalonia.Skia.dll
-/home/bajratech/.nuget/packages/avalonia.themes.fluent/11.0.5/lib/net6.0/Avalonia.Themes.Fluent.dll
-/home/bajratech/.nuget/packages/avalonia.themes.simple/11.0.5/lib/net6.0/Avalonia.Themes.Simple.dll
-/home/bajratech/.nuget/packages/avalonia.win32/11.0.5/lib/net6.0/Avalonia.Win32.dll
-/home/bajratech/.nuget/packages/avalonia.x11/11.0.5/lib/net6.0/Avalonia.X11.dll
-/home/bajratech/.nuget/packages/colortextblock.avalonia/11.0.2/lib/net6.0/ColorTextBlock.Avalonia.dll
-/home/bajratech/.nuget/packages/dialoghost.avalonia/0.7.7/lib/netstandard2.0/DialogHost.Avalonia.dll
-/home/bajratech/.nuget/packages/bluez.net.server/0.0.1/lib/net8.0/dotnetbleserver.dll
-/home/bajratech/.nuget/packages/harfbuzzsharp/2.8.2.3/lib/net6.0/HarfBuzzSharp.dll
-/home/bajratech/.nuget/packages/markdown.avalonia.tight/11.0.2/lib/net6.0/Markdown.Avalonia.dll
-/home/bajratech/.nuget/packages/microcom.runtime/0.11.0/lib/net5.0/MicroCom.Runtime.dll
-/home/bajratech/.nuget/packages/microsoft.codeanalysis.csharp/3.8.0/lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll
-/home/bajratech/.nuget/packages/microsoft.codeanalysis.csharp.scripting/3.8.0/lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Scripting.dll
-/home/bajratech/.nuget/packages/microsoft.codeanalysis.common/3.8.0/lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll
-/home/bajratech/.nuget/packages/microsoft.codeanalysis.scripting.common/3.8.0/lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/Microsoft.CSharp.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/Microsoft.VisualBasic.Core.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/Microsoft.VisualBasic.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/Microsoft.Win32.Primitives.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/Microsoft.Win32.Registry.dll
-/home/bajratech/.nuget/packages/microsoft.win32.systemevents/6.0.0/lib/net6.0/Microsoft.Win32.SystemEvents.dll
-/home/bajratech/.nuget/packages/messagebox.avalonia/3.1.5.1/lib/netstandard2.0/MsBox.Avalonia.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/mscorlib.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/netstandard.dll
-/home/bajratech/.nuget/packages/skiasharp/2.88.6/lib/net6.0/SkiaSharp.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.AppContext.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Buffers.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Collections.Concurrent.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Collections.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Collections.Immutable.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Collections.NonGeneric.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Collections.Specialized.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.ComponentModel.Annotations.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.ComponentModel.DataAnnotations.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.ComponentModel.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.ComponentModel.EventBasedAsync.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.ComponentModel.Primitives.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.ComponentModel.TypeConverter.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Configuration.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Console.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Core.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Data.Common.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Data.DataSetExtensions.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Data.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Diagnostics.Contracts.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Diagnostics.Debug.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Diagnostics.DiagnosticSource.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Diagnostics.FileVersionInfo.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Diagnostics.Process.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Diagnostics.StackTrace.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Diagnostics.TextWriterTraceListener.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Diagnostics.Tools.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Diagnostics.TraceSource.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Diagnostics.Tracing.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.dll
-/home/bajratech/.nuget/packages/system.drawing.common/6.0.0/lib/net6.0/System.Drawing.Common.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Drawing.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Drawing.Primitives.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Dynamic.Runtime.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Formats.Asn1.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Formats.Tar.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Globalization.Calendars.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Globalization.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Globalization.Extensions.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.IO.Compression.Brotli.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.IO.Compression.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.IO.Compression.FileSystem.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.IO.Compression.ZipFile.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.IO.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.IO.FileSystem.AccessControl.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.IO.FileSystem.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.IO.FileSystem.DriveInfo.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.IO.FileSystem.Primitives.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.IO.FileSystem.Watcher.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.IO.IsolatedStorage.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.IO.MemoryMappedFiles.dll
-/home/bajratech/.nuget/packages/system.io.pipelines/6.0.0/lib/net6.0/System.IO.Pipelines.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.IO.Pipes.AccessControl.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.IO.Pipes.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.IO.UnmanagedMemoryStream.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Linq.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Linq.Expressions.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Linq.Parallel.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Linq.Queryable.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Memory.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Net.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Net.Http.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Net.Http.Json.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Net.HttpListener.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Net.Mail.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Net.NameResolution.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Net.NetworkInformation.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Net.Ping.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Net.Primitives.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Net.Quic.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Net.Requests.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Net.Security.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Net.ServicePoint.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Net.Sockets.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Net.WebClient.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Net.WebHeaderCollection.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Net.WebProxy.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Net.WebSockets.Client.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Net.WebSockets.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Numerics.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Numerics.Vectors.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.ObjectModel.dll
-/home/bajratech/.nuget/packages/system.reactive/6.0.0/lib/net6.0/System.Reactive.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Reflection.DispatchProxy.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Reflection.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Reflection.Emit.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Reflection.Emit.ILGeneration.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Reflection.Emit.Lightweight.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Reflection.Extensions.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Reflection.Metadata.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Reflection.Primitives.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Reflection.TypeExtensions.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Resources.Reader.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Resources.ResourceManager.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Resources.Writer.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Runtime.CompilerServices.Unsafe.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Runtime.CompilerServices.VisualC.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Runtime.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Runtime.Extensions.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Runtime.Handles.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Runtime.InteropServices.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Runtime.InteropServices.JavaScript.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Runtime.InteropServices.RuntimeInformation.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Runtime.Intrinsics.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Runtime.Loader.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Runtime.Numerics.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Runtime.Serialization.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Runtime.Serialization.Formatters.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Runtime.Serialization.Json.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Runtime.Serialization.Primitives.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Runtime.Serialization.Xml.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Security.AccessControl.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Security.Claims.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Security.Cryptography.Algorithms.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Security.Cryptography.Cng.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Security.Cryptography.Csp.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Security.Cryptography.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Security.Cryptography.Encoding.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Security.Cryptography.OpenSsl.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Security.Cryptography.Primitives.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Security.Cryptography.X509Certificates.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Security.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Security.Principal.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Security.Principal.Windows.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Security.SecureString.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.ServiceModel.Web.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.ServiceProcess.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Text.Encoding.CodePages.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Text.Encoding.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Text.Encoding.Extensions.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Text.Encodings.Web.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Text.Json.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Text.RegularExpressions.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Threading.Channels.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Threading.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Threading.Overlapped.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Threading.Tasks.Dataflow.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Threading.Tasks.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Threading.Tasks.Extensions.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Threading.Tasks.Parallel.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Threading.Thread.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Threading.ThreadPool.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Threading.Timer.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Transactions.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Transactions.Local.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.ValueTuple.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Web.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Web.HttpUtility.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Windows.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Xml.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Xml.Linq.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Xml.ReaderWriter.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Xml.Serialization.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Xml.XDocument.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Xml.XmlDocument.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Xml.XmlSerializer.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Xml.XPath.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/System.Xml.XPath.XDocument.dll
-/home/bajratech/.nuget/packages/tmds.dbus/0.15.0/lib/net6.0/Tmds.DBus.dll
-/home/bajratech/.nuget/packages/tmds.dbus.protocol/0.15.0/lib/net6.0/Tmds.DBus.Protocol.dll
-/home/bajratech/.nuget/packages/tmds.libc/0.5.0/ref/netstandard2.0/Tmds.LibC.dll
-/usr/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.1/ref/net8.0/WindowsBase.dll
diff --git a/ble-server-linux/obj/Debug/net8.0/Avalonia/resources b/ble-server-linux/obj/Debug/net8.0/Avalonia/resources
deleted file mode 100644
index 8d5892b..0000000
Binary files a/ble-server-linux/obj/Debug/net8.0/Avalonia/resources and /dev/null differ
diff --git a/ble-server-linux/obj/Debug/net8.0/apphost b/ble-server-linux/obj/Debug/net8.0/apphost
deleted file mode 100755
index e531ed1..0000000
Binary files a/ble-server-linux/obj/Debug/net8.0/apphost and /dev/null differ
diff --git a/ble-server-linux/obj/Debug/net8.0/ble-server-linux.AssemblyInfo.cs b/ble-server-linux/obj/Debug/net8.0/ble-server-linux.AssemblyInfo.cs
deleted file mode 100644
index f5d41ee..0000000
--- a/ble-server-linux/obj/Debug/net8.0/ble-server-linux.AssemblyInfo.cs
+++ /dev/null
@@ -1,22 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// 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("ble-server-linux")]
-[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
-[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+d0129a7339ac3d76c1abf1bfdc782310b379c24d")]
-[assembly: System.Reflection.AssemblyProductAttribute("ble-server-linux")]
-[assembly: System.Reflection.AssemblyTitleAttribute("ble-server-linux")]
-[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
-
-// Generated by the MSBuild WriteCodeFragment class.
-
diff --git a/ble-server-linux/obj/Debug/net8.0/ble-server-linux.AssemblyInfoInputs.cache b/ble-server-linux/obj/Debug/net8.0/ble-server-linux.AssemblyInfoInputs.cache
deleted file mode 100644
index c040638..0000000
--- a/ble-server-linux/obj/Debug/net8.0/ble-server-linux.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-f9c366670d4658debc446ce697a53a52a63fbd1e002cf5abefb593ab84fe3927
diff --git a/ble-server-linux/obj/Debug/net8.0/ble-server-linux.GeneratedMSBuildEditorConfig.editorconfig b/ble-server-linux/obj/Debug/net8.0/ble-server-linux.GeneratedMSBuildEditorConfig.editorconfig
deleted file mode 100644
index a1a5253..0000000
--- a/ble-server-linux/obj/Debug/net8.0/ble-server-linux.GeneratedMSBuildEditorConfig.editorconfig
+++ /dev/null
@@ -1,24 +0,0 @@
-is_global = true
-build_property.AvaloniaNameGeneratorIsEnabled = true
-build_property.AvaloniaNameGeneratorBehavior = InitializeComponent
-build_property.AvaloniaNameGeneratorDefaultFieldModifier = internal
-build_property.AvaloniaNameGeneratorFilterByPath = *
-build_property.AvaloniaNameGeneratorFilterByNamespace = *
-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 = ble-server-linux
-build_property.ProjectDir = /home/bajratech/Desktop/dotnetbleserver/ble-server-linux/
-build_property.EnableComHosting =
-build_property.EnableGeneratedComInterfaceComImportInterop =
-
-[/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/App.axaml]
-build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
-
-[/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/MainWindow.axaml]
-build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
diff --git a/ble-server-linux/obj/Debug/net8.0/ble-server-linux.assets.cache b/ble-server-linux/obj/Debug/net8.0/ble-server-linux.assets.cache
deleted file mode 100644
index 3fca15d..0000000
Binary files a/ble-server-linux/obj/Debug/net8.0/ble-server-linux.assets.cache and /dev/null differ
diff --git a/ble-server-linux/obj/Debug/net8.0/ble-server-linux.csproj.AssemblyReference.cache b/ble-server-linux/obj/Debug/net8.0/ble-server-linux.csproj.AssemblyReference.cache
deleted file mode 100644
index 7cbc305..0000000
Binary files a/ble-server-linux/obj/Debug/net8.0/ble-server-linux.csproj.AssemblyReference.cache and /dev/null differ
diff --git a/ble-server-linux/obj/Debug/net8.0/ble-server-linux.csproj.CopyComplete b/ble-server-linux/obj/Debug/net8.0/ble-server-linux.csproj.CopyComplete
deleted file mode 100644
index e69de29..0000000
diff --git a/ble-server-linux/obj/Debug/net8.0/ble-server-linux.csproj.CoreCompileInputs.cache b/ble-server-linux/obj/Debug/net8.0/ble-server-linux.csproj.CoreCompileInputs.cache
deleted file mode 100644
index 335ba12..0000000
--- a/ble-server-linux/obj/Debug/net8.0/ble-server-linux.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-5e19ac57341609d60d6a53024a371401b9f11e5dbe26b388a2ad4a1bb3c2f8b9
diff --git a/ble-server-linux/obj/Debug/net8.0/ble-server-linux.csproj.FileListAbsolute.txt b/ble-server-linux/obj/Debug/net8.0/ble-server-linux.csproj.FileListAbsolute.txt
deleted file mode 100644
index 46fe5aa..0000000
--- a/ble-server-linux/obj/Debug/net8.0/ble-server-linux.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,141 +0,0 @@
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/ble-server-linux
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/ble-server-linux.deps.json
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/ble-server-linux.runtimeconfig.json
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/ble-server-linux.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/ble-server-linux.pdb
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/Avalonia.Base.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/Avalonia.Controls.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/Avalonia.DesignerSupport.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/Avalonia.Dialogs.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/Avalonia.Markup.Xaml.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/Avalonia.Markup.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/Avalonia.Metal.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/Avalonia.MicroCom.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/Avalonia.OpenGL.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/Avalonia.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/Avalonia.Controls.ColorPicker.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/Avalonia.Controls.DataGrid.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/Avalonia.Desktop.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/Avalonia.Diagnostics.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/Avalonia.FreeDesktop.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/Avalonia.Native.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/Avalonia.Remote.Protocol.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/Avalonia.Skia.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/Avalonia.Themes.Fluent.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/Avalonia.Themes.Simple.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/Avalonia.Win32.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/Avalonia.X11.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/ColorTextBlock.Avalonia.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/DialogHost.Avalonia.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/HarfBuzzSharp.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/Markdown.Avalonia.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/MsBox.Avalonia.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/MicroCom.Runtime.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/Microsoft.CodeAnalysis.Scripting.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/SkiaSharp.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/System.Drawing.Common.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/System.IO.Pipelines.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/System.Reactive.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/Tmds.DBus.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/Tmds.DBus.Protocol.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/runtimes/win-arm64/native/av_libglesv2.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/runtimes/win-x64/native/av_libglesv2.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/runtimes/win-x86/native/av_libglesv2.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/runtimes/osx/native/libAvaloniaNative.dylib
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/runtimes/linux-arm/native/libHarfBuzzSharp.so
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/runtimes/linux-x64/native/libHarfBuzzSharp.so
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/runtimes/osx/native/libHarfBuzzSharp.dylib
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/runtimes/win-x64/native/libHarfBuzzSharp.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/runtimes/win-x86/native/libHarfBuzzSharp.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/runtimes/linux-arm/native/libSkiaSharp.so
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/runtimes/linux-arm64/native/libSkiaSharp.so
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libSkiaSharp.so
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/runtimes/linux-x64/native/libSkiaSharp.so
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/runtimes/osx/native/libSkiaSharp.dylib
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/runtimes/win-arm64/native/libSkiaSharp.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/runtimes/win-x64/native/libSkiaSharp.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/runtimes/win-x86/native/libSkiaSharp.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/runtimes/linux-arm/lib/netstandard2.0/Tmds.LibC.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/runtimes/linux-arm64/lib/netstandard2.0/Tmds.LibC.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/runtimes/linux-x64/lib/netstandard2.0/Tmds.LibC.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/bin/Debug/net8.0/dotnetbleserver.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/Debug/net8.0/ble-server-linux.csproj.AssemblyReference.cache
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/Debug/net8.0/Avalonia/resources
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/Debug/net8.0/ble-server-linux.GeneratedMSBuildEditorConfig.editorconfig
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/Debug/net8.0/ble-server-linux.AssemblyInfoInputs.cache
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/Debug/net8.0/ble-server-linux.AssemblyInfo.cs
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/Debug/net8.0/ble-server-linux.csproj.CoreCompileInputs.cache
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/Debug/net8.0/ble-server-linux.sourcelink.json
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/Debug/net8.0/Avalonia/references
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/Debug/net8.0/Avalonia/original.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/Debug/net8.0/Avalonia/original.pdb
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/Debug/net8.0/Avalonia/original.ref.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/Debug/net8.0/refint/ble-server-linux.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/Debug/net8.0/ble-server-linux.dll
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/Debug/net8.0/ble-server-linux.pdb
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/Debug/net8.0/ble-server-linux.csproj.CopyComplete
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/Debug/net8.0/ble-server-linux.genruntimeconfig.cache
-/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/Debug/net8.0/ref/ble-server-linux.dll
diff --git a/ble-server-linux/obj/Debug/net8.0/ble-server-linux.dll b/ble-server-linux/obj/Debug/net8.0/ble-server-linux.dll
deleted file mode 100644
index 6e3a894..0000000
Binary files a/ble-server-linux/obj/Debug/net8.0/ble-server-linux.dll and /dev/null differ
diff --git a/ble-server-linux/obj/Debug/net8.0/ble-server-linux.genruntimeconfig.cache b/ble-server-linux/obj/Debug/net8.0/ble-server-linux.genruntimeconfig.cache
deleted file mode 100644
index 0c5ee08..0000000
--- a/ble-server-linux/obj/Debug/net8.0/ble-server-linux.genruntimeconfig.cache
+++ /dev/null
@@ -1 +0,0 @@
-de3fced65475beb9ab6691b7070533436e058ed098c8a6427115ac6e8e4fed5c
diff --git a/ble-server-linux/obj/Debug/net8.0/ble-server-linux.pdb b/ble-server-linux/obj/Debug/net8.0/ble-server-linux.pdb
deleted file mode 100644
index d0bf732..0000000
Binary files a/ble-server-linux/obj/Debug/net8.0/ble-server-linux.pdb and /dev/null differ
diff --git a/ble-server-linux/obj/Debug/net8.0/ble-server-linux.sourcelink.json b/ble-server-linux/obj/Debug/net8.0/ble-server-linux.sourcelink.json
deleted file mode 100644
index a277556..0000000
--- a/ble-server-linux/obj/Debug/net8.0/ble-server-linux.sourcelink.json
+++ /dev/null
@@ -1 +0,0 @@
-{"documents":{"/home/bajratech/Desktop/dotnetbleserver/*":"https://raw.githubusercontent.com/exendahal/dotnet_ble_server/d0129a7339ac3d76c1abf1bfdc782310b379c24d/*"}}
\ No newline at end of file
diff --git a/ble-server-linux/obj/Debug/net8.0/ref/ble-server-linux.dll b/ble-server-linux/obj/Debug/net8.0/ref/ble-server-linux.dll
deleted file mode 100644
index 563ce17..0000000
Binary files a/ble-server-linux/obj/Debug/net8.0/ref/ble-server-linux.dll and /dev/null differ
diff --git a/ble-server-linux/obj/Debug/net8.0/refint/ble-server-linux.dll b/ble-server-linux/obj/Debug/net8.0/refint/ble-server-linux.dll
deleted file mode 100644
index 563ce17..0000000
Binary files a/ble-server-linux/obj/Debug/net8.0/refint/ble-server-linux.dll and /dev/null differ
diff --git a/ble-server-linux/obj/ble-server-linux.csproj.nuget.dgspec.json b/ble-server-linux/obj/ble-server-linux.csproj.nuget.dgspec.json
deleted file mode 100644
index 9ab421f..0000000
--- a/ble-server-linux/obj/ble-server-linux.csproj.nuget.dgspec.json
+++ /dev/null
@@ -1,95 +0,0 @@
-{
- "format": 1,
- "restore": {
- "/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/ble-server-linux.csproj": {}
- },
- "projects": {
- "/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/ble-server-linux.csproj": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/ble-server-linux.csproj",
- "projectName": "ble-server-linux",
- "projectPath": "/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/ble-server-linux.csproj",
- "packagesPath": "/home/bajratech/.nuget/packages/",
- "outputPath": "/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/",
- "projectStyle": "PackageReference",
- "configFilePaths": [
- "/home/bajratech/.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"
- ]
- }
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "dependencies": {
- "Avalonia": {
- "target": "Package",
- "version": "[11.0.5, )"
- },
- "Avalonia.Controls.DataGrid": {
- "target": "Package",
- "version": "[11.0.5, )"
- },
- "Avalonia.Desktop": {
- "target": "Package",
- "version": "[11.0.5, )"
- },
- "Avalonia.Diagnostics": {
- "target": "Package",
- "version": "[11.0.5, )"
- },
- "Avalonia.Themes.Fluent": {
- "target": "Package",
- "version": "[11.0.5, )"
- },
- "Bluez.NET.Server": {
- "target": "Package",
- "version": "[0.0.1, )"
- },
- "MessageBox.Avalonia": {
- "target": "Package",
- "version": "[3.1.5.1, )"
- },
- "Tmds.LibC": {
- "target": "Package",
- "version": "[0.5.0, )"
- }
- },
- "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.101/PortableRuntimeIdentifierGraph.json"
- }
- }
- }
- }
-}
\ No newline at end of file
diff --git a/ble-server-linux/obj/ble-server-linux.csproj.nuget.g.props b/ble-server-linux/obj/ble-server-linux.csproj.nuget.g.props
deleted file mode 100644
index 619961c..0000000
--- a/ble-server-linux/obj/ble-server-linux.csproj.nuget.g.props
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
- True
- NuGet
- $(MSBuildThisFileDirectory)project.assets.json
- /home/bajratech/.nuget/packages/
- /home/bajratech/.nuget/packages/
- PackageReference
- 6.8.0
-
-
-
-
-
-
-
-
-
-
- /home/bajratech/.nuget/packages/microsoft.codeanalysis.analyzers/3.0.0
- /home/bajratech/.nuget/packages/avalonia.buildservices/0.0.29
- /home/bajratech/.nuget/packages/avalonia/11.0.5
-
-
\ No newline at end of file
diff --git a/ble-server-linux/obj/ble-server-linux.csproj.nuget.g.targets b/ble-server-linux/obj/ble-server-linux.csproj.nuget.g.targets
deleted file mode 100644
index 7557f2b..0000000
--- a/ble-server-linux/obj/ble-server-linux.csproj.nuget.g.targets
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/ble-server-linux/obj/project.assets.json b/ble-server-linux/obj/project.assets.json
deleted file mode 100644
index 1a1fe02..0000000
--- a/ble-server-linux/obj/project.assets.json
+++ /dev/null
@@ -1,4795 +0,0 @@
-{
- "version": 3,
- "targets": {
- "net8.0": {
- "Avalonia/11.0.5": {
- "type": "package",
- "dependencies": {
- "Avalonia.BuildServices": "0.0.29",
- "Avalonia.Remote.Protocol": "11.0.5",
- "MicroCom.Runtime": "0.11.0",
- "System.ComponentModel.Annotations": "4.5.0"
- },
- "compile": {
- "ref/net6.0/Avalonia.Base.dll": {
- "related": ".xml"
- },
- "ref/net6.0/Avalonia.Controls.dll": {
- "related": ".xml"
- },
- "ref/net6.0/Avalonia.DesignerSupport.dll": {
- "related": ".xml"
- },
- "ref/net6.0/Avalonia.Dialogs.dll": {
- "related": ".xml"
- },
- "ref/net6.0/Avalonia.Markup.Xaml.dll": {
- "related": ".xml"
- },
- "ref/net6.0/Avalonia.Markup.dll": {
- "related": ".Xaml.xml;.xml"
- },
- "ref/net6.0/Avalonia.Metal.dll": {
- "related": ".xml"
- },
- "ref/net6.0/Avalonia.MicroCom.dll": {
- "related": ".xml"
- },
- "ref/net6.0/Avalonia.OpenGL.dll": {
- "related": ".xml"
- },
- "ref/net6.0/Avalonia.dll": {
- "related": ".Base.xml;.Controls.xml;.DesignerSupport.xml;.Dialogs.xml;.Markup.Xaml.xml;.Markup.xml;.Metal.xml;.MicroCom.xml;.OpenGL.xml;.xml"
- }
- },
- "runtime": {
- "lib/net6.0/Avalonia.Base.dll": {
- "related": ".xml"
- },
- "lib/net6.0/Avalonia.Controls.dll": {
- "related": ".xml"
- },
- "lib/net6.0/Avalonia.DesignerSupport.dll": {
- "related": ".xml"
- },
- "lib/net6.0/Avalonia.Dialogs.dll": {
- "related": ".xml"
- },
- "lib/net6.0/Avalonia.Markup.Xaml.dll": {
- "related": ".xml"
- },
- "lib/net6.0/Avalonia.Markup.dll": {
- "related": ".Xaml.xml;.xml"
- },
- "lib/net6.0/Avalonia.Metal.dll": {
- "related": ".xml"
- },
- "lib/net6.0/Avalonia.MicroCom.dll": {
- "related": ".xml"
- },
- "lib/net6.0/Avalonia.OpenGL.dll": {
- "related": ".xml"
- },
- "lib/net6.0/Avalonia.dll": {
- "related": ".Base.xml;.Controls.xml;.DesignerSupport.xml;.Dialogs.xml;.Markup.Xaml.xml;.Markup.xml;.Metal.xml;.MicroCom.xml;.OpenGL.xml;.xml"
- }
- },
- "build": {
- "buildTransitive/Avalonia.props": {},
- "buildTransitive/Avalonia.targets": {}
- }
- },
- "Avalonia.Angle.Windows.Natives/2.1.0.2023020321": {
- "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.0.5": {
- "type": "package",
- "dependencies": {
- "Avalonia": "11.0.5",
- "Avalonia.Remote.Protocol": "11.0.5"
- },
- "compile": {
- "lib/net6.0/Avalonia.Controls.ColorPicker.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Avalonia.Controls.ColorPicker.dll": {
- "related": ".xml"
- }
- }
- },
- "Avalonia.Controls.DataGrid/11.0.5": {
- "type": "package",
- "dependencies": {
- "Avalonia": "11.0.5",
- "Avalonia.Remote.Protocol": "11.0.5"
- },
- "compile": {
- "lib/net6.0/Avalonia.Controls.DataGrid.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Avalonia.Controls.DataGrid.dll": {
- "related": ".xml"
- }
- }
- },
- "Avalonia.Desktop/11.0.5": {
- "type": "package",
- "dependencies": {
- "Avalonia": "11.0.5",
- "Avalonia.Native": "11.0.5",
- "Avalonia.Skia": "11.0.5",
- "Avalonia.Win32": "11.0.5",
- "Avalonia.X11": "11.0.5"
- },
- "compile": {
- "lib/net6.0/Avalonia.Desktop.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Avalonia.Desktop.dll": {
- "related": ".xml"
- }
- }
- },
- "Avalonia.Diagnostics/11.0.5": {
- "type": "package",
- "dependencies": {
- "Avalonia": "11.0.5",
- "Avalonia.Controls.ColorPicker": "11.0.5",
- "Avalonia.Controls.DataGrid": "11.0.5",
- "Avalonia.Themes.Simple": "11.0.5",
- "Microsoft.CodeAnalysis.CSharp.Scripting": "3.8.0",
- "Microsoft.CodeAnalysis.Common": "3.8.0"
- },
- "compile": {
- "lib/net6.0/Avalonia.Diagnostics.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Avalonia.Diagnostics.dll": {
- "related": ".xml"
- }
- }
- },
- "Avalonia.FreeDesktop/11.0.5": {
- "type": "package",
- "dependencies": {
- "Avalonia": "11.0.5",
- "Tmds.DBus.Protocol": "0.15.0"
- },
- "compile": {
- "lib/net6.0/Avalonia.FreeDesktop.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Avalonia.FreeDesktop.dll": {
- "related": ".xml"
- }
- }
- },
- "Avalonia.Native/11.0.5": {
- "type": "package",
- "dependencies": {
- "Avalonia": "11.0.5"
- },
- "compile": {
- "lib/net6.0/Avalonia.Native.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Avalonia.Native.dll": {
- "related": ".xml"
- }
- },
- "runtimeTargets": {
- "runtimes/osx/native/libAvaloniaNative.dylib": {
- "assetType": "native",
- "rid": "osx"
- }
- }
- },
- "Avalonia.Remote.Protocol/11.0.5": {
- "type": "package",
- "compile": {
- "lib/net6.0/Avalonia.Remote.Protocol.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Avalonia.Remote.Protocol.dll": {
- "related": ".xml"
- }
- }
- },
- "Avalonia.Skia/11.0.5": {
- "type": "package",
- "dependencies": {
- "Avalonia": "11.0.5",
- "HarfBuzzSharp": "2.8.2.3",
- "HarfBuzzSharp.NativeAssets.Linux": "2.8.2.3",
- "HarfBuzzSharp.NativeAssets.WebAssembly": "2.8.2.3",
- "SkiaSharp": "2.88.6",
- "SkiaSharp.NativeAssets.Linux": "2.88.6",
- "SkiaSharp.NativeAssets.WebAssembly": "2.88.6"
- },
- "compile": {
- "lib/net6.0/Avalonia.Skia.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Avalonia.Skia.dll": {
- "related": ".xml"
- }
- }
- },
- "Avalonia.Themes.Fluent/11.0.5": {
- "type": "package",
- "dependencies": {
- "Avalonia": "11.0.5"
- },
- "compile": {
- "lib/net6.0/Avalonia.Themes.Fluent.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Avalonia.Themes.Fluent.dll": {
- "related": ".xml"
- }
- }
- },
- "Avalonia.Themes.Simple/11.0.5": {
- "type": "package",
- "dependencies": {
- "Avalonia": "11.0.5"
- },
- "compile": {
- "lib/net6.0/Avalonia.Themes.Simple.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Avalonia.Themes.Simple.dll": {
- "related": ".xml"
- }
- }
- },
- "Avalonia.Win32/11.0.5": {
- "type": "package",
- "dependencies": {
- "Avalonia": "11.0.5",
- "Avalonia.Angle.Windows.Natives": "2.1.0.2023020321",
- "System.Drawing.Common": "6.0.0",
- "System.Numerics.Vectors": "4.5.0"
- },
- "compile": {
- "lib/net6.0/Avalonia.Win32.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Avalonia.Win32.dll": {
- "related": ".xml"
- }
- }
- },
- "Avalonia.X11/11.0.5": {
- "type": "package",
- "dependencies": {
- "Avalonia": "11.0.5",
- "Avalonia.FreeDesktop": "11.0.5",
- "Avalonia.Skia": "11.0.5"
- },
- "compile": {
- "lib/net6.0/Avalonia.X11.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Avalonia.X11.dll": {
- "related": ".xml"
- }
- }
- },
- "Bluez.NET.Server/0.0.1": {
- "type": "package",
- "dependencies": {
- "Tmds.DBus": "0.15.0"
- },
- "compile": {
- "lib/net8.0/dotnetbleserver.dll": {}
- },
- "runtime": {
- "lib/net8.0/dotnetbleserver.dll": {}
- }
- },
- "ColorTextBlock.Avalonia/11.0.2": {
- "type": "package",
- "dependencies": {
- "Avalonia": "11.0.0"
- },
- "compile": {
- "lib/net6.0/ColorTextBlock.Avalonia.dll": {}
- },
- "runtime": {
- "lib/net6.0/ColorTextBlock.Avalonia.dll": {}
- }
- },
- "DialogHost.Avalonia/0.7.7": {
- "type": "package",
- "dependencies": {
- "Avalonia": "11.0.0",
- "System.Reactive": "6.0.0"
- },
- "compile": {
- "lib/netstandard2.0/DialogHost.Avalonia.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/DialogHost.Avalonia.dll": {
- "related": ".xml"
- }
- }
- },
- "HarfBuzzSharp/2.8.2.3": {
- "type": "package",
- "dependencies": {
- "HarfBuzzSharp.NativeAssets.Win32": "2.8.2.3",
- "HarfBuzzSharp.NativeAssets.macOS": "2.8.2.3"
- },
- "compile": {
- "lib/net6.0/HarfBuzzSharp.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net6.0/HarfBuzzSharp.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "HarfBuzzSharp.NativeAssets.Linux/2.8.2.3": {
- "type": "package",
- "dependencies": {
- "HarfBuzzSharp": "2.8.2.3"
- },
- "compile": {
- "lib/net5.0/_._": {}
- },
- "runtime": {
- "lib/net5.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/2.8.2.3": {
- "type": "package",
- "compile": {
- "lib/net5.0/_._": {}
- },
- "runtime": {
- "lib/net5.0/_._": {}
- },
- "runtimeTargets": {
- "runtimes/osx/native/libHarfBuzzSharp.dylib": {
- "assetType": "native",
- "rid": "osx"
- }
- }
- },
- "HarfBuzzSharp.NativeAssets.WebAssembly/2.8.2.3": {
- "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/2.8.2.3": {
- "type": "package",
- "compile": {
- "lib/net5.0/_._": {}
- },
- "runtime": {
- "lib/net5.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"
- }
- }
- },
- "Markdown.Avalonia.Tight/11.0.2": {
- "type": "package",
- "dependencies": {
- "Avalonia": "11.0.0",
- "ColorTextBlock.Avalonia": "11.0.2"
- },
- "compile": {
- "lib/net6.0/Markdown.Avalonia.dll": {}
- },
- "runtime": {
- "lib/net6.0/Markdown.Avalonia.dll": {}
- }
- },
- "MessageBox.Avalonia/3.1.5.1": {
- "type": "package",
- "dependencies": {
- "Avalonia": "11.0.5",
- "DialogHost.Avalonia": "0.7.7",
- "Markdown.Avalonia.Tight": "11.0.2"
- },
- "compile": {
- "lib/netstandard2.0/MsBox.Avalonia.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/MsBox.Avalonia.dll": {}
- }
- },
- "MicroCom.Runtime/0.11.0": {
- "type": "package",
- "compile": {
- "lib/net5.0/MicroCom.Runtime.dll": {}
- },
- "runtime": {
- "lib/net5.0/MicroCom.Runtime.dll": {}
- }
- },
- "Microsoft.CodeAnalysis.Analyzers/3.0.0": {
- "type": "package",
- "build": {
- "build/_._": {}
- }
- },
- "Microsoft.CodeAnalysis.Common/3.8.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.CodeAnalysis.Analyzers": "3.0.0",
- "System.Collections.Immutable": "5.0.0",
- "System.Memory": "4.5.4",
- "System.Reflection.Metadata": "5.0.0",
- "System.Runtime.CompilerServices.Unsafe": "4.7.1",
- "System.Text.Encoding.CodePages": "4.5.1",
- "System.Threading.Tasks.Extensions": "4.5.4"
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.CSharp/3.8.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.CodeAnalysis.Common": "[3.8.0]"
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.CSharp.Scripting/3.8.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.CSharp": "4.3.0",
- "Microsoft.CodeAnalysis.CSharp": "[3.8.0]",
- "Microsoft.CodeAnalysis.Common": "[3.8.0]",
- "Microsoft.CodeAnalysis.Scripting.Common": "[3.8.0]"
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Scripting.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Scripting.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CodeAnalysis.Scripting.Common/3.8.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.CodeAnalysis.Common": "[3.8.0]"
- },
- "compile": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll": {
- "related": ".pdb;.xml"
- }
- },
- "resource": {
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "cs"
- },
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "de"
- },
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "es"
- },
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "fr"
- },
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "it"
- },
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "ja"
- },
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "ko"
- },
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "pl"
- },
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "pt-BR"
- },
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "ru"
- },
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "tr"
- },
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "zh-Hans"
- },
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll": {
- "locale": "zh-Hant"
- }
- }
- },
- "Microsoft.CSharp/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Dynamic.Runtime": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Linq.Expressions": "4.3.0",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Runtime.InteropServices": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/Microsoft.CSharp.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/Microsoft.CSharp.dll": {}
- }
- },
- "Microsoft.NETCore.Platforms/2.1.2": {
- "type": "package",
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "type": "package",
- "compile": {
- "lib/netstandard1.0/_._": {}
- },
- "runtime": {
- "lib/netstandard1.0/_._": {}
- }
- },
- "Microsoft.Win32.SystemEvents/6.0.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- },
- "runtimeTargets": {
- "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "SkiaSharp/2.88.6": {
- "type": "package",
- "dependencies": {
- "SkiaSharp.NativeAssets.Win32": "2.88.6",
- "SkiaSharp.NativeAssets.macOS": "2.88.6"
- },
- "compile": {
- "lib/net6.0/SkiaSharp.dll": {
- "related": ".pdb;.xml"
- }
- },
- "runtime": {
- "lib/net6.0/SkiaSharp.dll": {
- "related": ".pdb;.xml"
- }
- }
- },
- "SkiaSharp.NativeAssets.Linux/2.88.6": {
- "type": "package",
- "dependencies": {
- "SkiaSharp": "2.88.6"
- },
- "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.6": {
- "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.6": {
- "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.6": {
- "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"
- }
- }
- },
- "System.Collections/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
- }
- },
- "System.Collections.Immutable/5.0.0": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/System.Collections.Immutable.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/System.Collections.Immutable.dll": {
- "related": ".xml"
- }
- }
- },
- "System.ComponentModel.Annotations/4.5.0": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.0/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.0/_._": {}
- }
- },
- "System.Diagnostics.Debug/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
- }
- },
- "System.Drawing.Common/6.0.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.Win32.SystemEvents": "6.0.0"
- },
- "compile": {
- "lib/net6.0/System.Drawing.Common.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Drawing.Common.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- },
- "runtimeTargets": {
- "runtimes/unix/lib/net6.0/System.Drawing.Common.dll": {
- "assetType": "runtime",
- "rid": "unix"
- },
- "runtimes/win/lib/net6.0/System.Drawing.Common.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Dynamic.Runtime/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Linq": "4.3.0",
- "System.Linq.Expressions": "4.3.0",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Dynamic.Runtime.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Dynamic.Runtime.dll": {}
- }
- },
- "System.Globalization/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
- }
- },
- "System.IO/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0",
- "System.Text.Encoding": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/System.IO.dll": {
- "related": ".xml"
- }
- }
- },
- "System.IO.Pipelines/6.0.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/System.IO.Pipelines.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.IO.Pipelines.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/netcoreapp3.1/_._": {}
- }
- },
- "System.Linq/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.6/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.6/System.Linq.dll": {}
- }
- },
- "System.Linq.Expressions/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Globalization": "4.3.0",
- "System.IO": "4.3.0",
- "System.Linq": "4.3.0",
- "System.ObjectModel": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Emit.Lightweight": "4.3.0",
- "System.Reflection.Extensions": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Reflection.TypeExtensions": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Extensions": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.6/System.Linq.Expressions.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.6/System.Linq.Expressions.dll": {}
- }
- },
- "System.Memory/4.5.4": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.1/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.1/_._": {}
- }
- },
- "System.Numerics.Vectors/4.5.0": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.0/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.0/_._": {}
- }
- },
- "System.ObjectModel/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Collections": "4.3.0",
- "System.Diagnostics.Debug": "4.3.0",
- "System.Resources.ResourceManager": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Threading": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.ObjectModel.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.ObjectModel.dll": {}
- }
- },
- "System.Reactive/6.0.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/System.Reactive.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/System.Reactive.dll": {
- "related": ".xml"
- }
- },
- "build": {
- "buildTransitive/net6.0/_._": {}
- }
- },
- "System.Reflection/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.IO": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/System.Reflection.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Reflection.Emit/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.IO": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.1/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Reflection.Emit.dll": {}
- }
- },
- "System.Reflection.Emit.ILGeneration/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {}
- }
- },
- "System.Reflection.Emit.Lightweight/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Reflection.Emit.ILGeneration": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {}
- }
- },
- "System.Reflection.Extensions/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/_._": {
- "related": ".xml"
- }
- }
- },
- "System.Reflection.Metadata/5.0.0": {
- "type": "package",
- "compile": {
- "lib/netstandard2.0/System.Reflection.Metadata.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard2.0/System.Reflection.Metadata.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Reflection.Primitives/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/System.Reflection.Primitives.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Reflection.TypeExtensions/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {}
- }
- },
- "System.Resources.ResourceManager/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Globalization": "4.3.0",
- "System.Reflection": "4.3.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.0/_._": {
- "related": ".xml"
- }
- }
- },
- "System.Runtime/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0"
- },
- "compile": {
- "ref/netstandard1.5/System.Runtime.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Runtime.CompilerServices.Unsafe/4.7.1": {
- "type": "package",
- "compile": {
- "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Runtime.Extensions/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.5/_._": {
- "related": ".xml"
- }
- }
- },
- "System.Runtime.Handles/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
- }
- },
- "System.Runtime.InteropServices/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Reflection": "4.3.0",
- "System.Reflection.Primitives": "4.3.0",
- "System.Runtime": "4.3.0",
- "System.Runtime.Handles": "4.3.0"
- },
- "compile": {
- "ref/netcoreapp1.1/_._": {}
- }
- },
- "System.Text.Encoding/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Text.Encoding.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Text.Encoding.CodePages/4.5.1": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "2.1.2",
- "System.Runtime.CompilerServices.Unsafe": "4.5.2"
- },
- "compile": {
- "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
- },
- "runtime": {
- "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
- },
- "runtimeTargets": {
- "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
- "assetType": "runtime",
- "rid": "win"
- }
- }
- },
- "System.Threading/4.3.0": {
- "type": "package",
- "dependencies": {
- "System.Runtime": "4.3.0",
- "System.Threading.Tasks": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/_._": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/netstandard1.3/System.Threading.dll": {}
- }
- },
- "System.Threading.Tasks/4.3.0": {
- "type": "package",
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0",
- "Microsoft.NETCore.Targets": "1.1.0",
- "System.Runtime": "4.3.0"
- },
- "compile": {
- "ref/netstandard1.3/System.Threading.Tasks.dll": {
- "related": ".xml"
- }
- }
- },
- "System.Threading.Tasks.Extensions/4.5.4": {
- "type": "package",
- "compile": {
- "ref/netcoreapp2.1/_._": {}
- },
- "runtime": {
- "lib/netcoreapp2.1/_._": {}
- }
- },
- "Tmds.DBus/0.15.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/Tmds.DBus.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Tmds.DBus.dll": {
- "related": ".xml"
- }
- }
- },
- "Tmds.DBus.Protocol/0.15.0": {
- "type": "package",
- "dependencies": {
- "System.IO.Pipelines": "6.0.0"
- },
- "compile": {
- "lib/net6.0/Tmds.DBus.Protocol.dll": {}
- },
- "runtime": {
- "lib/net6.0/Tmds.DBus.Protocol.dll": {}
- }
- },
- "Tmds.LibC/0.5.0": {
- "type": "package",
- "compile": {
- "ref/netstandard2.0/Tmds.LibC.dll": {}
- },
- "runtimeTargets": {
- "runtimes/linux-arm/lib/netstandard2.0/Tmds.LibC.dll": {
- "assetType": "runtime",
- "rid": "linux-arm"
- },
- "runtimes/linux-arm64/lib/netstandard2.0/Tmds.LibC.dll": {
- "assetType": "runtime",
- "rid": "linux-arm64"
- },
- "runtimes/linux-x64/lib/netstandard2.0/Tmds.LibC.dll": {
- "assetType": "runtime",
- "rid": "linux-x64"
- }
- }
- }
- }
- },
- "libraries": {
- "Avalonia/11.0.5": {
- "sha512": "twUjGl6gxQeyxO7wG6v+ntvAN2IeNXDr2oS6a7h5LRXy83ITbcuA0gYUqm/aeLVe0cviGSVWE9x5BVkDjZfXpQ==",
- "type": "package",
- "path": "avalonia/11.0.5",
- "hasTools": true,
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "analyzers/dotnet/cs/Avalonia.Analyzers.dll",
- "analyzers/dotnet/cs/Avalonia.Generators.dll",
- "avalonia.11.0.5.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/AvaloniaVersion.props",
- "buildTransitive/Avalonia.Generators.props",
- "buildTransitive/Avalonia.props",
- "buildTransitive/Avalonia.targets",
- "buildTransitive/AvaloniaBuildTasks.props",
- "buildTransitive/AvaloniaBuildTasks.targets",
- "buildTransitive/AvaloniaItemSchema.xaml",
- "buildTransitive/AvaloniaPrivateApis.targets",
- "lib/net461/Avalonia.Base.dll",
- "lib/net461/Avalonia.Base.xml",
- "lib/net461/Avalonia.Controls.dll",
- "lib/net461/Avalonia.Controls.xml",
- "lib/net461/Avalonia.DesignerSupport.dll",
- "lib/net461/Avalonia.DesignerSupport.xml",
- "lib/net461/Avalonia.Dialogs.dll",
- "lib/net461/Avalonia.Dialogs.xml",
- "lib/net461/Avalonia.Markup.Xaml.dll",
- "lib/net461/Avalonia.Markup.Xaml.xml",
- "lib/net461/Avalonia.Markup.dll",
- "lib/net461/Avalonia.Markup.xml",
- "lib/net461/Avalonia.Metal.dll",
- "lib/net461/Avalonia.Metal.xml",
- "lib/net461/Avalonia.MicroCom.dll",
- "lib/net461/Avalonia.MicroCom.xml",
- "lib/net461/Avalonia.OpenGL.dll",
- "lib/net461/Avalonia.OpenGL.xml",
- "lib/net461/Avalonia.dll",
- "lib/net461/Avalonia.xml",
- "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.dll",
- "lib/net6.0/Avalonia.xml",
- "lib/netcoreapp2.0/Avalonia.Base.dll",
- "lib/netcoreapp2.0/Avalonia.Base.xml",
- "lib/netcoreapp2.0/Avalonia.Controls.dll",
- "lib/netcoreapp2.0/Avalonia.Controls.xml",
- "lib/netcoreapp2.0/Avalonia.DesignerSupport.dll",
- "lib/netcoreapp2.0/Avalonia.DesignerSupport.xml",
- "lib/netcoreapp2.0/Avalonia.Dialogs.dll",
- "lib/netcoreapp2.0/Avalonia.Dialogs.xml",
- "lib/netcoreapp2.0/Avalonia.Markup.Xaml.dll",
- "lib/netcoreapp2.0/Avalonia.Markup.Xaml.xml",
- "lib/netcoreapp2.0/Avalonia.Markup.dll",
- "lib/netcoreapp2.0/Avalonia.Markup.xml",
- "lib/netcoreapp2.0/Avalonia.Metal.dll",
- "lib/netcoreapp2.0/Avalonia.Metal.xml",
- "lib/netcoreapp2.0/Avalonia.MicroCom.dll",
- "lib/netcoreapp2.0/Avalonia.MicroCom.xml",
- "lib/netcoreapp2.0/Avalonia.OpenGL.dll",
- "lib/netcoreapp2.0/Avalonia.OpenGL.xml",
- "lib/netcoreapp2.0/Avalonia.dll",
- "lib/netcoreapp2.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.dll",
- "lib/netstandard2.0/Avalonia.xml",
- "ref/net461/Avalonia.Base.dll",
- "ref/net461/Avalonia.Base.xml",
- "ref/net461/Avalonia.Controls.dll",
- "ref/net461/Avalonia.Controls.xml",
- "ref/net461/Avalonia.DesignerSupport.dll",
- "ref/net461/Avalonia.DesignerSupport.xml",
- "ref/net461/Avalonia.Dialogs.dll",
- "ref/net461/Avalonia.Dialogs.xml",
- "ref/net461/Avalonia.Markup.Xaml.dll",
- "ref/net461/Avalonia.Markup.Xaml.xml",
- "ref/net461/Avalonia.Markup.dll",
- "ref/net461/Avalonia.Markup.xml",
- "ref/net461/Avalonia.Metal.dll",
- "ref/net461/Avalonia.Metal.xml",
- "ref/net461/Avalonia.MicroCom.dll",
- "ref/net461/Avalonia.MicroCom.xml",
- "ref/net461/Avalonia.OpenGL.dll",
- "ref/net461/Avalonia.OpenGL.xml",
- "ref/net461/Avalonia.dll",
- "ref/net461/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.dll",
- "ref/net6.0/Avalonia.xml",
- "ref/netcoreapp2.0/Avalonia.Base.dll",
- "ref/netcoreapp2.0/Avalonia.Base.xml",
- "ref/netcoreapp2.0/Avalonia.Controls.dll",
- "ref/netcoreapp2.0/Avalonia.Controls.xml",
- "ref/netcoreapp2.0/Avalonia.DesignerSupport.dll",
- "ref/netcoreapp2.0/Avalonia.DesignerSupport.xml",
- "ref/netcoreapp2.0/Avalonia.Dialogs.dll",
- "ref/netcoreapp2.0/Avalonia.Dialogs.xml",
- "ref/netcoreapp2.0/Avalonia.Markup.Xaml.dll",
- "ref/netcoreapp2.0/Avalonia.Markup.Xaml.xml",
- "ref/netcoreapp2.0/Avalonia.Markup.dll",
- "ref/netcoreapp2.0/Avalonia.Markup.xml",
- "ref/netcoreapp2.0/Avalonia.Metal.dll",
- "ref/netcoreapp2.0/Avalonia.Metal.xml",
- "ref/netcoreapp2.0/Avalonia.MicroCom.dll",
- "ref/netcoreapp2.0/Avalonia.MicroCom.xml",
- "ref/netcoreapp2.0/Avalonia.OpenGL.dll",
- "ref/netcoreapp2.0/Avalonia.OpenGL.xml",
- "ref/netcoreapp2.0/Avalonia.dll",
- "ref/netcoreapp2.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.dll",
- "ref/netstandard2.0/Avalonia.xml",
- "tools/net461/designer/Avalonia.Designer.HostApp.exe",
- "tools/netcoreapp2.0/designer/Avalonia.Designer.HostApp.dll",
- "tools/netstandard2.0/Avalonia.Build.Tasks.dll"
- ]
- },
- "Avalonia.Angle.Windows.Natives/2.1.0.2023020321": {
- "sha512": "Zlkkb8ipxrxNWVPCJgMO19fpcpYPP+bpOQ+jPtCFj8v+TzVvPdnGHuyv9IMvSHhhMfEpps4m4hjaP4FORQYVAA==",
- "type": "package",
- "path": "avalonia.angle.windows.natives/2.1.0.2023020321",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.txt",
- "avalonia.angle.windows.natives.2.1.0.2023020321.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.0.5": {
- "sha512": "N9RpqrDxyN52YSM6N6ViDWnE9XvC3bacZGlg0EH+uYOnxBZuh02kYw4UDa7S+TUdRXVc9HpmHpL3Y/sf/ydVTw==",
- "type": "package",
- "path": "avalonia.controls.colorpicker/11.0.5",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "avalonia.controls.colorpicker.11.0.5.nupkg.sha512",
- "avalonia.controls.colorpicker.nuspec",
- "lib/net6.0/Avalonia.Controls.ColorPicker.dll",
- "lib/net6.0/Avalonia.Controls.ColorPicker.xml",
- "lib/netstandard2.0/Avalonia.Controls.ColorPicker.dll",
- "lib/netstandard2.0/Avalonia.Controls.ColorPicker.xml"
- ]
- },
- "Avalonia.Controls.DataGrid/11.0.5": {
- "sha512": "5ULaodkNkChEWE/xuRrSh6dpBExpvFDFSItdX7sDOxGqNwovaKk0+4HmzvXeQGntUeMsaAcDddZxoG+pUJ8PSA==",
- "type": "package",
- "path": "avalonia.controls.datagrid/11.0.5",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "avalonia.controls.datagrid.11.0.5.nupkg.sha512",
- "avalonia.controls.datagrid.nuspec",
- "lib/net6.0/Avalonia.Controls.DataGrid.dll",
- "lib/net6.0/Avalonia.Controls.DataGrid.xml",
- "lib/netstandard2.0/Avalonia.Controls.DataGrid.dll",
- "lib/netstandard2.0/Avalonia.Controls.DataGrid.xml"
- ]
- },
- "Avalonia.Desktop/11.0.5": {
- "sha512": "YKgk+t42wbwsCQz/DMlLiV71jCwxN47tLRemZ1zmgclh3lf97++A3zJpxx+Cv3fGf5jJnvM1yzyeVU5HBOflJA==",
- "type": "package",
- "path": "avalonia.desktop/11.0.5",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "avalonia.desktop.11.0.5.nupkg.sha512",
- "avalonia.desktop.nuspec",
- "lib/net6.0/Avalonia.Desktop.dll",
- "lib/net6.0/Avalonia.Desktop.xml",
- "lib/netstandard2.0/Avalonia.Desktop.dll",
- "lib/netstandard2.0/Avalonia.Desktop.xml"
- ]
- },
- "Avalonia.Diagnostics/11.0.5": {
- "sha512": "RoG+0sUlyoOlhAFc2rpkQzmJN7ztTqWqtB5mEZav3JacFLQ5npBrlLbcj9ewj2RQa+9zLiA9JmOlhK5zFprCnw==",
- "type": "package",
- "path": "avalonia.diagnostics/11.0.5",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "avalonia.diagnostics.11.0.5.nupkg.sha512",
- "avalonia.diagnostics.nuspec",
- "lib/net6.0/Avalonia.Diagnostics.dll",
- "lib/net6.0/Avalonia.Diagnostics.xml",
- "lib/netstandard2.0/Avalonia.Diagnostics.dll",
- "lib/netstandard2.0/Avalonia.Diagnostics.xml"
- ]
- },
- "Avalonia.FreeDesktop/11.0.5": {
- "sha512": "ChltTdFTlwrnn+3kpDD3zoBNeU4e7m2sOiff86CARUEdCaIO7d6+bmmtTishO4QGmwJOhaY0Jkjqfb4/wJmIvw==",
- "type": "package",
- "path": "avalonia.freedesktop/11.0.5",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "avalonia.freedesktop.11.0.5.nupkg.sha512",
- "avalonia.freedesktop.nuspec",
- "lib/net6.0/Avalonia.FreeDesktop.dll",
- "lib/net6.0/Avalonia.FreeDesktop.xml",
- "lib/netstandard2.0/Avalonia.FreeDesktop.dll",
- "lib/netstandard2.0/Avalonia.FreeDesktop.xml"
- ]
- },
- "Avalonia.Native/11.0.5": {
- "sha512": "ZrOlxU7C5FdDVmTxta/xv83KKg+HqgnmX6hGTQdEK4Yn5rMVqy0h1CcuZr7UKM4kHnbWdUhbgZ3+mXeF6f8Mug==",
- "type": "package",
- "path": "avalonia.native/11.0.5",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "avalonia.native.11.0.5.nupkg.sha512",
- "avalonia.native.nuspec",
- "lib/net6.0/Avalonia.Native.dll",
- "lib/net6.0/Avalonia.Native.xml",
- "lib/netstandard2.0/Avalonia.Native.dll",
- "lib/netstandard2.0/Avalonia.Native.xml",
- "runtimes/osx/native/libAvaloniaNative.dylib"
- ]
- },
- "Avalonia.Remote.Protocol/11.0.5": {
- "sha512": "UDK2jNGWaMHOP4lENIeUp7WsNAv65PuR5Yjo6EksDgN+BfS99+O9QDskrroyCnaMredOYvyposyj5Bgur8vO1w==",
- "type": "package",
- "path": "avalonia.remote.protocol/11.0.5",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "avalonia.remote.protocol.11.0.5.nupkg.sha512",
- "avalonia.remote.protocol.nuspec",
- "lib/net6.0/Avalonia.Remote.Protocol.dll",
- "lib/net6.0/Avalonia.Remote.Protocol.xml",
- "lib/netstandard2.0/Avalonia.Remote.Protocol.dll",
- "lib/netstandard2.0/Avalonia.Remote.Protocol.xml"
- ]
- },
- "Avalonia.Skia/11.0.5": {
- "sha512": "1t3yR1t0HOm0jITpn7+Wb2XUlwhbHPTr3i4ZrgYLKmc68fcBgBnQutJNjzLW3Iq8uWB8ymTeB3sKiD/NVkWFNw==",
- "type": "package",
- "path": "avalonia.skia/11.0.5",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "avalonia.skia.11.0.5.nupkg.sha512",
- "avalonia.skia.nuspec",
- "lib/net6.0/Avalonia.Skia.dll",
- "lib/net6.0/Avalonia.Skia.xml",
- "lib/netstandard2.0/Avalonia.Skia.dll",
- "lib/netstandard2.0/Avalonia.Skia.xml"
- ]
- },
- "Avalonia.Themes.Fluent/11.0.5": {
- "sha512": "/sEz05Hiu20OuUm5e2LSn/Hnzz4OvnG7jLA+NvWMIBBzdaz0a7Kr4QqDJmcpyK6x/a3l+xw4HDpWxMsn3nSBGg==",
- "type": "package",
- "path": "avalonia.themes.fluent/11.0.5",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "avalonia.themes.fluent.11.0.5.nupkg.sha512",
- "avalonia.themes.fluent.nuspec",
- "lib/net6.0/Avalonia.Themes.Fluent.dll",
- "lib/net6.0/Avalonia.Themes.Fluent.xml",
- "lib/netstandard2.0/Avalonia.Themes.Fluent.dll",
- "lib/netstandard2.0/Avalonia.Themes.Fluent.xml"
- ]
- },
- "Avalonia.Themes.Simple/11.0.5": {
- "sha512": "kDRQMs0nndFdRSeDedhGOg4NL5lw/QiTJJ9CzzuRUq7M8RzJIZz8clHh1CJZira5JZDYD3lpRmhIeNafk6bNqw==",
- "type": "package",
- "path": "avalonia.themes.simple/11.0.5",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "avalonia.themes.simple.11.0.5.nupkg.sha512",
- "avalonia.themes.simple.nuspec",
- "lib/net6.0/Avalonia.Themes.Simple.dll",
- "lib/net6.0/Avalonia.Themes.Simple.xml",
- "lib/netstandard2.0/Avalonia.Themes.Simple.dll",
- "lib/netstandard2.0/Avalonia.Themes.Simple.xml"
- ]
- },
- "Avalonia.Win32/11.0.5": {
- "sha512": "jjyNomyG/hG0rxelDszIUvJ1IdwazFsAtc++I00e55DIbHMQzH/CqwUEAevpAO6sh4w5fNnyXHuwS9Kl9N4zUg==",
- "type": "package",
- "path": "avalonia.win32/11.0.5",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "avalonia.win32.11.0.5.nupkg.sha512",
- "avalonia.win32.nuspec",
- "lib/net6.0/Avalonia.Win32.dll",
- "lib/net6.0/Avalonia.Win32.xml",
- "lib/netstandard2.0/Avalonia.Win32.dll",
- "lib/netstandard2.0/Avalonia.Win32.xml"
- ]
- },
- "Avalonia.X11/11.0.5": {
- "sha512": "FhJU/SUT2QTEhutSr8B/8w4ZZnVmmTPaHm+Y9/QiyzpS2UKz0e2lt3v8U7GKUdYpJD34ZMf6tl4zDiCnRiztgw==",
- "type": "package",
- "path": "avalonia.x11/11.0.5",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "avalonia.x11.11.0.5.nupkg.sha512",
- "avalonia.x11.nuspec",
- "lib/net6.0/Avalonia.X11.dll",
- "lib/net6.0/Avalonia.X11.xml",
- "lib/netstandard2.0/Avalonia.X11.dll",
- "lib/netstandard2.0/Avalonia.X11.xml"
- ]
- },
- "Bluez.NET.Server/0.0.1": {
- "sha512": "JSXQEGD7kmiS5UbyTQ27g9Kn9hrsvXPlBqofX1yoQ430KM770t+YP1wJ4WqqwQppAcU2JQjJl0jBKVznC/Bedg==",
- "type": "package",
- "path": "bluez.net.server/0.0.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "bluez.net.server.0.0.1.nupkg.sha512",
- "bluez.net.server.nuspec",
- "icon.png",
- "lib/net8.0/dotnetbleserver.dll"
- ]
- },
- "ColorTextBlock.Avalonia/11.0.2": {
- "sha512": "MsWu5aAbDpstAmJ+TTSgC6Q7YdjKB7Na912GMr3oWl9ag8TH2HNpglzgo+kIAuB4C4wswKfrzhso4UcpvgMuHg==",
- "type": "package",
- "path": "colortextblock.avalonia/11.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "colortextblock.avalonia.11.0.2.nupkg.sha512",
- "colortextblock.avalonia.nuspec",
- "lib/net461/ColorTextBlock.Avalonia.dll",
- "lib/net6.0/ColorTextBlock.Avalonia.dll",
- "lib/netcoreapp2.0/ColorTextBlock.Avalonia.dll",
- "lib/netstandard2.0/ColorTextBlock.Avalonia.dll"
- ]
- },
- "DialogHost.Avalonia/0.7.7": {
- "sha512": "V5zq0e6dBeK1A8xDsyNouzfSx3d+aOhxPgjguaFyaDexgDF8WiSQDsawkv0fRGKbDnaPIqMk9m7P/2G5c7HPzw==",
- "type": "package",
- "path": "dialoghost.avalonia/0.7.7",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "README.md",
- "dialoghost.avalonia.0.7.7.nupkg.sha512",
- "dialoghost.avalonia.nuspec",
- "icon.png",
- "lib/netstandard2.0/DialogHost.Avalonia.dll",
- "lib/netstandard2.0/DialogHost.Avalonia.xml"
- ]
- },
- "HarfBuzzSharp/2.8.2.3": {
- "sha512": "8MwXm9J4dXHuTdzPo29nHgDbt4+6P+RrPrH/qrxcERf29cpLlFbjvP3eFPwHmdUrl4KL2SHEZi2ZuQ5ndeIL1w==",
- "type": "package",
- "path": "harfbuzzsharp/2.8.2.3",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.txt",
- "THIRD-PARTY-NOTICES.txt",
- "harfbuzzsharp.2.8.2.3.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/net5.0/HarfBuzzSharp.dll",
- "lib/net5.0/HarfBuzzSharp.pdb",
- "lib/net5.0/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/2.8.2.3": {
- "sha512": "Qu1yJSHEN7PD3+fqfkaClnORWN5e2xJ2Xoziz/GUi/oBT1Z+Dp2oZeiONKP6NFltboSOBkvH90QuOA6YN/U1zg==",
- "type": "package",
- "path": "harfbuzzsharp.nativeassets.linux/2.8.2.3",
- "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.2.8.2.3.nupkg.sha512",
- "harfbuzzsharp.nativeassets.linux.nuspec",
- "lib/net462/_._",
- "lib/net5.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/2.8.2.3": {
- "sha512": "uwz9pB3hMuxzI/bSkjVrsOJH7Wo1L+0Md5ZmEMDM/j7xDHtR9d3mfg/CfxhMIcTiUC4JgX49FZK0y2ojgu1dww==",
- "type": "package",
- "path": "harfbuzzsharp.nativeassets.macos/2.8.2.3",
- "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.2.8.2.3.nupkg.sha512",
- "harfbuzzsharp.nativeassets.macos.nuspec",
- "lib/net462/_._",
- "lib/net5.0/_._",
- "lib/net6.0-macos10.15/_._",
- "lib/netcoreapp3.1/_._",
- "lib/netstandard1.3/_._",
- "lib/xamarinmac2.0/_._",
- "runtimes/osx/native/libHarfBuzzSharp.dylib"
- ]
- },
- "HarfBuzzSharp.NativeAssets.WebAssembly/2.8.2.3": {
- "sha512": "a6t2X1GrZDt3ErjFbG+qXdxaO8EvMMUN1AVZYfayh7EACHU3yU/SG/rveKLWhT8Ln5GFLqe2r+5dsDrHK1qScw==",
- "type": "package",
- "path": "harfbuzzsharp.nativeassets.webassembly/2.8.2.3",
- "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/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.2.8.2.3.nupkg.sha512",
- "harfbuzzsharp.nativeassets.webassembly.nuspec",
- "lib/netstandard1.0/_._"
- ]
- },
- "HarfBuzzSharp.NativeAssets.Win32/2.8.2.3": {
- "sha512": "Wo6QpE4+a+PFVdfIBoLkLr4wq2uC0m9TZC8FAfy4ZnLsUc10WL0Egk9EBHHhDCeokNOXDse5YtvuTYtS/rbHfg==",
- "type": "package",
- "path": "harfbuzzsharp.nativeassets.win32/2.8.2.3",
- "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.2.8.2.3.nupkg.sha512",
- "harfbuzzsharp.nativeassets.win32.nuspec",
- "lib/net462/_._",
- "lib/net5.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"
- ]
- },
- "Markdown.Avalonia.Tight/11.0.2": {
- "sha512": "Ylg0EkSUId42dVUFQvU7UJGWcKiJ+g7TesRe/KCzUYzlypWf1lTiVveT2j60QSldCtuAw3o/aEOEjIahMdRGig==",
- "type": "package",
- "path": "markdown.avalonia.tight/11.0.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Markdown.Avalonia.Tight.md",
- "lib/net461/Markdown.Avalonia.dll",
- "lib/net6.0/Markdown.Avalonia.dll",
- "lib/netcoreapp2.0/Markdown.Avalonia.dll",
- "lib/netstandard2.0/Markdown.Avalonia.dll",
- "markdown.avalonia.tight.11.0.2.nupkg.sha512",
- "markdown.avalonia.tight.nuspec"
- ]
- },
- "MessageBox.Avalonia/3.1.5.1": {
- "sha512": "iE6AzefOgcNHwdmQoUIeuii09UsFzMJoo027dZ/oKXmIaX9C8isTejODlGsuRmWgvvgMNULXsQTaH0VknMSEnw==",
- "type": "package",
- "path": "messagebox.avalonia/3.1.5.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "icon.jpg",
- "lib/netstandard2.0/MsBox.Avalonia.dll",
- "messagebox.avalonia.3.1.5.1.nupkg.sha512",
- "messagebox.avalonia.nuspec"
- ]
- },
- "MicroCom.Runtime/0.11.0": {
- "sha512": "MEnrZ3UIiH40hjzMDsxrTyi8dtqB5ziv3iBeeU4bXsL/7NLSal9F1lZKpK+tfBRnUoDSdtcW3KufE4yhATOMCA==",
- "type": "package",
- "path": "microcom.runtime/0.11.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net5.0/MicroCom.Runtime.dll",
- "lib/netstandard2.0/MicroCom.Runtime.dll",
- "microcom.runtime.0.11.0.nupkg.sha512",
- "microcom.runtime.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.Analyzers/3.0.0": {
- "sha512": "ojG5pGAhTPmjxRGTNvuszO3H8XPZqksDwr9xLd4Ae/JBjZZdl6GuoLk7uLMf+o7yl5wO0TAqoWcEKkEWqrZE5g==",
- "type": "package",
- "path": "microsoft.codeanalysis.analyzers/3.0.0",
- "hasTools": true,
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "EULA.rtf",
- "ThirdPartyNotices.rtf",
- "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll",
- "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll",
- "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll",
- "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll",
- "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll",
- "build/Microsoft.CodeAnalysis.Analyzers.props",
- "build/Microsoft.CodeAnalysis.Analyzers.targets",
- "documentation/Analyzer Configuration.md",
- "documentation/Microsoft.CodeAnalysis.Analyzers.md",
- "documentation/Microsoft.CodeAnalysis.Analyzers.sarif",
- "editorconfig/AllRulesDefault/.editorconfig",
- "editorconfig/AllRulesDisabled/.editorconfig",
- "editorconfig/AllRulesEnabled/.editorconfig",
- "editorconfig/CorrectnessRulesDefault/.editorconfig",
- "editorconfig/CorrectnessRulesEnabled/.editorconfig",
- "editorconfig/DataflowRulesDefault/.editorconfig",
- "editorconfig/DataflowRulesEnabled/.editorconfig",
- "editorconfig/LibraryRulesDefault/.editorconfig",
- "editorconfig/LibraryRulesEnabled/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig",
- "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig",
- "editorconfig/PortedFromFxCopRulesDefault/.editorconfig",
- "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig",
- "microsoft.codeanalysis.analyzers.3.0.0.nupkg.sha512",
- "microsoft.codeanalysis.analyzers.nuspec",
- "rulesets/AllRulesDefault.ruleset",
- "rulesets/AllRulesDisabled.ruleset",
- "rulesets/AllRulesEnabled.ruleset",
- "rulesets/CorrectnessRulesDefault.ruleset",
- "rulesets/CorrectnessRulesEnabled.ruleset",
- "rulesets/DataflowRulesDefault.ruleset",
- "rulesets/DataflowRulesEnabled.ruleset",
- "rulesets/LibraryRulesDefault.ruleset",
- "rulesets/LibraryRulesEnabled.ruleset",
- "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset",
- "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset",
- "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset",
- "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset",
- "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset",
- "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset",
- "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset",
- "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset",
- "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset",
- "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset",
- "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset",
- "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset",
- "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset",
- "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset",
- "rulesets/PortedFromFxCopRulesDefault.ruleset",
- "rulesets/PortedFromFxCopRulesEnabled.ruleset",
- "tools/install.ps1",
- "tools/uninstall.ps1"
- ]
- },
- "Microsoft.CodeAnalysis.Common/3.8.0": {
- "sha512": "8YTZ7GpsbTdC08DITx7/kwV0k4SC6cbBAFqc13cOm5vKJZcEIAh51tNSyGSkWisMgYCr96B2wb5Zri1bsla3+g==",
- "type": "package",
- "path": "microsoft.codeanalysis.common/3.8.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "ThirdPartyNotices.rtf",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.pdb",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.xml",
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.xml",
- "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll",
- "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll",
- "microsoft.codeanalysis.common.3.8.0.nupkg.sha512",
- "microsoft.codeanalysis.common.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.CSharp/3.8.0": {
- "sha512": "hKqFCUSk9TIMBDjiYMF8/ZfK9p9mzpU+slM73CaCHu4ctfkoqJGHLQhyT8wvrYsIg+ufrUWBF8hcJYmyr5rc5Q==",
- "type": "package",
- "path": "microsoft.codeanalysis.csharp/3.8.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "ThirdPartyNotices.rtf",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.pdb",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.xml",
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml",
- "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll",
- "microsoft.codeanalysis.csharp.3.8.0.nupkg.sha512",
- "microsoft.codeanalysis.csharp.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.CSharp.Scripting/3.8.0": {
- "sha512": "+XVKzByNigzzvl7rGwpzFrkUbbekNUwdMW3EghcxmNRZd9aamNXxes3I/U0tYx1LTeHEQ5y/nzb7SiEmXBmzEA==",
- "type": "package",
- "path": "microsoft.codeanalysis.csharp.scripting/3.8.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "ThirdPartyNotices.rtf",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Scripting.dll",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Scripting.pdb",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Scripting.xml",
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Scripting.pdb",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Scripting.xml",
- "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll",
- "microsoft.codeanalysis.csharp.scripting.3.8.0.nupkg.sha512",
- "microsoft.codeanalysis.csharp.scripting.nuspec"
- ]
- },
- "Microsoft.CodeAnalysis.Scripting.Common/3.8.0": {
- "sha512": "lR8Mxg/4tnwzFyqJOD7wBoXbyDKEaMxRc0E9UWtHNGBiL1qBdYyVhXPmiOPUL44tUJeQwCOHAr554jRHGBQIcw==",
- "type": "package",
- "path": "microsoft.codeanalysis.scripting.common/3.8.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "ThirdPartyNotices.rtf",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.dll",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.pdb",
- "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Scripting.xml",
- "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.dll",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.pdb",
- "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.xml",
- "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll",
- "microsoft.codeanalysis.scripting.common.3.8.0.nupkg.sha512",
- "microsoft.codeanalysis.scripting.common.nuspec"
- ]
- },
- "Microsoft.CSharp/4.3.0": {
- "sha512": "P+MBhIM0YX+JqROuf7i306ZLJEjQYA9uUyRDE+OqwUI5sh41e2ZbPQV3LfAPh+29cmceE1pUffXsGfR4eMY3KA==",
- "type": "package",
- "path": "microsoft.csharp/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/Microsoft.CSharp.dll",
- "lib/netstandard1.3/Microsoft.CSharp.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "microsoft.csharp.4.3.0.nupkg.sha512",
- "microsoft.csharp.nuspec",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/Microsoft.CSharp.dll",
- "ref/netcore50/Microsoft.CSharp.xml",
- "ref/netcore50/de/Microsoft.CSharp.xml",
- "ref/netcore50/es/Microsoft.CSharp.xml",
- "ref/netcore50/fr/Microsoft.CSharp.xml",
- "ref/netcore50/it/Microsoft.CSharp.xml",
- "ref/netcore50/ja/Microsoft.CSharp.xml",
- "ref/netcore50/ko/Microsoft.CSharp.xml",
- "ref/netcore50/ru/Microsoft.CSharp.xml",
- "ref/netcore50/zh-hans/Microsoft.CSharp.xml",
- "ref/netcore50/zh-hant/Microsoft.CSharp.xml",
- "ref/netstandard1.0/Microsoft.CSharp.dll",
- "ref/netstandard1.0/Microsoft.CSharp.xml",
- "ref/netstandard1.0/de/Microsoft.CSharp.xml",
- "ref/netstandard1.0/es/Microsoft.CSharp.xml",
- "ref/netstandard1.0/fr/Microsoft.CSharp.xml",
- "ref/netstandard1.0/it/Microsoft.CSharp.xml",
- "ref/netstandard1.0/ja/Microsoft.CSharp.xml",
- "ref/netstandard1.0/ko/Microsoft.CSharp.xml",
- "ref/netstandard1.0/ru/Microsoft.CSharp.xml",
- "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml",
- "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._"
- ]
- },
- "Microsoft.NETCore.Platforms/2.1.2": {
- "sha512": "mOJy3M0UN+LUG21dLGMxaWZEP6xYpQEpLuvuEQBaownaX4YuhH6NmNUlN9si+vNkAS6dwJ//N1O4DmLf2CikVg==",
- "type": "package",
- "path": "microsoft.netcore.platforms/2.1.2",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/netstandard1.0/_._",
- "microsoft.netcore.platforms.2.1.2.nupkg.sha512",
- "microsoft.netcore.platforms.nuspec",
- "runtime.json",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Microsoft.NETCore.Targets/1.1.0": {
- "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
- "type": "package",
- "path": "microsoft.netcore.targets/1.1.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/netstandard1.0/_._",
- "microsoft.netcore.targets.1.1.0.nupkg.sha512",
- "microsoft.netcore.targets.nuspec",
- "runtime.json"
- ]
- },
- "Microsoft.Win32.SystemEvents/6.0.0": {
- "sha512": "hqTM5628jSsQiv+HGpiq3WKBl2c8v1KZfby2J6Pr7pEPlK9waPdgEO6b8A/+/xn/yZ9ulv8HuqK71ONy2tg67A==",
- "type": "package",
- "path": "microsoft.win32.systemevents/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/Microsoft.Win32.SystemEvents.dll",
- "lib/net461/Microsoft.Win32.SystemEvents.xml",
- "lib/net6.0/Microsoft.Win32.SystemEvents.dll",
- "lib/net6.0/Microsoft.Win32.SystemEvents.xml",
- "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll",
- "lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml",
- "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
- "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
- "microsoft.win32.systemevents.6.0.0.nupkg.sha512",
- "microsoft.win32.systemevents.nuspec",
- "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll",
- "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml",
- "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll",
- "runtimes/win/lib/netcoreapp3.1/Microsoft.Win32.SystemEvents.xml",
- "useSharedDesignerContext.txt"
- ]
- },
- "SkiaSharp/2.88.6": {
- "sha512": "wdfeBAQrEQCbJIRgAiargzP1Uy+0grZiG4CSgBnhAgcJTsPzlifIaO73JRdwIlT3TyBoeU9jEqzwFUhl4hTYnQ==",
- "type": "package",
- "path": "skiasharp/2.88.6",
- "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.6.nupkg.sha512",
- "skiasharp.nuspec"
- ]
- },
- "SkiaSharp.NativeAssets.Linux/2.88.6": {
- "sha512": "iQcOUE0tPZvBUxOdZaP3LIdAC21H8BEMhDvpCQ/mUUvbKGLd5rF7veJVSZBNu20SuCC0oZpEdGxB+mLVOK8uzw==",
- "type": "package",
- "path": "skiasharp.nativeassets.linux/2.88.6",
- "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.6.nupkg.sha512",
- "skiasharp.nativeassets.linux.nuspec"
- ]
- },
- "SkiaSharp.NativeAssets.macOS/2.88.6": {
- "sha512": "Sko9LFxRXSjb3OGh5/RxrVRXxYo48tr5NKuuSy6jB85GrYt8WRqVY1iLOLwtjPiVAt4cp+pyD4i30azanS64dw==",
- "type": "package",
- "path": "skiasharp.nativeassets.macos/2.88.6",
- "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.6.nupkg.sha512",
- "skiasharp.nativeassets.macos.nuspec"
- ]
- },
- "SkiaSharp.NativeAssets.WebAssembly/2.88.6": {
- "sha512": "pye92IhbHq3uqxrU/I+LdkIRAyWfiUNeJ5IIAmYWt2DQPOU44Uh1nTIcjQ2ghRIFWq62VVUJJy5saLBcQO5zyw==",
- "type": "package",
- "path": "skiasharp.nativeassets.webassembly/2.88.6",
- "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.6.nupkg.sha512",
- "skiasharp.nativeassets.webassembly.nuspec"
- ]
- },
- "SkiaSharp.NativeAssets.Win32/2.88.6": {
- "sha512": "7TzFO0u/g2MpQsTty4fyCDdMcfcWI+aLswwfnYXr3gtNS6VLKdMXPMeKpJa3pJSLnUBN6wD0JjuCe8OoLBQ6cQ==",
- "type": "package",
- "path": "skiasharp.nativeassets.win32/2.88.6",
- "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.6.nupkg.sha512",
- "skiasharp.nativeassets.win32.nuspec"
- ]
- },
- "System.Collections/4.3.0": {
- "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==",
- "type": "package",
- "path": "system.collections/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Collections.dll",
- "ref/netcore50/System.Collections.xml",
- "ref/netcore50/de/System.Collections.xml",
- "ref/netcore50/es/System.Collections.xml",
- "ref/netcore50/fr/System.Collections.xml",
- "ref/netcore50/it/System.Collections.xml",
- "ref/netcore50/ja/System.Collections.xml",
- "ref/netcore50/ko/System.Collections.xml",
- "ref/netcore50/ru/System.Collections.xml",
- "ref/netcore50/zh-hans/System.Collections.xml",
- "ref/netcore50/zh-hant/System.Collections.xml",
- "ref/netstandard1.0/System.Collections.dll",
- "ref/netstandard1.0/System.Collections.xml",
- "ref/netstandard1.0/de/System.Collections.xml",
- "ref/netstandard1.0/es/System.Collections.xml",
- "ref/netstandard1.0/fr/System.Collections.xml",
- "ref/netstandard1.0/it/System.Collections.xml",
- "ref/netstandard1.0/ja/System.Collections.xml",
- "ref/netstandard1.0/ko/System.Collections.xml",
- "ref/netstandard1.0/ru/System.Collections.xml",
- "ref/netstandard1.0/zh-hans/System.Collections.xml",
- "ref/netstandard1.0/zh-hant/System.Collections.xml",
- "ref/netstandard1.3/System.Collections.dll",
- "ref/netstandard1.3/System.Collections.xml",
- "ref/netstandard1.3/de/System.Collections.xml",
- "ref/netstandard1.3/es/System.Collections.xml",
- "ref/netstandard1.3/fr/System.Collections.xml",
- "ref/netstandard1.3/it/System.Collections.xml",
- "ref/netstandard1.3/ja/System.Collections.xml",
- "ref/netstandard1.3/ko/System.Collections.xml",
- "ref/netstandard1.3/ru/System.Collections.xml",
- "ref/netstandard1.3/zh-hans/System.Collections.xml",
- "ref/netstandard1.3/zh-hant/System.Collections.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.collections.4.3.0.nupkg.sha512",
- "system.collections.nuspec"
- ]
- },
- "System.Collections.Immutable/5.0.0": {
- "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==",
- "type": "package",
- "path": "system.collections.immutable/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/System.Collections.Immutable.dll",
- "lib/net461/System.Collections.Immutable.xml",
- "lib/netstandard1.0/System.Collections.Immutable.dll",
- "lib/netstandard1.0/System.Collections.Immutable.xml",
- "lib/netstandard1.3/System.Collections.Immutable.dll",
- "lib/netstandard1.3/System.Collections.Immutable.xml",
- "lib/netstandard2.0/System.Collections.Immutable.dll",
- "lib/netstandard2.0/System.Collections.Immutable.xml",
- "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll",
- "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml",
- "system.collections.immutable.5.0.0.nupkg.sha512",
- "system.collections.immutable.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.ComponentModel.Annotations/4.5.0": {
- "sha512": "UxYQ3FGUOtzJ7LfSdnYSFd7+oEv6M8NgUatatIN2HxNtDdlcvFAf+VIq4Of9cDMJEJC0aSRv/x898RYhB4Yppg==",
- "type": "package",
- "path": "system.componentmodel.annotations/4.5.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "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/netcoreapp2.0/_._",
- "lib/netstandard1.4/System.ComponentModel.Annotations.dll",
- "lib/netstandard2.0/System.ComponentModel.Annotations.dll",
- "lib/portable-net45+win8/_._",
- "lib/uap10.0.16299/_._",
- "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/netcoreapp2.0/_._",
- "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/portable-net45+win8/_._",
- "ref/uap10.0.16299/_._",
- "ref/win8/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.componentmodel.annotations.4.5.0.nupkg.sha512",
- "system.componentmodel.annotations.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Diagnostics.Debug/4.3.0": {
- "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==",
- "type": "package",
- "path": "system.diagnostics.debug/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Diagnostics.Debug.dll",
- "ref/netcore50/System.Diagnostics.Debug.xml",
- "ref/netcore50/de/System.Diagnostics.Debug.xml",
- "ref/netcore50/es/System.Diagnostics.Debug.xml",
- "ref/netcore50/fr/System.Diagnostics.Debug.xml",
- "ref/netcore50/it/System.Diagnostics.Debug.xml",
- "ref/netcore50/ja/System.Diagnostics.Debug.xml",
- "ref/netcore50/ko/System.Diagnostics.Debug.xml",
- "ref/netcore50/ru/System.Diagnostics.Debug.xml",
- "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml",
- "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/System.Diagnostics.Debug.dll",
- "ref/netstandard1.0/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/de/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/es/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/it/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml",
- "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/System.Diagnostics.Debug.dll",
- "ref/netstandard1.3/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/de/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/es/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/it/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml",
- "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.diagnostics.debug.4.3.0.nupkg.sha512",
- "system.diagnostics.debug.nuspec"
- ]
- },
- "System.Drawing.Common/6.0.0": {
- "sha512": "NfuoKUiP2nUWwKZN6twGqXioIe1zVD0RIj2t976A+czLHr2nY454RwwXs6JU9Htc6mwqL6Dn/nEL3dpVf2jOhg==",
- "type": "package",
- "path": "system.drawing.common/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net461/System.Drawing.Common.dll",
- "lib/net461/System.Drawing.Common.xml",
- "lib/net6.0/System.Drawing.Common.dll",
- "lib/net6.0/System.Drawing.Common.xml",
- "lib/netcoreapp3.1/System.Drawing.Common.dll",
- "lib/netcoreapp3.1/System.Drawing.Common.xml",
- "lib/netstandard2.0/System.Drawing.Common.dll",
- "lib/netstandard2.0/System.Drawing.Common.xml",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "runtimes/unix/lib/net6.0/System.Drawing.Common.dll",
- "runtimes/unix/lib/net6.0/System.Drawing.Common.xml",
- "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.dll",
- "runtimes/unix/lib/netcoreapp3.1/System.Drawing.Common.xml",
- "runtimes/win/lib/net6.0/System.Drawing.Common.dll",
- "runtimes/win/lib/net6.0/System.Drawing.Common.xml",
- "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.dll",
- "runtimes/win/lib/netcoreapp3.1/System.Drawing.Common.xml",
- "system.drawing.common.6.0.0.nupkg.sha512",
- "system.drawing.common.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Dynamic.Runtime/4.3.0": {
- "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==",
- "type": "package",
- "path": "system.dynamic.runtime/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Dynamic.Runtime.dll",
- "lib/netstandard1.3/System.Dynamic.Runtime.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Dynamic.Runtime.dll",
- "ref/netcore50/System.Dynamic.Runtime.xml",
- "ref/netcore50/de/System.Dynamic.Runtime.xml",
- "ref/netcore50/es/System.Dynamic.Runtime.xml",
- "ref/netcore50/fr/System.Dynamic.Runtime.xml",
- "ref/netcore50/it/System.Dynamic.Runtime.xml",
- "ref/netcore50/ja/System.Dynamic.Runtime.xml",
- "ref/netcore50/ko/System.Dynamic.Runtime.xml",
- "ref/netcore50/ru/System.Dynamic.Runtime.xml",
- "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml",
- "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/System.Dynamic.Runtime.dll",
- "ref/netstandard1.0/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/de/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/es/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/it/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml",
- "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/System.Dynamic.Runtime.dll",
- "ref/netstandard1.3/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/de/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/es/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/it/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml",
- "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll",
- "system.dynamic.runtime.4.3.0.nupkg.sha512",
- "system.dynamic.runtime.nuspec"
- ]
- },
- "System.Globalization/4.3.0": {
- "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==",
- "type": "package",
- "path": "system.globalization/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Globalization.dll",
- "ref/netcore50/System.Globalization.xml",
- "ref/netcore50/de/System.Globalization.xml",
- "ref/netcore50/es/System.Globalization.xml",
- "ref/netcore50/fr/System.Globalization.xml",
- "ref/netcore50/it/System.Globalization.xml",
- "ref/netcore50/ja/System.Globalization.xml",
- "ref/netcore50/ko/System.Globalization.xml",
- "ref/netcore50/ru/System.Globalization.xml",
- "ref/netcore50/zh-hans/System.Globalization.xml",
- "ref/netcore50/zh-hant/System.Globalization.xml",
- "ref/netstandard1.0/System.Globalization.dll",
- "ref/netstandard1.0/System.Globalization.xml",
- "ref/netstandard1.0/de/System.Globalization.xml",
- "ref/netstandard1.0/es/System.Globalization.xml",
- "ref/netstandard1.0/fr/System.Globalization.xml",
- "ref/netstandard1.0/it/System.Globalization.xml",
- "ref/netstandard1.0/ja/System.Globalization.xml",
- "ref/netstandard1.0/ko/System.Globalization.xml",
- "ref/netstandard1.0/ru/System.Globalization.xml",
- "ref/netstandard1.0/zh-hans/System.Globalization.xml",
- "ref/netstandard1.0/zh-hant/System.Globalization.xml",
- "ref/netstandard1.3/System.Globalization.dll",
- "ref/netstandard1.3/System.Globalization.xml",
- "ref/netstandard1.3/de/System.Globalization.xml",
- "ref/netstandard1.3/es/System.Globalization.xml",
- "ref/netstandard1.3/fr/System.Globalization.xml",
- "ref/netstandard1.3/it/System.Globalization.xml",
- "ref/netstandard1.3/ja/System.Globalization.xml",
- "ref/netstandard1.3/ko/System.Globalization.xml",
- "ref/netstandard1.3/ru/System.Globalization.xml",
- "ref/netstandard1.3/zh-hans/System.Globalization.xml",
- "ref/netstandard1.3/zh-hant/System.Globalization.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.globalization.4.3.0.nupkg.sha512",
- "system.globalization.nuspec"
- ]
- },
- "System.IO/4.3.0": {
- "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
- "type": "package",
- "path": "system.io/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.IO.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.IO.dll",
- "ref/netcore50/System.IO.dll",
- "ref/netcore50/System.IO.xml",
- "ref/netcore50/de/System.IO.xml",
- "ref/netcore50/es/System.IO.xml",
- "ref/netcore50/fr/System.IO.xml",
- "ref/netcore50/it/System.IO.xml",
- "ref/netcore50/ja/System.IO.xml",
- "ref/netcore50/ko/System.IO.xml",
- "ref/netcore50/ru/System.IO.xml",
- "ref/netcore50/zh-hans/System.IO.xml",
- "ref/netcore50/zh-hant/System.IO.xml",
- "ref/netstandard1.0/System.IO.dll",
- "ref/netstandard1.0/System.IO.xml",
- "ref/netstandard1.0/de/System.IO.xml",
- "ref/netstandard1.0/es/System.IO.xml",
- "ref/netstandard1.0/fr/System.IO.xml",
- "ref/netstandard1.0/it/System.IO.xml",
- "ref/netstandard1.0/ja/System.IO.xml",
- "ref/netstandard1.0/ko/System.IO.xml",
- "ref/netstandard1.0/ru/System.IO.xml",
- "ref/netstandard1.0/zh-hans/System.IO.xml",
- "ref/netstandard1.0/zh-hant/System.IO.xml",
- "ref/netstandard1.3/System.IO.dll",
- "ref/netstandard1.3/System.IO.xml",
- "ref/netstandard1.3/de/System.IO.xml",
- "ref/netstandard1.3/es/System.IO.xml",
- "ref/netstandard1.3/fr/System.IO.xml",
- "ref/netstandard1.3/it/System.IO.xml",
- "ref/netstandard1.3/ja/System.IO.xml",
- "ref/netstandard1.3/ko/System.IO.xml",
- "ref/netstandard1.3/ru/System.IO.xml",
- "ref/netstandard1.3/zh-hans/System.IO.xml",
- "ref/netstandard1.3/zh-hant/System.IO.xml",
- "ref/netstandard1.5/System.IO.dll",
- "ref/netstandard1.5/System.IO.xml",
- "ref/netstandard1.5/de/System.IO.xml",
- "ref/netstandard1.5/es/System.IO.xml",
- "ref/netstandard1.5/fr/System.IO.xml",
- "ref/netstandard1.5/it/System.IO.xml",
- "ref/netstandard1.5/ja/System.IO.xml",
- "ref/netstandard1.5/ko/System.IO.xml",
- "ref/netstandard1.5/ru/System.IO.xml",
- "ref/netstandard1.5/zh-hans/System.IO.xml",
- "ref/netstandard1.5/zh-hant/System.IO.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.io.4.3.0.nupkg.sha512",
- "system.io.nuspec"
- ]
- },
- "System.IO.Pipelines/6.0.0": {
- "sha512": "mXX66shZ4xLlI3vNLaJ0lt8OIZdmXTvIqXRdQX5HLVGSkLhINLsVhyZuX2UdRFnOGkqnwmMUs40pIIQ7mna4+A==",
- "type": "package",
- "path": "system.io.pipelines/6.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets",
- "buildTransitive/netcoreapp3.1/_._",
- "lib/net461/System.IO.Pipelines.dll",
- "lib/net461/System.IO.Pipelines.xml",
- "lib/net6.0/System.IO.Pipelines.dll",
- "lib/net6.0/System.IO.Pipelines.xml",
- "lib/netcoreapp3.1/System.IO.Pipelines.dll",
- "lib/netcoreapp3.1/System.IO.Pipelines.xml",
- "lib/netstandard2.0/System.IO.Pipelines.dll",
- "lib/netstandard2.0/System.IO.Pipelines.xml",
- "system.io.pipelines.6.0.0.nupkg.sha512",
- "system.io.pipelines.nuspec",
- "useSharedDesignerContext.txt"
- ]
- },
- "System.Linq/4.3.0": {
- "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==",
- "type": "package",
- "path": "system.linq/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net463/System.Linq.dll",
- "lib/netcore50/System.Linq.dll",
- "lib/netstandard1.6/System.Linq.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net463/System.Linq.dll",
- "ref/netcore50/System.Linq.dll",
- "ref/netcore50/System.Linq.xml",
- "ref/netcore50/de/System.Linq.xml",
- "ref/netcore50/es/System.Linq.xml",
- "ref/netcore50/fr/System.Linq.xml",
- "ref/netcore50/it/System.Linq.xml",
- "ref/netcore50/ja/System.Linq.xml",
- "ref/netcore50/ko/System.Linq.xml",
- "ref/netcore50/ru/System.Linq.xml",
- "ref/netcore50/zh-hans/System.Linq.xml",
- "ref/netcore50/zh-hant/System.Linq.xml",
- "ref/netstandard1.0/System.Linq.dll",
- "ref/netstandard1.0/System.Linq.xml",
- "ref/netstandard1.0/de/System.Linq.xml",
- "ref/netstandard1.0/es/System.Linq.xml",
- "ref/netstandard1.0/fr/System.Linq.xml",
- "ref/netstandard1.0/it/System.Linq.xml",
- "ref/netstandard1.0/ja/System.Linq.xml",
- "ref/netstandard1.0/ko/System.Linq.xml",
- "ref/netstandard1.0/ru/System.Linq.xml",
- "ref/netstandard1.0/zh-hans/System.Linq.xml",
- "ref/netstandard1.0/zh-hant/System.Linq.xml",
- "ref/netstandard1.6/System.Linq.dll",
- "ref/netstandard1.6/System.Linq.xml",
- "ref/netstandard1.6/de/System.Linq.xml",
- "ref/netstandard1.6/es/System.Linq.xml",
- "ref/netstandard1.6/fr/System.Linq.xml",
- "ref/netstandard1.6/it/System.Linq.xml",
- "ref/netstandard1.6/ja/System.Linq.xml",
- "ref/netstandard1.6/ko/System.Linq.xml",
- "ref/netstandard1.6/ru/System.Linq.xml",
- "ref/netstandard1.6/zh-hans/System.Linq.xml",
- "ref/netstandard1.6/zh-hant/System.Linq.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.linq.4.3.0.nupkg.sha512",
- "system.linq.nuspec"
- ]
- },
- "System.Linq.Expressions/4.3.0": {
- "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==",
- "type": "package",
- "path": "system.linq.expressions/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net463/System.Linq.Expressions.dll",
- "lib/netcore50/System.Linq.Expressions.dll",
- "lib/netstandard1.6/System.Linq.Expressions.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net463/System.Linq.Expressions.dll",
- "ref/netcore50/System.Linq.Expressions.dll",
- "ref/netcore50/System.Linq.Expressions.xml",
- "ref/netcore50/de/System.Linq.Expressions.xml",
- "ref/netcore50/es/System.Linq.Expressions.xml",
- "ref/netcore50/fr/System.Linq.Expressions.xml",
- "ref/netcore50/it/System.Linq.Expressions.xml",
- "ref/netcore50/ja/System.Linq.Expressions.xml",
- "ref/netcore50/ko/System.Linq.Expressions.xml",
- "ref/netcore50/ru/System.Linq.Expressions.xml",
- "ref/netcore50/zh-hans/System.Linq.Expressions.xml",
- "ref/netcore50/zh-hant/System.Linq.Expressions.xml",
- "ref/netstandard1.0/System.Linq.Expressions.dll",
- "ref/netstandard1.0/System.Linq.Expressions.xml",
- "ref/netstandard1.0/de/System.Linq.Expressions.xml",
- "ref/netstandard1.0/es/System.Linq.Expressions.xml",
- "ref/netstandard1.0/fr/System.Linq.Expressions.xml",
- "ref/netstandard1.0/it/System.Linq.Expressions.xml",
- "ref/netstandard1.0/ja/System.Linq.Expressions.xml",
- "ref/netstandard1.0/ko/System.Linq.Expressions.xml",
- "ref/netstandard1.0/ru/System.Linq.Expressions.xml",
- "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml",
- "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml",
- "ref/netstandard1.3/System.Linq.Expressions.dll",
- "ref/netstandard1.3/System.Linq.Expressions.xml",
- "ref/netstandard1.3/de/System.Linq.Expressions.xml",
- "ref/netstandard1.3/es/System.Linq.Expressions.xml",
- "ref/netstandard1.3/fr/System.Linq.Expressions.xml",
- "ref/netstandard1.3/it/System.Linq.Expressions.xml",
- "ref/netstandard1.3/ja/System.Linq.Expressions.xml",
- "ref/netstandard1.3/ko/System.Linq.Expressions.xml",
- "ref/netstandard1.3/ru/System.Linq.Expressions.xml",
- "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml",
- "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml",
- "ref/netstandard1.6/System.Linq.Expressions.dll",
- "ref/netstandard1.6/System.Linq.Expressions.xml",
- "ref/netstandard1.6/de/System.Linq.Expressions.xml",
- "ref/netstandard1.6/es/System.Linq.Expressions.xml",
- "ref/netstandard1.6/fr/System.Linq.Expressions.xml",
- "ref/netstandard1.6/it/System.Linq.Expressions.xml",
- "ref/netstandard1.6/ja/System.Linq.Expressions.xml",
- "ref/netstandard1.6/ko/System.Linq.Expressions.xml",
- "ref/netstandard1.6/ru/System.Linq.Expressions.xml",
- "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml",
- "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll",
- "system.linq.expressions.4.3.0.nupkg.sha512",
- "system.linq.expressions.nuspec"
- ]
- },
- "System.Memory/4.5.4": {
- "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==",
- "type": "package",
- "path": "system.memory/4.5.4",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/System.Memory.dll",
- "lib/net461/System.Memory.xml",
- "lib/netcoreapp2.1/_._",
- "lib/netstandard1.1/System.Memory.dll",
- "lib/netstandard1.1/System.Memory.xml",
- "lib/netstandard2.0/System.Memory.dll",
- "lib/netstandard2.0/System.Memory.xml",
- "ref/netcoreapp2.1/_._",
- "system.memory.4.5.4.nupkg.sha512",
- "system.memory.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Numerics.Vectors/4.5.0": {
- "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
- "type": "package",
- "path": "system.numerics.vectors/4.5.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Numerics.Vectors.dll",
- "lib/net46/System.Numerics.Vectors.xml",
- "lib/netcoreapp2.0/_._",
- "lib/netstandard1.0/System.Numerics.Vectors.dll",
- "lib/netstandard1.0/System.Numerics.Vectors.xml",
- "lib/netstandard2.0/System.Numerics.Vectors.dll",
- "lib/netstandard2.0/System.Numerics.Vectors.xml",
- "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll",
- "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml",
- "lib/uap10.0.16299/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/System.Numerics.Vectors.dll",
- "ref/net45/System.Numerics.Vectors.xml",
- "ref/net46/System.Numerics.Vectors.dll",
- "ref/net46/System.Numerics.Vectors.xml",
- "ref/netcoreapp2.0/_._",
- "ref/netstandard1.0/System.Numerics.Vectors.dll",
- "ref/netstandard1.0/System.Numerics.Vectors.xml",
- "ref/netstandard2.0/System.Numerics.Vectors.dll",
- "ref/netstandard2.0/System.Numerics.Vectors.xml",
- "ref/uap10.0.16299/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.numerics.vectors.4.5.0.nupkg.sha512",
- "system.numerics.vectors.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.ObjectModel/4.3.0": {
- "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==",
- "type": "package",
- "path": "system.objectmodel/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.ObjectModel.dll",
- "lib/netstandard1.3/System.ObjectModel.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.ObjectModel.dll",
- "ref/netcore50/System.ObjectModel.xml",
- "ref/netcore50/de/System.ObjectModel.xml",
- "ref/netcore50/es/System.ObjectModel.xml",
- "ref/netcore50/fr/System.ObjectModel.xml",
- "ref/netcore50/it/System.ObjectModel.xml",
- "ref/netcore50/ja/System.ObjectModel.xml",
- "ref/netcore50/ko/System.ObjectModel.xml",
- "ref/netcore50/ru/System.ObjectModel.xml",
- "ref/netcore50/zh-hans/System.ObjectModel.xml",
- "ref/netcore50/zh-hant/System.ObjectModel.xml",
- "ref/netstandard1.0/System.ObjectModel.dll",
- "ref/netstandard1.0/System.ObjectModel.xml",
- "ref/netstandard1.0/de/System.ObjectModel.xml",
- "ref/netstandard1.0/es/System.ObjectModel.xml",
- "ref/netstandard1.0/fr/System.ObjectModel.xml",
- "ref/netstandard1.0/it/System.ObjectModel.xml",
- "ref/netstandard1.0/ja/System.ObjectModel.xml",
- "ref/netstandard1.0/ko/System.ObjectModel.xml",
- "ref/netstandard1.0/ru/System.ObjectModel.xml",
- "ref/netstandard1.0/zh-hans/System.ObjectModel.xml",
- "ref/netstandard1.0/zh-hant/System.ObjectModel.xml",
- "ref/netstandard1.3/System.ObjectModel.dll",
- "ref/netstandard1.3/System.ObjectModel.xml",
- "ref/netstandard1.3/de/System.ObjectModel.xml",
- "ref/netstandard1.3/es/System.ObjectModel.xml",
- "ref/netstandard1.3/fr/System.ObjectModel.xml",
- "ref/netstandard1.3/it/System.ObjectModel.xml",
- "ref/netstandard1.3/ja/System.ObjectModel.xml",
- "ref/netstandard1.3/ko/System.ObjectModel.xml",
- "ref/netstandard1.3/ru/System.ObjectModel.xml",
- "ref/netstandard1.3/zh-hans/System.ObjectModel.xml",
- "ref/netstandard1.3/zh-hant/System.ObjectModel.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.objectmodel.4.3.0.nupkg.sha512",
- "system.objectmodel.nuspec"
- ]
- },
- "System.Reactive/6.0.0": {
- "sha512": "31kfaW4ZupZzPsI5PVe77VhnvFF55qgma7KZr/E0iFTs6fmdhhG8j0mgEx620iLTey1EynOkEfnyTjtNEpJzGw==",
- "type": "package",
- "path": "system.reactive/6.0.0",
- "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.0.nupkg.sha512",
- "system.reactive.nuspec"
- ]
- },
- "System.Reflection/4.3.0": {
- "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
- "type": "package",
- "path": "system.reflection/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.Reflection.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.Reflection.dll",
- "ref/netcore50/System.Reflection.dll",
- "ref/netcore50/System.Reflection.xml",
- "ref/netcore50/de/System.Reflection.xml",
- "ref/netcore50/es/System.Reflection.xml",
- "ref/netcore50/fr/System.Reflection.xml",
- "ref/netcore50/it/System.Reflection.xml",
- "ref/netcore50/ja/System.Reflection.xml",
- "ref/netcore50/ko/System.Reflection.xml",
- "ref/netcore50/ru/System.Reflection.xml",
- "ref/netcore50/zh-hans/System.Reflection.xml",
- "ref/netcore50/zh-hant/System.Reflection.xml",
- "ref/netstandard1.0/System.Reflection.dll",
- "ref/netstandard1.0/System.Reflection.xml",
- "ref/netstandard1.0/de/System.Reflection.xml",
- "ref/netstandard1.0/es/System.Reflection.xml",
- "ref/netstandard1.0/fr/System.Reflection.xml",
- "ref/netstandard1.0/it/System.Reflection.xml",
- "ref/netstandard1.0/ja/System.Reflection.xml",
- "ref/netstandard1.0/ko/System.Reflection.xml",
- "ref/netstandard1.0/ru/System.Reflection.xml",
- "ref/netstandard1.0/zh-hans/System.Reflection.xml",
- "ref/netstandard1.0/zh-hant/System.Reflection.xml",
- "ref/netstandard1.3/System.Reflection.dll",
- "ref/netstandard1.3/System.Reflection.xml",
- "ref/netstandard1.3/de/System.Reflection.xml",
- "ref/netstandard1.3/es/System.Reflection.xml",
- "ref/netstandard1.3/fr/System.Reflection.xml",
- "ref/netstandard1.3/it/System.Reflection.xml",
- "ref/netstandard1.3/ja/System.Reflection.xml",
- "ref/netstandard1.3/ko/System.Reflection.xml",
- "ref/netstandard1.3/ru/System.Reflection.xml",
- "ref/netstandard1.3/zh-hans/System.Reflection.xml",
- "ref/netstandard1.3/zh-hant/System.Reflection.xml",
- "ref/netstandard1.5/System.Reflection.dll",
- "ref/netstandard1.5/System.Reflection.xml",
- "ref/netstandard1.5/de/System.Reflection.xml",
- "ref/netstandard1.5/es/System.Reflection.xml",
- "ref/netstandard1.5/fr/System.Reflection.xml",
- "ref/netstandard1.5/it/System.Reflection.xml",
- "ref/netstandard1.5/ja/System.Reflection.xml",
- "ref/netstandard1.5/ko/System.Reflection.xml",
- "ref/netstandard1.5/ru/System.Reflection.xml",
- "ref/netstandard1.5/zh-hans/System.Reflection.xml",
- "ref/netstandard1.5/zh-hant/System.Reflection.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.reflection.4.3.0.nupkg.sha512",
- "system.reflection.nuspec"
- ]
- },
- "System.Reflection.Emit/4.3.0": {
- "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==",
- "type": "package",
- "path": "system.reflection.emit/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/monotouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Reflection.Emit.dll",
- "lib/netstandard1.3/System.Reflection.Emit.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/net45/_._",
- "ref/netstandard1.1/System.Reflection.Emit.dll",
- "ref/netstandard1.1/System.Reflection.Emit.xml",
- "ref/netstandard1.1/de/System.Reflection.Emit.xml",
- "ref/netstandard1.1/es/System.Reflection.Emit.xml",
- "ref/netstandard1.1/fr/System.Reflection.Emit.xml",
- "ref/netstandard1.1/it/System.Reflection.Emit.xml",
- "ref/netstandard1.1/ja/System.Reflection.Emit.xml",
- "ref/netstandard1.1/ko/System.Reflection.Emit.xml",
- "ref/netstandard1.1/ru/System.Reflection.Emit.xml",
- "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml",
- "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml",
- "ref/xamarinmac20/_._",
- "system.reflection.emit.4.3.0.nupkg.sha512",
- "system.reflection.emit.nuspec"
- ]
- },
- "System.Reflection.Emit.ILGeneration/4.3.0": {
- "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==",
- "type": "package",
- "path": "system.reflection.emit.ilgeneration/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Reflection.Emit.ILGeneration.dll",
- "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll",
- "lib/portable-net45+wp8/_._",
- "lib/wp80/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll",
- "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml",
- "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml",
- "ref/portable-net45+wp8/_._",
- "ref/wp80/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/_._",
- "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
- "system.reflection.emit.ilgeneration.nuspec"
- ]
- },
- "System.Reflection.Emit.Lightweight/4.3.0": {
- "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==",
- "type": "package",
- "path": "system.reflection.emit.lightweight/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Reflection.Emit.Lightweight.dll",
- "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll",
- "lib/portable-net45+wp8/_._",
- "lib/wp80/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll",
- "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml",
- "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml",
- "ref/portable-net45+wp8/_._",
- "ref/wp80/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/_._",
- "system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
- "system.reflection.emit.lightweight.nuspec"
- ]
- },
- "System.Reflection.Extensions/4.3.0": {
- "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==",
- "type": "package",
- "path": "system.reflection.extensions/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Reflection.Extensions.dll",
- "ref/netcore50/System.Reflection.Extensions.xml",
- "ref/netcore50/de/System.Reflection.Extensions.xml",
- "ref/netcore50/es/System.Reflection.Extensions.xml",
- "ref/netcore50/fr/System.Reflection.Extensions.xml",
- "ref/netcore50/it/System.Reflection.Extensions.xml",
- "ref/netcore50/ja/System.Reflection.Extensions.xml",
- "ref/netcore50/ko/System.Reflection.Extensions.xml",
- "ref/netcore50/ru/System.Reflection.Extensions.xml",
- "ref/netcore50/zh-hans/System.Reflection.Extensions.xml",
- "ref/netcore50/zh-hant/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/System.Reflection.Extensions.dll",
- "ref/netstandard1.0/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/de/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/es/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/fr/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/it/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/ja/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/ko/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/ru/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml",
- "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.reflection.extensions.4.3.0.nupkg.sha512",
- "system.reflection.extensions.nuspec"
- ]
- },
- "System.Reflection.Metadata/5.0.0": {
- "sha512": "5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==",
- "type": "package",
- "path": "system.reflection.metadata/5.0.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/System.Reflection.Metadata.dll",
- "lib/net461/System.Reflection.Metadata.xml",
- "lib/netstandard1.1/System.Reflection.Metadata.dll",
- "lib/netstandard1.1/System.Reflection.Metadata.xml",
- "lib/netstandard2.0/System.Reflection.Metadata.dll",
- "lib/netstandard2.0/System.Reflection.Metadata.xml",
- "lib/portable-net45+win8/System.Reflection.Metadata.dll",
- "lib/portable-net45+win8/System.Reflection.Metadata.xml",
- "system.reflection.metadata.5.0.0.nupkg.sha512",
- "system.reflection.metadata.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Reflection.Primitives/4.3.0": {
- "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
- "type": "package",
- "path": "system.reflection.primitives/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Reflection.Primitives.dll",
- "ref/netcore50/System.Reflection.Primitives.xml",
- "ref/netcore50/de/System.Reflection.Primitives.xml",
- "ref/netcore50/es/System.Reflection.Primitives.xml",
- "ref/netcore50/fr/System.Reflection.Primitives.xml",
- "ref/netcore50/it/System.Reflection.Primitives.xml",
- "ref/netcore50/ja/System.Reflection.Primitives.xml",
- "ref/netcore50/ko/System.Reflection.Primitives.xml",
- "ref/netcore50/ru/System.Reflection.Primitives.xml",
- "ref/netcore50/zh-hans/System.Reflection.Primitives.xml",
- "ref/netcore50/zh-hant/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/System.Reflection.Primitives.dll",
- "ref/netstandard1.0/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/de/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/es/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/fr/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/it/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/ja/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/ko/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/ru/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml",
- "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.reflection.primitives.4.3.0.nupkg.sha512",
- "system.reflection.primitives.nuspec"
- ]
- },
- "System.Reflection.TypeExtensions/4.3.0": {
- "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==",
- "type": "package",
- "path": "system.reflection.typeextensions/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Reflection.TypeExtensions.dll",
- "lib/net462/System.Reflection.TypeExtensions.dll",
- "lib/netcore50/System.Reflection.TypeExtensions.dll",
- "lib/netstandard1.5/System.Reflection.TypeExtensions.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/System.Reflection.TypeExtensions.dll",
- "ref/net462/System.Reflection.TypeExtensions.dll",
- "ref/netstandard1.3/System.Reflection.TypeExtensions.dll",
- "ref/netstandard1.3/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/System.Reflection.TypeExtensions.dll",
- "ref/netstandard1.5/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml",
- "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll",
- "system.reflection.typeextensions.4.3.0.nupkg.sha512",
- "system.reflection.typeextensions.nuspec"
- ]
- },
- "System.Resources.ResourceManager/4.3.0": {
- "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==",
- "type": "package",
- "path": "system.resources.resourcemanager/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Resources.ResourceManager.dll",
- "ref/netcore50/System.Resources.ResourceManager.xml",
- "ref/netcore50/de/System.Resources.ResourceManager.xml",
- "ref/netcore50/es/System.Resources.ResourceManager.xml",
- "ref/netcore50/fr/System.Resources.ResourceManager.xml",
- "ref/netcore50/it/System.Resources.ResourceManager.xml",
- "ref/netcore50/ja/System.Resources.ResourceManager.xml",
- "ref/netcore50/ko/System.Resources.ResourceManager.xml",
- "ref/netcore50/ru/System.Resources.ResourceManager.xml",
- "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml",
- "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/System.Resources.ResourceManager.dll",
- "ref/netstandard1.0/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/de/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/es/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/it/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml",
- "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.resources.resourcemanager.4.3.0.nupkg.sha512",
- "system.resources.resourcemanager.nuspec"
- ]
- },
- "System.Runtime/4.3.0": {
- "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
- "type": "package",
- "path": "system.runtime/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.Runtime.dll",
- "lib/portable-net45+win8+wp80+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.Runtime.dll",
- "ref/netcore50/System.Runtime.dll",
- "ref/netcore50/System.Runtime.xml",
- "ref/netcore50/de/System.Runtime.xml",
- "ref/netcore50/es/System.Runtime.xml",
- "ref/netcore50/fr/System.Runtime.xml",
- "ref/netcore50/it/System.Runtime.xml",
- "ref/netcore50/ja/System.Runtime.xml",
- "ref/netcore50/ko/System.Runtime.xml",
- "ref/netcore50/ru/System.Runtime.xml",
- "ref/netcore50/zh-hans/System.Runtime.xml",
- "ref/netcore50/zh-hant/System.Runtime.xml",
- "ref/netstandard1.0/System.Runtime.dll",
- "ref/netstandard1.0/System.Runtime.xml",
- "ref/netstandard1.0/de/System.Runtime.xml",
- "ref/netstandard1.0/es/System.Runtime.xml",
- "ref/netstandard1.0/fr/System.Runtime.xml",
- "ref/netstandard1.0/it/System.Runtime.xml",
- "ref/netstandard1.0/ja/System.Runtime.xml",
- "ref/netstandard1.0/ko/System.Runtime.xml",
- "ref/netstandard1.0/ru/System.Runtime.xml",
- "ref/netstandard1.0/zh-hans/System.Runtime.xml",
- "ref/netstandard1.0/zh-hant/System.Runtime.xml",
- "ref/netstandard1.2/System.Runtime.dll",
- "ref/netstandard1.2/System.Runtime.xml",
- "ref/netstandard1.2/de/System.Runtime.xml",
- "ref/netstandard1.2/es/System.Runtime.xml",
- "ref/netstandard1.2/fr/System.Runtime.xml",
- "ref/netstandard1.2/it/System.Runtime.xml",
- "ref/netstandard1.2/ja/System.Runtime.xml",
- "ref/netstandard1.2/ko/System.Runtime.xml",
- "ref/netstandard1.2/ru/System.Runtime.xml",
- "ref/netstandard1.2/zh-hans/System.Runtime.xml",
- "ref/netstandard1.2/zh-hant/System.Runtime.xml",
- "ref/netstandard1.3/System.Runtime.dll",
- "ref/netstandard1.3/System.Runtime.xml",
- "ref/netstandard1.3/de/System.Runtime.xml",
- "ref/netstandard1.3/es/System.Runtime.xml",
- "ref/netstandard1.3/fr/System.Runtime.xml",
- "ref/netstandard1.3/it/System.Runtime.xml",
- "ref/netstandard1.3/ja/System.Runtime.xml",
- "ref/netstandard1.3/ko/System.Runtime.xml",
- "ref/netstandard1.3/ru/System.Runtime.xml",
- "ref/netstandard1.3/zh-hans/System.Runtime.xml",
- "ref/netstandard1.3/zh-hant/System.Runtime.xml",
- "ref/netstandard1.5/System.Runtime.dll",
- "ref/netstandard1.5/System.Runtime.xml",
- "ref/netstandard1.5/de/System.Runtime.xml",
- "ref/netstandard1.5/es/System.Runtime.xml",
- "ref/netstandard1.5/fr/System.Runtime.xml",
- "ref/netstandard1.5/it/System.Runtime.xml",
- "ref/netstandard1.5/ja/System.Runtime.xml",
- "ref/netstandard1.5/ko/System.Runtime.xml",
- "ref/netstandard1.5/ru/System.Runtime.xml",
- "ref/netstandard1.5/zh-hans/System.Runtime.xml",
- "ref/netstandard1.5/zh-hant/System.Runtime.xml",
- "ref/portable-net45+win8+wp80+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.runtime.4.3.0.nupkg.sha512",
- "system.runtime.nuspec"
- ]
- },
- "System.Runtime.CompilerServices.Unsafe/4.7.1": {
- "sha512": "zOHkQmzPCn5zm/BH+cxC1XbUS3P4Yoi3xzW7eRgVpDR2tPGSzyMZ17Ig1iRkfJuY0nhxkQQde8pgePNiA7z7TQ==",
- "type": "package",
- "path": "system.runtime.compilerservices.unsafe/4.7.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "Icon.png",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
- "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
- "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll",
- "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml",
- "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
- "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
- "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
- "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
- "ref/net461/System.Runtime.CompilerServices.Unsafe.dll",
- "ref/net461/System.Runtime.CompilerServices.Unsafe.xml",
- "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll",
- "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml",
- "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
- "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
- "system.runtime.compilerservices.unsafe.4.7.1.nupkg.sha512",
- "system.runtime.compilerservices.unsafe.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Runtime.Extensions/4.3.0": {
- "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==",
- "type": "package",
- "path": "system.runtime.extensions/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.Runtime.Extensions.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.Runtime.Extensions.dll",
- "ref/netcore50/System.Runtime.Extensions.dll",
- "ref/netcore50/System.Runtime.Extensions.xml",
- "ref/netcore50/de/System.Runtime.Extensions.xml",
- "ref/netcore50/es/System.Runtime.Extensions.xml",
- "ref/netcore50/fr/System.Runtime.Extensions.xml",
- "ref/netcore50/it/System.Runtime.Extensions.xml",
- "ref/netcore50/ja/System.Runtime.Extensions.xml",
- "ref/netcore50/ko/System.Runtime.Extensions.xml",
- "ref/netcore50/ru/System.Runtime.Extensions.xml",
- "ref/netcore50/zh-hans/System.Runtime.Extensions.xml",
- "ref/netcore50/zh-hant/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/System.Runtime.Extensions.dll",
- "ref/netstandard1.0/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/de/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/es/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/fr/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/it/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/ja/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/ko/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/ru/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml",
- "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/System.Runtime.Extensions.dll",
- "ref/netstandard1.3/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/de/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/es/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/fr/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/it/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/ja/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/ko/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/ru/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml",
- "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/System.Runtime.Extensions.dll",
- "ref/netstandard1.5/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/de/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/es/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/fr/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/it/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/ja/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/ko/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/ru/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml",
- "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.runtime.extensions.4.3.0.nupkg.sha512",
- "system.runtime.extensions.nuspec"
- ]
- },
- "System.Runtime.Handles/4.3.0": {
- "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==",
- "type": "package",
- "path": "system.runtime.handles/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net46/_._",
- "ref/netstandard1.3/System.Runtime.Handles.dll",
- "ref/netstandard1.3/System.Runtime.Handles.xml",
- "ref/netstandard1.3/de/System.Runtime.Handles.xml",
- "ref/netstandard1.3/es/System.Runtime.Handles.xml",
- "ref/netstandard1.3/fr/System.Runtime.Handles.xml",
- "ref/netstandard1.3/it/System.Runtime.Handles.xml",
- "ref/netstandard1.3/ja/System.Runtime.Handles.xml",
- "ref/netstandard1.3/ko/System.Runtime.Handles.xml",
- "ref/netstandard1.3/ru/System.Runtime.Handles.xml",
- "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml",
- "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.runtime.handles.4.3.0.nupkg.sha512",
- "system.runtime.handles.nuspec"
- ]
- },
- "System.Runtime.InteropServices/4.3.0": {
- "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==",
- "type": "package",
- "path": "system.runtime.interopservices/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/net462/System.Runtime.InteropServices.dll",
- "lib/net463/System.Runtime.InteropServices.dll",
- "lib/portable-net45+win8+wpa81/_._",
- "lib/win8/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/net462/System.Runtime.InteropServices.dll",
- "ref/net463/System.Runtime.InteropServices.dll",
- "ref/netcore50/System.Runtime.InteropServices.dll",
- "ref/netcore50/System.Runtime.InteropServices.xml",
- "ref/netcore50/de/System.Runtime.InteropServices.xml",
- "ref/netcore50/es/System.Runtime.InteropServices.xml",
- "ref/netcore50/fr/System.Runtime.InteropServices.xml",
- "ref/netcore50/it/System.Runtime.InteropServices.xml",
- "ref/netcore50/ja/System.Runtime.InteropServices.xml",
- "ref/netcore50/ko/System.Runtime.InteropServices.xml",
- "ref/netcore50/ru/System.Runtime.InteropServices.xml",
- "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml",
- "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml",
- "ref/netcoreapp1.1/System.Runtime.InteropServices.dll",
- "ref/netstandard1.1/System.Runtime.InteropServices.dll",
- "ref/netstandard1.1/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/de/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/es/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/it/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml",
- "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/System.Runtime.InteropServices.dll",
- "ref/netstandard1.2/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/de/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/es/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/it/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml",
- "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/System.Runtime.InteropServices.dll",
- "ref/netstandard1.3/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/de/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/es/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/it/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml",
- "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/System.Runtime.InteropServices.dll",
- "ref/netstandard1.5/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/de/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/es/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/it/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml",
- "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml",
- "ref/portable-net45+win8+wpa81/_._",
- "ref/win8/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.runtime.interopservices.4.3.0.nupkg.sha512",
- "system.runtime.interopservices.nuspec"
- ]
- },
- "System.Text.Encoding/4.3.0": {
- "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
- "type": "package",
- "path": "system.text.encoding/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Text.Encoding.dll",
- "ref/netcore50/System.Text.Encoding.xml",
- "ref/netcore50/de/System.Text.Encoding.xml",
- "ref/netcore50/es/System.Text.Encoding.xml",
- "ref/netcore50/fr/System.Text.Encoding.xml",
- "ref/netcore50/it/System.Text.Encoding.xml",
- "ref/netcore50/ja/System.Text.Encoding.xml",
- "ref/netcore50/ko/System.Text.Encoding.xml",
- "ref/netcore50/ru/System.Text.Encoding.xml",
- "ref/netcore50/zh-hans/System.Text.Encoding.xml",
- "ref/netcore50/zh-hant/System.Text.Encoding.xml",
- "ref/netstandard1.0/System.Text.Encoding.dll",
- "ref/netstandard1.0/System.Text.Encoding.xml",
- "ref/netstandard1.0/de/System.Text.Encoding.xml",
- "ref/netstandard1.0/es/System.Text.Encoding.xml",
- "ref/netstandard1.0/fr/System.Text.Encoding.xml",
- "ref/netstandard1.0/it/System.Text.Encoding.xml",
- "ref/netstandard1.0/ja/System.Text.Encoding.xml",
- "ref/netstandard1.0/ko/System.Text.Encoding.xml",
- "ref/netstandard1.0/ru/System.Text.Encoding.xml",
- "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml",
- "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml",
- "ref/netstandard1.3/System.Text.Encoding.dll",
- "ref/netstandard1.3/System.Text.Encoding.xml",
- "ref/netstandard1.3/de/System.Text.Encoding.xml",
- "ref/netstandard1.3/es/System.Text.Encoding.xml",
- "ref/netstandard1.3/fr/System.Text.Encoding.xml",
- "ref/netstandard1.3/it/System.Text.Encoding.xml",
- "ref/netstandard1.3/ja/System.Text.Encoding.xml",
- "ref/netstandard1.3/ko/System.Text.Encoding.xml",
- "ref/netstandard1.3/ru/System.Text.Encoding.xml",
- "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml",
- "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.text.encoding.4.3.0.nupkg.sha512",
- "system.text.encoding.nuspec"
- ]
- },
- "System.Text.Encoding.CodePages/4.5.1": {
- "sha512": "4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==",
- "type": "package",
- "path": "system.text.encoding.codepages/4.5.1",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net46/System.Text.Encoding.CodePages.dll",
- "lib/net461/System.Text.Encoding.CodePages.dll",
- "lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
- "lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
- "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
- "system.text.encoding.codepages.4.5.1.nupkg.sha512",
- "system.text.encoding.codepages.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "System.Threading/4.3.0": {
- "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==",
- "type": "package",
- "path": "system.threading/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/netcore50/System.Threading.dll",
- "lib/netstandard1.3/System.Threading.dll",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Threading.dll",
- "ref/netcore50/System.Threading.xml",
- "ref/netcore50/de/System.Threading.xml",
- "ref/netcore50/es/System.Threading.xml",
- "ref/netcore50/fr/System.Threading.xml",
- "ref/netcore50/it/System.Threading.xml",
- "ref/netcore50/ja/System.Threading.xml",
- "ref/netcore50/ko/System.Threading.xml",
- "ref/netcore50/ru/System.Threading.xml",
- "ref/netcore50/zh-hans/System.Threading.xml",
- "ref/netcore50/zh-hant/System.Threading.xml",
- "ref/netstandard1.0/System.Threading.dll",
- "ref/netstandard1.0/System.Threading.xml",
- "ref/netstandard1.0/de/System.Threading.xml",
- "ref/netstandard1.0/es/System.Threading.xml",
- "ref/netstandard1.0/fr/System.Threading.xml",
- "ref/netstandard1.0/it/System.Threading.xml",
- "ref/netstandard1.0/ja/System.Threading.xml",
- "ref/netstandard1.0/ko/System.Threading.xml",
- "ref/netstandard1.0/ru/System.Threading.xml",
- "ref/netstandard1.0/zh-hans/System.Threading.xml",
- "ref/netstandard1.0/zh-hant/System.Threading.xml",
- "ref/netstandard1.3/System.Threading.dll",
- "ref/netstandard1.3/System.Threading.xml",
- "ref/netstandard1.3/de/System.Threading.xml",
- "ref/netstandard1.3/es/System.Threading.xml",
- "ref/netstandard1.3/fr/System.Threading.xml",
- "ref/netstandard1.3/it/System.Threading.xml",
- "ref/netstandard1.3/ja/System.Threading.xml",
- "ref/netstandard1.3/ko/System.Threading.xml",
- "ref/netstandard1.3/ru/System.Threading.xml",
- "ref/netstandard1.3/zh-hans/System.Threading.xml",
- "ref/netstandard1.3/zh-hant/System.Threading.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "runtimes/aot/lib/netcore50/System.Threading.dll",
- "system.threading.4.3.0.nupkg.sha512",
- "system.threading.nuspec"
- ]
- },
- "System.Threading.Tasks/4.3.0": {
- "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
- "type": "package",
- "path": "system.threading.tasks/4.3.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ThirdPartyNotices.txt",
- "dotnet_library_license.txt",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net45/_._",
- "lib/portable-net45+win8+wp8+wpa81/_._",
- "lib/win8/_._",
- "lib/wp80/_._",
- "lib/wpa81/_._",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/net45/_._",
- "ref/netcore50/System.Threading.Tasks.dll",
- "ref/netcore50/System.Threading.Tasks.xml",
- "ref/netcore50/de/System.Threading.Tasks.xml",
- "ref/netcore50/es/System.Threading.Tasks.xml",
- "ref/netcore50/fr/System.Threading.Tasks.xml",
- "ref/netcore50/it/System.Threading.Tasks.xml",
- "ref/netcore50/ja/System.Threading.Tasks.xml",
- "ref/netcore50/ko/System.Threading.Tasks.xml",
- "ref/netcore50/ru/System.Threading.Tasks.xml",
- "ref/netcore50/zh-hans/System.Threading.Tasks.xml",
- "ref/netcore50/zh-hant/System.Threading.Tasks.xml",
- "ref/netstandard1.0/System.Threading.Tasks.dll",
- "ref/netstandard1.0/System.Threading.Tasks.xml",
- "ref/netstandard1.0/de/System.Threading.Tasks.xml",
- "ref/netstandard1.0/es/System.Threading.Tasks.xml",
- "ref/netstandard1.0/fr/System.Threading.Tasks.xml",
- "ref/netstandard1.0/it/System.Threading.Tasks.xml",
- "ref/netstandard1.0/ja/System.Threading.Tasks.xml",
- "ref/netstandard1.0/ko/System.Threading.Tasks.xml",
- "ref/netstandard1.0/ru/System.Threading.Tasks.xml",
- "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml",
- "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml",
- "ref/netstandard1.3/System.Threading.Tasks.dll",
- "ref/netstandard1.3/System.Threading.Tasks.xml",
- "ref/netstandard1.3/de/System.Threading.Tasks.xml",
- "ref/netstandard1.3/es/System.Threading.Tasks.xml",
- "ref/netstandard1.3/fr/System.Threading.Tasks.xml",
- "ref/netstandard1.3/it/System.Threading.Tasks.xml",
- "ref/netstandard1.3/ja/System.Threading.Tasks.xml",
- "ref/netstandard1.3/ko/System.Threading.Tasks.xml",
- "ref/netstandard1.3/ru/System.Threading.Tasks.xml",
- "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml",
- "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml",
- "ref/portable-net45+win8+wp8+wpa81/_._",
- "ref/win8/_._",
- "ref/wp80/_._",
- "ref/wpa81/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.threading.tasks.4.3.0.nupkg.sha512",
- "system.threading.tasks.nuspec"
- ]
- },
- "System.Threading.Tasks.Extensions/4.5.4": {
- "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
- "type": "package",
- "path": "system.threading.tasks.extensions/4.5.4",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "LICENSE.TXT",
- "THIRD-PARTY-NOTICES.TXT",
- "lib/MonoAndroid10/_._",
- "lib/MonoTouch10/_._",
- "lib/net461/System.Threading.Tasks.Extensions.dll",
- "lib/net461/System.Threading.Tasks.Extensions.xml",
- "lib/netcoreapp2.1/_._",
- "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll",
- "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml",
- "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll",
- "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml",
- "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll",
- "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml",
- "lib/xamarinios10/_._",
- "lib/xamarinmac20/_._",
- "lib/xamarintvos10/_._",
- "lib/xamarinwatchos10/_._",
- "ref/MonoAndroid10/_._",
- "ref/MonoTouch10/_._",
- "ref/netcoreapp2.1/_._",
- "ref/xamarinios10/_._",
- "ref/xamarinmac20/_._",
- "ref/xamarintvos10/_._",
- "ref/xamarinwatchos10/_._",
- "system.threading.tasks.extensions.4.5.4.nupkg.sha512",
- "system.threading.tasks.extensions.nuspec",
- "useSharedDesignerContext.txt",
- "version.txt"
- ]
- },
- "Tmds.DBus/0.15.0": {
- "sha512": "11BxHGh+8hwXNdcavX7BxNW5Qr6AC36ABYDcqvZ3bDS7alXI+O95/x0ExoVWWWxjAVTnvmDRtW1Nd3uObPIsVg==",
- "type": "package",
- "path": "tmds.dbus/0.15.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net6.0/Tmds.DBus.dll",
- "lib/net6.0/Tmds.DBus.xml",
- "lib/netstandard2.0/Tmds.DBus.dll",
- "lib/netstandard2.0/Tmds.DBus.xml",
- "tmds.dbus.0.15.0.nupkg.sha512",
- "tmds.dbus.nuspec"
- ]
- },
- "Tmds.DBus.Protocol/0.15.0": {
- "sha512": "QVo/Y39nTYcCKBqrZuwHjXdwaky0yTQPIT3qUTEEK2MZfDtZWrJ2XyZ59zH8LBgB2fL5cWaTuP2pBTpGz/GeDQ==",
- "type": "package",
- "path": "tmds.dbus.protocol/0.15.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net6.0/Tmds.DBus.Protocol.dll",
- "lib/netstandard2.0/Tmds.DBus.Protocol.dll",
- "lib/netstandard2.1/Tmds.DBus.Protocol.dll",
- "tmds.dbus.protocol.0.15.0.nupkg.sha512",
- "tmds.dbus.protocol.nuspec"
- ]
- },
- "Tmds.LibC/0.5.0": {
- "sha512": "IZYKZ/016mRI2tRoh25OedrAwoWEN/20TtDh5uvN3oU1h9+UG/ulYJ1jvp+GTb2rkNIYpyHOl7bY4zHjgqypLg==",
- "type": "package",
- "path": "tmds.libc/0.5.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "ref/netstandard2.0/Tmds.LibC.dll",
- "runtimes/linux-arm/lib/netstandard2.0/Tmds.LibC.dll",
- "runtimes/linux-arm64/lib/netstandard2.0/Tmds.LibC.dll",
- "runtimes/linux-x64/lib/netstandard2.0/Tmds.LibC.dll",
- "tmds.libc.0.5.0.nupkg.sha512",
- "tmds.libc.nuspec"
- ]
- }
- },
- "projectFileDependencyGroups": {
- "net8.0": [
- "Avalonia >= 11.0.5",
- "Avalonia.Controls.DataGrid >= 11.0.5",
- "Avalonia.Desktop >= 11.0.5",
- "Avalonia.Diagnostics >= 11.0.5",
- "Avalonia.Themes.Fluent >= 11.0.5",
- "Bluez.NET.Server >= 0.0.1",
- "MessageBox.Avalonia >= 3.1.5.1",
- "Tmds.LibC >= 0.5.0"
- ]
- },
- "packageFolders": {
- "/home/bajratech/.nuget/packages/": {}
- },
- "project": {
- "version": "1.0.0",
- "restore": {
- "projectUniqueName": "/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/ble-server-linux.csproj",
- "projectName": "ble-server-linux",
- "projectPath": "/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/ble-server-linux.csproj",
- "packagesPath": "/home/bajratech/.nuget/packages/",
- "outputPath": "/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/obj/",
- "projectStyle": "PackageReference",
- "configFilePaths": [
- "/home/bajratech/.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"
- ]
- }
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "dependencies": {
- "Avalonia": {
- "target": "Package",
- "version": "[11.0.5, )"
- },
- "Avalonia.Controls.DataGrid": {
- "target": "Package",
- "version": "[11.0.5, )"
- },
- "Avalonia.Desktop": {
- "target": "Package",
- "version": "[11.0.5, )"
- },
- "Avalonia.Diagnostics": {
- "target": "Package",
- "version": "[11.0.5, )"
- },
- "Avalonia.Themes.Fluent": {
- "target": "Package",
- "version": "[11.0.5, )"
- },
- "Bluez.NET.Server": {
- "target": "Package",
- "version": "[0.0.1, )"
- },
- "MessageBox.Avalonia": {
- "target": "Package",
- "version": "[3.1.5.1, )"
- },
- "Tmds.LibC": {
- "target": "Package",
- "version": "[0.5.0, )"
- }
- },
- "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.101/PortableRuntimeIdentifierGraph.json"
- }
- }
- }
-}
\ No newline at end of file
diff --git a/ble-server-linux/obj/project.nuget.cache b/ble-server-linux/obj/project.nuget.cache
deleted file mode 100644
index ce0bd3c..0000000
--- a/ble-server-linux/obj/project.nuget.cache
+++ /dev/null
@@ -1,86 +0,0 @@
-{
- "version": 2,
- "dgSpecHash": "f3URP8qvEFhH1BOI508fLnbYrnVxLSULY42CE2yBaNWQCV7+D5sm4EhejUu4D2TOINbPiiiXQi065+s6R5tyXQ==",
- "success": true,
- "projectFilePath": "/home/bajratech/Desktop/dotnetbleserver/ble-server-linux/ble-server-linux.csproj",
- "expectedPackageFiles": [
- "/home/bajratech/.nuget/packages/avalonia/11.0.5/avalonia.11.0.5.nupkg.sha512",
- "/home/bajratech/.nuget/packages/avalonia.angle.windows.natives/2.1.0.2023020321/avalonia.angle.windows.natives.2.1.0.2023020321.nupkg.sha512",
- "/home/bajratech/.nuget/packages/avalonia.buildservices/0.0.29/avalonia.buildservices.0.0.29.nupkg.sha512",
- "/home/bajratech/.nuget/packages/avalonia.controls.colorpicker/11.0.5/avalonia.controls.colorpicker.11.0.5.nupkg.sha512",
- "/home/bajratech/.nuget/packages/avalonia.controls.datagrid/11.0.5/avalonia.controls.datagrid.11.0.5.nupkg.sha512",
- "/home/bajratech/.nuget/packages/avalonia.desktop/11.0.5/avalonia.desktop.11.0.5.nupkg.sha512",
- "/home/bajratech/.nuget/packages/avalonia.diagnostics/11.0.5/avalonia.diagnostics.11.0.5.nupkg.sha512",
- "/home/bajratech/.nuget/packages/avalonia.freedesktop/11.0.5/avalonia.freedesktop.11.0.5.nupkg.sha512",
- "/home/bajratech/.nuget/packages/avalonia.native/11.0.5/avalonia.native.11.0.5.nupkg.sha512",
- "/home/bajratech/.nuget/packages/avalonia.remote.protocol/11.0.5/avalonia.remote.protocol.11.0.5.nupkg.sha512",
- "/home/bajratech/.nuget/packages/avalonia.skia/11.0.5/avalonia.skia.11.0.5.nupkg.sha512",
- "/home/bajratech/.nuget/packages/avalonia.themes.fluent/11.0.5/avalonia.themes.fluent.11.0.5.nupkg.sha512",
- "/home/bajratech/.nuget/packages/avalonia.themes.simple/11.0.5/avalonia.themes.simple.11.0.5.nupkg.sha512",
- "/home/bajratech/.nuget/packages/avalonia.win32/11.0.5/avalonia.win32.11.0.5.nupkg.sha512",
- "/home/bajratech/.nuget/packages/avalonia.x11/11.0.5/avalonia.x11.11.0.5.nupkg.sha512",
- "/home/bajratech/.nuget/packages/bluez.net.server/0.0.1/bluez.net.server.0.0.1.nupkg.sha512",
- "/home/bajratech/.nuget/packages/colortextblock.avalonia/11.0.2/colortextblock.avalonia.11.0.2.nupkg.sha512",
- "/home/bajratech/.nuget/packages/dialoghost.avalonia/0.7.7/dialoghost.avalonia.0.7.7.nupkg.sha512",
- "/home/bajratech/.nuget/packages/harfbuzzsharp/2.8.2.3/harfbuzzsharp.2.8.2.3.nupkg.sha512",
- "/home/bajratech/.nuget/packages/harfbuzzsharp.nativeassets.linux/2.8.2.3/harfbuzzsharp.nativeassets.linux.2.8.2.3.nupkg.sha512",
- "/home/bajratech/.nuget/packages/harfbuzzsharp.nativeassets.macos/2.8.2.3/harfbuzzsharp.nativeassets.macos.2.8.2.3.nupkg.sha512",
- "/home/bajratech/.nuget/packages/harfbuzzsharp.nativeassets.webassembly/2.8.2.3/harfbuzzsharp.nativeassets.webassembly.2.8.2.3.nupkg.sha512",
- "/home/bajratech/.nuget/packages/harfbuzzsharp.nativeassets.win32/2.8.2.3/harfbuzzsharp.nativeassets.win32.2.8.2.3.nupkg.sha512",
- "/home/bajratech/.nuget/packages/markdown.avalonia.tight/11.0.2/markdown.avalonia.tight.11.0.2.nupkg.sha512",
- "/home/bajratech/.nuget/packages/messagebox.avalonia/3.1.5.1/messagebox.avalonia.3.1.5.1.nupkg.sha512",
- "/home/bajratech/.nuget/packages/microcom.runtime/0.11.0/microcom.runtime.0.11.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/microsoft.codeanalysis.analyzers/3.0.0/microsoft.codeanalysis.analyzers.3.0.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/microsoft.codeanalysis.common/3.8.0/microsoft.codeanalysis.common.3.8.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/microsoft.codeanalysis.csharp/3.8.0/microsoft.codeanalysis.csharp.3.8.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/microsoft.codeanalysis.csharp.scripting/3.8.0/microsoft.codeanalysis.csharp.scripting.3.8.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/microsoft.codeanalysis.scripting.common/3.8.0/microsoft.codeanalysis.scripting.common.3.8.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/microsoft.csharp/4.3.0/microsoft.csharp.4.3.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/microsoft.netcore.platforms/2.1.2/microsoft.netcore.platforms.2.1.2.nupkg.sha512",
- "/home/bajratech/.nuget/packages/microsoft.netcore.targets/1.1.0/microsoft.netcore.targets.1.1.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/microsoft.win32.systemevents/6.0.0/microsoft.win32.systemevents.6.0.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/skiasharp/2.88.6/skiasharp.2.88.6.nupkg.sha512",
- "/home/bajratech/.nuget/packages/skiasharp.nativeassets.linux/2.88.6/skiasharp.nativeassets.linux.2.88.6.nupkg.sha512",
- "/home/bajratech/.nuget/packages/skiasharp.nativeassets.macos/2.88.6/skiasharp.nativeassets.macos.2.88.6.nupkg.sha512",
- "/home/bajratech/.nuget/packages/skiasharp.nativeassets.webassembly/2.88.6/skiasharp.nativeassets.webassembly.2.88.6.nupkg.sha512",
- "/home/bajratech/.nuget/packages/skiasharp.nativeassets.win32/2.88.6/skiasharp.nativeassets.win32.2.88.6.nupkg.sha512",
- "/home/bajratech/.nuget/packages/system.collections/4.3.0/system.collections.4.3.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/system.collections.immutable/5.0.0/system.collections.immutable.5.0.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/system.componentmodel.annotations/4.5.0/system.componentmodel.annotations.4.5.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/system.diagnostics.debug/4.3.0/system.diagnostics.debug.4.3.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/system.drawing.common/6.0.0/system.drawing.common.6.0.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/system.dynamic.runtime/4.3.0/system.dynamic.runtime.4.3.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/system.globalization/4.3.0/system.globalization.4.3.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/system.io/4.3.0/system.io.4.3.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/system.io.pipelines/6.0.0/system.io.pipelines.6.0.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/system.linq/4.3.0/system.linq.4.3.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/system.linq.expressions/4.3.0/system.linq.expressions.4.3.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/system.memory/4.5.4/system.memory.4.5.4.nupkg.sha512",
- "/home/bajratech/.nuget/packages/system.numerics.vectors/4.5.0/system.numerics.vectors.4.5.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/system.objectmodel/4.3.0/system.objectmodel.4.3.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/system.reactive/6.0.0/system.reactive.6.0.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/system.reflection/4.3.0/system.reflection.4.3.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/system.reflection.emit/4.3.0/system.reflection.emit.4.3.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/system.reflection.emit.ilgeneration/4.3.0/system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/system.reflection.emit.lightweight/4.3.0/system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/system.reflection.extensions/4.3.0/system.reflection.extensions.4.3.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/system.reflection.metadata/5.0.0/system.reflection.metadata.5.0.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/system.reflection.primitives/4.3.0/system.reflection.primitives.4.3.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/system.reflection.typeextensions/4.3.0/system.reflection.typeextensions.4.3.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/system.resources.resourcemanager/4.3.0/system.resources.resourcemanager.4.3.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/system.runtime/4.3.0/system.runtime.4.3.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/system.runtime.compilerservices.unsafe/4.7.1/system.runtime.compilerservices.unsafe.4.7.1.nupkg.sha512",
- "/home/bajratech/.nuget/packages/system.runtime.extensions/4.3.0/system.runtime.extensions.4.3.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/system.runtime.handles/4.3.0/system.runtime.handles.4.3.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/system.runtime.interopservices/4.3.0/system.runtime.interopservices.4.3.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/system.text.encoding/4.3.0/system.text.encoding.4.3.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/system.text.encoding.codepages/4.5.1/system.text.encoding.codepages.4.5.1.nupkg.sha512",
- "/home/bajratech/.nuget/packages/system.threading/4.3.0/system.threading.4.3.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/system.threading.tasks/4.3.0/system.threading.tasks.4.3.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/system.threading.tasks.extensions/4.5.4/system.threading.tasks.extensions.4.5.4.nupkg.sha512",
- "/home/bajratech/.nuget/packages/tmds.dbus/0.15.0/tmds.dbus.0.15.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/tmds.dbus.protocol/0.15.0/tmds.dbus.protocol.0.15.0.nupkg.sha512",
- "/home/bajratech/.nuget/packages/tmds.libc/0.5.0/tmds.libc.0.5.0.nupkg.sha512"
- ],
- "logs": []
-}
\ No newline at end of file
diff --git a/dotnet_ble_server/bin/Debug/net7.0/dotnetbleserver.deps.json b/dotnet_ble_server/bin/Debug/net7.0/dotnetbleserver.deps.json
deleted file mode 100644
index cd24765..0000000
--- a/dotnet_ble_server/bin/Debug/net7.0/dotnetbleserver.deps.json
+++ /dev/null
@@ -1,41 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v7.0",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v7.0": {
- "dotnetbleserver/1.0": {
- "dependencies": {
- "Tmds.DBus": "0.15.0"
- },
- "runtime": {
- "dotnetbleserver.dll": {}
- }
- },
- "Tmds.DBus/0.15.0": {
- "runtime": {
- "lib/net6.0/Tmds.DBus.dll": {
- "assemblyVersion": "0.15.0.0",
- "fileVersion": "0.15.0.0"
- }
- }
- }
- }
- },
- "libraries": {
- "dotnetbleserver/1.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "Tmds.DBus/0.15.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-11BxHGh+8hwXNdcavX7BxNW5Qr6AC36ABYDcqvZ3bDS7alXI+O95/x0ExoVWWWxjAVTnvmDRtW1Nd3uObPIsVg==",
- "path": "tmds.dbus/0.15.0",
- "hashPath": "tmds.dbus.0.15.0.nupkg.sha512"
- }
- }
-}
\ No newline at end of file
diff --git a/dotnet_ble_server/bin/Debug/net7.0/dotnetbleserver.dll b/dotnet_ble_server/bin/Debug/net7.0/dotnetbleserver.dll
deleted file mode 100644
index 4156bb2..0000000
Binary files a/dotnet_ble_server/bin/Debug/net7.0/dotnetbleserver.dll and /dev/null differ
diff --git a/dotnet_ble_server/bin/Debug/net7.0/dotnetbleserver.pdb b/dotnet_ble_server/bin/Debug/net7.0/dotnetbleserver.pdb
deleted file mode 100644
index 150f4b6..0000000
Binary files a/dotnet_ble_server/bin/Debug/net7.0/dotnetbleserver.pdb and /dev/null differ
diff --git a/dotnet_ble_server/bin/Debug/net8.0/dotnetbleserver.deps.json b/dotnet_ble_server/bin/Debug/net8.0/dotnetbleserver.deps.json
deleted file mode 100644
index 414eecd..0000000
--- a/dotnet_ble_server/bin/Debug/net8.0/dotnetbleserver.deps.json
+++ /dev/null
@@ -1,41 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v8.0",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v8.0": {
- "dotnetbleserver/0.0.1": {
- "dependencies": {
- "Tmds.DBus": "0.15.0"
- },
- "runtime": {
- "dotnetbleserver.dll": {}
- }
- },
- "Tmds.DBus/0.15.0": {
- "runtime": {
- "lib/net6.0/Tmds.DBus.dll": {
- "assemblyVersion": "0.15.0.0",
- "fileVersion": "0.15.0.0"
- }
- }
- }
- }
- },
- "libraries": {
- "dotnetbleserver/0.0.1": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "Tmds.DBus/0.15.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-11BxHGh+8hwXNdcavX7BxNW5Qr6AC36ABYDcqvZ3bDS7alXI+O95/x0ExoVWWWxjAVTnvmDRtW1Nd3uObPIsVg==",
- "path": "tmds.dbus/0.15.0",
- "hashPath": "tmds.dbus.0.15.0.nupkg.sha512"
- }
- }
-}
\ No newline at end of file
diff --git a/dotnet_ble_server/bin/Debug/net8.0/dotnetbleserver.dll b/dotnet_ble_server/bin/Debug/net8.0/dotnetbleserver.dll
deleted file mode 100644
index e7af010..0000000
Binary files a/dotnet_ble_server/bin/Debug/net8.0/dotnetbleserver.dll and /dev/null differ
diff --git a/dotnet_ble_server/bin/Debug/net8.0/dotnetbleserver.pdb b/dotnet_ble_server/bin/Debug/net8.0/dotnetbleserver.pdb
deleted file mode 100644
index 8dddc97..0000000
Binary files a/dotnet_ble_server/bin/Debug/net8.0/dotnetbleserver.pdb and /dev/null differ
diff --git a/dotnet_ble_server/bin/Debug/netstandard2.0/dotnetbleserver.deps.json b/dotnet_ble_server/bin/Debug/netstandard2.0/dotnetbleserver.deps.json
deleted file mode 100644
index 81fb1cb..0000000
--- a/dotnet_ble_server/bin/Debug/netstandard2.0/dotnetbleserver.deps.json
+++ /dev/null
@@ -1,167 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETStandard,Version=v2.0/",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETStandard,Version=v2.0": {},
- ".NETStandard,Version=v2.0/": {
- "dotnetbleserver/1.0": {
- "dependencies": {
- "NETStandard.Library": "2.0.3",
- "Tmds.DBus": "0.15.0"
- },
- "runtime": {
- "dotnetbleserver.dll": {}
- }
- },
- "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
- "dependencies": {
- "System.Threading.Tasks.Extensions": "4.5.4"
- },
- "runtime": {
- "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll": {
- "assemblyVersion": "6.0.0.0",
- "fileVersion": "6.0.21.52210"
- }
- }
- },
- "Microsoft.NETCore.Platforms/1.1.0": {},
- "NETStandard.Library/2.0.3": {
- "dependencies": {
- "Microsoft.NETCore.Platforms": "1.1.0"
- }
- },
- "System.Reflection.Emit/4.7.0": {
- "dependencies": {
- "System.Reflection.Emit.ILGeneration": "4.7.0"
- },
- "runtime": {
- "lib/netstandard2.0/System.Reflection.Emit.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.Reflection.Emit.ILGeneration/4.7.0": {
- "runtime": {
- "lib/netstandard2.0/System.Reflection.Emit.ILGeneration.dll": {
- "assemblyVersion": "4.0.0.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.Runtime.CompilerServices.Unsafe/4.5.3": {
- "runtime": {
- "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll": {
- "assemblyVersion": "4.0.4.1",
- "fileVersion": "4.0.0.0"
- }
- }
- },
- "System.Security.Principal.Windows/4.7.0": {
- "runtime": {
- "lib/netstandard2.0/System.Security.Principal.Windows.dll": {
- "assemblyVersion": "4.1.3.0",
- "fileVersion": "4.700.19.56404"
- }
- }
- },
- "System.Threading.Tasks.Extensions/4.5.4": {
- "dependencies": {
- "System.Runtime.CompilerServices.Unsafe": "4.5.3"
- },
- "runtime": {
- "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll": {
- "assemblyVersion": "4.2.0.1",
- "fileVersion": "4.6.28619.1"
- }
- }
- },
- "Tmds.DBus/0.15.0": {
- "dependencies": {
- "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
- "System.Reflection.Emit": "4.7.0",
- "System.Security.Principal.Windows": "4.7.0"
- },
- "runtime": {
- "lib/netstandard2.0/Tmds.DBus.dll": {
- "assemblyVersion": "0.15.0.0",
- "fileVersion": "0.15.0.0"
- }
- }
- }
- }
- },
- "libraries": {
- "dotnetbleserver/1.0": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==",
- "path": "microsoft.bcl.asyncinterfaces/6.0.0",
- "hashPath": "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512"
- },
- "Microsoft.NETCore.Platforms/1.1.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
- "path": "microsoft.netcore.platforms/1.1.0",
- "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
- },
- "NETStandard.Library/2.0.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
- "path": "netstandard.library/2.0.3",
- "hashPath": "netstandard.library.2.0.3.nupkg.sha512"
- },
- "System.Reflection.Emit/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-VR4kk8XLKebQ4MZuKuIni/7oh+QGFmZW3qORd1GvBq/8026OpW501SzT/oypwiQl4TvT8ErnReh/NzY9u+C6wQ==",
- "path": "system.reflection.emit/4.7.0",
- "hashPath": "system.reflection.emit.4.7.0.nupkg.sha512"
- },
- "System.Reflection.Emit.ILGeneration/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-AucBYo3DSI0IDxdUjKksBcQJXPHyoPyrCXYURW1WDsLI4M65Ar/goSHjdnHOAY9MiYDNKqDlIgaYm+zL2hA1KA==",
- "path": "system.reflection.emit.ilgeneration/4.7.0",
- "hashPath": "system.reflection.emit.ilgeneration.4.7.0.nupkg.sha512"
- },
- "System.Runtime.CompilerServices.Unsafe/4.5.3": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-3TIsJhD1EiiT0w2CcDMN/iSSwnNnsrnbzeVHSKkaEgV85txMprmuO+Yq2AdSbeVGcg28pdNDTPK87tJhX7VFHw==",
- "path": "system.runtime.compilerservices.unsafe/4.5.3",
- "hashPath": "system.runtime.compilerservices.unsafe.4.5.3.nupkg.sha512"
- },
- "System.Security.Principal.Windows/4.7.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==",
- "path": "system.security.principal.windows/4.7.0",
- "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512"
- },
- "System.Threading.Tasks.Extensions/4.5.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
- "path": "system.threading.tasks.extensions/4.5.4",
- "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512"
- },
- "Tmds.DBus/0.15.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-11BxHGh+8hwXNdcavX7BxNW5Qr6AC36ABYDcqvZ3bDS7alXI+O95/x0ExoVWWWxjAVTnvmDRtW1Nd3uObPIsVg==",
- "path": "tmds.dbus/0.15.0",
- "hashPath": "tmds.dbus.0.15.0.nupkg.sha512"
- }
- }
-}
\ No newline at end of file
diff --git a/dotnet_ble_server/bin/Debug/netstandard2.0/dotnetbleserver.dll b/dotnet_ble_server/bin/Debug/netstandard2.0/dotnetbleserver.dll
deleted file mode 100644
index bfce921..0000000
Binary files a/dotnet_ble_server/bin/Debug/netstandard2.0/dotnetbleserver.dll and /dev/null differ
diff --git a/dotnet_ble_server/bin/Debug/netstandard2.0/dotnetbleserver.pdb b/dotnet_ble_server/bin/Debug/netstandard2.0/dotnetbleserver.pdb
deleted file mode 100644
index 1e4034e..0000000
Binary files a/dotnet_ble_server/bin/Debug/netstandard2.0/dotnetbleserver.pdb and /dev/null differ
diff --git a/dotnet_ble_server/bin/Release/BlueZ.NET.Server.0.0.1.nupkg b/dotnet_ble_server/bin/Release/BlueZ.NET.Server.0.0.1.nupkg
deleted file mode 100644
index a43122f..0000000
Binary files a/dotnet_ble_server/bin/Release/BlueZ.NET.Server.0.0.1.nupkg and /dev/null differ
diff --git a/dotnet_ble_server/bin/Release/Bluez.NET.Server.0.0.1.nupkg b/dotnet_ble_server/bin/Release/Bluez.NET.Server.0.0.1.nupkg
deleted file mode 100644
index 7fa667c..0000000
Binary files a/dotnet_ble_server/bin/Release/Bluez.NET.Server.0.0.1.nupkg and /dev/null differ
diff --git a/dotnet_ble_server/bin/Release/Dotnet.Bluez.Server.0.0.1.nupkg b/dotnet_ble_server/bin/Release/Dotnet.Bluez.Server.0.0.1.nupkg
deleted file mode 100644
index fcc3cf7..0000000
Binary files a/dotnet_ble_server/bin/Release/Dotnet.Bluez.Server.0.0.1.nupkg and /dev/null differ
diff --git a/dotnet_ble_server/bin/Release/DotnetBluezServer.0.0.1.nupkg b/dotnet_ble_server/bin/Release/DotnetBluezServer.0.0.1.nupkg
deleted file mode 100644
index ec87fe4..0000000
Binary files a/dotnet_ble_server/bin/Release/DotnetBluezServer.0.0.1.nupkg and /dev/null differ
diff --git a/dotnet_ble_server/bin/Release/net8.0/dotnetbleserver.deps.json b/dotnet_ble_server/bin/Release/net8.0/dotnetbleserver.deps.json
deleted file mode 100644
index 414eecd..0000000
--- a/dotnet_ble_server/bin/Release/net8.0/dotnetbleserver.deps.json
+++ /dev/null
@@ -1,41 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v8.0",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v8.0": {
- "dotnetbleserver/0.0.1": {
- "dependencies": {
- "Tmds.DBus": "0.15.0"
- },
- "runtime": {
- "dotnetbleserver.dll": {}
- }
- },
- "Tmds.DBus/0.15.0": {
- "runtime": {
- "lib/net6.0/Tmds.DBus.dll": {
- "assemblyVersion": "0.15.0.0",
- "fileVersion": "0.15.0.0"
- }
- }
- }
- }
- },
- "libraries": {
- "dotnetbleserver/0.0.1": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "Tmds.DBus/0.15.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-11BxHGh+8hwXNdcavX7BxNW5Qr6AC36ABYDcqvZ3bDS7alXI+O95/x0ExoVWWWxjAVTnvmDRtW1Nd3uObPIsVg==",
- "path": "tmds.dbus/0.15.0",
- "hashPath": "tmds.dbus.0.15.0.nupkg.sha512"
- }
- }
-}
\ No newline at end of file
diff --git a/dotnet_ble_server/bin/Release/net8.0/dotnetbleserver.dll b/dotnet_ble_server/bin/Release/net8.0/dotnetbleserver.dll
deleted file mode 100644
index d8b6a85..0000000
Binary files a/dotnet_ble_server/bin/Release/net8.0/dotnetbleserver.dll and /dev/null differ
diff --git a/dotnet_ble_server/bin/Release/net8.0/dotnetbleserver.pdb b/dotnet_ble_server/bin/Release/net8.0/dotnetbleserver.pdb
deleted file mode 100644
index 4cafab7..0000000
Binary files a/dotnet_ble_server/bin/Release/net8.0/dotnetbleserver.pdb and /dev/null differ
diff --git a/dotnet_ble_server/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/dotnet_ble_server/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs
deleted file mode 100644
index 4257f4b..0000000
--- a/dotnet_ble_server/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")]
diff --git a/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.AssemblyInfo.cs b/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.AssemblyInfo.cs
deleted file mode 100644
index 74d6155..0000000
--- a/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.AssemblyInfo.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// 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("exendahal")]
-[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
-[assembly: System.Reflection.AssemblyCopyrightAttribute("Santosh Dahal")]
-[assembly: System.Reflection.AssemblyDescriptionAttribute(@"
- .NET BlueZ Server is a powerful library designed to facilitate the creation of Bluetooth Low Energy (BLE) peripherals and manage connected centrals on Linux using .NET Core.
- Leveraging the capabilities of BlueZ under the hood, this library offers a seamless API that preserves the object structure of BlueZ while streamlining D-Bus communication for a more developer-friendly experience.
- This library builds upon .NET BLE Server, introducing specialized methods for handling connected centrals to BLE peripherals.
- ")]
-[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0+555385883a64c17b049bcd3a6b18c33007c3ce9f")]
-[assembly: System.Reflection.AssemblyProductAttribute("dotnetbleserver")]
-[assembly: System.Reflection.AssemblyTitleAttribute("dotnetbleserver")]
-[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://github.com/exendahal/dotnet_bluez_server")]
-
-// Generated by the MSBuild WriteCodeFragment class.
-
diff --git a/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.AssemblyInfoInputs.cache b/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.AssemblyInfoInputs.cache
deleted file mode 100644
index 9a3dd98..0000000
--- a/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-83f749265ed33678505a5f6f2b47c00b1a7dfa7b1907e37de19f23b1a6c7c7fa
diff --git a/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.GeneratedMSBuildEditorConfig.editorconfig b/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.GeneratedMSBuildEditorConfig.editorconfig
deleted file mode 100644
index 875c728..0000000
--- a/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.GeneratedMSBuildEditorConfig.editorconfig
+++ /dev/null
@@ -1,13 +0,0 @@
-is_global = true
-build_property.TargetFramework = net7.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 = dotnetbleserver
-build_property.ProjectDir = /home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/
-build_property.EnableComHosting =
-build_property.EnableGeneratedComInterfaceComImportInterop =
diff --git a/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.assets.cache b/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.assets.cache
deleted file mode 100644
index 6521b75..0000000
Binary files a/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.assets.cache and /dev/null differ
diff --git a/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.csproj.AssemblyReference.cache b/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.csproj.AssemblyReference.cache
deleted file mode 100644
index fd6e55f..0000000
Binary files a/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.csproj.AssemblyReference.cache and /dev/null differ
diff --git a/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.csproj.CoreCompileInputs.cache b/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.csproj.CoreCompileInputs.cache
deleted file mode 100644
index f227081..0000000
--- a/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-88622ca2cf0bc7bf1c9bd5a0331313d30275b9fc18e77314464637d632a6259d
diff --git a/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.csproj.FileListAbsolute.txt b/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.csproj.FileListAbsolute.txt
deleted file mode 100644
index d9568da..0000000
--- a/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,13 +0,0 @@
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/bin/Debug/net7.0/dotnetbleserver.deps.json
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/bin/Debug/net7.0/dotnetbleserver.dll
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/bin/Debug/net7.0/dotnetbleserver.pdb
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.csproj.AssemblyReference.cache
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.GeneratedMSBuildEditorConfig.editorconfig
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.AssemblyInfoInputs.cache
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.AssemblyInfo.cs
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.csproj.CoreCompileInputs.cache
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.dll
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Debug/net7.0/refint/dotnetbleserver.dll
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.pdb
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Debug/net7.0/ref/dotnetbleserver.dll
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.sourcelink.json
diff --git a/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.dll b/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.dll
deleted file mode 100644
index 4156bb2..0000000
Binary files a/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.dll and /dev/null differ
diff --git a/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.pdb b/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.pdb
deleted file mode 100644
index 150f4b6..0000000
Binary files a/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.pdb and /dev/null differ
diff --git a/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.sourcelink.json b/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.sourcelink.json
deleted file mode 100644
index 1a4e372..0000000
--- a/dotnet_ble_server/obj/Debug/net7.0/dotnetbleserver.sourcelink.json
+++ /dev/null
@@ -1 +0,0 @@
-{"documents":{"/home/bajratech/Desktop/dotnetbleserver/*":"https://raw.githubusercontent.com/exendahal/dotnet_ble_server/555385883a64c17b049bcd3a6b18c33007c3ce9f/*"}}
\ No newline at end of file
diff --git a/dotnet_ble_server/obj/Debug/net7.0/ref/dotnetbleserver.dll b/dotnet_ble_server/obj/Debug/net7.0/ref/dotnetbleserver.dll
deleted file mode 100644
index e06eecc..0000000
Binary files a/dotnet_ble_server/obj/Debug/net7.0/ref/dotnetbleserver.dll and /dev/null differ
diff --git a/dotnet_ble_server/obj/Debug/net7.0/refint/dotnetbleserver.dll b/dotnet_ble_server/obj/Debug/net7.0/refint/dotnetbleserver.dll
deleted file mode 100644
index e06eecc..0000000
Binary files a/dotnet_ble_server/obj/Debug/net7.0/refint/dotnetbleserver.dll and /dev/null differ
diff --git a/dotnet_ble_server/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/dotnet_ble_server/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
deleted file mode 100644
index dca70aa..0000000
--- a/dotnet_ble_server/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
diff --git a/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.AssemblyInfo.cs b/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.AssemblyInfo.cs
deleted file mode 100644
index 7ca3b99..0000000
--- a/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.AssemblyInfo.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// 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("exendahal")]
-[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
-[assembly: System.Reflection.AssemblyCopyrightAttribute("Santosh Dahal")]
-[assembly: System.Reflection.AssemblyDescriptionAttribute(@"
- .NET BlueZ Server is a powerful library designed to facilitate the creation of Bluetooth Low Energy (BLE) peripherals and manage connected centrals on Linux using .NET Core.
- Leveraging the capabilities of BlueZ under the hood, this library offers a seamless API that preserves the object structure of BlueZ while streamlining D-Bus communication for a more developer-friendly experience.
- This library builds upon .NET BLE Server, introducing specialized methods for handling connected centrals to BLE peripherals.
- ")]
-[assembly: System.Reflection.AssemblyFileVersionAttribute("0.0.1.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("0.0.1+0864cdf18905bff71c83565d29e88c588174e725")]
-[assembly: System.Reflection.AssemblyProductAttribute("dotnetbleserver")]
-[assembly: System.Reflection.AssemblyTitleAttribute("dotnetbleserver")]
-[assembly: System.Reflection.AssemblyVersionAttribute("0.0.1.0")]
-[assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://github.com/exendahal/dotnet_bluez_server")]
-
-// Generated by the MSBuild WriteCodeFragment class.
-
diff --git a/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.AssemblyInfoInputs.cache b/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.AssemblyInfoInputs.cache
deleted file mode 100644
index 30d81d3..0000000
--- a/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-9ceba9b4297ef34da5687d47f018bf214cf826f270e9a6a1418dd9d0ac91128e
diff --git a/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.GeneratedMSBuildEditorConfig.editorconfig b/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.GeneratedMSBuildEditorConfig.editorconfig
deleted file mode 100644
index dd4689c..0000000
--- a/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.GeneratedMSBuildEditorConfig.editorconfig
+++ /dev/null
@@ -1,13 +0,0 @@
-is_global = 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 = dotnetbleserver
-build_property.ProjectDir = /home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/
-build_property.EnableComHosting =
-build_property.EnableGeneratedComInterfaceComImportInterop =
diff --git a/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.assets.cache b/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.assets.cache
deleted file mode 100644
index 05d7282..0000000
Binary files a/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.assets.cache and /dev/null differ
diff --git a/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.csproj.AssemblyReference.cache b/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.csproj.AssemblyReference.cache
deleted file mode 100644
index fd6e55f..0000000
Binary files a/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.csproj.AssemblyReference.cache and /dev/null differ
diff --git a/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.csproj.CoreCompileInputs.cache b/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.csproj.CoreCompileInputs.cache
deleted file mode 100644
index de1f33b..0000000
--- a/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-d66d1fb09da5752d43c8124f12684cbdd2a9306cc28108aebce972eb481d674b
diff --git a/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.csproj.FileListAbsolute.txt b/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.csproj.FileListAbsolute.txt
deleted file mode 100644
index df874e2..0000000
--- a/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,13 +0,0 @@
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/bin/Debug/net8.0/dotnetbleserver.deps.json
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/bin/Debug/net8.0/dotnetbleserver.dll
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/bin/Debug/net8.0/dotnetbleserver.pdb
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.csproj.AssemblyReference.cache
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.GeneratedMSBuildEditorConfig.editorconfig
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.AssemblyInfoInputs.cache
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.AssemblyInfo.cs
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.csproj.CoreCompileInputs.cache
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.sourcelink.json
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.dll
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Debug/net8.0/refint/dotnetbleserver.dll
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.pdb
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Debug/net8.0/ref/dotnetbleserver.dll
diff --git a/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.dll b/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.dll
deleted file mode 100644
index e7af010..0000000
Binary files a/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.dll and /dev/null differ
diff --git a/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.pdb b/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.pdb
deleted file mode 100644
index 8dddc97..0000000
Binary files a/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.pdb and /dev/null differ
diff --git a/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.sourcelink.json b/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.sourcelink.json
deleted file mode 100644
index 06918ec..0000000
--- a/dotnet_ble_server/obj/Debug/net8.0/dotnetbleserver.sourcelink.json
+++ /dev/null
@@ -1 +0,0 @@
-{"documents":{"/home/bajratech/Desktop/dotnetbleserver/*":"https://raw.githubusercontent.com/exendahal/dotnet_ble_server/0864cdf18905bff71c83565d29e88c588174e725/*"}}
\ No newline at end of file
diff --git a/dotnet_ble_server/obj/Debug/net8.0/ref/dotnetbleserver.dll b/dotnet_ble_server/obj/Debug/net8.0/ref/dotnetbleserver.dll
deleted file mode 100644
index 947dbde..0000000
Binary files a/dotnet_ble_server/obj/Debug/net8.0/ref/dotnetbleserver.dll and /dev/null differ
diff --git a/dotnet_ble_server/obj/Debug/net8.0/refint/dotnetbleserver.dll b/dotnet_ble_server/obj/Debug/net8.0/refint/dotnetbleserver.dll
deleted file mode 100644
index 947dbde..0000000
Binary files a/dotnet_ble_server/obj/Debug/net8.0/refint/dotnetbleserver.dll and /dev/null differ
diff --git a/dotnet_ble_server/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs b/dotnet_ble_server/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs
deleted file mode 100644
index 8bf3a42..0000000
--- a/dotnet_ble_server/obj/Debug/netstandard2.0/.NETStandard,Version=v2.0.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v2.0", FrameworkDisplayName = ".NET Standard 2.0")]
diff --git a/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.AssemblyInfo.cs b/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.AssemblyInfo.cs
deleted file mode 100644
index 06ca8f1..0000000
--- a/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.AssemblyInfo.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// 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("exendahal")]
-[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
-[assembly: System.Reflection.AssemblyCopyrightAttribute("Santosh Dahal")]
-[assembly: System.Reflection.AssemblyDescriptionAttribute(@"
- .NET BlueZ Server is a powerful library designed to facilitate the creation of Bluetooth Low Energy (BLE) peripherals and manage connected centrals on Linux using .NET Core.
- Leveraging the capabilities of BlueZ under the hood, this library offers a seamless API that preserves the object structure of BlueZ while streamlining D-Bus communication for a more developer-friendly experience.
- This library builds upon .NET BLE Server, introducing specialized methods for handling connected centrals to BLE peripherals.
- ")]
-[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0")]
-[assembly: System.Reflection.AssemblyProductAttribute("dotnetbleserver")]
-[assembly: System.Reflection.AssemblyTitleAttribute("dotnetbleserver")]
-[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://github.com/exendahal/dotnet_bluez_server")]
-
-// Generated by the MSBuild WriteCodeFragment class.
-
diff --git a/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.AssemblyInfoInputs.cache b/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.AssemblyInfoInputs.cache
deleted file mode 100644
index 4eadffa..0000000
--- a/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-7dbb3b0361ca563a465153237785bcd5fd211a63
diff --git a/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.GeneratedMSBuildEditorConfig.editorconfig b/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.GeneratedMSBuildEditorConfig.editorconfig
deleted file mode 100644
index bfb5b0b..0000000
--- a/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.GeneratedMSBuildEditorConfig.editorconfig
+++ /dev/null
@@ -1,3 +0,0 @@
-is_global = true
-build_property.RootNamespace = dotnetbleserver
-build_property.ProjectDir = /home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/
diff --git a/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.assets.cache b/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.assets.cache
deleted file mode 100644
index 2b31405..0000000
Binary files a/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.assets.cache and /dev/null differ
diff --git a/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.csproj.AssemblyReference.cache b/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.csproj.AssemblyReference.cache
deleted file mode 100644
index dc66450..0000000
Binary files a/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.csproj.AssemblyReference.cache and /dev/null differ
diff --git a/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.csproj.BuildWithSkipAnalyzers b/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.csproj.BuildWithSkipAnalyzers
deleted file mode 100644
index e69de29..0000000
diff --git a/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.csproj.CoreCompileInputs.cache b/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.csproj.CoreCompileInputs.cache
deleted file mode 100644
index bc62967..0000000
--- a/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-255c7a02258657ac58e41e1f7e9310dd3509edde
diff --git a/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.csproj.FileListAbsolute.txt b/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.csproj.FileListAbsolute.txt
deleted file mode 100644
index 69d5411..0000000
--- a/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,21 +0,0 @@
-C:/Users/exend/Source/Repos/dotnet_ble_server/dotnet_ble_server/bin/Debug/netstandard2.0/dotnetbleserver.deps.json
-C:/Users/exend/Source/Repos/dotnet_ble_server/dotnet_ble_server/bin/Debug/netstandard2.0/dotnetbleserver.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/dotnet_ble_server/bin/Debug/netstandard2.0/dotnetbleserver.pdb
-C:/Users/exend/Source/Repos/dotnet_ble_server/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.csproj.AssemblyReference.cache
-C:/Users/exend/Source/Repos/dotnet_ble_server/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.GeneratedMSBuildEditorConfig.editorconfig
-C:/Users/exend/Source/Repos/dotnet_ble_server/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.AssemblyInfoInputs.cache
-C:/Users/exend/Source/Repos/dotnet_ble_server/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.AssemblyInfo.cs
-C:/Users/exend/Source/Repos/dotnet_ble_server/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.csproj.CoreCompileInputs.cache
-C:/Users/exend/Source/Repos/dotnet_ble_server/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.sourcelink.json
-C:/Users/exend/Source/Repos/dotnet_ble_server/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.dll
-C:/Users/exend/Source/Repos/dotnet_ble_server/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.pdb
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/bin/Debug/netstandard2.0/dotnetbleserver.deps.json
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/bin/Debug/netstandard2.0/dotnetbleserver.dll
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/bin/Debug/netstandard2.0/dotnetbleserver.pdb
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.csproj.AssemblyReference.cache
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.GeneratedMSBuildEditorConfig.editorconfig
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.AssemblyInfoInputs.cache
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.AssemblyInfo.cs
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.csproj.CoreCompileInputs.cache
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.dll
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.pdb
diff --git a/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.dll b/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.dll
deleted file mode 100644
index bfce921..0000000
Binary files a/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.dll and /dev/null differ
diff --git a/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.pdb b/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.pdb
deleted file mode 100644
index 1e4034e..0000000
Binary files a/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.pdb and /dev/null differ
diff --git a/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.sourcelink.json b/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.sourcelink.json
deleted file mode 100644
index 6e70892..0000000
--- a/dotnet_ble_server/obj/Debug/netstandard2.0/dotnetbleserver.sourcelink.json
+++ /dev/null
@@ -1 +0,0 @@
-{"documents":{"C:\\Users\\exend\\Source\\Repos\\dotnet_ble_server\\*":"https://raw.githubusercontent.com/exendahal/dotnet_ble_server/d42f14066fad5b55b8ed9b46a64cba8302d3b695/*"}}
\ No newline at end of file
diff --git a/dotnet_ble_server/obj/Release/BlueZ.NET.Server.0.0.1.nuspec b/dotnet_ble_server/obj/Release/BlueZ.NET.Server.0.0.1.nuspec
deleted file mode 100644
index 65375c0..0000000
--- a/dotnet_ble_server/obj/Release/BlueZ.NET.Server.0.0.1.nuspec
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
- BlueZ.NET.Server
- 0.0.1
- exendahal
- MIT
- https://licenses.nuget.org/MIT
- https://github.com/exendahal/dotnet_bluez_server
- .NET BlueZ Server is a powerful library designed to facilitate the creation of Bluetooth Low Energy (BLE) peripherals and manage connected centrals on Linux using .NET Core.
- Leveraging the capabilities of BlueZ under the hood, this library offers a seamless API that preserves the object structure of BlueZ while streamlining D-Bus communication for a more developer-friendly experience.
- This library builds upon .NET BLE Server, introducing specialized methods for handling connected centrals to BLE peripherals.
- Santosh Dahal
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/dotnet_ble_server/obj/Release/Bluez.NET.Server.0.0.1.nuspec b/dotnet_ble_server/obj/Release/Bluez.NET.Server.0.0.1.nuspec
deleted file mode 100644
index be40f7a..0000000
--- a/dotnet_ble_server/obj/Release/Bluez.NET.Server.0.0.1.nuspec
+++ /dev/null
@@ -1,28 +0,0 @@
-
-
-
- Bluez.NET.Server
- 0.0.1
- exendahal
- MIT
- https://licenses.nuget.org/MIT
- icon.png
- README.md
- https://github.com/exendahal/dotnet_bluez_server
- .NET BlueZ Server is a powerful library designed to facilitate the creation of Bluetooth Low Energy (BLE) peripherals and manage connected centrals on Linux using .NET Core.
- Leveraging the capabilities of BlueZ under the hood, this library offers a seamless API that preserves the object structure of BlueZ while streamlining D-Bus communication for a more developer-friendly experience.
- This library builds upon .NET BLE Server, introducing specialized methods for handling connected centrals to BLE peripherals.
- Santosh Dahal
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/dotnet_ble_server/obj/Release/Dotnet.Bluez.Server.0.0.1.nuspec b/dotnet_ble_server/obj/Release/Dotnet.Bluez.Server.0.0.1.nuspec
deleted file mode 100644
index f69fb1e..0000000
--- a/dotnet_ble_server/obj/Release/Dotnet.Bluez.Server.0.0.1.nuspec
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
- Dotnet.Bluez.Server
- 0.0.1
- exendahal
- MIT
- https://licenses.nuget.org/MIT
- https://github.com/exendahal/dotnet_bluez_server
- .NET BlueZ Server is a powerful library designed to facilitate the creation of Bluetooth Low Energy (BLE) peripherals and manage connected centrals on Linux using .NET Core.
- Leveraging the capabilities of BlueZ under the hood, this library offers a seamless API that preserves the object structure of BlueZ while streamlining D-Bus communication for a more developer-friendly experience.
- This library builds upon .NET BLE Server, introducing specialized methods for handling connected centrals to BLE peripherals.
- Santosh Dahal
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/dotnet_ble_server/obj/Release/DotnetBluezServer.0.0.1.nuspec b/dotnet_ble_server/obj/Release/DotnetBluezServer.0.0.1.nuspec
deleted file mode 100644
index 9a5181a..0000000
--- a/dotnet_ble_server/obj/Release/DotnetBluezServer.0.0.1.nuspec
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
- DotnetBluezServer
- 0.0.1
- exendahal
- MIT
- https://licenses.nuget.org/MIT
- https://github.com/exendahal/dotnet_bluez_server
- .NET BlueZ Server is a powerful library designed to facilitate the creation of Bluetooth Low Energy (BLE) peripherals and manage connected centrals on Linux using .NET Core.
- Leveraging the capabilities of BlueZ under the hood, this library offers a seamless API that preserves the object structure of BlueZ while streamlining D-Bus communication for a more developer-friendly experience.
- This library builds upon .NET BLE Server, introducing specialized methods for handling connected centrals to BLE peripherals.
- Santosh Dahal
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/dotnet_ble_server/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/dotnet_ble_server/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
deleted file mode 100644
index dca70aa..0000000
--- a/dotnet_ble_server/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-using System;
-using System.Reflection;
-[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
diff --git a/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.AssemblyInfo.cs b/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.AssemblyInfo.cs
deleted file mode 100644
index 4aedfe8..0000000
--- a/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.AssemblyInfo.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// 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("exendahal")]
-[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
-[assembly: System.Reflection.AssemblyCopyrightAttribute("Santosh Dahal")]
-[assembly: System.Reflection.AssemblyDescriptionAttribute(@"
- .NET BlueZ Server is a powerful library designed to facilitate the creation of Bluetooth Low Energy (BLE) peripherals and manage connected centrals on Linux using .NET Core.
- Leveraging the capabilities of BlueZ under the hood, this library offers a seamless API that preserves the object structure of BlueZ while streamlining D-Bus communication for a more developer-friendly experience.
- This library builds upon .NET BLE Server, introducing specialized methods for handling connected centrals to BLE peripherals.
- ")]
-[assembly: System.Reflection.AssemblyFileVersionAttribute("0.0.1.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("0.0.1+0864cdf18905bff71c83565d29e88c588174e725")]
-[assembly: System.Reflection.AssemblyProductAttribute("dotnetbleserver")]
-[assembly: System.Reflection.AssemblyTitleAttribute("dotnetbleserver")]
-[assembly: System.Reflection.AssemblyVersionAttribute("0.0.1.0")]
-[assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://github.com/exendahal/dotnet_bluez_server")]
-
-// Generated by the MSBuild WriteCodeFragment class.
-
diff --git a/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.AssemblyInfoInputs.cache b/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.AssemblyInfoInputs.cache
deleted file mode 100644
index ffd5943..0000000
--- a/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-2d4f386489ad213b0b1c013e1ccc10ad6e8a832c142fa8a5bee741abf152dd7b
diff --git a/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.GeneratedMSBuildEditorConfig.editorconfig b/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.GeneratedMSBuildEditorConfig.editorconfig
deleted file mode 100644
index dd4689c..0000000
--- a/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.GeneratedMSBuildEditorConfig.editorconfig
+++ /dev/null
@@ -1,13 +0,0 @@
-is_global = 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 = dotnetbleserver
-build_property.ProjectDir = /home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/
-build_property.EnableComHosting =
-build_property.EnableGeneratedComInterfaceComImportInterop =
diff --git a/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.assets.cache b/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.assets.cache
deleted file mode 100644
index 7372b2b..0000000
Binary files a/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.assets.cache and /dev/null differ
diff --git a/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.csproj.AssemblyReference.cache b/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.csproj.AssemblyReference.cache
deleted file mode 100644
index fd6e55f..0000000
Binary files a/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.csproj.AssemblyReference.cache and /dev/null differ
diff --git a/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.csproj.CoreCompileInputs.cache b/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.csproj.CoreCompileInputs.cache
deleted file mode 100644
index 5ce329e..0000000
--- a/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-b4b213ab19a028acf0eec8188a5cbf885df3056c1b2019bd70f9a317a1045f4c
diff --git a/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.csproj.FileListAbsolute.txt b/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.csproj.FileListAbsolute.txt
deleted file mode 100644
index 83db0c9..0000000
--- a/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,13 +0,0 @@
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/bin/Release/net8.0/dotnetbleserver.deps.json
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/bin/Release/net8.0/dotnetbleserver.dll
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/bin/Release/net8.0/dotnetbleserver.pdb
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.csproj.AssemblyReference.cache
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.GeneratedMSBuildEditorConfig.editorconfig
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.AssemblyInfoInputs.cache
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.AssemblyInfo.cs
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.csproj.CoreCompileInputs.cache
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.sourcelink.json
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.dll
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Release/net8.0/refint/dotnetbleserver.dll
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.pdb
-/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/Release/net8.0/ref/dotnetbleserver.dll
diff --git a/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.dll b/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.dll
deleted file mode 100644
index d8b6a85..0000000
Binary files a/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.dll and /dev/null differ
diff --git a/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.pdb b/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.pdb
deleted file mode 100644
index 4cafab7..0000000
Binary files a/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.pdb and /dev/null differ
diff --git a/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.sourcelink.json b/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.sourcelink.json
deleted file mode 100644
index 06918ec..0000000
--- a/dotnet_ble_server/obj/Release/net8.0/dotnetbleserver.sourcelink.json
+++ /dev/null
@@ -1 +0,0 @@
-{"documents":{"/home/bajratech/Desktop/dotnetbleserver/*":"https://raw.githubusercontent.com/exendahal/dotnet_ble_server/0864cdf18905bff71c83565d29e88c588174e725/*"}}
\ No newline at end of file
diff --git a/dotnet_ble_server/obj/Release/net8.0/ref/dotnetbleserver.dll b/dotnet_ble_server/obj/Release/net8.0/ref/dotnetbleserver.dll
deleted file mode 100644
index c7f067e..0000000
Binary files a/dotnet_ble_server/obj/Release/net8.0/ref/dotnetbleserver.dll and /dev/null differ
diff --git a/dotnet_ble_server/obj/Release/net8.0/refint/dotnetbleserver.dll b/dotnet_ble_server/obj/Release/net8.0/refint/dotnetbleserver.dll
deleted file mode 100644
index c7f067e..0000000
Binary files a/dotnet_ble_server/obj/Release/net8.0/refint/dotnetbleserver.dll and /dev/null differ
diff --git a/dotnet_ble_server/obj/dotnetbleserver.csproj.nuget.dgspec.json b/dotnet_ble_server/obj/dotnetbleserver.csproj.nuget.dgspec.json
deleted file mode 100644
index 0014085..0000000
--- a/dotnet_ble_server/obj/dotnetbleserver.csproj.nuget.dgspec.json
+++ /dev/null
@@ -1,67 +0,0 @@
-{
- "format": 1,
- "restore": {
- "/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/dotnetbleserver.csproj": {}
- },
- "projects": {
- "/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/dotnetbleserver.csproj": {
- "version": "0.0.1",
- "restore": {
- "projectUniqueName": "/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/dotnetbleserver.csproj",
- "projectName": "Bluez.NET.Server",
- "projectPath": "/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/dotnetbleserver.csproj",
- "packagesPath": "/home/bajratech/.nuget/packages/",
- "outputPath": "/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/",
- "projectStyle": "PackageReference",
- "configFilePaths": [
- "/home/bajratech/.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"
- ]
- }
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "dependencies": {
- "Tmds.DBus": {
- "target": "Package",
- "version": "[0.15.0, )"
- }
- },
- "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.101/PortableRuntimeIdentifierGraph.json"
- }
- }
- }
- }
-}
\ No newline at end of file
diff --git a/dotnet_ble_server/obj/dotnetbleserver.csproj.nuget.g.props b/dotnet_ble_server/obj/dotnetbleserver.csproj.nuget.g.props
deleted file mode 100644
index c180203..0000000
--- a/dotnet_ble_server/obj/dotnetbleserver.csproj.nuget.g.props
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
- True
- NuGet
- $(MSBuildThisFileDirectory)project.assets.json
- /home/bajratech/.nuget/packages/
- /home/bajratech/.nuget/packages/
- PackageReference
- 6.8.0
-
-
-
-
-
\ No newline at end of file
diff --git a/dotnet_ble_server/obj/dotnetbleserver.csproj.nuget.g.targets b/dotnet_ble_server/obj/dotnetbleserver.csproj.nuget.g.targets
deleted file mode 100644
index 3dc06ef..0000000
--- a/dotnet_ble_server/obj/dotnetbleserver.csproj.nuget.g.targets
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
\ No newline at end of file
diff --git a/dotnet_ble_server/obj/project.assets.json b/dotnet_ble_server/obj/project.assets.json
deleted file mode 100644
index 3017953..0000000
--- a/dotnet_ble_server/obj/project.assets.json
+++ /dev/null
@@ -1,104 +0,0 @@
-{
- "version": 3,
- "targets": {
- "net8.0": {
- "Tmds.DBus/0.15.0": {
- "type": "package",
- "compile": {
- "lib/net6.0/Tmds.DBus.dll": {
- "related": ".xml"
- }
- },
- "runtime": {
- "lib/net6.0/Tmds.DBus.dll": {
- "related": ".xml"
- }
- }
- }
- }
- },
- "libraries": {
- "Tmds.DBus/0.15.0": {
- "sha512": "11BxHGh+8hwXNdcavX7BxNW5Qr6AC36ABYDcqvZ3bDS7alXI+O95/x0ExoVWWWxjAVTnvmDRtW1Nd3uObPIsVg==",
- "type": "package",
- "path": "tmds.dbus/0.15.0",
- "files": [
- ".nupkg.metadata",
- ".signature.p7s",
- "lib/net6.0/Tmds.DBus.dll",
- "lib/net6.0/Tmds.DBus.xml",
- "lib/netstandard2.0/Tmds.DBus.dll",
- "lib/netstandard2.0/Tmds.DBus.xml",
- "tmds.dbus.0.15.0.nupkg.sha512",
- "tmds.dbus.nuspec"
- ]
- }
- },
- "projectFileDependencyGroups": {
- "net8.0": [
- "Tmds.DBus >= 0.15.0"
- ]
- },
- "packageFolders": {
- "/home/bajratech/.nuget/packages/": {}
- },
- "project": {
- "version": "0.0.1",
- "restore": {
- "projectUniqueName": "/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/dotnetbleserver.csproj",
- "projectName": "Bluez.NET.Server",
- "projectPath": "/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/dotnetbleserver.csproj",
- "packagesPath": "/home/bajratech/.nuget/packages/",
- "outputPath": "/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/obj/",
- "projectStyle": "PackageReference",
- "configFilePaths": [
- "/home/bajratech/.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"
- ]
- }
- },
- "frameworks": {
- "net8.0": {
- "targetAlias": "net8.0",
- "dependencies": {
- "Tmds.DBus": {
- "target": "Package",
- "version": "[0.15.0, )"
- }
- },
- "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.101/PortableRuntimeIdentifierGraph.json"
- }
- }
- }
-}
\ No newline at end of file
diff --git a/dotnet_ble_server/obj/project.nuget.cache b/dotnet_ble_server/obj/project.nuget.cache
deleted file mode 100644
index b973124..0000000
--- a/dotnet_ble_server/obj/project.nuget.cache
+++ /dev/null
@@ -1,10 +0,0 @@
-{
- "version": 2,
- "dgSpecHash": "aHRM0wUULO9GQfZV4jRA3j9VIKSCM6JBVoVSL+H4acEETWSh++nX0y/QT/qy3kTZmLI35oJB4W6nUOaauo800w==",
- "success": true,
- "projectFilePath": "/home/bajratech/Desktop/dotnetbleserver/dotnet_ble_server/dotnetbleserver.csproj",
- "expectedPackageFiles": [
- "/home/bajratech/.nuget/packages/tmds.dbus/0.15.0/tmds.dbus.0.15.0.nupkg.sha512"
- ],
- "logs": []
-}
\ No newline at end of file
diff --git a/ble-server-linux/App.axaml b/example/App.axaml
similarity index 100%
rename from ble-server-linux/App.axaml
rename to example/App.axaml
diff --git a/ble-server-linux/App.axaml.cs b/example/App.axaml.cs
similarity index 100%
rename from ble-server-linux/App.axaml.cs
rename to example/App.axaml.cs
diff --git a/ble-server-linux/BindableBase.cs b/example/BindableBase.cs
similarity index 100%
rename from ble-server-linux/BindableBase.cs
rename to example/BindableBase.cs
diff --git a/ble-server-linux/BleAdvertisement.cs b/example/BleAdvertisement.cs
similarity index 100%
rename from ble-server-linux/BleAdvertisement.cs
rename to example/BleAdvertisement.cs
diff --git a/ble-server-linux/BleGattApplication.cs b/example/BleGattApplication.cs
similarity index 100%
rename from ble-server-linux/BleGattApplication.cs
rename to example/BleGattApplication.cs
diff --git a/ble-server-linux/CharacteristicSource.cs b/example/CharacteristicSource.cs
similarity index 100%
rename from ble-server-linux/CharacteristicSource.cs
rename to example/CharacteristicSource.cs
diff --git a/ble-server-linux/Constants.cs b/example/Constants.cs
similarity index 100%
rename from ble-server-linux/Constants.cs
rename to example/Constants.cs
diff --git a/ble-server-linux/DelegateCommand.cs b/example/DelegateCommand.cs
similarity index 100%
rename from ble-server-linux/DelegateCommand.cs
rename to example/DelegateCommand.cs
diff --git a/ble-server-linux/DeviceModel.cs b/example/DeviceModel.cs
similarity index 100%
rename from ble-server-linux/DeviceModel.cs
rename to example/DeviceModel.cs
diff --git a/ble-server-linux/MainWindow.axaml b/example/MainWindow.axaml
similarity index 100%
rename from ble-server-linux/MainWindow.axaml
rename to example/MainWindow.axaml
diff --git a/ble-server-linux/MainWindow.axaml.cs b/example/MainWindow.axaml.cs
similarity index 100%
rename from ble-server-linux/MainWindow.axaml.cs
rename to example/MainWindow.axaml.cs
diff --git a/ble-server-linux/MainWindowViewModel.cs b/example/MainWindowViewModel.cs
similarity index 100%
rename from ble-server-linux/MainWindowViewModel.cs
rename to example/MainWindowViewModel.cs
diff --git a/ble-server-linux/Program.cs b/example/Program.cs
similarity index 100%
rename from ble-server-linux/Program.cs
rename to example/Program.cs
diff --git a/ble-server-linux/ResponseModel.cs b/example/ResponseModel.cs
similarity index 100%
rename from ble-server-linux/ResponseModel.cs
rename to example/ResponseModel.cs
diff --git a/ble-server-linux/app.manifest b/example/app.manifest
similarity index 100%
rename from ble-server-linux/app.manifest
rename to example/app.manifest
diff --git a/ble-server-linux/ble-server-linux.csproj b/example/ble-server-linux.csproj
similarity index 82%
rename from ble-server-linux/ble-server-linux.csproj
rename to example/ble-server-linux.csproj
index 1959f7f..6239f2a 100644
--- a/ble-server-linux/ble-server-linux.csproj
+++ b/example/ble-server-linux.csproj
@@ -16,8 +16,8 @@
-
-
+
+
diff --git a/dotnet_ble_server/Advertisements/Advertisement.cs b/src/dotnet_bluez_server/Advertisements/Advertisement.cs
similarity index 100%
rename from dotnet_ble_server/Advertisements/Advertisement.cs
rename to src/dotnet_bluez_server/Advertisements/Advertisement.cs
diff --git a/dotnet_ble_server/Advertisements/AdvertisementProperties.cs b/src/dotnet_bluez_server/Advertisements/AdvertisementProperties.cs
similarity index 100%
rename from dotnet_ble_server/Advertisements/AdvertisementProperties.cs
rename to src/dotnet_bluez_server/Advertisements/AdvertisementProperties.cs
diff --git a/dotnet_ble_server/Advertisements/AdvertisingManager.cs b/src/dotnet_bluez_server/Advertisements/AdvertisingManager.cs
similarity index 100%
rename from dotnet_ble_server/Advertisements/AdvertisingManager.cs
rename to src/dotnet_bluez_server/Advertisements/AdvertisingManager.cs
diff --git a/dotnet_ble_server/Advertisements/ILEAdvertisement1.cs b/src/dotnet_bluez_server/Advertisements/ILEAdvertisement1.cs
similarity index 100%
rename from dotnet_ble_server/Advertisements/ILEAdvertisement1.cs
rename to src/dotnet_bluez_server/Advertisements/ILEAdvertisement1.cs
diff --git a/dotnet_ble_server/Constants/BlueZConstants.cs b/src/dotnet_bluez_server/Constants/BlueZConstants.cs
similarity index 100%
rename from dotnet_ble_server/Constants/BlueZConstants.cs
rename to src/dotnet_bluez_server/Constants/BlueZConstants.cs
diff --git a/dotnet_ble_server/Core/AdapterManager.cs b/src/dotnet_bluez_server/Core/AdapterManager.cs
similarity index 100%
rename from dotnet_ble_server/Core/AdapterManager.cs
rename to src/dotnet_bluez_server/Core/AdapterManager.cs
diff --git a/dotnet_ble_server/Core/BlueZ.cs b/src/dotnet_bluez_server/Core/BlueZ.cs
similarity index 100%
rename from dotnet_ble_server/Core/BlueZ.cs
rename to src/dotnet_bluez_server/Core/BlueZ.cs
diff --git a/dotnet_ble_server/Core/BlueZManager.cs b/src/dotnet_bluez_server/Core/BlueZManager.cs
similarity index 100%
rename from dotnet_ble_server/Core/BlueZManager.cs
rename to src/dotnet_bluez_server/Core/BlueZManager.cs
diff --git a/dotnet_ble_server/Core/IObjectManagerProperties.cs b/src/dotnet_bluez_server/Core/IObjectManagerProperties.cs
similarity index 100%
rename from dotnet_ble_server/Core/IObjectManagerProperties.cs
rename to src/dotnet_bluez_server/Core/IObjectManagerProperties.cs
diff --git a/dotnet_ble_server/Core/PropertiesBase.cs b/src/dotnet_bluez_server/Core/PropertiesBase.cs
similarity index 100%
rename from dotnet_ble_server/Core/PropertiesBase.cs
rename to src/dotnet_bluez_server/Core/PropertiesBase.cs
diff --git a/dotnet_ble_server/Core/ServerContext.cs b/src/dotnet_bluez_server/Core/ServerContext.cs
similarity index 100%
rename from dotnet_ble_server/Core/ServerContext.cs
rename to src/dotnet_bluez_server/Core/ServerContext.cs
diff --git a/dotnet_ble_server/Device/DeviceManager.cs b/src/dotnet_bluez_server/Device/DeviceManager.cs
similarity index 100%
rename from dotnet_ble_server/Device/DeviceManager.cs
rename to src/dotnet_bluez_server/Device/DeviceManager.cs
diff --git a/dotnet_ble_server/Device/DevicePropertyChanges.cs b/src/dotnet_bluez_server/Device/DevicePropertyChanges.cs
similarity index 100%
rename from dotnet_ble_server/Device/DevicePropertyChanges.cs
rename to src/dotnet_bluez_server/Device/DevicePropertyChanges.cs
diff --git a/dotnet_ble_server/Gatt/BlueZModel/BlueZGatt.cs b/src/dotnet_bluez_server/Gatt/BlueZModel/BlueZGatt.cs
similarity index 100%
rename from dotnet_ble_server/Gatt/BlueZModel/BlueZGatt.cs
rename to src/dotnet_bluez_server/Gatt/BlueZModel/BlueZGatt.cs
diff --git a/dotnet_ble_server/Gatt/BlueZModel/CharacteristicFlagConverter.cs b/src/dotnet_bluez_server/Gatt/BlueZModel/CharacteristicFlagConverter.cs
similarity index 100%
rename from dotnet_ble_server/Gatt/BlueZModel/CharacteristicFlagConverter.cs
rename to src/dotnet_bluez_server/Gatt/BlueZModel/CharacteristicFlagConverter.cs
diff --git a/dotnet_ble_server/Gatt/BlueZModel/GattApplication.cs b/src/dotnet_bluez_server/Gatt/BlueZModel/GattApplication.cs
similarity index 100%
rename from dotnet_ble_server/Gatt/BlueZModel/GattApplication.cs
rename to src/dotnet_bluez_server/Gatt/BlueZModel/GattApplication.cs
diff --git a/dotnet_ble_server/Gatt/BlueZModel/GattCharacteristic.cs b/src/dotnet_bluez_server/Gatt/BlueZModel/GattCharacteristic.cs
similarity index 100%
rename from dotnet_ble_server/Gatt/BlueZModel/GattCharacteristic.cs
rename to src/dotnet_bluez_server/Gatt/BlueZModel/GattCharacteristic.cs
diff --git a/dotnet_ble_server/Gatt/BlueZModel/GattDescriptor.cs b/src/dotnet_bluez_server/Gatt/BlueZModel/GattDescriptor.cs
similarity index 100%
rename from dotnet_ble_server/Gatt/BlueZModel/GattDescriptor.cs
rename to src/dotnet_bluez_server/Gatt/BlueZModel/GattDescriptor.cs
diff --git a/dotnet_ble_server/Gatt/BlueZModel/GattPropertiesFactory.cs b/src/dotnet_bluez_server/Gatt/BlueZModel/GattPropertiesFactory.cs
similarity index 100%
rename from dotnet_ble_server/Gatt/BlueZModel/GattPropertiesFactory.cs
rename to src/dotnet_bluez_server/Gatt/BlueZModel/GattPropertiesFactory.cs
diff --git a/dotnet_ble_server/Gatt/BlueZModel/GattService.cs b/src/dotnet_bluez_server/Gatt/BlueZModel/GattService.cs
similarity index 100%
rename from dotnet_ble_server/Gatt/BlueZModel/GattService.cs
rename to src/dotnet_bluez_server/Gatt/BlueZModel/GattService.cs
diff --git a/dotnet_ble_server/Gatt/Description/CharacteristicFlags.cs b/src/dotnet_bluez_server/Gatt/Description/CharacteristicFlags.cs
similarity index 100%
rename from dotnet_ble_server/Gatt/Description/CharacteristicFlags.cs
rename to src/dotnet_bluez_server/Gatt/Description/CharacteristicFlags.cs
diff --git a/dotnet_ble_server/Gatt/Description/GattApplicationBuilder.cs b/src/dotnet_bluez_server/Gatt/Description/GattApplicationBuilder.cs
similarity index 100%
rename from dotnet_ble_server/Gatt/Description/GattApplicationBuilder.cs
rename to src/dotnet_bluez_server/Gatt/Description/GattApplicationBuilder.cs
diff --git a/dotnet_ble_server/Gatt/Description/GattCharacteristicDescription.cs b/src/dotnet_bluez_server/Gatt/Description/GattCharacteristicDescription.cs
similarity index 100%
rename from dotnet_ble_server/Gatt/Description/GattCharacteristicDescription.cs
rename to src/dotnet_bluez_server/Gatt/Description/GattCharacteristicDescription.cs
diff --git a/dotnet_ble_server/Gatt/Description/GattDescriptorDescription.cs b/src/dotnet_bluez_server/Gatt/Description/GattDescriptorDescription.cs
similarity index 100%
rename from dotnet_ble_server/Gatt/Description/GattDescriptorDescription.cs
rename to src/dotnet_bluez_server/Gatt/Description/GattDescriptorDescription.cs
diff --git a/dotnet_ble_server/Gatt/Description/GattServiceBuilder.cs b/src/dotnet_bluez_server/Gatt/Description/GattServiceBuilder.cs
similarity index 100%
rename from dotnet_ble_server/Gatt/Description/GattServiceBuilder.cs
rename to src/dotnet_bluez_server/Gatt/Description/GattServiceBuilder.cs
diff --git a/dotnet_ble_server/Gatt/Description/GattServiceDescription.cs b/src/dotnet_bluez_server/Gatt/Description/GattServiceDescription.cs
similarity index 100%
rename from dotnet_ble_server/Gatt/Description/GattServiceDescription.cs
rename to src/dotnet_bluez_server/Gatt/Description/GattServiceDescription.cs
diff --git a/dotnet_ble_server/Gatt/GattApplicationManager.cs b/src/dotnet_bluez_server/Gatt/GattApplicationManager.cs
similarity index 100%
rename from dotnet_ble_server/Gatt/GattApplicationManager.cs
rename to src/dotnet_bluez_server/Gatt/GattApplicationManager.cs
diff --git a/dotnet_ble_server/Gatt/ICharacteristicSource.cs b/src/dotnet_bluez_server/Gatt/ICharacteristicSource.cs
similarity index 100%
rename from dotnet_ble_server/Gatt/ICharacteristicSource.cs
rename to src/dotnet_bluez_server/Gatt/ICharacteristicSource.cs
diff --git a/dotnet_ble_server/Utilities/OsUtility.cs b/src/dotnet_bluez_server/Utilities/OsUtility.cs
similarity index 100%
rename from dotnet_ble_server/Utilities/OsUtility.cs
rename to src/dotnet_bluez_server/Utilities/OsUtility.cs
diff --git a/dotnet_ble_server/Utilities/PropertyAccessExtensions.cs b/src/dotnet_bluez_server/Utilities/PropertyAccessExtensions.cs
similarity index 100%
rename from dotnet_ble_server/Utilities/PropertyAccessExtensions.cs
rename to src/dotnet_bluez_server/Utilities/PropertyAccessExtensions.cs
diff --git a/dotnet_ble_server/docs/README.md b/src/dotnet_bluez_server/docs/README.md
similarity index 85%
rename from dotnet_ble_server/docs/README.md
rename to src/dotnet_bluez_server/docs/README.md
index fcb2150..1477847 100644
--- a/dotnet_ble_server/docs/README.md
+++ b/src/dotnet_bluez_server/docs/README.md
@@ -1,6 +1,10 @@
# Overview
.NET BlueZ Server is a powerful library designed to facilitate the creation of Bluetooth Low Energy (BLE) peripherals and efficiently manage centrals on Linux using .NET Core. Leveraging the capabilities of BlueZ under the hood, this library offers a seamless API that preserves the object structure of BlueZ while streamlining D-Bus communication for a more developer-friendly experience.
+ This library builds upon [.NET BLE Server](https://github.com/phylomeno/dotnet-ble-server), introducing specialized methods for handling connected centrals to BLE peripherals.
+
+[![Bluez.NET.Server](https://img.shields.io/nuget/v/Bluez.NET.Server)](https://www.nuget.org/packages/Bluez.NET.Server/)
+
## Key features
- BLE Peripheral Creation
@@ -11,8 +15,10 @@
- Get all paired devices
- Get central object path on Read and Write request
-## Example
+## Examples
+### Demo Example
+Find demo project under /example directory
Create BLE peripheral
@@ -23,7 +29,7 @@ await BleGattApplication.RegisterGattApplication(_CurrentServerContext);
DeviceManager.SetDevicePropertyListenerAsync(_CurrentServerContext, OnDeviceConnectedAsync);
```
-Listen Central property change
+Listen to Central property change
```
private async void OnDeviceConnectedAsync(IDevice1 device, PropertyChanges changes)
@@ -60,13 +66,13 @@ Remove paired device
await DeviceManager.RemoveDeviceAsync(_CurrentServerContext, iDevice);
```
-Get Device from Address
+Get Device from the Address
```
var device = await DeviceManager.GetDeviceAsync(_CurrentServerContext, address);
```
-Get Device from object path
+Get Device from the object path
```
var device = await DeviceManager.GetDeviceByObject(_CurrentServerContext, address);
diff --git a/dotnet_ble_server/dotnetbleserver.csproj b/src/dotnet_bluez_server/dotnetbleserver.csproj
similarity index 100%
rename from dotnet_ble_server/dotnetbleserver.csproj
rename to src/dotnet_bluez_server/dotnetbleserver.csproj
diff --git a/dotnet_ble_server/images/icon.png b/src/dotnet_bluez_server/images/icon.png
similarity index 100%
rename from dotnet_ble_server/images/icon.png
rename to src/dotnet_bluez_server/images/icon.png