diff --git a/ElementGenerator.cs b/ElementGenerator.cs
index fd1d365..be75a8b 100644
--- a/ElementGenerator.cs
+++ b/ElementGenerator.cs
@@ -14,6 +14,7 @@
using Avalonia.Media;
using Avalonia.Styling;
using Avalonia.Controls.Primitives;
+using Avalonia.Media.Imaging;
namespace Xamlade;
@@ -70,6 +71,16 @@ public static void SetDefaultValues(JControl element)
((jTextBlock)element).Foreground = Brushes.White;
}
break;
+ case ControlType.Image:
+ {
+
+ ((jImage)element).Source = new Bitmap("assets/Xamlade.png");
+ ((jImage)element).Width = 400;
+ ((jImage)element).Height = 400;
+ ((jImage)element).jImageSource = @"assets/Xamlade.png";
+ ((jImage)element).Background = Brushes.Blue;
+ }
+ break;
case ControlType.ToggleButton:
{
// ((jTextBlock)element).Background = Brushes.Blue;
diff --git a/MainWindow.axaml b/MainWindow.axaml
index 29e25cb..76533d0 100644
--- a/MainWindow.axaml
+++ b/MainWindow.axaml
@@ -26,6 +26,7 @@
PropertyChanged="StrictModeEnabled_OnPropertyChanged" VerticalAlignment="Center" HorizontalAlignment="Center"
VerticalContentAlignment="Center"/>
+
@@ -55,6 +56,8 @@
Margin="10,0,10,10" />
+
@@ -79,6 +82,7 @@
+
diff --git a/MainWindow.axaml.cs b/MainWindow.axaml.cs
index ab0a49e..28e5e4e 100644
--- a/MainWindow.axaml.cs
+++ b/MainWindow.axaml.cs
@@ -16,6 +16,7 @@
using Avalonia.Controls.Primitives;
using Avalonia.Layout;
using Avalonia.Gif;
+using Avalonia.Media.Imaging;
using AvaloniaColorPicker;
namespace Xamlade;
@@ -194,7 +195,7 @@ private void XAMLIZE(object? sender, RoutedEventArgs? e)
"OpacityMask", "Bounds", "Cursor", "Tag", "ContextFlyout", "ContextMenu", "FocusAdorner", "IsItemsHost",
"Children", "jChildren", "FontFamily", "TextDecoration", "ContentTemplate", "FlowDirection", "Inlines",
"TextLayout",
- "XAMLRating", "XAMLPiece", "CanPaste", "CanUndo"
+ "XAMLRating", "XAMLPiece", "CanPaste", "CanUndo","jImageSource"
};
private void ShowProperties()
@@ -297,7 +298,35 @@ private void OnjControlReleased(object? sender, PointerReleasedEventArgs e)
element.IsPressed = false;
}
-
+ private async void OnChooseImageClick(object? sender, RoutedEventArgs e)
+ {
+ OpenFileDialog dialog = new OpenFileDialog();
+ dialog.Title = "Выберите изображение";
+ dialog.AllowMultiple = false;
+ dialog.Filters.Add(new FileDialogFilter
+ {
+ Name = "Изображения",
+ Extensions = { "png", "jpg", "jpeg", "gif", "bmp" }
+ });
+ Task task = dialog.ShowAsync(this);
+
+ // Дожидаемся завершения задачи (await)
+ string[] result = await task;
+
+ // Обрабатываем результат
+ if (result != null && result.Length > 0)
+ {
+ string fileName = Path.GetFileName(result[0]);
+ string targetFilePath = Path.Combine("assets", fileName);
+ File.Copy(result[0], targetFilePath, true);
+ ((jImage)selectedTreeItem.element).jImageSource = @"assets/" + fileName;
+ ((jImage)selectedTreeItem.element).Source = new Bitmap(((jImage)selectedTreeItem.element).jImageSource);
+ }
+ else
+ {
+ return;
+ }
+ }
private void OnEnumPropertyChanged(object? sender, SelectionChangedEventArgs e)
{
var comboBox = sender as ComboBox;
@@ -413,12 +442,30 @@ private void OnPropertyChanged(object? sender, KeyEventArgs e)
private async void RUN_WINDOW(object? sender, RoutedEventArgs e)
{
+ CopyAssets();
LoadingGif.IsVisible = true;
- await ExecuteLinuxCommandAsync("XamladeDemo/BUILD.sh");
+
+ await ExecuteLinuxCommandAsync(@"XamladeDemo/BUILD.sh");
LoadingGif.IsVisible = false;
- await ExecuteLinuxCommandAsync("XamladeDemo/RUN.sh");
+ await ExecuteLinuxCommandAsync(@"XamladeDemo/RUN.sh");
}
+
+ public static void CopyAssets()
+ {
+ string[] files = Directory.GetFiles(@"assets");
+ string targetDirectory = @"XamladeDemo/assets";
+ if (!Directory.Exists(targetDirectory))
+ {
+ Directory.CreateDirectory(targetDirectory);
+ }
+ foreach (string file in files)
+ {
+ string fileName = Path.GetFileName(file);
+ string destFile = Path.Combine(targetDirectory, fileName);
+ File.Copy(file, destFile, true);
+ }
+ }
public static async Task ExecuteLinuxCommandAsync(string command)
{
using (Process process = new Process())
@@ -448,4 +495,6 @@ public static async Task ExecuteLinuxCommandAsync(string command)
private void DEBUG(object? sender, RoutedEventArgs e)
{
}
+
+
}
\ No newline at end of file
diff --git a/Miscellaneous.cs b/Miscellaneous.cs
index 8b2bca6..80cbf90 100644
--- a/Miscellaneous.cs
+++ b/Miscellaneous.cs
@@ -6,6 +6,7 @@
using Avalonia.Data;
using Avalonia.Layout;
using Avalonia.Media;
+using Avalonia.Media.Imaging;
using AvaloniaColorPicker;
namespace Xamlade;
@@ -134,6 +135,22 @@ public void AddPropItem(string name, object? value,Type type)
DockPanel.SetDock(_propElement, Dock.Right);
dockPanel.Children.Add(_propElement);
+ }
+ else if ( type == typeof(IImage))
+ {
+ var _propElement = new Button();
+ _propElement.Content = "Выбрать";
+ _propElement.HorizontalAlignment = HorizontalAlignment.Right;
+ _propElement.Foreground = GetColor("#88F1FF");
+ _propElement.FontWeight = FontWeight.DemiBold;
+ _propElement.HorizontalContentAlignment = HorizontalAlignment.Right;
+ _propElement.VerticalAlignment = VerticalAlignment.Center;
+ _propElement.VerticalContentAlignment = VerticalAlignment.Bottom;
+ _propElement.Margin = new Thickness(5, 0, 0, 0);
+ _propElement.Click += OnChooseImageClick;
+ DockPanel.SetDock(_propElement, Dock.Right);
+ dockPanel.Children.Add(_propElement);
+
}
else
{
diff --git a/XAMLGenerator.cs b/XAMLGenerator.cs
index 683f174..0a571b1 100644
--- a/XAMLGenerator.cs
+++ b/XAMLGenerator.cs
@@ -28,10 +28,15 @@ public static string GetProperties(JControl element)
foreach (var prop in props)
{
if((element.Name == "MainCanvas") && prop.Name is "Width" or "Height") continue;
- if(!MainWindow.ExcludedWords.Contains(prop.Name))
- if(prop.GetValue(element)?.ToString() != prop.GetValue(DefaultObject)?.ToString()
- && prop.GetValue(element)!=null)
- getProperties+=($"{prop.Name}=\"{prop.GetValue(element)}\" ");
+ if (!MainWindow.ExcludedWords.Contains(prop.Name))
+ {
+ if (prop.Name == "Source")
+ getProperties += ($"{prop.Name}=\"{((jImage)element).jImageSource}\" ");
+ else if (prop.Name == "Background" && element is jImage) continue;
+ else if (prop.GetValue(element)?.ToString() != prop.GetValue(DefaultObject)?.ToString()
+ && prop.GetValue(element) != null)
+ getProperties += ($"{prop.Name}=\"{prop.GetValue(element)}\" ");
+ }
}
if (element.Name == "MainCanvas")
diff --git a/Xamlade.csproj b/Xamlade.csproj
index 16f55a0..d3e503c 100644
--- a/Xamlade.csproj
+++ b/Xamlade.csproj
@@ -64,6 +64,21 @@
Avalonia.GIF\Avalonia.Gif.dll
+
+
+
+
+ PreserveNewest
+
+
+
+
+
+
+
+
+
+
diff --git a/bin/Debug/net7.0/Avalonia.Base.dll b/bin/Debug/net7.0/Avalonia.Base.dll
deleted file mode 100755
index c26dd3d..0000000
Binary files a/bin/Debug/net7.0/Avalonia.Base.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/Avalonia.Controls.ColorPicker.dll b/bin/Debug/net7.0/Avalonia.Controls.ColorPicker.dll
deleted file mode 100755
index 81e9fa9..0000000
Binary files a/bin/Debug/net7.0/Avalonia.Controls.ColorPicker.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/Avalonia.Controls.DataGrid.dll b/bin/Debug/net7.0/Avalonia.Controls.DataGrid.dll
deleted file mode 100755
index d44b987..0000000
Binary files a/bin/Debug/net7.0/Avalonia.Controls.DataGrid.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/Avalonia.Controls.dll b/bin/Debug/net7.0/Avalonia.Controls.dll
deleted file mode 100755
index e1c975a..0000000
Binary files a/bin/Debug/net7.0/Avalonia.Controls.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/Avalonia.DesignerSupport.dll b/bin/Debug/net7.0/Avalonia.DesignerSupport.dll
deleted file mode 100755
index f7621ee..0000000
Binary files a/bin/Debug/net7.0/Avalonia.DesignerSupport.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/Avalonia.Desktop.dll b/bin/Debug/net7.0/Avalonia.Desktop.dll
deleted file mode 100755
index 3df7add..0000000
Binary files a/bin/Debug/net7.0/Avalonia.Desktop.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/Avalonia.Diagnostics.dll b/bin/Debug/net7.0/Avalonia.Diagnostics.dll
deleted file mode 100755
index 2d942c2..0000000
Binary files a/bin/Debug/net7.0/Avalonia.Diagnostics.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/Avalonia.Dialogs.dll b/bin/Debug/net7.0/Avalonia.Dialogs.dll
deleted file mode 100755
index 2c5af4d..0000000
Binary files a/bin/Debug/net7.0/Avalonia.Dialogs.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/Avalonia.Fonts.Inter.dll b/bin/Debug/net7.0/Avalonia.Fonts.Inter.dll
deleted file mode 100755
index aa260f4..0000000
Binary files a/bin/Debug/net7.0/Avalonia.Fonts.Inter.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/Avalonia.FreeDesktop.dll b/bin/Debug/net7.0/Avalonia.FreeDesktop.dll
deleted file mode 100755
index fbc7674..0000000
Binary files a/bin/Debug/net7.0/Avalonia.FreeDesktop.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/Avalonia.Markup.Xaml.dll b/bin/Debug/net7.0/Avalonia.Markup.Xaml.dll
deleted file mode 100755
index cd9dfed..0000000
Binary files a/bin/Debug/net7.0/Avalonia.Markup.Xaml.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/Avalonia.Markup.dll b/bin/Debug/net7.0/Avalonia.Markup.dll
deleted file mode 100755
index f805945..0000000
Binary files a/bin/Debug/net7.0/Avalonia.Markup.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/Avalonia.Metal.dll b/bin/Debug/net7.0/Avalonia.Metal.dll
deleted file mode 100755
index b0f0d2d..0000000
Binary files a/bin/Debug/net7.0/Avalonia.Metal.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/Avalonia.MicroCom.dll b/bin/Debug/net7.0/Avalonia.MicroCom.dll
deleted file mode 100755
index 3a69d60..0000000
Binary files a/bin/Debug/net7.0/Avalonia.MicroCom.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/Avalonia.Native.dll b/bin/Debug/net7.0/Avalonia.Native.dll
deleted file mode 100755
index dcec5a7..0000000
Binary files a/bin/Debug/net7.0/Avalonia.Native.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/Avalonia.OpenGL.dll b/bin/Debug/net7.0/Avalonia.OpenGL.dll
deleted file mode 100755
index 1f4c255..0000000
Binary files a/bin/Debug/net7.0/Avalonia.OpenGL.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/Avalonia.Remote.Protocol.dll b/bin/Debug/net7.0/Avalonia.Remote.Protocol.dll
deleted file mode 100755
index d340b20..0000000
Binary files a/bin/Debug/net7.0/Avalonia.Remote.Protocol.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/Avalonia.Skia.dll b/bin/Debug/net7.0/Avalonia.Skia.dll
deleted file mode 100755
index 74dcf34..0000000
Binary files a/bin/Debug/net7.0/Avalonia.Skia.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/Avalonia.Themes.Fluent.dll b/bin/Debug/net7.0/Avalonia.Themes.Fluent.dll
deleted file mode 100755
index 25a68ae..0000000
Binary files a/bin/Debug/net7.0/Avalonia.Themes.Fluent.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/Avalonia.Themes.Simple.dll b/bin/Debug/net7.0/Avalonia.Themes.Simple.dll
deleted file mode 100755
index 455ca54..0000000
Binary files a/bin/Debug/net7.0/Avalonia.Themes.Simple.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/Avalonia.Win32.dll b/bin/Debug/net7.0/Avalonia.Win32.dll
deleted file mode 100755
index 733d72d..0000000
Binary files a/bin/Debug/net7.0/Avalonia.Win32.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/Avalonia.X11.dll b/bin/Debug/net7.0/Avalonia.X11.dll
deleted file mode 100755
index 8add9b5..0000000
Binary files a/bin/Debug/net7.0/Avalonia.X11.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/Avalonia.dll b/bin/Debug/net7.0/Avalonia.dll
deleted file mode 100755
index dee97b6..0000000
Binary files a/bin/Debug/net7.0/Avalonia.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/HarfBuzzSharp.dll b/bin/Debug/net7.0/HarfBuzzSharp.dll
deleted file mode 100755
index 4b59181..0000000
Binary files a/bin/Debug/net7.0/HarfBuzzSharp.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/Material.Avalonia.dll b/bin/Debug/net7.0/Material.Avalonia.dll
deleted file mode 100755
index e5de621..0000000
Binary files a/bin/Debug/net7.0/Material.Avalonia.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/Material.Colors.dll b/bin/Debug/net7.0/Material.Colors.dll
deleted file mode 100755
index 93f6894..0000000
Binary files a/bin/Debug/net7.0/Material.Colors.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/Material.Ripple.dll b/bin/Debug/net7.0/Material.Ripple.dll
deleted file mode 100755
index b4d0b58..0000000
Binary files a/bin/Debug/net7.0/Material.Ripple.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/Material.Styles.dll b/bin/Debug/net7.0/Material.Styles.dll
deleted file mode 100755
index 07f54db..0000000
Binary files a/bin/Debug/net7.0/Material.Styles.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/MicroCom.Runtime.dll b/bin/Debug/net7.0/MicroCom.Runtime.dll
deleted file mode 100755
index f6cf008..0000000
Binary files a/bin/Debug/net7.0/MicroCom.Runtime.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll b/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll
deleted file mode 100755
index 4fc11e1..0000000
Binary files a/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.Scripting.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.dll b/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.dll
deleted file mode 100755
index f8c3571..0000000
Binary files a/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/Microsoft.CodeAnalysis.Scripting.dll b/bin/Debug/net7.0/Microsoft.CodeAnalysis.Scripting.dll
deleted file mode 100755
index 01846bf..0000000
Binary files a/bin/Debug/net7.0/Microsoft.CodeAnalysis.Scripting.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/Microsoft.CodeAnalysis.dll b/bin/Debug/net7.0/Microsoft.CodeAnalysis.dll
deleted file mode 100755
index 100c075..0000000
Binary files a/bin/Debug/net7.0/Microsoft.CodeAnalysis.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/Microsoft.Win32.SystemEvents.dll b/bin/Debug/net7.0/Microsoft.Win32.SystemEvents.dll
deleted file mode 100755
index 3ab5850..0000000
Binary files a/bin/Debug/net7.0/Microsoft.Win32.SystemEvents.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/SkiaSharp.dll b/bin/Debug/net7.0/SkiaSharp.dll
deleted file mode 100755
index be13cf5..0000000
Binary files a/bin/Debug/net7.0/SkiaSharp.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/System.Drawing.Common.dll b/bin/Debug/net7.0/System.Drawing.Common.dll
deleted file mode 100755
index be6915e..0000000
Binary files a/bin/Debug/net7.0/System.Drawing.Common.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/System.IO.Pipelines.dll b/bin/Debug/net7.0/System.IO.Pipelines.dll
deleted file mode 100755
index 4f5306a..0000000
Binary files a/bin/Debug/net7.0/System.IO.Pipelines.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/System.Reactive.dll b/bin/Debug/net7.0/System.Reactive.dll
deleted file mode 100755
index f179765..0000000
Binary files a/bin/Debug/net7.0/System.Reactive.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/Tmds.DBus.Protocol.dll b/bin/Debug/net7.0/Tmds.DBus.Protocol.dll
deleted file mode 100755
index d06b276..0000000
Binary files a/bin/Debug/net7.0/Tmds.DBus.Protocol.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/Xamlade b/bin/Debug/net7.0/Xamlade
deleted file mode 100755
index 6a2d7d7..0000000
Binary files a/bin/Debug/net7.0/Xamlade and /dev/null differ
diff --git a/bin/Debug/net7.0/Xamlade.deps.json b/bin/Debug/net7.0/Xamlade.deps.json
deleted file mode 100644
index ad3efff..0000000
--- a/bin/Debug/net7.0/Xamlade.deps.json
+++ /dev/null
@@ -1,1464 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v7.0",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v7.0": {
- "Xamlade/1.0.0": {
- "dependencies": {
- "Avalonia": "11.0.5",
- "Avalonia.Desktop": "11.0.5",
- "Avalonia.Diagnostics": "11.0.5",
- "Avalonia.Fonts.Inter": "11.0.5",
- "Avalonia.Themes.Fluent": "11.0.5",
- "Material.Avalonia": "3.0.2"
- },
- "runtime": {
- "Xamlade.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.Fonts.Inter/11.0.5": {
- "dependencies": {
- "Avalonia": "11.0.5"
- },
- "runtime": {
- "lib/net6.0/Avalonia.Fonts.Inter.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"
- }
- }
- },
- "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"
- }
- }
- },
- "Material.Avalonia/3.0.2": {
- "dependencies": {
- "Avalonia": "11.0.5",
- "System.Reactive": "6.0.0"
- },
- "runtime": {
- "lib/netstandard2.0/Material.Avalonia.dll": {
- "assemblyVersion": "3.0.2.0",
- "fileVersion": "3.0.2.0"
- },
- "lib/netstandard2.0/Material.Colors.dll": {
- "assemblyVersion": "3.0.2.0",
- "fileVersion": "3.0.2.0"
- },
- "lib/netstandard2.0/Material.Ripple.dll": {
- "assemblyVersion": "3.0.2.0",
- "fileVersion": "3.0.2.0"
- },
- "lib/netstandard2.0/Material.Styles.dll": {
- "assemblyVersion": "3.0.2.0",
- "fileVersion": "3.0.2.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.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"
- }
- }
- }
- }
- },
- "libraries": {
- "Xamlade/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.Fonts.Inter/11.0.5": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-ZvEYK9+U1S13Mu02qtfo/Xi30xsXa7QkeAyKr+FDCxSogJjugywXFe+pdRJMQIrPupp6oQuPVM0YSJqn3+apvg==",
- "path": "avalonia.fonts.inter/11.0.5",
- "hashPath": "avalonia.fonts.inter.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"
- },
- "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"
- },
- "Material.Avalonia/3.0.2": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Ae+wjMEAyWz2ajdd0DaRFlCMobiNcQDlhlcA7l5Y51s+ksT+Vl9Q0euG9m7clrq0WHzqGKiryXJnlFA0743PTQ==",
- "path": "material.avalonia/3.0.2",
- "hashPath": "material.avalonia.3.0.2.nupkg.sha512"
- },
- "MicroCom.Runtime/0.11.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-MEnrZ3UIiH40hjzMDsxrTyi8dtqB5ziv3iBeeU4bXsL/7NLSal9F1lZKpK+tfBRnUoDSdtcW3KufE4yhATOMCA==",
- "path": "microcom.runtime/0.11.0",
- "hashPath": "microcom.runtime.0.11.0.nupkg.sha512"
- },
- "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.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"
- }
- }
-}
\ No newline at end of file
diff --git a/bin/Debug/net7.0/Xamlade.dll b/bin/Debug/net7.0/Xamlade.dll
deleted file mode 100644
index c55cb50..0000000
Binary files a/bin/Debug/net7.0/Xamlade.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/Xamlade.pdb b/bin/Debug/net7.0/Xamlade.pdb
deleted file mode 100644
index 1f8846e..0000000
Binary files a/bin/Debug/net7.0/Xamlade.pdb and /dev/null differ
diff --git a/bin/Debug/net7.0/Xamlade.runtimeconfig.json b/bin/Debug/net7.0/Xamlade.runtimeconfig.json
deleted file mode 100644
index 86afe19..0000000
--- a/bin/Debug/net7.0/Xamlade.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/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index a04b38a..0000000
Binary files a/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index 5a0f170..0000000
Binary files a/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 7cec0a7..0000000
Binary files a/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index 68773e2..0000000
Binary files a/bin/Debug/net7.0/cs/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index a1ae0ce..0000000
Binary files a/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index d1e20eb..0000000
Binary files a/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 2af4c27..0000000
Binary files a/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index 75a21b2..0000000
Binary files a/bin/Debug/net7.0/de/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index 0b3479f..0000000
Binary files a/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index 992d598..0000000
Binary files a/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index a733359..0000000
Binary files a/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index 4e8fb46..0000000
Binary files a/bin/Debug/net7.0/es/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index f047d59..0000000
Binary files a/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index 82065be..0000000
Binary files a/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 8e6fff8..0000000
Binary files a/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index d7c9296..0000000
Binary files a/bin/Debug/net7.0/fr/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index 6f14d3f..0000000
Binary files a/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index 31be39a..0000000
Binary files a/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 5b65759..0000000
Binary files a/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index 81a7359..0000000
Binary files a/bin/Debug/net7.0/it/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index 5e73f0b..0000000
Binary files a/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index c32eea7..0000000
Binary files a/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 6568482..0000000
Binary files a/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index 48c0690..0000000
Binary files a/bin/Debug/net7.0/ja/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index 2b77647..0000000
Binary files a/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index 86283a8..0000000
Binary files a/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index a911604..0000000
Binary files a/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index da54c73..0000000
Binary files a/bin/Debug/net7.0/ko/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index 490d689..0000000
Binary files a/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index 2975c06..0000000
Binary files a/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 924661b..0000000
Binary files a/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index 1143bbb..0000000
Binary files a/bin/Debug/net7.0/pl/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index 37317cd..0000000
Binary files a/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index ea85069..0000000
Binary files a/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 344329c..0000000
Binary files a/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index bd8c65b..0000000
Binary files a/bin/Debug/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index b39fba2..0000000
Binary files a/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index ee28c62..0000000
Binary files a/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 672bcfa..0000000
Binary files a/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index c94e3b3..0000000
Binary files a/bin/Debug/net7.0/ru/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/runtimes/linux-arm/native/libHarfBuzzSharp.so b/bin/Debug/net7.0/runtimes/linux-arm/native/libHarfBuzzSharp.so
deleted file mode 100755
index 3979c3a..0000000
Binary files a/bin/Debug/net7.0/runtimes/linux-arm/native/libHarfBuzzSharp.so and /dev/null differ
diff --git a/bin/Debug/net7.0/runtimes/linux-arm/native/libSkiaSharp.so b/bin/Debug/net7.0/runtimes/linux-arm/native/libSkiaSharp.so
deleted file mode 100755
index b80d89b..0000000
Binary files a/bin/Debug/net7.0/runtimes/linux-arm/native/libSkiaSharp.so and /dev/null differ
diff --git a/bin/Debug/net7.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so b/bin/Debug/net7.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so
deleted file mode 100755
index 467b57d..0000000
Binary files a/bin/Debug/net7.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so and /dev/null differ
diff --git a/bin/Debug/net7.0/runtimes/linux-arm64/native/libSkiaSharp.so b/bin/Debug/net7.0/runtimes/linux-arm64/native/libSkiaSharp.so
deleted file mode 100755
index 7e9f727..0000000
Binary files a/bin/Debug/net7.0/runtimes/linux-arm64/native/libSkiaSharp.so and /dev/null differ
diff --git a/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so b/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so
deleted file mode 100755
index f43631e..0000000
Binary files a/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so and /dev/null differ
diff --git a/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libSkiaSharp.so b/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libSkiaSharp.so
deleted file mode 100755
index d446390..0000000
Binary files a/bin/Debug/net7.0/runtimes/linux-musl-x64/native/libSkiaSharp.so and /dev/null differ
diff --git a/bin/Debug/net7.0/runtimes/linux-x64/native/libHarfBuzzSharp.so b/bin/Debug/net7.0/runtimes/linux-x64/native/libHarfBuzzSharp.so
deleted file mode 100755
index b5b79fe..0000000
Binary files a/bin/Debug/net7.0/runtimes/linux-x64/native/libHarfBuzzSharp.so and /dev/null differ
diff --git a/bin/Debug/net7.0/runtimes/linux-x64/native/libSkiaSharp.so b/bin/Debug/net7.0/runtimes/linux-x64/native/libSkiaSharp.so
deleted file mode 100755
index 12291ca..0000000
Binary files a/bin/Debug/net7.0/runtimes/linux-x64/native/libSkiaSharp.so and /dev/null differ
diff --git a/bin/Debug/net7.0/runtimes/osx/native/libAvaloniaNative.dylib b/bin/Debug/net7.0/runtimes/osx/native/libAvaloniaNative.dylib
deleted file mode 100755
index a3f69b1..0000000
Binary files a/bin/Debug/net7.0/runtimes/osx/native/libAvaloniaNative.dylib and /dev/null differ
diff --git a/bin/Debug/net7.0/runtimes/osx/native/libHarfBuzzSharp.dylib b/bin/Debug/net7.0/runtimes/osx/native/libHarfBuzzSharp.dylib
deleted file mode 100755
index 16a1ad7..0000000
Binary files a/bin/Debug/net7.0/runtimes/osx/native/libHarfBuzzSharp.dylib and /dev/null differ
diff --git a/bin/Debug/net7.0/runtimes/osx/native/libSkiaSharp.dylib b/bin/Debug/net7.0/runtimes/osx/native/libSkiaSharp.dylib
deleted file mode 100755
index 059af87..0000000
Binary files a/bin/Debug/net7.0/runtimes/osx/native/libSkiaSharp.dylib and /dev/null differ
diff --git a/bin/Debug/net7.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll b/bin/Debug/net7.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll
deleted file mode 100755
index 9e26473..0000000
Binary files a/bin/Debug/net7.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/runtimes/win-arm64/native/av_libglesv2.dll b/bin/Debug/net7.0/runtimes/win-arm64/native/av_libglesv2.dll
deleted file mode 100755
index 51f4008..0000000
Binary files a/bin/Debug/net7.0/runtimes/win-arm64/native/av_libglesv2.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll b/bin/Debug/net7.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll
deleted file mode 100755
index 616d1cc..0000000
Binary files a/bin/Debug/net7.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/runtimes/win-arm64/native/libSkiaSharp.dll b/bin/Debug/net7.0/runtimes/win-arm64/native/libSkiaSharp.dll
deleted file mode 100755
index cf0689e..0000000
Binary files a/bin/Debug/net7.0/runtimes/win-arm64/native/libSkiaSharp.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/runtimes/win-x64/native/av_libglesv2.dll b/bin/Debug/net7.0/runtimes/win-x64/native/av_libglesv2.dll
deleted file mode 100755
index 7d94daf..0000000
Binary files a/bin/Debug/net7.0/runtimes/win-x64/native/av_libglesv2.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/runtimes/win-x64/native/libHarfBuzzSharp.dll b/bin/Debug/net7.0/runtimes/win-x64/native/libHarfBuzzSharp.dll
deleted file mode 100755
index 8031110..0000000
Binary files a/bin/Debug/net7.0/runtimes/win-x64/native/libHarfBuzzSharp.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/runtimes/win-x64/native/libSkiaSharp.dll b/bin/Debug/net7.0/runtimes/win-x64/native/libSkiaSharp.dll
deleted file mode 100755
index 1f3f7e3..0000000
Binary files a/bin/Debug/net7.0/runtimes/win-x64/native/libSkiaSharp.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/runtimes/win-x86/native/av_libglesv2.dll b/bin/Debug/net7.0/runtimes/win-x86/native/av_libglesv2.dll
deleted file mode 100755
index 473c2c5..0000000
Binary files a/bin/Debug/net7.0/runtimes/win-x86/native/av_libglesv2.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/runtimes/win-x86/native/libHarfBuzzSharp.dll b/bin/Debug/net7.0/runtimes/win-x86/native/libHarfBuzzSharp.dll
deleted file mode 100755
index 71f6711..0000000
Binary files a/bin/Debug/net7.0/runtimes/win-x86/native/libHarfBuzzSharp.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/runtimes/win-x86/native/libSkiaSharp.dll b/bin/Debug/net7.0/runtimes/win-x86/native/libSkiaSharp.dll
deleted file mode 100755
index 5736b4e..0000000
Binary files a/bin/Debug/net7.0/runtimes/win-x86/native/libSkiaSharp.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll b/bin/Debug/net7.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll
deleted file mode 100755
index 66af198..0000000
Binary files a/bin/Debug/net7.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll b/bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll
deleted file mode 100755
index 7c9e87b..0000000
Binary files a/bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index 8c4ed03..0000000
Binary files a/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index 622709a..0000000
Binary files a/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 114df89..0000000
Binary files a/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index 2bc270d..0000000
Binary files a/bin/Debug/net7.0/tr/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index 1efa7c5..0000000
Binary files a/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index a4cbbfc..0000000
Binary files a/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 59d21cb..0000000
Binary files a/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index 8bac9f0..0000000
Binary files a/bin/Debug/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll b/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll
deleted file mode 100755
index f25b9ec..0000000
Binary files a/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Scripting.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll
deleted file mode 100755
index 8bb283f..0000000
Binary files a/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll b/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll
deleted file mode 100755
index 8694ff4..0000000
Binary files a/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll and /dev/null differ
diff --git a/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll
deleted file mode 100755
index fd9dff3..0000000
Binary files a/bin/Debug/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll and /dev/null differ
diff --git a/bin/Debug/net8.0/Xamlade.dll b/bin/Debug/net8.0/Xamlade.dll
index 6b94dbf..3ca2519 100644
Binary files a/bin/Debug/net8.0/Xamlade.dll and b/bin/Debug/net8.0/Xamlade.dll differ
diff --git a/bin/Debug/net8.0/Xamlade.pdb b/bin/Debug/net8.0/Xamlade.pdb
index 6bc9c6e..0f2158a 100644
Binary files a/bin/Debug/net8.0/Xamlade.pdb and b/bin/Debug/net8.0/Xamlade.pdb differ
diff --git a/bin/Debug/net8.0/XamladeDemo/MainWindow.axaml b/bin/Debug/net8.0/XamladeDemo/MainWindow.axaml
index 464aaaf..4cf3309 100644
--- a/bin/Debug/net8.0/XamladeDemo/MainWindow.axaml
+++ b/bin/Debug/net8.0/XamladeDemo/MainWindow.axaml
@@ -7,17 +7,7 @@
Title="TestWindow">
diff --git a/bin/Debug/net8.0/XamladeDemo/XamladeDemo.csproj b/bin/Debug/net8.0/XamladeDemo/XamladeDemo.csproj
index 96faadb..8ab02d8 100644
--- a/bin/Debug/net8.0/XamladeDemo/XamladeDemo.csproj
+++ b/bin/Debug/net8.0/XamladeDemo/XamladeDemo.csproj
@@ -17,4 +17,21 @@
+
+
+
+
+ PreserveNewest
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/jElement.cs b/jElement.cs
index a9ed484..6dad96a 100644
--- a/jElement.cs
+++ b/jElement.cs
@@ -41,7 +41,8 @@ public enum ControlType
Slider,
TextBox,
ToggleButton,
- TextBlock
+ TextBlock,
+ Image
}
@@ -188,6 +189,34 @@ private void XAMLize(int mode)
}
+public class jImage : Image, JControl
+{
+ protected override Type StyleKeyOverride => typeof(Image);
+ public jImage()
+ {
+ Broadcast.OnBroadcast += XAMLize;
+ XAMLPiece = new List();
+ }
+ public IChildContainer? jParent { get; set; }
+ private ControlType controlType => ControlType.Image;
+ public object Type => controlType;
+ public mTreeViewItem? mTreeItem { get; set; }
+ public int XAMLRating { get; set; }
+ public List XAMLPiece { get; set; }
+ public IBrush? Background { get; set; }
+ public bool IsPressed { get; set; }
+ public event EventHandler? Click;
+
+ public string? jImageSource { get; set; }
+
+ private void XAMLize(int mode)
+ {
+ if(mode == 0) XAMLGenerator.XAMLRatingInit(this);
+ else if (mode == 1) XAMLGenerator.XAMLize(this);
+ }
+}
+
+
public class jToggleButton : ToggleButton, JControl
{
protected override Type StyleKeyOverride => typeof(ToggleButton);