commit 32b5507370955b02c038ba2fe64cefb655a70d0a Author: Alex Date: Tue Feb 11 16:24:30 2025 +0300 init diff --git a/.idea/.idea.demo_hard.dir/.idea/.gitignore b/.idea/.idea.demo_hard.dir/.idea/.gitignore new file mode 100644 index 0000000..886a7c5 --- /dev/null +++ b/.idea/.idea.demo_hard.dir/.idea/.gitignore @@ -0,0 +1,13 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Rider ignored files +/contentModel.xml +/modules.xml +/.idea.demo_hard.iml +/projectSettingsUpdater.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/.idea.demo_hard.dir/.idea/encodings.xml b/.idea/.idea.demo_hard.dir/.idea/encodings.xml new file mode 100644 index 0000000..df87cf9 --- /dev/null +++ b/.idea/.idea.demo_hard.dir/.idea/encodings.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/.idea.demo_hard.dir/.idea/indexLayout.xml b/.idea/.idea.demo_hard.dir/.idea/indexLayout.xml new file mode 100644 index 0000000..7b08163 --- /dev/null +++ b/.idea/.idea.demo_hard.dir/.idea/indexLayout.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/.idea.demo_hard.dir/.idea/vcs.xml b/.idea/.idea.demo_hard.dir/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/.idea.demo_hard.dir/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/App.axaml b/App.axaml new file mode 100644 index 0000000..6c873ab --- /dev/null +++ b/App.axaml @@ -0,0 +1,10 @@ + + + + + + + \ No newline at end of file diff --git a/App.axaml.cs b/App.axaml.cs new file mode 100644 index 0000000..6548ec4 --- /dev/null +++ b/App.axaml.cs @@ -0,0 +1,23 @@ +using Avalonia; +using Avalonia.Controls.ApplicationLifetimes; +using Avalonia.Markup.Xaml; + +namespace demo_hard; + +public partial class App : Application +{ + public override void Initialize() + { + AvaloniaXamlLoader.Load(this); + } + + public override void OnFrameworkInitializationCompleted() + { + if (ApplicationLifetime is IClassicDesktopStyleApplicationLifetime desktop) + { + desktop.MainWindow = new MainWindow(); + } + + base.OnFrameworkInitializationCompleted(); + } +} \ No newline at end of file diff --git a/EnterHistoryWindow.axaml b/EnterHistoryWindow.axaml new file mode 100644 index 0000000..6bde9cd --- /dev/null +++ b/EnterHistoryWindow.axaml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/EnterHistoryWindow.axaml.cs b/EnterHistoryWindow.axaml.cs new file mode 100644 index 0000000..ba69610 --- /dev/null +++ b/EnterHistoryWindow.axaml.cs @@ -0,0 +1,81 @@ +using System; +using System.Collections.Generic; +using System.Collections.ObjectModel; +using System.Linq; +using Avalonia.Controls; +using Avalonia.Interactivity; +using demo_hard.Models; + +namespace demo_hard; + +public partial class EnterHistoryWindow : Window +{ + private ObservableCollection lastEnter = new(); + public List dataLastEnter; + public bool sort = true; + public EnterHistoryWindow() + { + InitializeComponent(); + using var context = new User2Context(); + + + dataLastEnter = context.LastEnters.Select(it => new LastEnter + { + EmployeId = it.EmployeId, + EnterDatetime = it.EnterDatetime, + EnterType = it.EnterType, + Login = it.Login + }).ToList(); + + foreach (var newlastEnter in dataLastEnter) + { + lastEnter.Add(newlastEnter); + } + lastEnters.ItemsSource = lastEnter; + LoginComboBox.ItemsSource = dataLastEnter.Select(it => it.Login); + SortLogin(); + } + + private void SortLogin() + { + var temp = dataLastEnter; + if (LoginComboBox.SelectedItem is String login) + { + temp = temp.Where(it => it.Login == login).ToList(); + } + temp=sort ? temp.OrderBy(it => it.Login).ToList() : temp.OrderByDescending(it => it.Login).ToList(); + + lastEnter.Clear(); + foreach (var userlogin in temp) + { + lastEnter.Add(userlogin); + } + } + + private void LoginComboBox_OnSelectionChanged(object? sender, SelectionChangedEventArgs e) + { + sort=!sort; + SortLogin(); + } + + private void Button_Asc(object? sender, RoutedEventArgs e) + { + var sortedList = dataLastEnter.OrderBy(it => it.EnterDatetime).ToList(); + lastEnter.Clear(); + foreach (var item in sortedList) + { + lastEnter.Add(item); + } + } + + + private void Button_Desc(object? sender, RoutedEventArgs e) + { + var sortedList = dataLastEnter.OrderByDescending(it => it.EnterDatetime).ToList(); + lastEnter.Clear(); + foreach (var descList in sortedList) + { + lastEnter.Add(descList); + } + } +} \ No newline at end of file diff --git a/FunctionWindow.axaml b/FunctionWindow.axaml new file mode 100644 index 0000000..2b0f2f9 --- /dev/null +++ b/FunctionWindow.axaml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/SallerWindow.axaml.cs b/SallerWindow.axaml.cs new file mode 100644 index 0000000..829990d --- /dev/null +++ b/SallerWindow.axaml.cs @@ -0,0 +1,26 @@ +using System.IO; +using System.Threading.Tasks; +using Avalonia; +using Avalonia.Controls; +using Avalonia.Interactivity; +using Avalonia.Markup.Xaml; +using Avalonia.Svg.Skia; +using Npgsql; +using ZXing; +using ZXing.Rendering; + +namespace demo_hard; + +public partial class SallerWindow : Window +{ + public SallerWindow() + { + InitializeComponent(); + } + + private void EnterHistory_OnClick(object? sender, RoutedEventArgs e) + { + var lastEnter = new EnterHistoryWindow(); + lastEnter.ShowDialog(this); + } +} \ No newline at end of file diff --git a/app.manifest b/app.manifest new file mode 100644 index 0000000..d1ab9b6 --- /dev/null +++ b/app.manifest @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + diff --git a/bin/Debug/net8.0/Avalonia.Base.dll b/bin/Debug/net8.0/Avalonia.Base.dll new file mode 100644 index 0000000..f216543 Binary files /dev/null and b/bin/Debug/net8.0/Avalonia.Base.dll differ diff --git a/bin/Debug/net8.0/Avalonia.Controls.ColorPicker.dll b/bin/Debug/net8.0/Avalonia.Controls.ColorPicker.dll new file mode 100644 index 0000000..f4f145f Binary files /dev/null and b/bin/Debug/net8.0/Avalonia.Controls.ColorPicker.dll differ diff --git a/bin/Debug/net8.0/Avalonia.Controls.DataGrid.dll b/bin/Debug/net8.0/Avalonia.Controls.DataGrid.dll new file mode 100644 index 0000000..81a66c8 Binary files /dev/null and b/bin/Debug/net8.0/Avalonia.Controls.DataGrid.dll differ diff --git a/bin/Debug/net8.0/Avalonia.Controls.dll b/bin/Debug/net8.0/Avalonia.Controls.dll new file mode 100644 index 0000000..186b134 Binary files /dev/null and b/bin/Debug/net8.0/Avalonia.Controls.dll differ diff --git a/bin/Debug/net8.0/Avalonia.DesignerSupport.dll b/bin/Debug/net8.0/Avalonia.DesignerSupport.dll new file mode 100644 index 0000000..fa4445c Binary files /dev/null and b/bin/Debug/net8.0/Avalonia.DesignerSupport.dll differ diff --git a/bin/Debug/net8.0/Avalonia.Desktop.dll b/bin/Debug/net8.0/Avalonia.Desktop.dll new file mode 100644 index 0000000..9845e25 Binary files /dev/null and b/bin/Debug/net8.0/Avalonia.Desktop.dll differ diff --git a/bin/Debug/net8.0/Avalonia.Diagnostics.dll b/bin/Debug/net8.0/Avalonia.Diagnostics.dll new file mode 100644 index 0000000..01e7dd7 Binary files /dev/null and b/bin/Debug/net8.0/Avalonia.Diagnostics.dll differ diff --git a/bin/Debug/net8.0/Avalonia.Dialogs.dll b/bin/Debug/net8.0/Avalonia.Dialogs.dll new file mode 100644 index 0000000..62cd00b Binary files /dev/null and b/bin/Debug/net8.0/Avalonia.Dialogs.dll differ diff --git a/bin/Debug/net8.0/Avalonia.Fonts.Inter.dll b/bin/Debug/net8.0/Avalonia.Fonts.Inter.dll new file mode 100644 index 0000000..d98be10 Binary files /dev/null and b/bin/Debug/net8.0/Avalonia.Fonts.Inter.dll differ diff --git a/bin/Debug/net8.0/Avalonia.FreeDesktop.dll b/bin/Debug/net8.0/Avalonia.FreeDesktop.dll new file mode 100644 index 0000000..cfb7f56 Binary files /dev/null and b/bin/Debug/net8.0/Avalonia.FreeDesktop.dll differ diff --git a/bin/Debug/net8.0/Avalonia.Markup.Xaml.dll b/bin/Debug/net8.0/Avalonia.Markup.Xaml.dll new file mode 100644 index 0000000..f5c5597 Binary files /dev/null and b/bin/Debug/net8.0/Avalonia.Markup.Xaml.dll differ diff --git a/bin/Debug/net8.0/Avalonia.Markup.dll b/bin/Debug/net8.0/Avalonia.Markup.dll new file mode 100644 index 0000000..466b5b0 Binary files /dev/null and b/bin/Debug/net8.0/Avalonia.Markup.dll differ diff --git a/bin/Debug/net8.0/Avalonia.Metal.dll b/bin/Debug/net8.0/Avalonia.Metal.dll new file mode 100644 index 0000000..2a3bf0b Binary files /dev/null and b/bin/Debug/net8.0/Avalonia.Metal.dll differ diff --git a/bin/Debug/net8.0/Avalonia.MicroCom.dll b/bin/Debug/net8.0/Avalonia.MicroCom.dll new file mode 100644 index 0000000..afcdd03 Binary files /dev/null and b/bin/Debug/net8.0/Avalonia.MicroCom.dll differ diff --git a/bin/Debug/net8.0/Avalonia.Native.dll b/bin/Debug/net8.0/Avalonia.Native.dll new file mode 100644 index 0000000..18ce8b7 Binary files /dev/null and b/bin/Debug/net8.0/Avalonia.Native.dll differ diff --git a/bin/Debug/net8.0/Avalonia.OpenGL.dll b/bin/Debug/net8.0/Avalonia.OpenGL.dll new file mode 100644 index 0000000..bfbacb3 Binary files /dev/null and b/bin/Debug/net8.0/Avalonia.OpenGL.dll differ diff --git a/bin/Debug/net8.0/Avalonia.Remote.Protocol.dll b/bin/Debug/net8.0/Avalonia.Remote.Protocol.dll new file mode 100644 index 0000000..7f0c0e4 Binary files /dev/null and b/bin/Debug/net8.0/Avalonia.Remote.Protocol.dll differ diff --git a/bin/Debug/net8.0/Avalonia.Skia.dll b/bin/Debug/net8.0/Avalonia.Skia.dll new file mode 100644 index 0000000..734cdf8 Binary files /dev/null and b/bin/Debug/net8.0/Avalonia.Skia.dll differ diff --git a/bin/Debug/net8.0/Avalonia.Svg.Skia.dll b/bin/Debug/net8.0/Avalonia.Svg.Skia.dll new file mode 100644 index 0000000..5a4cdd2 Binary files /dev/null and b/bin/Debug/net8.0/Avalonia.Svg.Skia.dll differ diff --git a/bin/Debug/net8.0/Avalonia.Themes.Fluent.dll b/bin/Debug/net8.0/Avalonia.Themes.Fluent.dll new file mode 100644 index 0000000..8ac3678 Binary files /dev/null and b/bin/Debug/net8.0/Avalonia.Themes.Fluent.dll differ diff --git a/bin/Debug/net8.0/Avalonia.Themes.Simple.dll b/bin/Debug/net8.0/Avalonia.Themes.Simple.dll new file mode 100644 index 0000000..766a2a9 Binary files /dev/null and b/bin/Debug/net8.0/Avalonia.Themes.Simple.dll differ diff --git a/bin/Debug/net8.0/Avalonia.Vulkan.dll b/bin/Debug/net8.0/Avalonia.Vulkan.dll new file mode 100644 index 0000000..81fee11 Binary files /dev/null and b/bin/Debug/net8.0/Avalonia.Vulkan.dll differ diff --git a/bin/Debug/net8.0/Avalonia.Win32.dll b/bin/Debug/net8.0/Avalonia.Win32.dll new file mode 100644 index 0000000..5ada12b Binary files /dev/null and b/bin/Debug/net8.0/Avalonia.Win32.dll differ diff --git a/bin/Debug/net8.0/Avalonia.X11.dll b/bin/Debug/net8.0/Avalonia.X11.dll new file mode 100644 index 0000000..d668c1e Binary files /dev/null and b/bin/Debug/net8.0/Avalonia.X11.dll differ diff --git a/bin/Debug/net8.0/Avalonia.dll b/bin/Debug/net8.0/Avalonia.dll new file mode 100644 index 0000000..c4696d7 Binary files /dev/null and b/bin/Debug/net8.0/Avalonia.dll differ diff --git a/bin/Debug/net8.0/Employees/Беляева.jpeg b/bin/Debug/net8.0/Employees/Беляева.jpeg new file mode 100644 index 0000000..16d9377 Binary files /dev/null and b/bin/Debug/net8.0/Employees/Беляева.jpeg differ diff --git a/bin/Debug/net8.0/Employees/Иванов.jpeg b/bin/Debug/net8.0/Employees/Иванов.jpeg new file mode 100644 index 0000000..3e5af20 Binary files /dev/null and b/bin/Debug/net8.0/Employees/Иванов.jpeg differ diff --git a/bin/Debug/net8.0/Employees/Игнатов.jpg b/bin/Debug/net8.0/Employees/Игнатов.jpg new file mode 100644 index 0000000..ca7cc45 Binary files /dev/null and b/bin/Debug/net8.0/Employees/Игнатов.jpg differ diff --git a/bin/Debug/net8.0/Employees/Миронов.jpeg b/bin/Debug/net8.0/Employees/Миронов.jpeg new file mode 100644 index 0000000..6340243 Binary files /dev/null and b/bin/Debug/net8.0/Employees/Миронов.jpeg differ diff --git a/bin/Debug/net8.0/Employees/Петров.jpeg b/bin/Debug/net8.0/Employees/Петров.jpeg new file mode 100644 index 0000000..68b2546 Binary files /dev/null and b/bin/Debug/net8.0/Employees/Петров.jpeg differ diff --git a/bin/Debug/net8.0/Employees/Смирнова.jpeg b/bin/Debug/net8.0/Employees/Смирнова.jpeg new file mode 100644 index 0000000..d04e3f0 Binary files /dev/null and b/bin/Debug/net8.0/Employees/Смирнова.jpeg differ diff --git a/bin/Debug/net8.0/Employees/Стрелков.jpeg b/bin/Debug/net8.0/Employees/Стрелков.jpeg new file mode 100644 index 0000000..3fc5d7d Binary files /dev/null and b/bin/Debug/net8.0/Employees/Стрелков.jpeg differ diff --git a/bin/Debug/net8.0/Employees/Федоров.jpeg b/bin/Debug/net8.0/Employees/Федоров.jpeg new file mode 100644 index 0000000..af30570 Binary files /dev/null and b/bin/Debug/net8.0/Employees/Федоров.jpeg differ diff --git a/bin/Debug/net8.0/Employees/Хохлов.jpeg b/bin/Debug/net8.0/Employees/Хохлов.jpeg new file mode 100644 index 0000000..88e3a88 Binary files /dev/null and b/bin/Debug/net8.0/Employees/Хохлов.jpeg differ diff --git a/bin/Debug/net8.0/Employees/Ширяев.jpeg b/bin/Debug/net8.0/Employees/Ширяев.jpeg new file mode 100644 index 0000000..a8decfc Binary files /dev/null and b/bin/Debug/net8.0/Employees/Ширяев.jpeg differ diff --git a/bin/Debug/net8.0/ExCSS.dll b/bin/Debug/net8.0/ExCSS.dll new file mode 100644 index 0000000..7c287d0 Binary files /dev/null and b/bin/Debug/net8.0/ExCSS.dll differ diff --git a/bin/Debug/net8.0/HarfBuzzSharp.dll b/bin/Debug/net8.0/HarfBuzzSharp.dll new file mode 100644 index 0000000..ce0580a Binary files /dev/null and b/bin/Debug/net8.0/HarfBuzzSharp.dll differ diff --git a/bin/Debug/net8.0/Humanizer.dll b/bin/Debug/net8.0/Humanizer.dll new file mode 100644 index 0000000..c9a7ef8 Binary files /dev/null and b/bin/Debug/net8.0/Humanizer.dll differ diff --git a/bin/Debug/net8.0/MicroCom.Runtime.dll b/bin/Debug/net8.0/MicroCom.Runtime.dll new file mode 100644 index 0000000..f6cf008 Binary files /dev/null and b/bin/Debug/net8.0/MicroCom.Runtime.dll differ diff --git a/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll b/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll new file mode 100644 index 0000000..fe6ba4c Binary files /dev/null and b/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll b/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll new file mode 100644 index 0000000..dc218f9 Binary files /dev/null and b/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll differ diff --git a/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll b/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll new file mode 100644 index 0000000..412e7ed Binary files /dev/null and b/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll differ diff --git a/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll b/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll new file mode 100644 index 0000000..8dec441 Binary files /dev/null and b/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll differ diff --git a/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll b/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll new file mode 100644 index 0000000..79e9046 Binary files /dev/null and b/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll differ diff --git a/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll new file mode 100644 index 0000000..2169cf8 Binary files /dev/null and b/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll differ diff --git a/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll b/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll new file mode 100644 index 0000000..7ba3d94 Binary files /dev/null and b/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll differ diff --git a/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll b/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll new file mode 100644 index 0000000..f8c58d0 Binary files /dev/null and b/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll differ diff --git a/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll b/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll new file mode 100644 index 0000000..b628ed6 Binary files /dev/null and b/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.Caching.Abstractions.dll b/bin/Debug/net8.0/Microsoft.Extensions.Caching.Abstractions.dll new file mode 100644 index 0000000..99aac98 Binary files /dev/null and b/bin/Debug/net8.0/Microsoft.Extensions.Caching.Abstractions.dll differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll b/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll new file mode 100644 index 0000000..077b1b6 Binary files /dev/null and b/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll b/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll new file mode 100644 index 0000000..a5ab313 Binary files /dev/null and b/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100644 index 0000000..81ed3de Binary files /dev/null and b/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll b/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..bd71a2b Binary files /dev/null and b/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll b/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll new file mode 100644 index 0000000..8905537 Binary files /dev/null and b/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll b/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 0000000..f9d1dc6 Binary files /dev/null and b/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll b/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll new file mode 100644 index 0000000..35905b6 Binary files /dev/null and b/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.Options.dll b/bin/Debug/net8.0/Microsoft.Extensions.Options.dll new file mode 100644 index 0000000..a7b3f21 Binary files /dev/null and b/bin/Debug/net8.0/Microsoft.Extensions.Options.dll differ diff --git a/bin/Debug/net8.0/Microsoft.Extensions.Primitives.dll b/bin/Debug/net8.0/Microsoft.Extensions.Primitives.dll new file mode 100644 index 0000000..c24f2a0 Binary files /dev/null and b/bin/Debug/net8.0/Microsoft.Extensions.Primitives.dll differ diff --git a/bin/Debug/net8.0/Mono.TextTemplating.dll b/bin/Debug/net8.0/Mono.TextTemplating.dll new file mode 100644 index 0000000..d5a4b3c Binary files /dev/null and b/bin/Debug/net8.0/Mono.TextTemplating.dll differ diff --git a/bin/Debug/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll b/bin/Debug/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll new file mode 100644 index 0000000..4b4f0fc Binary files /dev/null and b/bin/Debug/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll differ diff --git a/bin/Debug/net8.0/Npgsql.dll b/bin/Debug/net8.0/Npgsql.dll new file mode 100644 index 0000000..fde1387 Binary files /dev/null and b/bin/Debug/net8.0/Npgsql.dll differ diff --git a/bin/Debug/net8.0/ShimSkiaSharp.dll b/bin/Debug/net8.0/ShimSkiaSharp.dll new file mode 100644 index 0000000..0f186fc Binary files /dev/null and b/bin/Debug/net8.0/ShimSkiaSharp.dll differ diff --git a/bin/Debug/net8.0/SkiaSharp.HarfBuzz.dll b/bin/Debug/net8.0/SkiaSharp.HarfBuzz.dll new file mode 100644 index 0000000..3059d9c Binary files /dev/null and b/bin/Debug/net8.0/SkiaSharp.HarfBuzz.dll differ diff --git a/bin/Debug/net8.0/SkiaSharp.dll b/bin/Debug/net8.0/SkiaSharp.dll new file mode 100644 index 0000000..6e8e7ca Binary files /dev/null and b/bin/Debug/net8.0/SkiaSharp.dll differ diff --git a/bin/Debug/net8.0/Svg.Custom.dll b/bin/Debug/net8.0/Svg.Custom.dll new file mode 100644 index 0000000..6ce4716 Binary files /dev/null and b/bin/Debug/net8.0/Svg.Custom.dll differ diff --git a/bin/Debug/net8.0/Svg.Model.dll b/bin/Debug/net8.0/Svg.Model.dll new file mode 100644 index 0000000..22fcfb6 Binary files /dev/null and b/bin/Debug/net8.0/Svg.Model.dll differ diff --git a/bin/Debug/net8.0/Svg.Skia.dll b/bin/Debug/net8.0/Svg.Skia.dll new file mode 100644 index 0000000..f2135dc Binary files /dev/null and b/bin/Debug/net8.0/Svg.Skia.dll differ diff --git a/bin/Debug/net8.0/System.CodeDom.dll b/bin/Debug/net8.0/System.CodeDom.dll new file mode 100644 index 0000000..3128b6a Binary files /dev/null and b/bin/Debug/net8.0/System.CodeDom.dll differ diff --git a/bin/Debug/net8.0/System.Composition.AttributedModel.dll b/bin/Debug/net8.0/System.Composition.AttributedModel.dll new file mode 100644 index 0000000..d37283b Binary files /dev/null and b/bin/Debug/net8.0/System.Composition.AttributedModel.dll differ diff --git a/bin/Debug/net8.0/System.Composition.Convention.dll b/bin/Debug/net8.0/System.Composition.Convention.dll new file mode 100644 index 0000000..b6fa4ab Binary files /dev/null and b/bin/Debug/net8.0/System.Composition.Convention.dll differ diff --git a/bin/Debug/net8.0/System.Composition.Hosting.dll b/bin/Debug/net8.0/System.Composition.Hosting.dll new file mode 100644 index 0000000..c67f1c0 Binary files /dev/null and b/bin/Debug/net8.0/System.Composition.Hosting.dll differ diff --git a/bin/Debug/net8.0/System.Composition.Runtime.dll b/bin/Debug/net8.0/System.Composition.Runtime.dll new file mode 100644 index 0000000..2a4b38c Binary files /dev/null and b/bin/Debug/net8.0/System.Composition.Runtime.dll differ diff --git a/bin/Debug/net8.0/System.Composition.TypedParts.dll b/bin/Debug/net8.0/System.Composition.TypedParts.dll new file mode 100644 index 0000000..7c0c780 Binary files /dev/null and b/bin/Debug/net8.0/System.Composition.TypedParts.dll differ diff --git a/bin/Debug/net8.0/System.IO.Pipelines.dll b/bin/Debug/net8.0/System.IO.Pipelines.dll new file mode 100644 index 0000000..83a1b24 Binary files /dev/null and b/bin/Debug/net8.0/System.IO.Pipelines.dll differ diff --git a/bin/Debug/net8.0/Tmds.DBus.Protocol.dll b/bin/Debug/net8.0/Tmds.DBus.Protocol.dll new file mode 100644 index 0000000..8f42654 Binary files /dev/null and b/bin/Debug/net8.0/Tmds.DBus.Protocol.dll differ diff --git a/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..b08ba21 Binary files /dev/null and b/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..eba2a5a Binary files /dev/null and b/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..ff203e1 Binary files /dev/null and b/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..fe89036 Binary files /dev/null and b/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll differ diff --git a/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..3dda417 Binary files /dev/null and b/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..4d3bd0a Binary files /dev/null and b/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..c41bb1f Binary files /dev/null and b/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..05845f2 Binary files /dev/null and b/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll differ diff --git a/bin/Debug/net8.0/demo_hard b/bin/Debug/net8.0/demo_hard new file mode 100644 index 0000000..066b11a Binary files /dev/null and b/bin/Debug/net8.0/demo_hard differ diff --git a/bin/Debug/net8.0/demo_hard.deps.json b/bin/Debug/net8.0/demo_hard.deps.json new file mode 100644 index 0000000..ce5a4e5 --- /dev/null +++ b/bin/Debug/net8.0/demo_hard.deps.json @@ -0,0 +1,1558 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "demo_hard/1.0.0": { + "dependencies": { + "Avalonia": "11.2.1", + "Avalonia.Desktop": "11.2.1", + "Avalonia.Diagnostics": "11.2.1", + "Avalonia.Fonts.Inter": "11.2.1", + "Avalonia.Svg.Skia": "11.2.0.2", + "Avalonia.Themes.Fluent": "11.2.1", + "Microsoft.EntityFrameworkCore": "8.0.10", + "Microsoft.EntityFrameworkCore.Design": "8.0.10", + "Npgsql.EntityFrameworkCore.PostgreSQL": "8.0.10", + "ZXing.Net": "0.16.10" + }, + "runtime": { + "demo_hard.dll": {} + } + }, + "Avalonia/11.2.1": { + "dependencies": { + "Avalonia.BuildServices": "0.0.29", + "Avalonia.Remote.Protocol": "11.2.1", + "MicroCom.Runtime": "0.11.0" + }, + "runtime": { + "lib/net8.0/Avalonia.Base.dll": { + "assemblyVersion": "11.2.1.0", + "fileVersion": "11.2.1.0" + }, + "lib/net8.0/Avalonia.Controls.dll": { + "assemblyVersion": "11.2.1.0", + "fileVersion": "11.2.1.0" + }, + "lib/net8.0/Avalonia.DesignerSupport.dll": { + "assemblyVersion": "0.7.0.0", + "fileVersion": "0.7.0.0" + }, + "lib/net8.0/Avalonia.Dialogs.dll": { + "assemblyVersion": "11.2.1.0", + "fileVersion": "11.2.1.0" + }, + "lib/net8.0/Avalonia.Markup.Xaml.dll": { + "assemblyVersion": "11.2.1.0", + "fileVersion": "11.2.1.0" + }, + "lib/net8.0/Avalonia.Markup.dll": { + "assemblyVersion": "11.2.1.0", + "fileVersion": "11.2.1.0" + }, + "lib/net8.0/Avalonia.Metal.dll": { + "assemblyVersion": "11.2.1.0", + "fileVersion": "11.2.1.0" + }, + "lib/net8.0/Avalonia.MicroCom.dll": { + "assemblyVersion": "11.2.1.0", + "fileVersion": "11.2.1.0" + }, + "lib/net8.0/Avalonia.OpenGL.dll": { + "assemblyVersion": "11.2.1.0", + "fileVersion": "11.2.1.0" + }, + "lib/net8.0/Avalonia.Vulkan.dll": { + "assemblyVersion": "11.2.1.0", + "fileVersion": "11.2.1.0" + }, + "lib/net8.0/Avalonia.dll": { + "assemblyVersion": "11.2.1.0", + "fileVersion": "11.2.1.0" + } + } + }, + "Avalonia.Angle.Windows.Natives/2.1.22045.20230930": { + "runtimeTargets": { + "runtimes/win-arm64/native/av_libglesv2.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "2.1.22045.0" + }, + "runtimes/win-x64/native/av_libglesv2.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "2.1.22045.0" + }, + "runtimes/win-x86/native/av_libglesv2.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "2.1.22045.0" + } + } + }, + "Avalonia.BuildServices/0.0.29": {}, + "Avalonia.Controls.ColorPicker/11.2.1": { + "dependencies": { + "Avalonia": "11.2.1", + "Avalonia.Remote.Protocol": "11.2.1" + }, + "runtime": { + "lib/net8.0/Avalonia.Controls.ColorPicker.dll": { + "assemblyVersion": "11.2.1.0", + "fileVersion": "11.2.1.0" + } + } + }, + "Avalonia.Controls.DataGrid/11.2.1": { + "dependencies": { + "Avalonia": "11.2.1", + "Avalonia.Remote.Protocol": "11.2.1" + }, + "runtime": { + "lib/net8.0/Avalonia.Controls.DataGrid.dll": { + "assemblyVersion": "11.2.1.0", + "fileVersion": "11.2.1.0" + } + } + }, + "Avalonia.Desktop/11.2.1": { + "dependencies": { + "Avalonia": "11.2.1", + "Avalonia.Native": "11.2.1", + "Avalonia.Skia": "11.2.1", + "Avalonia.Win32": "11.2.1", + "Avalonia.X11": "11.2.1" + }, + "runtime": { + "lib/net8.0/Avalonia.Desktop.dll": { + "assemblyVersion": "11.2.1.0", + "fileVersion": "11.2.1.0" + } + } + }, + "Avalonia.Diagnostics/11.2.1": { + "dependencies": { + "Avalonia": "11.2.1", + "Avalonia.Controls.ColorPicker": "11.2.1", + "Avalonia.Controls.DataGrid": "11.2.1", + "Avalonia.Themes.Simple": "11.2.1" + }, + "runtime": { + "lib/net8.0/Avalonia.Diagnostics.dll": { + "assemblyVersion": "11.2.1.0", + "fileVersion": "11.2.1.0" + } + } + }, + "Avalonia.Fonts.Inter/11.2.1": { + "dependencies": { + "Avalonia": "11.2.1" + }, + "runtime": { + "lib/net8.0/Avalonia.Fonts.Inter.dll": { + "assemblyVersion": "11.2.1.0", + "fileVersion": "11.2.1.0" + } + } + }, + "Avalonia.FreeDesktop/11.2.1": { + "dependencies": { + "Avalonia": "11.2.1", + "Tmds.DBus.Protocol": "0.20.0" + }, + "runtime": { + "lib/net8.0/Avalonia.FreeDesktop.dll": { + "assemblyVersion": "11.2.1.0", + "fileVersion": "11.2.1.0" + } + } + }, + "Avalonia.Native/11.2.1": { + "dependencies": { + "Avalonia": "11.2.1" + }, + "runtime": { + "lib/net8.0/Avalonia.Native.dll": { + "assemblyVersion": "11.2.1.0", + "fileVersion": "11.2.1.0" + } + }, + "runtimeTargets": { + "runtimes/osx/native/libAvaloniaNative.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "Avalonia.Remote.Protocol/11.2.1": { + "runtime": { + "lib/net8.0/Avalonia.Remote.Protocol.dll": { + "assemblyVersion": "11.2.1.0", + "fileVersion": "11.2.1.0" + } + } + }, + "Avalonia.Skia/11.2.1": { + "dependencies": { + "Avalonia": "11.2.1", + "HarfBuzzSharp": "7.3.0.2", + "HarfBuzzSharp.NativeAssets.Linux": "7.3.0.2", + "HarfBuzzSharp.NativeAssets.WebAssembly": "7.3.0.3-preview.2.2", + "SkiaSharp": "2.88.8", + "SkiaSharp.NativeAssets.Linux": "2.88.8", + "SkiaSharp.NativeAssets.WebAssembly": "2.88.8" + }, + "runtime": { + "lib/net8.0/Avalonia.Skia.dll": { + "assemblyVersion": "11.2.1.0", + "fileVersion": "11.2.1.0" + } + } + }, + "Avalonia.Svg.Skia/11.2.0.2": { + "dependencies": { + "Avalonia": "11.2.1", + "Avalonia.Skia": "11.2.1", + "SkiaSharp": "2.88.8", + "Svg.Skia": "2.0.0.4" + }, + "runtime": { + "lib/net8.0/Avalonia.Svg.Skia.dll": { + "assemblyVersion": "11.2.0.2", + "fileVersion": "11.2.0.2" + } + } + }, + "Avalonia.Themes.Fluent/11.2.1": { + "dependencies": { + "Avalonia": "11.2.1" + }, + "runtime": { + "lib/net8.0/Avalonia.Themes.Fluent.dll": { + "assemblyVersion": "11.2.1.0", + "fileVersion": "11.2.1.0" + } + } + }, + "Avalonia.Themes.Simple/11.2.1": { + "dependencies": { + "Avalonia": "11.2.1" + }, + "runtime": { + "lib/net8.0/Avalonia.Themes.Simple.dll": { + "assemblyVersion": "11.2.1.0", + "fileVersion": "11.2.1.0" + } + } + }, + "Avalonia.Win32/11.2.1": { + "dependencies": { + "Avalonia": "11.2.1", + "Avalonia.Angle.Windows.Natives": "2.1.22045.20230930" + }, + "runtime": { + "lib/net8.0/Avalonia.Win32.dll": { + "assemblyVersion": "11.2.1.0", + "fileVersion": "11.2.1.0" + } + } + }, + "Avalonia.X11/11.2.1": { + "dependencies": { + "Avalonia": "11.2.1", + "Avalonia.FreeDesktop": "11.2.1", + "Avalonia.Skia": "11.2.1" + }, + "runtime": { + "lib/net8.0/Avalonia.X11.dll": { + "assemblyVersion": "11.2.1.0", + "fileVersion": "11.2.1.0" + } + } + }, + "ExCSS/4.2.3": { + "runtime": { + "lib/net7.0/ExCSS.dll": { + "assemblyVersion": "4.2.3.0", + "fileVersion": "4.2.3.0" + } + } + }, + "HarfBuzzSharp/7.3.0.2": { + "dependencies": { + "HarfBuzzSharp.NativeAssets.Win32": "7.3.0.2", + "HarfBuzzSharp.NativeAssets.macOS": "7.3.0.2" + }, + "runtime": { + "lib/net6.0/HarfBuzzSharp.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "7.3.0.2" + } + } + }, + "HarfBuzzSharp.NativeAssets.Linux/7.3.0.2": { + "dependencies": { + "HarfBuzzSharp": "7.3.0.2" + }, + "runtimeTargets": { + "runtimes/linux-arm/native/libHarfBuzzSharp.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libHarfBuzzSharp.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libHarfBuzzSharp.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libHarfBuzzSharp.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "HarfBuzzSharp.NativeAssets.macOS/7.3.0.2": { + "runtimeTargets": { + "runtimes/osx/native/libHarfBuzzSharp.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "HarfBuzzSharp.NativeAssets.WebAssembly/7.3.0.3-preview.2.2": {}, + "HarfBuzzSharp.NativeAssets.Win32/7.3.0.2": { + "runtimeTargets": { + "runtimes/win-arm64/native/libHarfBuzzSharp.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/libHarfBuzzSharp.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/libHarfBuzzSharp.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "Humanizer.Core/2.14.1": { + "runtime": { + "lib/net6.0/Humanizer.dll": { + "assemblyVersion": "2.14.0.0", + "fileVersion": "2.14.1.48190" + } + } + }, + "MicroCom.Runtime/0.11.0": { + "runtime": { + "lib/net5.0/MicroCom.Runtime.dll": { + "assemblyVersion": "0.11.0.0", + "fileVersion": "0.11.0.0" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/6.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.3": {}, + "Microsoft.CodeAnalysis.Common/4.5.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.3", + "System.Collections.Immutable": "6.0.0", + "System.Reflection.Metadata": "6.0.1", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encoding.CodePages": "6.0.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "4.5.0.0", + "fileVersion": "4.500.23.10905" + } + }, + "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/4.5.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "4.5.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "4.5.0.0", + "fileVersion": "4.500.23.10905" + } + }, + "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.Workspaces/4.5.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.CSharp": "4.5.0", + "Microsoft.CodeAnalysis.Common": "4.5.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.5.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "assemblyVersion": "4.5.0.0", + "fileVersion": "4.500.23.10905" + } + }, + "resources": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Bcl.AsyncInterfaces": "6.0.0", + "Microsoft.CodeAnalysis.Common": "4.5.0", + "System.Composition": "6.0.0", + "System.IO.Pipelines": "8.0.0", + "System.Threading.Channels": "6.0.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": { + "assemblyVersion": "4.5.0.0", + "fileVersion": "4.500.23.10905" + } + }, + "resources": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.EntityFrameworkCore/8.0.10": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10", + "Microsoft.EntityFrameworkCore.Analyzers": "8.0.10", + "Microsoft.Extensions.Caching.Memory": "8.0.1", + "Microsoft.Extensions.Logging": "8.0.1" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "8.0.10.0", + "fileVersion": "8.0.1024.46708" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "8.0.10.0", + "fileVersion": "8.0.1024.46708" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": {}, + "Microsoft.EntityFrameworkCore.Design/8.0.10": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0", + "Microsoft.EntityFrameworkCore.Relational": "8.0.10", + "Microsoft.Extensions.DependencyModel": "8.0.2", + "Mono.TextTemplating": "2.2.1" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": { + "assemblyVersion": "8.0.10.0", + "fileVersion": "8.0.1024.46708" + } + } + }, + "Microsoft.EntityFrameworkCore.Relational/8.0.10": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "8.0.10", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "8.0.10.0", + "fileVersion": "8.0.1024.46708" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.Caching.Memory/8.0.1": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.DependencyModel/8.0.2": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "8.0.0.2", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.Logging/8.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.Options/8.0.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.224.6711" + } + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Mono.TextTemplating/2.2.1": { + "dependencies": { + "System.CodeDom": "4.4.0" + }, + "runtime": { + "lib/netstandard2.0/Mono.TextTemplating.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.1.1" + } + } + }, + "Npgsql/8.0.5": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "assemblyVersion": "8.0.5.0", + "fileVersion": "8.0.5.0" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/8.0.10": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "8.0.10", + "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10", + "Microsoft.EntityFrameworkCore.Relational": "8.0.10", + "Npgsql": "8.0.5" + }, + "runtime": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "assemblyVersion": "8.0.10.0", + "fileVersion": "8.0.10.0" + } + } + }, + "ShimSkiaSharp/2.0.0.4": { + "runtime": { + "lib/net8.0/ShimSkiaSharp.dll": { + "assemblyVersion": "2.0.0.4", + "fileVersion": "2.0.0.4" + } + } + }, + "SkiaSharp/2.88.8": { + "dependencies": { + "SkiaSharp.NativeAssets.Win32": "2.88.8", + "SkiaSharp.NativeAssets.macOS": "2.88.8" + }, + "runtime": { + "lib/net6.0/SkiaSharp.dll": { + "assemblyVersion": "2.88.0.0", + "fileVersion": "2.88.8.0" + } + } + }, + "SkiaSharp.HarfBuzz/2.88.8": { + "dependencies": { + "HarfBuzzSharp": "7.3.0.2", + "SkiaSharp": "2.88.8" + }, + "runtime": { + "lib/net6.0/SkiaSharp.HarfBuzz.dll": { + "assemblyVersion": "2.88.0.0", + "fileVersion": "2.88.8.0" + } + } + }, + "SkiaSharp.NativeAssets.Linux/2.88.8": { + "dependencies": { + "SkiaSharp": "2.88.8" + }, + "runtimeTargets": { + "runtimes/linux-arm/native/libSkiaSharp.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libSkiaSharp.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libSkiaSharp.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libSkiaSharp.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SkiaSharp.NativeAssets.macOS/2.88.8": { + "runtimeTargets": { + "runtimes/osx/native/libSkiaSharp.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SkiaSharp.NativeAssets.WebAssembly/2.88.8": {}, + "SkiaSharp.NativeAssets.Win32/2.88.8": { + "runtimeTargets": { + "runtimes/win-arm64/native/libSkiaSharp.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/libSkiaSharp.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/libSkiaSharp.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "Svg.Custom/2.0.0.4": { + "dependencies": { + "ExCSS": "4.2.3" + }, + "runtime": { + "lib/net8.0/Svg.Custom.dll": { + "assemblyVersion": "2.0.0.4", + "fileVersion": "2.0.0.4" + } + } + }, + "Svg.Model/2.0.0.4": { + "dependencies": { + "ShimSkiaSharp": "2.0.0.4", + "Svg.Custom": "2.0.0.4" + }, + "runtime": { + "lib/net8.0/Svg.Model.dll": { + "assemblyVersion": "2.0.0.4", + "fileVersion": "2.0.0.4" + } + } + }, + "Svg.Skia/2.0.0.4": { + "dependencies": { + "SkiaSharp": "2.88.8", + "SkiaSharp.HarfBuzz": "2.88.8", + "Svg.Custom": "2.0.0.4", + "Svg.Model": "2.0.0.4" + }, + "runtime": { + "lib/net8.0/Svg.Skia.dll": { + "assemblyVersion": "2.0.0.4", + "fileVersion": "2.0.0.4" + } + } + }, + "System.CodeDom/4.4.0": { + "runtime": { + "lib/netstandard2.0/System.CodeDom.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.6.25519.3" + } + } + }, + "System.Collections.Immutable/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Composition/6.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "6.0.0", + "System.Composition.Convention": "6.0.0", + "System.Composition.Hosting": "6.0.0", + "System.Composition.Runtime": "6.0.0", + "System.Composition.TypedParts": "6.0.0" + } + }, + "System.Composition.AttributedModel/6.0.0": { + "runtime": { + "lib/net6.0/System.Composition.AttributedModel.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Composition.Convention/6.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Composition.Convention.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Composition.Hosting/6.0.0": { + "dependencies": { + "System.Composition.Runtime": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Composition.Hosting.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Composition.Runtime/6.0.0": { + "runtime": { + "lib/net6.0/System.Composition.Runtime.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Composition.TypedParts/6.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "6.0.0", + "System.Composition.Hosting": "6.0.0", + "System.Composition.Runtime": "6.0.0" + }, + "runtime": { + "lib/net6.0/System.Composition.TypedParts.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.IO.Pipelines/8.0.0": { + "runtime": { + "lib/net8.0/System.IO.Pipelines.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "System.Reflection.Metadata/6.0.1": { + "dependencies": { + "System.Collections.Immutable": "6.0.0" + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Text.Encoding.CodePages/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Threading.Channels/6.0.0": {}, + "Tmds.DBus.Protocol/0.20.0": { + "dependencies": { + "System.IO.Pipelines": "8.0.0" + }, + "runtime": { + "lib/net8.0/Tmds.DBus.Protocol.dll": { + "assemblyVersion": "0.20.0.0", + "fileVersion": "0.20.0.0" + } + } + }, + "ZXing.Net/0.16.10": { + "runtime": { + "lib/net8.0/zxing.dll": { + "assemblyVersion": "0.16.10.0", + "fileVersion": "0.16.10.0" + } + } + } + } + }, + "libraries": { + "demo_hard/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Avalonia/11.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AyYhIN2A7bRwxp6BFHrIbXAHUFPXegzSMYwDrUnw1BzZs9ctwYTiCPCM5wbE2PXsEBwFDVJ/a2YHTOp56fSYAw==", + "path": "avalonia/11.2.1", + "hashPath": "avalonia.11.2.1.nupkg.sha512" + }, + "Avalonia.Angle.Windows.Natives/2.1.22045.20230930": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Bo3qOhKC1b84BIhiogndMdAzB3UrrESKK7hS769f5HWeoMw/pcd42US5KFYW2JJ4ZSTrXnP8mXwLTMzh+S+9Lg==", + "path": "avalonia.angle.windows.natives/2.1.22045.20230930", + "hashPath": "avalonia.angle.windows.natives.2.1.22045.20230930.nupkg.sha512" + }, + "Avalonia.BuildServices/0.0.29": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U4eJLQdoDNHXtEba7MZUCwrBErBTxFp6sUewXBOdAhU0Kwzwaa/EKFcYm8kpcysjzKtfB4S0S9n0uxKZFz/ikw==", + "path": "avalonia.buildservices/0.0.29", + "hashPath": "avalonia.buildservices.0.0.29.nupkg.sha512" + }, + "Avalonia.Controls.ColorPicker/11.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t8ViFwfIe6jCO5HvzPWOtwGNSMHYNc8XakWp76Rgy1MOiht8tHKry9cU7k40AHEYU6wVjiYBkl0c8zYZyyha1g==", + "path": "avalonia.controls.colorpicker/11.2.1", + "hashPath": "avalonia.controls.colorpicker.11.2.1.nupkg.sha512" + }, + "Avalonia.Controls.DataGrid/11.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UaNQrY86GBqMZqZ/N/5/wLzr4Emh2N405VZI/IgH0I8BoMrjnosNr+++D7BOcahMNce0lUZLOsFyy+OY02PUAw==", + "path": "avalonia.controls.datagrid/11.2.1", + "hashPath": "avalonia.controls.datagrid.11.2.1.nupkg.sha512" + }, + "Avalonia.Desktop/11.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-q6alzkTgFjukOrbiiFlh0mkhkxGRMRTMS8zdNEixIl9apPnD2ln9sjAC4NR2agNz5+HmZVfXYu6kYK12rMmKwA==", + "path": "avalonia.desktop/11.2.1", + "hashPath": "avalonia.desktop.11.2.1.nupkg.sha512" + }, + "Avalonia.Diagnostics/11.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-axUWa4sZoe9HgUXPEDhbZXijL8ex+lwQGVwNQLmD299O7pCqKcYThjyG/eCETO/boqjKTt3H85LHEPx94BP9dg==", + "path": "avalonia.diagnostics/11.2.1", + "hashPath": "avalonia.diagnostics.11.2.1.nupkg.sha512" + }, + "Avalonia.Fonts.Inter/11.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-egEFQWLHuSzyWKolPy9u4qPor270N2GL/4CI33eBxr09chrUVQsOlxQ6zeWPiBLzzgv/lCrZhOMCAIWsOz3tNg==", + "path": "avalonia.fonts.inter/11.2.1", + "hashPath": "avalonia.fonts.inter.11.2.1.nupkg.sha512" + }, + "Avalonia.FreeDesktop/11.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ChKdPjQ2uBJUN0y+/RsdoETzXRn/q1eWFBDwprDy+Zi/AVkUfRk06hKbsb/U+Q3zO65CMEprRcMPbys0EkK2vg==", + "path": "avalonia.freedesktop/11.2.1", + "hashPath": "avalonia.freedesktop.11.2.1.nupkg.sha512" + }, + "Avalonia.Native/11.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1cVasDUIkqfAYLkaLFDx+VDZymer2v643OYD6Jd6nzP20TNTqN2LfFOpxXCTYMrWc9Dk5AoVJJCrz3wRE5kooQ==", + "path": "avalonia.native/11.2.1", + "hashPath": "avalonia.native.11.2.1.nupkg.sha512" + }, + "Avalonia.Remote.Protocol/11.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aqEialxjir7DO/dOFf7BGN/yQ4/adSC5UuVfqBr/RUHOENSH6CqoHj8kmtmJxnuz7ESQFSB2+h1kLVnk5csiDw==", + "path": "avalonia.remote.protocol/11.2.1", + "hashPath": "avalonia.remote.protocol.11.2.1.nupkg.sha512" + }, + "Avalonia.Skia/11.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FkqiXWT1hN0s5MIx5IKDGZaqewQENikQh6aBQyApiZVu5koa8H8RW1yfb2cFK3M4IVIyhqwl8ZirkXsS18lf/Q==", + "path": "avalonia.skia/11.2.1", + "hashPath": "avalonia.skia.11.2.1.nupkg.sha512" + }, + "Avalonia.Svg.Skia/11.2.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qvP8xTiwz28wi/a7nsQz78GKaqOELfcddFhRX7CsJPXzjaN+TECp2ufvPonRZh1W+xbFAkHIkqcfqXiE/Ftu6g==", + "path": "avalonia.svg.skia/11.2.0.2", + "hashPath": "avalonia.svg.skia.11.2.0.2.nupkg.sha512" + }, + "Avalonia.Themes.Fluent/11.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9YUzDmZO5oDppsoA3Igeu/v1cVi4xu8jdO6ZrBzXJXJ9mma/htK0Ub9+V1lRoCW/O70nQfBX+ZDpm0dca1PVgw==", + "path": "avalonia.themes.fluent/11.2.1", + "hashPath": "avalonia.themes.fluent.11.2.1.nupkg.sha512" + }, + "Avalonia.Themes.Simple/11.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ToiYv8hhJ5gcEtD54VZv7NpBFiqGasj4bjFh/AtjXApiYOp8r3orFPX8Nsc3kHcUCvNNjbjAy9dmBG65nYePkw==", + "path": "avalonia.themes.simple/11.2.1", + "hashPath": "avalonia.themes.simple.11.2.1.nupkg.sha512" + }, + "Avalonia.Win32/11.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7Gfw7S1PoINaCXaIV1rh7zo82IhsqhR7a0PAt281cBrfDkJiNU0DYgW2RZxKl3oVFxtfbxJZbdP7hSVmHvoDfw==", + "path": "avalonia.win32/11.2.1", + "hashPath": "avalonia.win32.11.2.1.nupkg.sha512" + }, + "Avalonia.X11/11.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h2aCpyLmxGkldPK7cbncEgyobrJ5En7gQtrwVARLmN32Rw6dHut3jyF3P8at2DmWxRuKwZVXgWBSSI62hINgrQ==", + "path": "avalonia.x11/11.2.1", + "hashPath": "avalonia.x11.11.2.1.nupkg.sha512" + }, + "ExCSS/4.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SyeAfu2wL5247sipJoPUzQfjiwQtfSd8hN4IbgoyVcDx4PP6Dud4znwPRibWQzLtTlUxYYcbf5f4p+EfFC7KtQ==", + "path": "excss/4.2.3", + "hashPath": "excss.4.2.3.nupkg.sha512" + }, + "HarfBuzzSharp/7.3.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0tCd6HyCmNsX/DniCp2b00fo0xPbdNwKOs9BxxyT8oOOuMlWjcSFwzONKyeckCKVBFEsbSmsAHPDTqxoSDwZMg==", + "path": "harfbuzzsharp/7.3.0.2", + "hashPath": "harfbuzzsharp.7.3.0.2.nupkg.sha512" + }, + "HarfBuzzSharp.NativeAssets.Linux/7.3.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aKa5J1RqjXKAtdcZJp5wjC78klfBIzJHM6CneN76lFmQ9LLRJA9Oa0TkIDaV8lVLDKMAy5fCKHXFlXUK1YfL/g==", + "path": "harfbuzzsharp.nativeassets.linux/7.3.0.2", + "hashPath": "harfbuzzsharp.nativeassets.linux.7.3.0.2.nupkg.sha512" + }, + "HarfBuzzSharp.NativeAssets.macOS/7.3.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nycYH/WLJ6ogm+I+QSFCdPJsdxSb5GANWYbQyp1vsd/KjXN56RVUJWPhbgP2GKb/Y7mrsHM7EProqVXlO/EMsA==", + "path": "harfbuzzsharp.nativeassets.macos/7.3.0.2", + "hashPath": "harfbuzzsharp.nativeassets.macos.7.3.0.2.nupkg.sha512" + }, + "HarfBuzzSharp.NativeAssets.WebAssembly/7.3.0.3-preview.2.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Dc+dolrhmkpqwT25NfNEEgceW0//KRR2WIOvxlyIIHIIMBCn0FfUeJX5RhFll8kyaZwF8tuKsxRJtQG/rzSBog==", + "path": "harfbuzzsharp.nativeassets.webassembly/7.3.0.3-preview.2.2", + "hashPath": "harfbuzzsharp.nativeassets.webassembly.7.3.0.3-preview.2.2.nupkg.sha512" + }, + "HarfBuzzSharp.NativeAssets.Win32/7.3.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DpF9JBzwws2dupOLnjME65hxQWWbN/GD40AoTkwB4S05WANvxo3n81AnQJKxWDCnrWfWhLPB36OF27TvEqzb/A==", + "path": "harfbuzzsharp.nativeassets.win32/7.3.0.2", + "hashPath": "harfbuzzsharp.nativeassets.win32.7.3.0.2.nupkg.sha512" + }, + "Humanizer.Core/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", + "path": "humanizer.core/2.14.1", + "hashPath": "humanizer.core.2.14.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.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.CodeAnalysis.Analyzers/3.3.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==", + "path": "microsoft.codeanalysis.analyzers/3.3.3", + "hashPath": "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lwAbIZNdnY0SUNoDmZHkVUwLO8UyNnyyh1t/4XsbFxi4Ounb3xszIYZaWhyj5ZjyfcwqwmtMbE7fUTVCqQEIdQ==", + "path": "microsoft.codeanalysis.common/4.5.0", + "hashPath": "microsoft.codeanalysis.common.4.5.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cM59oMKAOxvdv76bdmaKPy5hfj+oR+zxikWoueEB7CwTko7mt9sVKZI8Qxlov0C/LuKEG+WQwifepqL3vuTiBQ==", + "path": "microsoft.codeanalysis.csharp/4.5.0", + "hashPath": "microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h74wTpmGOp4yS4hj+EvNzEiPgg/KVs2wmSfTZ81upJZOtPkJsVkgfsgtxxqmAeapjT/vLKfmYV0bS8n5MNVP+g==", + "path": "microsoft.codeanalysis.csharp.workspaces/4.5.0", + "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-l4dDRmGELXG72XZaonnOeORyD/T5RpEu5LGHOUIhnv+MmUWDY/m1kWXGwtcgQ5CJ5ynkFiRnIYzTKXYjUs7rbw==", + "path": "microsoft.codeanalysis.workspaces.common/4.5.0", + "hashPath": "microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/8.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PPkQdIqfR1nU3n6YgGGDk8G+eaYbaAKM1AzIQtlPNTKf10Osg3N9T+iK9AlnSA/ujsK00flPpFHVfJrbuBFS1A==", + "path": "microsoft.entityframeworkcore/8.0.10", + "hashPath": "microsoft.entityframeworkcore.8.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FV0QlcX9INY4kAD2o72uPtyOh0nZut2jB11Jf9mNYBtHay8gDLe+x4AbXFwuQg+eSvofjT7naV82e827zGfyMg==", + "path": "microsoft.entityframeworkcore.abstractions/8.0.10", + "hashPath": "microsoft.entityframeworkcore.abstractions.8.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-51KkPIc0EMv/gVXhPIUi6cwJE9Mvh+PLr4Lap4naLcsoGZ0lF2SvOPgUUprwRV3MnN7nyD1XPhT5RJ/p+xFAXw==", + "path": "microsoft.entityframeworkcore.analyzers/8.0.10", + "hashPath": "microsoft.entityframeworkcore.analyzers.8.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Design/8.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uGNjfKvAsql2KHRqxlK5wHo8mMC60G/FecrFKEjJgeIxtUAbSXGOgKGw/gD9flO5Fzzt1C7uxfIcr6ZsMmFkeg==", + "path": "microsoft.entityframeworkcore.design/8.0.10", + "hashPath": "microsoft.entityframeworkcore.design.8.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/8.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OefBEE47kGKPRPV3OT+FAW6o5BFgLk2D9EoeWVy7NbOepzUneayLQxbVE098FfedTyMwxvZQoDD9LrvZc3MadA==", + "path": "microsoft.entityframeworkcore.relational/8.0.10", + "hashPath": "microsoft.entityframeworkcore.relational.8.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==", + "path": "microsoft.extensions.caching.abstractions/8.0.0", + "hashPath": "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==", + "path": "microsoft.extensions.caching.memory/8.0.1", + "hashPath": "microsoft.extensions.caching.memory.8.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==", + "path": "microsoft.extensions.configuration.abstractions/8.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==", + "path": "microsoft.extensions.dependencyinjection/8.0.1", + "hashPath": "microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/8.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==", + "path": "microsoft.extensions.dependencymodel/8.0.2", + "hashPath": "microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==", + "path": "microsoft.extensions.logging/8.0.1", + "hashPath": "microsoft.extensions.logging.8.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nroMDjS7hNBPtkZqVBbSiQaQjWRDxITI8Y7XnDs97rqG3EbzVTNLZQf7bIeUJcaHOV8bca47s1Uxq94+2oGdxA==", + "path": "microsoft.extensions.logging.abstractions/8.0.2", + "hashPath": "microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512" + }, + "Microsoft.Extensions.Options/8.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==", + "path": "microsoft.extensions.options/8.0.2", + "hashPath": "microsoft.extensions.options.8.0.2.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==", + "path": "microsoft.extensions.primitives/8.0.0", + "hashPath": "microsoft.extensions.primitives.8.0.0.nupkg.sha512" + }, + "Mono.TextTemplating/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==", + "path": "mono.texttemplating/2.2.1", + "hashPath": "mono.texttemplating.2.2.1.nupkg.sha512" + }, + "Npgsql/8.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zRG5V8cyeZLpzJlKzFKjEwkRMYIYnHWJvEor2lWXeccS2E1G2nIWYYhnukB51iz5XsWSVEtqg3AxTWM0QJ6vfg==", + "path": "npgsql/8.0.5", + "hashPath": "npgsql.8.0.5.nupkg.sha512" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/8.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gFPl9Dmxih7Yi4tZ3bITzZFzbxFMBx04gqTqcjoL2r5VEW+O2TA5UVw/wm/XW26NAJ7sg59Je0+9QrwiZt6MPQ==", + "path": "npgsql.entityframeworkcore.postgresql/8.0.10", + "hashPath": "npgsql.entityframeworkcore.postgresql.8.0.10.nupkg.sha512" + }, + "ShimSkiaSharp/2.0.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7UDQA2c0k56I8yvgHWoRTq4JUOLU9alajszvixR4IDhXgTJaEHqXqzu618Dh26K31zvKMR4ndc9y+OhtuDdhqQ==", + "path": "shimskiasharp/2.0.0.4", + "hashPath": "shimskiasharp.2.0.0.4.nupkg.sha512" + }, + "SkiaSharp/2.88.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bRkp3uKp5ZI8gXYQT57uKwil1uobb2p8c69n7v5evlB/2JNcMAXVcw9DZAP5Ig3WSvgzGm2YSn27UVeOi05NlA==", + "path": "skiasharp/2.88.8", + "hashPath": "skiasharp.2.88.8.nupkg.sha512" + }, + "SkiaSharp.HarfBuzz/2.88.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ajSyJ2D17R0kZ4FwKwFrJTsYs3D3Y9iRBLhNecROR7dOxC6VTFaMPXJuwQB8KYpAqgmb2JAJFEgZ3i8MaaIw1g==", + "path": "skiasharp.harfbuzz/2.88.8", + "hashPath": "skiasharp.harfbuzz.2.88.8.nupkg.sha512" + }, + "SkiaSharp.NativeAssets.Linux/2.88.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0FO6YA7paNFBMJULvEyecPmCvL9/STvOAi5VOUw2srqJ7pNTbiiZkfl7sulAzcumbWgfzaVjRXYTgMj7SoUnWQ==", + "path": "skiasharp.nativeassets.linux/2.88.8", + "hashPath": "skiasharp.nativeassets.linux.2.88.8.nupkg.sha512" + }, + "SkiaSharp.NativeAssets.macOS/2.88.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6Kn5TSkKlfyS6azWHF3Jk2sW5C4jCE5uSshM/5AbfFrR+5n6qM5XEnz9h4VaVl7LTxBvHvMkuPb/3bpbq0vxTw==", + "path": "skiasharp.nativeassets.macos/2.88.8", + "hashPath": "skiasharp.nativeassets.macos.2.88.8.nupkg.sha512" + }, + "SkiaSharp.NativeAssets.WebAssembly/2.88.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-S3qRo8c+gVYOyfrdf6FYnjx/ft+gPkb4dNY2IPv5Oy5yNBhDhXhKqHFr9h4+ne6ZU+7D4dbuRQqsIqCo8u1/DA==", + "path": "skiasharp.nativeassets.webassembly/2.88.8", + "hashPath": "skiasharp.nativeassets.webassembly.2.88.8.nupkg.sha512" + }, + "SkiaSharp.NativeAssets.Win32/2.88.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-O9QXoWEXA+6cweR4h3BOnwMz+pO9vL9mXdjLrpDd0w1QzCgWmLQBxa1VgySDITiH7nQndrDG1h6937zm9pLj1Q==", + "path": "skiasharp.nativeassets.win32/2.88.8", + "hashPath": "skiasharp.nativeassets.win32.2.88.8.nupkg.sha512" + }, + "Svg.Custom/2.0.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RTA2brxnCbPi+hR8Z6qRGNA0aB7CGR2dBn57xmK3KXbuZPmiV1OUEjuI5++oMN6HcnEMIXSa8UkHTanjNt3eMA==", + "path": "svg.custom/2.0.0.4", + "hashPath": "svg.custom.2.0.0.4.nupkg.sha512" + }, + "Svg.Model/2.0.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-u3O0EW7w4PUI7hyYKeH9F5hm1KDgRnz3KRutwTyRwGia/MqCuYF6nf9HeNiw7rOuX0tR14wa8peQ/rw9RpWSOQ==", + "path": "svg.model/2.0.0.4", + "hashPath": "svg.model.2.0.0.4.nupkg.sha512" + }, + "Svg.Skia/2.0.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RlM5lc+y9yIXdBnMKvuyutBdylSWGTfg7hqiGz6dLcJdOYiKQS+WcCECC+pYMTauSNeTQX77YMryMKiG1lMFyQ==", + "path": "svg.skia/2.0.0.4", + "hashPath": "svg.skia.2.0.0.4.nupkg.sha512" + }, + "System.CodeDom/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==", + "path": "system.codedom/4.4.0", + "hashPath": "system.codedom.4.4.0.nupkg.sha512" + }, + "System.Collections.Immutable/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==", + "path": "system.collections.immutable/6.0.0", + "hashPath": "system.collections.immutable.6.0.0.nupkg.sha512" + }, + "System.Composition/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==", + "path": "system.composition/6.0.0", + "hashPath": "system.composition.6.0.0.nupkg.sha512" + }, + "System.Composition.AttributedModel/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w==", + "path": "system.composition.attributedmodel/6.0.0", + "hashPath": "system.composition.attributedmodel.6.0.0.nupkg.sha512" + }, + "System.Composition.Convention/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==", + "path": "system.composition.convention/6.0.0", + "hashPath": "system.composition.convention.6.0.0.nupkg.sha512" + }, + "System.Composition.Hosting/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==", + "path": "system.composition.hosting/6.0.0", + "hashPath": "system.composition.hosting.6.0.0.nupkg.sha512" + }, + "System.Composition.Runtime/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg==", + "path": "system.composition.runtime/6.0.0", + "hashPath": "system.composition.runtime.6.0.0.nupkg.sha512" + }, + "System.Composition.TypedParts/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==", + "path": "system.composition.typedparts/6.0.0", + "hashPath": "system.composition.typedparts.6.0.0.nupkg.sha512" + }, + "System.IO.Pipelines/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FHNOatmUq0sqJOkTx+UF/9YK1f180cnW5FVqnQMvYUN0elp6wFzbtPSiqbo1/ru8ICp43JM1i7kKkk6GsNGHlA==", + "path": "system.io.pipelines/8.0.0", + "hashPath": "system.io.pipelines.8.0.0.nupkg.sha512" + }, + "System.Reflection.Metadata/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-III/lNMSn0ZRBuM9m5Cgbiho5j81u0FAEagFX5ta2DKbljZ3T0IpD8j+BIiHQPeKqJppWS9bGEp6JnKnWKze0g==", + "path": "system.reflection.metadata/6.0.1", + "hashPath": "system.reflection.metadata.6.0.1.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", + "path": "system.text.encoding.codepages/6.0.0", + "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512" + }, + "System.Threading.Channels/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TY8/9+tI0mNaUMgntOxxaq2ndTkdXqLSxvPmas7XEqOlv9lQtB7wLjYGd756lOaO7Dvb5r/WXhluM+0Xe87v5Q==", + "path": "system.threading.channels/6.0.0", + "hashPath": "system.threading.channels.6.0.0.nupkg.sha512" + }, + "Tmds.DBus.Protocol/0.20.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2gkt2kuYPhDKd8gtl34jZSJOnn4nRJfFngCDcTZT/uySbK++ua0YQx2418l9Rn1Y4dE5XNq6zG9ZsE5ltLlNNw==", + "path": "tmds.dbus.protocol/0.20.0", + "hashPath": "tmds.dbus.protocol.0.20.0.nupkg.sha512" + }, + "ZXing.Net/0.16.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9avtcn21T7Ndcl8PQ1LHR7/wEoCruX1QKKHvO6zBPTsDW9IdvR5vKOmd618AY+DtDWZz8NaFDTkpbZdgaF4l4w==", + "path": "zxing.net/0.16.10", + "hashPath": "zxing.net.0.16.10.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/bin/Debug/net8.0/demo_hard.dll b/bin/Debug/net8.0/demo_hard.dll new file mode 100644 index 0000000..c8806fc Binary files /dev/null and b/bin/Debug/net8.0/demo_hard.dll differ diff --git a/bin/Debug/net8.0/demo_hard.exe b/bin/Debug/net8.0/demo_hard.exe new file mode 100644 index 0000000..e222634 Binary files /dev/null and b/bin/Debug/net8.0/demo_hard.exe differ diff --git a/bin/Debug/net8.0/demo_hard.pdb b/bin/Debug/net8.0/demo_hard.pdb new file mode 100644 index 0000000..855e387 Binary files /dev/null and b/bin/Debug/net8.0/demo_hard.pdb differ diff --git a/bin/Debug/net8.0/demo_hard.runtimeconfig.json b/bin/Debug/net8.0/demo_hard.runtimeconfig.json new file mode 100644 index 0000000..3a4aba4 --- /dev/null +++ b/bin/Debug/net8.0/demo_hard.runtimeconfig.json @@ -0,0 +1,14 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + "configProperties": { + "System.Reflection.NullabilityInfoContext.IsSupported": true, + "System.Runtime.InteropServices.BuiltInComInterop.IsSupported": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..1e5038d Binary files /dev/null and b/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..456ac85 Binary files /dev/null and b/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..7bb3187 Binary files /dev/null and b/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..01edef3 Binary files /dev/null and b/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll differ diff --git a/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..de36d31 Binary files /dev/null and b/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..71d6443 Binary files /dev/null and b/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..23107b9 Binary files /dev/null and b/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..291cf9b Binary files /dev/null and b/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..ef0d337 Binary files /dev/null and b/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..f266330 Binary files /dev/null and b/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..6affe5c Binary files /dev/null and b/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..263bd04 Binary files /dev/null and b/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll differ diff --git a/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..a94da35 Binary files /dev/null and b/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..c94e8e6 Binary files /dev/null and b/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..6e0e837 Binary files /dev/null and b/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..212267a Binary files /dev/null and b/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll differ diff --git a/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..1fae94d Binary files /dev/null and b/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..b2e573c Binary files /dev/null and b/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..fdbe6ff Binary files /dev/null and b/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..5fee24c Binary files /dev/null and b/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll differ diff --git a/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..9533b36 Binary files /dev/null and b/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..fa25298 Binary files /dev/null and b/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..1297d58 Binary files /dev/null and b/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..8af36a3 Binary files /dev/null and b/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll differ diff --git a/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..197797b Binary files /dev/null and b/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..0fd342c Binary files /dev/null and b/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..c09c2ab Binary files /dev/null and b/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..d6eaab6 Binary files /dev/null and b/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll differ diff --git a/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..ecfe483 Binary files /dev/null and b/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..e9133a5 Binary files /dev/null and b/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..baa7776 Binary files /dev/null and b/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..74714d8 Binary files /dev/null and b/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll differ diff --git a/bin/Debug/net8.0/runtimes/linux-arm/native/libHarfBuzzSharp.so b/bin/Debug/net8.0/runtimes/linux-arm/native/libHarfBuzzSharp.so new file mode 100644 index 0000000..2c6fbe3 Binary files /dev/null and b/bin/Debug/net8.0/runtimes/linux-arm/native/libHarfBuzzSharp.so differ diff --git a/bin/Debug/net8.0/runtimes/linux-arm/native/libSkiaSharp.so b/bin/Debug/net8.0/runtimes/linux-arm/native/libSkiaSharp.so new file mode 100644 index 0000000..e438777 Binary files /dev/null and b/bin/Debug/net8.0/runtimes/linux-arm/native/libSkiaSharp.so differ diff --git a/bin/Debug/net8.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so b/bin/Debug/net8.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so new file mode 100644 index 0000000..89e71b5 Binary files /dev/null and b/bin/Debug/net8.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so differ diff --git a/bin/Debug/net8.0/runtimes/linux-arm64/native/libSkiaSharp.so b/bin/Debug/net8.0/runtimes/linux-arm64/native/libSkiaSharp.so new file mode 100644 index 0000000..f159ff4 Binary files /dev/null and b/bin/Debug/net8.0/runtimes/linux-arm64/native/libSkiaSharp.so differ diff --git a/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so b/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so new file mode 100644 index 0000000..43ea300 Binary files /dev/null and b/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so differ diff --git a/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libSkiaSharp.so b/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libSkiaSharp.so new file mode 100644 index 0000000..6c63070 Binary files /dev/null and b/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libSkiaSharp.so differ diff --git a/bin/Debug/net8.0/runtimes/linux-x64/native/libHarfBuzzSharp.so b/bin/Debug/net8.0/runtimes/linux-x64/native/libHarfBuzzSharp.so new file mode 100644 index 0000000..d8548f3 Binary files /dev/null and b/bin/Debug/net8.0/runtimes/linux-x64/native/libHarfBuzzSharp.so differ diff --git a/bin/Debug/net8.0/runtimes/linux-x64/native/libSkiaSharp.so b/bin/Debug/net8.0/runtimes/linux-x64/native/libSkiaSharp.so new file mode 100644 index 0000000..7501c49 Binary files /dev/null and b/bin/Debug/net8.0/runtimes/linux-x64/native/libSkiaSharp.so differ diff --git a/bin/Debug/net8.0/runtimes/osx/native/libAvaloniaNative.dylib b/bin/Debug/net8.0/runtimes/osx/native/libAvaloniaNative.dylib new file mode 100644 index 0000000..b2cd098 Binary files /dev/null and b/bin/Debug/net8.0/runtimes/osx/native/libAvaloniaNative.dylib differ diff --git a/bin/Debug/net8.0/runtimes/osx/native/libHarfBuzzSharp.dylib b/bin/Debug/net8.0/runtimes/osx/native/libHarfBuzzSharp.dylib new file mode 100644 index 0000000..4006008 Binary files /dev/null and b/bin/Debug/net8.0/runtimes/osx/native/libHarfBuzzSharp.dylib differ diff --git a/bin/Debug/net8.0/runtimes/osx/native/libSkiaSharp.dylib b/bin/Debug/net8.0/runtimes/osx/native/libSkiaSharp.dylib new file mode 100644 index 0000000..996a7b9 Binary files /dev/null and b/bin/Debug/net8.0/runtimes/osx/native/libSkiaSharp.dylib differ diff --git a/bin/Debug/net8.0/runtimes/win-arm64/native/av_libglesv2.dll b/bin/Debug/net8.0/runtimes/win-arm64/native/av_libglesv2.dll new file mode 100644 index 0000000..7b5c978 Binary files /dev/null and b/bin/Debug/net8.0/runtimes/win-arm64/native/av_libglesv2.dll differ diff --git a/bin/Debug/net8.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll b/bin/Debug/net8.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll new file mode 100644 index 0000000..9075de6 Binary files /dev/null and b/bin/Debug/net8.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll differ diff --git a/bin/Debug/net8.0/runtimes/win-arm64/native/libSkiaSharp.dll b/bin/Debug/net8.0/runtimes/win-arm64/native/libSkiaSharp.dll new file mode 100644 index 0000000..3aaf63f Binary files /dev/null and b/bin/Debug/net8.0/runtimes/win-arm64/native/libSkiaSharp.dll differ diff --git a/bin/Debug/net8.0/runtimes/win-x64/native/av_libglesv2.dll b/bin/Debug/net8.0/runtimes/win-x64/native/av_libglesv2.dll new file mode 100644 index 0000000..c327f9e Binary files /dev/null and b/bin/Debug/net8.0/runtimes/win-x64/native/av_libglesv2.dll differ diff --git a/bin/Debug/net8.0/runtimes/win-x64/native/libHarfBuzzSharp.dll b/bin/Debug/net8.0/runtimes/win-x64/native/libHarfBuzzSharp.dll new file mode 100644 index 0000000..6e91171 Binary files /dev/null and b/bin/Debug/net8.0/runtimes/win-x64/native/libHarfBuzzSharp.dll differ diff --git a/bin/Debug/net8.0/runtimes/win-x64/native/libSkiaSharp.dll b/bin/Debug/net8.0/runtimes/win-x64/native/libSkiaSharp.dll new file mode 100644 index 0000000..d00d746 Binary files /dev/null and b/bin/Debug/net8.0/runtimes/win-x64/native/libSkiaSharp.dll differ diff --git a/bin/Debug/net8.0/runtimes/win-x86/native/av_libglesv2.dll b/bin/Debug/net8.0/runtimes/win-x86/native/av_libglesv2.dll new file mode 100644 index 0000000..e517c3c Binary files /dev/null and b/bin/Debug/net8.0/runtimes/win-x86/native/av_libglesv2.dll differ diff --git a/bin/Debug/net8.0/runtimes/win-x86/native/libHarfBuzzSharp.dll b/bin/Debug/net8.0/runtimes/win-x86/native/libHarfBuzzSharp.dll new file mode 100644 index 0000000..c555971 Binary files /dev/null and b/bin/Debug/net8.0/runtimes/win-x86/native/libHarfBuzzSharp.dll differ diff --git a/bin/Debug/net8.0/runtimes/win-x86/native/libSkiaSharp.dll b/bin/Debug/net8.0/runtimes/win-x86/native/libSkiaSharp.dll new file mode 100644 index 0000000..2414e4c Binary files /dev/null and b/bin/Debug/net8.0/runtimes/win-x86/native/libSkiaSharp.dll differ diff --git a/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..2fbf86e Binary files /dev/null and b/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..4c57b04 Binary files /dev/null and b/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..b551e37 Binary files /dev/null and b/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..8758fff Binary files /dev/null and b/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..de4fe51 Binary files /dev/null and b/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..67b261c Binary files /dev/null and b/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..c6b8d86 Binary files /dev/null and b/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..a14ec60 Binary files /dev/null and b/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll differ diff --git a/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..2d39791 Binary files /dev/null and b/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..86802cf Binary files /dev/null and b/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll b/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..691a8fa Binary files /dev/null and b/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..e8e4ee0 Binary files /dev/null and b/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll differ diff --git a/bin/Debug/net8.0/zxing.dll b/bin/Debug/net8.0/zxing.dll new file mode 100644 index 0000000..530e254 Binary files /dev/null and b/bin/Debug/net8.0/zxing.dll differ diff --git a/demo_hard.csproj b/demo_hard.csproj new file mode 100644 index 0000000..df5303b --- /dev/null +++ b/demo_hard.csproj @@ -0,0 +1,40 @@ + + + WinExe + net8.0 + enable + true + app.manifest + true + + + + + + + + + + + None + All + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + + + + EnterHistoryWindowWindow.axaml + + + + + + + diff --git a/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache b/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache new file mode 100644 index 0000000..1f15c6c --- /dev/null +++ b/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache @@ -0,0 +1 @@ +7bd792969d0e1c5aa476c6914b8805187185d662014bc5d469b568f22eb08434 diff --git a/obj/Debug/net8.0/Avalonia/demo_hard.dll b/obj/Debug/net8.0/Avalonia/demo_hard.dll new file mode 100644 index 0000000..c8806fc Binary files /dev/null and b/obj/Debug/net8.0/Avalonia/demo_hard.dll differ diff --git a/obj/Debug/net8.0/Avalonia/demo_hard.pdb b/obj/Debug/net8.0/Avalonia/demo_hard.pdb new file mode 100644 index 0000000..855e387 Binary files /dev/null and b/obj/Debug/net8.0/Avalonia/demo_hard.pdb differ diff --git a/obj/Debug/net8.0/Avalonia/references b/obj/Debug/net8.0/Avalonia/references new file mode 100644 index 0000000..0ad3b2f --- /dev/null +++ b/obj/Debug/net8.0/Avalonia/references @@ -0,0 +1,214 @@ +C:\Users\sokol\.nuget\packages\avalonia\11.2.1\ref\net8.0\Avalonia.Base.dll +C:\Users\sokol\.nuget\packages\avalonia.controls.colorpicker\11.2.1\lib\net8.0\Avalonia.Controls.ColorPicker.dll +C:\Users\sokol\.nuget\packages\avalonia.controls.datagrid\11.2.1\lib\net8.0\Avalonia.Controls.DataGrid.dll +C:\Users\sokol\.nuget\packages\avalonia\11.2.1\ref\net8.0\Avalonia.Controls.dll +C:\Users\sokol\.nuget\packages\avalonia\11.2.1\ref\net8.0\Avalonia.DesignerSupport.dll +C:\Users\sokol\.nuget\packages\avalonia.desktop\11.2.1\lib\net8.0\Avalonia.Desktop.dll +C:\Users\sokol\.nuget\packages\avalonia.diagnostics\11.2.1\lib\net8.0\Avalonia.Diagnostics.dll +C:\Users\sokol\.nuget\packages\avalonia\11.2.1\ref\net8.0\Avalonia.Dialogs.dll +C:\Users\sokol\.nuget\packages\avalonia\11.2.1\ref\net8.0\Avalonia.dll +C:\Users\sokol\.nuget\packages\avalonia.fonts.inter\11.2.1\lib\net8.0\Avalonia.Fonts.Inter.dll +C:\Users\sokol\.nuget\packages\avalonia.freedesktop\11.2.1\lib\net8.0\Avalonia.FreeDesktop.dll +C:\Users\sokol\.nuget\packages\avalonia\11.2.1\ref\net8.0\Avalonia.Markup.dll +C:\Users\sokol\.nuget\packages\avalonia\11.2.1\ref\net8.0\Avalonia.Markup.Xaml.dll +C:\Users\sokol\.nuget\packages\avalonia\11.2.1\ref\net8.0\Avalonia.Metal.dll +C:\Users\sokol\.nuget\packages\avalonia\11.2.1\ref\net8.0\Avalonia.MicroCom.dll +C:\Users\sokol\.nuget\packages\avalonia.native\11.2.1\lib\net8.0\Avalonia.Native.dll +C:\Users\sokol\.nuget\packages\avalonia\11.2.1\ref\net8.0\Avalonia.OpenGL.dll +C:\Users\sokol\.nuget\packages\avalonia.remote.protocol\11.2.1\lib\net8.0\Avalonia.Remote.Protocol.dll +C:\Users\sokol\.nuget\packages\avalonia.skia\11.2.1\lib\net8.0\Avalonia.Skia.dll +C:\Users\sokol\.nuget\packages\avalonia.svg.skia\11.2.0.2\lib\net8.0\Avalonia.Svg.Skia.dll +C:\Users\sokol\.nuget\packages\avalonia.themes.fluent\11.2.1\lib\net8.0\Avalonia.Themes.Fluent.dll +C:\Users\sokol\.nuget\packages\avalonia.themes.simple\11.2.1\lib\net8.0\Avalonia.Themes.Simple.dll +C:\Users\sokol\.nuget\packages\avalonia\11.2.1\ref\net8.0\Avalonia.Vulkan.dll +C:\Users\sokol\.nuget\packages\avalonia.win32\11.2.1\lib\net8.0\Avalonia.Win32.dll +C:\Users\sokol\.nuget\packages\avalonia.x11\11.2.1\lib\net8.0\Avalonia.X11.dll +C:\Users\sokol\.nuget\packages\excss\4.2.3\lib\net7.0\ExCSS.dll +C:\Users\sokol\.nuget\packages\harfbuzzsharp\7.3.0.2\lib\net6.0\HarfBuzzSharp.dll +C:\Users\sokol\.nuget\packages\microcom.runtime\0.11.0\lib\net5.0\MicroCom.Runtime.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\Microsoft.CSharp.dll +C:\Users\sokol\.nuget\packages\microsoft.entityframeworkcore.abstractions\8.0.10\lib\net8.0\Microsoft.EntityFrameworkCore.Abstractions.dll +C:\Users\sokol\.nuget\packages\microsoft.entityframeworkcore\8.0.10\lib\net8.0\Microsoft.EntityFrameworkCore.dll +C:\Users\sokol\.nuget\packages\microsoft.entityframeworkcore.relational\8.0.10\lib\net8.0\Microsoft.EntityFrameworkCore.Relational.dll +C:\Users\sokol\.nuget\packages\microsoft.extensions.caching.abstractions\8.0.0\lib\net8.0\Microsoft.Extensions.Caching.Abstractions.dll +C:\Users\sokol\.nuget\packages\microsoft.extensions.caching.memory\8.0.1\lib\net8.0\Microsoft.Extensions.Caching.Memory.dll +C:\Users\sokol\.nuget\packages\microsoft.extensions.configuration.abstractions\8.0.0\lib\net8.0\Microsoft.Extensions.Configuration.Abstractions.dll +C:\Users\sokol\.nuget\packages\microsoft.extensions.dependencyinjection.abstractions\8.0.2\lib\net8.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll +C:\Users\sokol\.nuget\packages\microsoft.extensions.dependencyinjection\8.0.1\lib\net8.0\Microsoft.Extensions.DependencyInjection.dll +C:\Users\sokol\.nuget\packages\microsoft.extensions.logging.abstractions\8.0.2\lib\net8.0\Microsoft.Extensions.Logging.Abstractions.dll +C:\Users\sokol\.nuget\packages\microsoft.extensions.logging\8.0.1\lib\net8.0\Microsoft.Extensions.Logging.dll +C:\Users\sokol\.nuget\packages\microsoft.extensions.options\8.0.2\lib\net8.0\Microsoft.Extensions.Options.dll +C:\Users\sokol\.nuget\packages\microsoft.extensions.primitives\8.0.0\lib\net8.0\Microsoft.Extensions.Primitives.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\Microsoft.VisualBasic.Core.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\Microsoft.VisualBasic.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\Microsoft.Win32.Primitives.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\Microsoft.Win32.Registry.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\mscorlib.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\netstandard.dll +C:\Users\sokol\.nuget\packages\npgsql\8.0.5\lib\net8.0\Npgsql.dll +C:\Users\sokol\.nuget\packages\npgsql.entityframeworkcore.postgresql\8.0.10\lib\net8.0\Npgsql.EntityFrameworkCore.PostgreSQL.dll +C:\Users\sokol\.nuget\packages\shimskiasharp\2.0.0.4\lib\net8.0\ShimSkiaSharp.dll +C:\Users\sokol\.nuget\packages\skiasharp\2.88.8\lib\net6.0\SkiaSharp.dll +C:\Users\sokol\.nuget\packages\skiasharp.harfbuzz\2.88.8\lib\net6.0\SkiaSharp.HarfBuzz.dll +C:\Users\sokol\.nuget\packages\svg.custom\2.0.0.4\lib\net8.0\Svg.Custom.dll +C:\Users\sokol\.nuget\packages\svg.model\2.0.0.4\lib\net8.0\Svg.Model.dll +C:\Users\sokol\.nuget\packages\svg.skia\2.0.0.4\lib\net8.0\Svg.Skia.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.AppContext.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Buffers.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Collections.Concurrent.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Collections.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Collections.Immutable.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Collections.NonGeneric.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Collections.Specialized.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.ComponentModel.Annotations.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.ComponentModel.DataAnnotations.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.ComponentModel.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.ComponentModel.EventBasedAsync.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.ComponentModel.Primitives.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.ComponentModel.TypeConverter.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Configuration.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Console.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Core.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Data.Common.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Data.DataSetExtensions.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Data.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Diagnostics.Contracts.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Diagnostics.Debug.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Diagnostics.DiagnosticSource.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Diagnostics.FileVersionInfo.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Diagnostics.Process.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Diagnostics.StackTrace.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Diagnostics.TextWriterTraceListener.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Diagnostics.Tools.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Diagnostics.TraceSource.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Diagnostics.Tracing.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Drawing.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Drawing.Primitives.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Dynamic.Runtime.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Formats.Asn1.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Formats.Tar.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Globalization.Calendars.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Globalization.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Globalization.Extensions.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.IO.Compression.Brotli.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.IO.Compression.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.IO.Compression.FileSystem.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.IO.Compression.ZipFile.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.IO.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.IO.FileSystem.AccessControl.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.IO.FileSystem.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.IO.FileSystem.DriveInfo.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.IO.FileSystem.Primitives.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.IO.FileSystem.Watcher.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.IO.IsolatedStorage.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.IO.MemoryMappedFiles.dll +C:\Users\sokol\.nuget\packages\system.io.pipelines\8.0.0\lib\net8.0\System.IO.Pipelines.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.IO.Pipes.AccessControl.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.IO.Pipes.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.IO.UnmanagedMemoryStream.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Linq.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Linq.Expressions.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Linq.Parallel.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Linq.Queryable.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Memory.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Net.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Net.Http.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Net.Http.Json.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Net.HttpListener.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Net.Mail.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Net.NameResolution.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Net.NetworkInformation.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Net.Ping.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Net.Primitives.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Net.Quic.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Net.Requests.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Net.Security.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Net.ServicePoint.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Net.Sockets.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Net.WebClient.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Net.WebHeaderCollection.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Net.WebProxy.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Net.WebSockets.Client.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Net.WebSockets.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Numerics.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Numerics.Vectors.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.ObjectModel.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Reflection.DispatchProxy.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Reflection.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Reflection.Emit.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Reflection.Emit.ILGeneration.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Reflection.Emit.Lightweight.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Reflection.Extensions.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Reflection.Metadata.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Reflection.Primitives.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Reflection.TypeExtensions.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Resources.Reader.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Resources.ResourceManager.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Resources.Writer.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Runtime.CompilerServices.Unsafe.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Runtime.CompilerServices.VisualC.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Runtime.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Runtime.Extensions.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Runtime.Handles.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Runtime.InteropServices.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Runtime.InteropServices.JavaScript.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Runtime.InteropServices.RuntimeInformation.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Runtime.Intrinsics.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Runtime.Loader.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Runtime.Numerics.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Runtime.Serialization.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Runtime.Serialization.Formatters.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Runtime.Serialization.Json.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Runtime.Serialization.Primitives.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Runtime.Serialization.Xml.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Security.AccessControl.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Security.Claims.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Security.Cryptography.Algorithms.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Security.Cryptography.Cng.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Security.Cryptography.Csp.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Security.Cryptography.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Security.Cryptography.Encoding.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Security.Cryptography.OpenSsl.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Security.Cryptography.Primitives.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Security.Cryptography.X509Certificates.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Security.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Security.Principal.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Security.Principal.Windows.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Security.SecureString.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.ServiceModel.Web.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.ServiceProcess.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Text.Encoding.CodePages.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Text.Encoding.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Text.Encoding.Extensions.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Text.Encodings.Web.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Text.Json.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Text.RegularExpressions.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Threading.Channels.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Threading.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Threading.Overlapped.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Threading.Tasks.Dataflow.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Threading.Tasks.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Threading.Tasks.Extensions.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Threading.Tasks.Parallel.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Threading.Thread.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Threading.ThreadPool.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Threading.Timer.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Transactions.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Transactions.Local.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.ValueTuple.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Web.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Web.HttpUtility.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Windows.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Xml.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Xml.Linq.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Xml.ReaderWriter.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Xml.Serialization.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Xml.XDocument.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Xml.XmlDocument.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Xml.XmlSerializer.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Xml.XPath.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\System.Xml.XPath.XDocument.dll +C:\Users\sokol\.nuget\packages\tmds.dbus.protocol\0.20.0\lib\net8.0\Tmds.DBus.Protocol.dll +C:\Users\sokol\.nuget\packages\microsoft.netcore.app.ref\8.0.12\ref\net8.0\WindowsBase.dll +C:\Users\sokol\.nuget\packages\zxing.net\0.16.10\lib\net8.0\zxing.dll diff --git a/obj/Debug/net8.0/Avalonia/resources b/obj/Debug/net8.0/Avalonia/resources new file mode 100644 index 0000000..7c5a5b1 Binary files /dev/null and b/obj/Debug/net8.0/Avalonia/resources differ diff --git a/obj/Debug/net8.0/apphost b/obj/Debug/net8.0/apphost new file mode 100644 index 0000000..066b11a Binary files /dev/null and b/obj/Debug/net8.0/apphost differ diff --git a/obj/Debug/net8.0/apphost.exe b/obj/Debug/net8.0/apphost.exe new file mode 100644 index 0000000..e222634 Binary files /dev/null and b/obj/Debug/net8.0/apphost.exe differ diff --git a/obj/Debug/net8.0/demo_hard.AssemblyInfo.cs b/obj/Debug/net8.0/demo_hard.AssemblyInfo.cs new file mode 100644 index 0000000..52d051e --- /dev/null +++ b/obj/Debug/net8.0/demo_hard.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("demo_hard")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+35948e2f7930d51d02ff270c1b9716997a137f13")] +[assembly: System.Reflection.AssemblyProductAttribute("demo_hard")] +[assembly: System.Reflection.AssemblyTitleAttribute("demo_hard")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Создано классом WriteCodeFragment MSBuild. + diff --git a/obj/Debug/net8.0/demo_hard.AssemblyInfoInputs.cache b/obj/Debug/net8.0/demo_hard.AssemblyInfoInputs.cache new file mode 100644 index 0000000..d67c09f --- /dev/null +++ b/obj/Debug/net8.0/demo_hard.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +4dfcac57e00f99bed249a768354c782e7687e32487b7c7b52914c8db973043c4 diff --git a/obj/Debug/net8.0/demo_hard.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net8.0/demo_hard.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..fe1147d --- /dev/null +++ b/obj/Debug/net8.0/demo_hard.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,37 @@ +is_global = true +build_property.AvaloniaNameGeneratorIsEnabled = true +build_property.AvaloniaNameGeneratorBehavior = InitializeComponent +build_property.AvaloniaNameGeneratorDefaultFieldModifier = internal +build_property.AvaloniaNameGeneratorFilterByPath = * +build_property.AvaloniaNameGeneratorFilterByNamespace = * +build_property.AvaloniaNameGeneratorViewFileNamingStrategy = NamespaceAndClassName +build_property.AvaloniaNameGeneratorAttachDevTools = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = demo_hard +build_property.ProjectDir = C:\Users\sokol\RiderProjects\demo_hard\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 8.0 +build_property.EnableCodeStyleSeverity = + +[C:/Users/sokol/RiderProjects/demo_hard/App.axaml] +build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml + +[C:/Users/sokol/RiderProjects/demo_hard/EnterHistoryWindow.axaml] +build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml + +[C:/Users/sokol/RiderProjects/demo_hard/FunctionWindow.axaml] +build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml + +[C:/Users/sokol/RiderProjects/demo_hard/MainWindow.axaml] +build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml + +[C:/Users/sokol/RiderProjects/demo_hard/SallerWindow.axaml] +build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml diff --git a/obj/Debug/net8.0/demo_hard.assets.cache b/obj/Debug/net8.0/demo_hard.assets.cache new file mode 100644 index 0000000..51df237 Binary files /dev/null and b/obj/Debug/net8.0/demo_hard.assets.cache differ diff --git a/obj/Debug/net8.0/demo_hard.csproj.AssemblyReference.cache b/obj/Debug/net8.0/demo_hard.csproj.AssemblyReference.cache new file mode 100644 index 0000000..d4e966c Binary files /dev/null and b/obj/Debug/net8.0/demo_hard.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net8.0/demo_hard.csproj.CoreCompileInputs.cache b/obj/Debug/net8.0/demo_hard.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..c1984a6 --- /dev/null +++ b/obj/Debug/net8.0/demo_hard.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +ef1f79163ce2b8e318976ac9f81a9b4f3018f4751bdee68c720ebf5f9948d852 diff --git a/obj/Debug/net8.0/demo_hard.csproj.FileListAbsolute.txt b/obj/Debug/net8.0/demo_hard.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..56297f5 --- /dev/null +++ b/obj/Debug/net8.0/demo_hard.csproj.FileListAbsolute.txt @@ -0,0 +1,317 @@ +/home/class_student/Desktops/Desktop1/project/demo_hard/demo_hard/bin/Debug/net8.0/demo_hard +/home/class_student/Desktops/Desktop1/project/demo_hard/demo_hard/bin/Debug/net8.0/demo_hard.dll +/home/class_student/Desktops/Desktop1/project/demo_hard/demo_hard/bin/Debug/net8.0/demo_hard.pdb +/home/class_student/Desktops/Desktop1/project/demo_hard/demo_hard/obj/Debug/net8.0/demo_hard.csproj.AssemblyReference.cache +/home/class_student/Desktops/Desktop1/project/demo_hard/demo_hard/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache +/home/class_student/Desktops/Desktop1/project/demo_hard/demo_hard/obj/Debug/net8.0/Avalonia/resources +/home/class_student/Desktops/Desktop1/project/demo_hard/demo_hard/obj/Debug/net8.0/demo_hard.GeneratedMSBuildEditorConfig.editorconfig +/home/class_student/Desktops/Desktop1/project/demo_hard/demo_hard/obj/Debug/net8.0/demo_hard.AssemblyInfoInputs.cache +/home/class_student/Desktops/Desktop1/project/demo_hard/demo_hard/obj/Debug/net8.0/demo_hard.AssemblyInfo.cs +/home/class_student/Desktops/Desktop1/project/demo_hard/demo_hard/obj/Debug/net8.0/demo_hard.csproj.CoreCompileInputs.cache +/home/class_student/Desktops/Desktop1/project/demo_hard/demo_hard/obj/Debug/net8.0/Avalonia/demo_hard.dll +/home/class_student/Desktops/Desktop1/project/demo_hard/demo_hard/obj/Debug/net8.0/Avalonia/demo_hard.pdb +/home/class_student/Desktops/Desktop1/project/demo_hard/demo_hard/obj/Debug/net8.0/refint/Avalonia/demo_hard.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/demo_hard +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/demo_hard.deps.json +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/demo_hard.runtimeconfig.json +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/demo_hard.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/demo_hard.pdb +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.Base.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.Controls.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.DesignerSupport.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.Dialogs.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.Markup.Xaml.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.Markup.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.Metal.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.MicroCom.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.OpenGL.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.Vulkan.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.Controls.ColorPicker.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.Controls.DataGrid.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.Desktop.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.Diagnostics.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.Fonts.Inter.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.FreeDesktop.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.Native.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.Remote.Protocol.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.Skia.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.Themes.Fluent.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.Themes.Simple.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.Win32.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.X11.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/HarfBuzzSharp.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Humanizer.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/MicroCom.Runtime.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.Extensions.Caching.Abstractions.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.Extensions.Options.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.Extensions.Primitives.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Mono.TextTemplating.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Npgsql.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/SkiaSharp.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/System.CodeDom.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/System.Composition.AttributedModel.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/System.Composition.Convention.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/System.Composition.Hosting.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/System.Composition.Runtime.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/System.Composition.TypedParts.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/System.IO.Pipelines.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Tmds.DBus.Protocol.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/win-arm64/native/av_libglesv2.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/win-x64/native/av_libglesv2.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/win-x86/native/av_libglesv2.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/osx/native/libAvaloniaNative.dylib +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/linux-arm/native/libHarfBuzzSharp.so +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/linux-x64/native/libHarfBuzzSharp.so +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/osx/native/libHarfBuzzSharp.dylib +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/win-x64/native/libHarfBuzzSharp.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/win-x86/native/libHarfBuzzSharp.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/linux-arm/native/libSkiaSharp.so +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/linux-arm64/native/libSkiaSharp.so +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libSkiaSharp.so +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/linux-x64/native/libSkiaSharp.so +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/osx/native/libSkiaSharp.dylib +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/win-arm64/native/libSkiaSharp.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/win-x64/native/libSkiaSharp.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/win-x86/native/libSkiaSharp.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/obj/Debug/net8.0/demo_hard.csproj.AssemblyReference.cache +/home/class_student/RiderProjects/demo_hard/demo_hard/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache +/home/class_student/RiderProjects/demo_hard/demo_hard/obj/Debug/net8.0/Avalonia/resources +/home/class_student/RiderProjects/demo_hard/demo_hard/obj/Debug/net8.0/demo_hard.GeneratedMSBuildEditorConfig.editorconfig +/home/class_student/RiderProjects/demo_hard/demo_hard/obj/Debug/net8.0/demo_hard.AssemblyInfoInputs.cache +/home/class_student/RiderProjects/demo_hard/demo_hard/obj/Debug/net8.0/demo_hard.AssemblyInfo.cs +/home/class_student/RiderProjects/demo_hard/demo_hard/obj/Debug/net8.0/demo_hard.csproj.CoreCompileInputs.cache +/home/class_student/RiderProjects/demo_hard/demo_hard/obj/Debug/net8.0/Avalonia/demo_hard.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/obj/Debug/net8.0/Avalonia/demo_hard.pdb +/home/class_student/RiderProjects/demo_hard/demo_hard/obj/Debug/net8.0/refint/Avalonia/demo_hard.dll +/home/class_student/RiderProjects/demo_hard/demo_hard/obj/Debug/net8.0/demo_hard.csproj.Up2Date +/home/class_student/RiderProjects/demo_hard/demo_hard/obj/Debug/net8.0/demo_hard.genruntimeconfig.cache +/home/class_student/RiderProjects/demo_hard/demo_hard/obj/Debug/net8.0/ref/demo_hard.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\demo_hard.exe +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\demo_hard.deps.json +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\demo_hard.runtimeconfig.json +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\demo_hard.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\demo_hard.pdb +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Base.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Controls.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.DesignerSupport.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Dialogs.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Markup.Xaml.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Markup.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Metal.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.MicroCom.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.OpenGL.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Vulkan.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Controls.ColorPicker.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Controls.DataGrid.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Desktop.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Diagnostics.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Fonts.Inter.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.FreeDesktop.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Native.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Remote.Protocol.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Skia.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Themes.Fluent.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Themes.Simple.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Win32.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.X11.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\HarfBuzzSharp.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Humanizer.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\MicroCom.Runtime.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.Bcl.AsyncInterfaces.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.CodeAnalysis.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.CodeAnalysis.CSharp.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.CodeAnalysis.CSharp.Workspaces.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.CodeAnalysis.Workspaces.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Abstractions.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Design.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Relational.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.Extensions.Caching.Abstractions.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.Extensions.Caching.Memory.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.Extensions.Configuration.Abstractions.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.Extensions.DependencyModel.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.Extensions.Logging.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.Extensions.Logging.Abstractions.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.Extensions.Options.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.Extensions.Primitives.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Mono.TextTemplating.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Npgsql.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Npgsql.EntityFrameworkCore.PostgreSQL.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\SkiaSharp.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\System.CodeDom.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\System.Composition.AttributedModel.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\System.Composition.Convention.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\System.Composition.Hosting.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\System.Composition.Runtime.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\System.Composition.TypedParts.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\System.IO.Pipelines.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Tmds.DBus.Protocol.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\win-arm64\native\av_libglesv2.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\win-x64\native\av_libglesv2.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\win-x86\native\av_libglesv2.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\osx\native\libAvaloniaNative.dylib +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\linux-arm\native\libHarfBuzzSharp.so +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\linux-arm64\native\libHarfBuzzSharp.so +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\linux-musl-x64\native\libHarfBuzzSharp.so +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\linux-x64\native\libHarfBuzzSharp.so +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\osx\native\libHarfBuzzSharp.dylib +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\win-arm64\native\libHarfBuzzSharp.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\win-x64\native\libHarfBuzzSharp.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\win-x86\native\libHarfBuzzSharp.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\linux-arm\native\libSkiaSharp.so +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\linux-arm64\native\libSkiaSharp.so +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\linux-musl-x64\native\libSkiaSharp.so +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\linux-x64\native\libSkiaSharp.so +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\osx\native\libSkiaSharp.dylib +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\win-arm64\native\libSkiaSharp.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\win-x64\native\libSkiaSharp.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\win-x86\native\libSkiaSharp.dll +C:\Users\sokol\RiderProjects\demo_hard\obj\Debug\net8.0\demo_hard.csproj.AssemblyReference.cache +C:\Users\sokol\RiderProjects\demo_hard\obj\Debug\net8.0\Avalonia\Resources.Inputs.cache +C:\Users\sokol\RiderProjects\demo_hard\obj\Debug\net8.0\Avalonia\resources +C:\Users\sokol\RiderProjects\demo_hard\obj\Debug\net8.0\demo_hard.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\sokol\RiderProjects\demo_hard\obj\Debug\net8.0\demo_hard.AssemblyInfoInputs.cache +C:\Users\sokol\RiderProjects\demo_hard\obj\Debug\net8.0\demo_hard.AssemblyInfo.cs +C:\Users\sokol\RiderProjects\demo_hard\obj\Debug\net8.0\demo_hard.csproj.CoreCompileInputs.cache +C:\Users\sokol\RiderProjects\demo_hard\obj\Debug\net8.0\Avalonia\demo_hard.dll +C:\Users\sokol\RiderProjects\demo_hard\obj\Debug\net8.0\Avalonia\demo_hard.pdb +C:\Users\sokol\RiderProjects\demo_hard\obj\Debug\net8.0\refint\Avalonia\demo_hard.dll +C:\Users\sokol\RiderProjects\demo_hard\obj\Debug\net8.0\demo_hard.csproj.Up2Date +C:\Users\sokol\RiderProjects\demo_hard\obj\Debug\net8.0\demo_hard.genruntimeconfig.cache +C:\Users\sokol\RiderProjects\demo_hard\obj\Debug\net8.0\ref\demo_hard.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Svg.Skia.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\ExCSS.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\ShimSkiaSharp.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\SkiaSharp.HarfBuzz.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Svg.Custom.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Svg.Model.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\Svg.Skia.dll +C:\Users\sokol\RiderProjects\demo_hard\bin\Debug\net8.0\zxing.dll diff --git a/obj/Debug/net8.0/demo_hard.csproj.Up2Date b/obj/Debug/net8.0/demo_hard.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net8.0/demo_hard.dll b/obj/Debug/net8.0/demo_hard.dll new file mode 100644 index 0000000..1500c28 Binary files /dev/null and b/obj/Debug/net8.0/demo_hard.dll differ diff --git a/obj/Debug/net8.0/demo_hard.genruntimeconfig.cache b/obj/Debug/net8.0/demo_hard.genruntimeconfig.cache new file mode 100644 index 0000000..1b3be8e --- /dev/null +++ b/obj/Debug/net8.0/demo_hard.genruntimeconfig.cache @@ -0,0 +1 @@ +8b008ccb1f57858d8acdd5a90b2ed0595cc325325cfbe5959c416165ec562e91 diff --git a/obj/Debug/net8.0/demo_hard.pdb b/obj/Debug/net8.0/demo_hard.pdb new file mode 100644 index 0000000..8011d33 Binary files /dev/null and b/obj/Debug/net8.0/demo_hard.pdb differ diff --git a/obj/Debug/net8.0/ref/demo_hard.dll b/obj/Debug/net8.0/ref/demo_hard.dll new file mode 100644 index 0000000..b58655c Binary files /dev/null and b/obj/Debug/net8.0/ref/demo_hard.dll differ diff --git a/obj/Debug/net8.0/refint/Avalonia/demo_hard.dll b/obj/Debug/net8.0/refint/Avalonia/demo_hard.dll new file mode 100644 index 0000000..b58655c Binary files /dev/null and b/obj/Debug/net8.0/refint/Avalonia/demo_hard.dll differ diff --git a/obj/Debug/net8.0/refint/demo_hard.dll b/obj/Debug/net8.0/refint/demo_hard.dll new file mode 100644 index 0000000..14c7083 Binary files /dev/null and b/obj/Debug/net8.0/refint/demo_hard.dll differ diff --git a/obj/demo_hard.csproj.EntityFrameworkCore.targets b/obj/demo_hard.csproj.EntityFrameworkCore.targets new file mode 100644 index 0000000..7d6485d --- /dev/null +++ b/obj/demo_hard.csproj.EntityFrameworkCore.targets @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/obj/demo_hard.csproj.nuget.dgspec.json b/obj/demo_hard.csproj.nuget.dgspec.json new file mode 100644 index 0000000..fb5346a --- /dev/null +++ b/obj/demo_hard.csproj.nuget.dgspec.json @@ -0,0 +1,133 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\sokol\\RiderProjects\\demo_hard\\demo_hard.csproj": {} + }, + "projects": { + "C:\\Users\\sokol\\RiderProjects\\demo_hard\\demo_hard.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\sokol\\RiderProjects\\demo_hard\\demo_hard.csproj", + "projectName": "demo_hard", + "projectPath": "C:\\Users\\sokol\\RiderProjects\\demo_hard\\demo_hard.csproj", + "packagesPath": "C:\\Users\\sokol\\.nuget\\packages\\", + "outputPath": "C:\\Users\\sokol\\RiderProjects\\demo_hard\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\sokol\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.100" + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Avalonia": { + "target": "Package", + "version": "[11.2.1, )" + }, + "Avalonia.Desktop": { + "target": "Package", + "version": "[11.2.1, )" + }, + "Avalonia.Diagnostics": { + "target": "Package", + "version": "[11.2.1, )" + }, + "Avalonia.Fonts.Inter": { + "target": "Package", + "version": "[11.2.1, )" + }, + "Avalonia.Svg.Skia": { + "target": "Package", + "version": "[11.2.0.2, )" + }, + "Avalonia.Themes.Fluent": { + "target": "Package", + "version": "[11.2.1, )" + }, + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[8.0.10, )" + }, + "Microsoft.EntityFrameworkCore.Design": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[8.0.10, )" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL": { + "target": "Package", + "version": "[8.0.10, )" + }, + "ZXing.Net": { + "target": "Package", + "version": "[0.16.10, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Ref", + "version": "[8.0.12, 8.0.12]" + }, + { + "name": "Microsoft.NETCore.App.Host.win-x64", + "version": "[8.0.12, 8.0.12]" + }, + { + "name": "Microsoft.NETCore.App.Ref", + "version": "[8.0.12, 8.0.12]" + }, + { + "name": "Microsoft.WindowsDesktop.App.Ref", + "version": "[8.0.12, 8.0.12]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.102/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/obj/demo_hard.csproj.nuget.g.props b/obj/demo_hard.csproj.nuget.g.props new file mode 100644 index 0000000..b9166a5 --- /dev/null +++ b/obj/demo_hard.csproj.nuget.g.props @@ -0,0 +1,28 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\sokol\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.12.2 + + + + + + + + + + + + + + C:\Users\sokol\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.3 + C:\Users\sokol\.nuget\packages\avalonia.buildservices\0.0.29 + C:\Users\sokol\.nuget\packages\avalonia\11.2.1 + + \ No newline at end of file diff --git a/obj/demo_hard.csproj.nuget.g.targets b/obj/demo_hard.csproj.nuget.g.targets new file mode 100644 index 0000000..ae359f2 --- /dev/null +++ b/obj/demo_hard.csproj.nuget.g.targets @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/obj/project.assets.json b/obj/project.assets.json new file mode 100644 index 0000000..ec71c6d --- /dev/null +++ b/obj/project.assets.json @@ -0,0 +1,3929 @@ +{ + "version": 3, + "targets": { + "net8.0": { + "Avalonia/11.2.1": { + "type": "package", + "dependencies": { + "Avalonia.BuildServices": "0.0.29", + "Avalonia.Remote.Protocol": "11.2.1", + "MicroCom.Runtime": "0.11.0" + }, + "compile": { + "ref/net8.0/Avalonia.Base.dll": { + "related": ".xml" + }, + "ref/net8.0/Avalonia.Controls.dll": { + "related": ".xml" + }, + "ref/net8.0/Avalonia.DesignerSupport.dll": { + "related": ".xml" + }, + "ref/net8.0/Avalonia.Dialogs.dll": { + "related": ".xml" + }, + "ref/net8.0/Avalonia.Markup.Xaml.dll": { + "related": ".xml" + }, + "ref/net8.0/Avalonia.Markup.dll": { + "related": ".Xaml.xml;.xml" + }, + "ref/net8.0/Avalonia.Metal.dll": { + "related": ".xml" + }, + "ref/net8.0/Avalonia.MicroCom.dll": { + "related": ".xml" + }, + "ref/net8.0/Avalonia.OpenGL.dll": { + "related": ".xml" + }, + "ref/net8.0/Avalonia.Vulkan.dll": { + "related": ".xml" + }, + "ref/net8.0/Avalonia.dll": { + "related": ".Base.xml;.Controls.xml;.DesignerSupport.xml;.Dialogs.xml;.Markup.Xaml.xml;.Markup.xml;.Metal.xml;.MicroCom.xml;.OpenGL.xml;.Vulkan.xml;.xml" + } + }, + "runtime": { + "lib/net8.0/Avalonia.Base.dll": { + "related": ".xml" + }, + "lib/net8.0/Avalonia.Controls.dll": { + "related": ".xml" + }, + "lib/net8.0/Avalonia.DesignerSupport.dll": { + "related": ".xml" + }, + "lib/net8.0/Avalonia.Dialogs.dll": { + "related": ".xml" + }, + "lib/net8.0/Avalonia.Markup.Xaml.dll": { + "related": ".xml" + }, + "lib/net8.0/Avalonia.Markup.dll": { + "related": ".Xaml.xml;.xml" + }, + "lib/net8.0/Avalonia.Metal.dll": { + "related": ".xml" + }, + "lib/net8.0/Avalonia.MicroCom.dll": { + "related": ".xml" + }, + "lib/net8.0/Avalonia.OpenGL.dll": { + "related": ".xml" + }, + "lib/net8.0/Avalonia.Vulkan.dll": { + "related": ".xml" + }, + "lib/net8.0/Avalonia.dll": { + "related": ".Base.xml;.Controls.xml;.DesignerSupport.xml;.Dialogs.xml;.Markup.Xaml.xml;.Markup.xml;.Metal.xml;.MicroCom.xml;.OpenGL.xml;.Vulkan.xml;.xml" + } + }, + "build": { + "buildTransitive/Avalonia.props": {}, + "buildTransitive/Avalonia.targets": {} + } + }, + "Avalonia.Angle.Windows.Natives/2.1.22045.20230930": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm64/native/av_libglesv2.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/av_libglesv2.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/av_libglesv2.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Avalonia.BuildServices/0.0.29": { + "type": "package", + "build": { + "buildTransitive/Avalonia.BuildServices.targets": {} + } + }, + "Avalonia.Controls.ColorPicker/11.2.1": { + "type": "package", + "dependencies": { + "Avalonia": "11.2.1", + "Avalonia.Remote.Protocol": "11.2.1" + }, + "compile": { + "lib/net8.0/Avalonia.Controls.ColorPicker.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Avalonia.Controls.ColorPicker.dll": { + "related": ".xml" + } + } + }, + "Avalonia.Controls.DataGrid/11.2.1": { + "type": "package", + "dependencies": { + "Avalonia": "11.2.1", + "Avalonia.Remote.Protocol": "11.2.1" + }, + "compile": { + "lib/net8.0/Avalonia.Controls.DataGrid.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Avalonia.Controls.DataGrid.dll": { + "related": ".xml" + } + } + }, + "Avalonia.Desktop/11.2.1": { + "type": "package", + "dependencies": { + "Avalonia": "11.2.1", + "Avalonia.Native": "11.2.1", + "Avalonia.Skia": "11.2.1", + "Avalonia.Win32": "11.2.1", + "Avalonia.X11": "11.2.1" + }, + "compile": { + "lib/net8.0/Avalonia.Desktop.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Avalonia.Desktop.dll": { + "related": ".xml" + } + } + }, + "Avalonia.Diagnostics/11.2.1": { + "type": "package", + "dependencies": { + "Avalonia": "11.2.1", + "Avalonia.Controls.ColorPicker": "11.2.1", + "Avalonia.Controls.DataGrid": "11.2.1", + "Avalonia.Themes.Simple": "11.2.1" + }, + "compile": { + "lib/net8.0/Avalonia.Diagnostics.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Avalonia.Diagnostics.dll": { + "related": ".xml" + } + } + }, + "Avalonia.Fonts.Inter/11.2.1": { + "type": "package", + "dependencies": { + "Avalonia": "11.2.1" + }, + "compile": { + "lib/net8.0/Avalonia.Fonts.Inter.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Avalonia.Fonts.Inter.dll": { + "related": ".xml" + } + } + }, + "Avalonia.FreeDesktop/11.2.1": { + "type": "package", + "dependencies": { + "Avalonia": "11.2.1", + "Tmds.DBus.Protocol": "0.20.0" + }, + "compile": { + "lib/net8.0/Avalonia.FreeDesktop.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Avalonia.FreeDesktop.dll": { + "related": ".xml" + } + } + }, + "Avalonia.Native/11.2.1": { + "type": "package", + "dependencies": { + "Avalonia": "11.2.1" + }, + "compile": { + "lib/net8.0/Avalonia.Native.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Avalonia.Native.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/osx/native/libAvaloniaNative.dylib": { + "assetType": "native", + "rid": "osx" + } + } + }, + "Avalonia.Remote.Protocol/11.2.1": { + "type": "package", + "compile": { + "lib/net8.0/Avalonia.Remote.Protocol.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Avalonia.Remote.Protocol.dll": { + "related": ".xml" + } + } + }, + "Avalonia.Skia/11.2.1": { + "type": "package", + "dependencies": { + "Avalonia": "11.2.1", + "HarfBuzzSharp": "7.3.0.2", + "HarfBuzzSharp.NativeAssets.Linux": "7.3.0.2", + "HarfBuzzSharp.NativeAssets.WebAssembly": "7.3.0.3-preview.2.2", + "SkiaSharp": "2.88.8", + "SkiaSharp.NativeAssets.Linux": "2.88.8", + "SkiaSharp.NativeAssets.WebAssembly": "2.88.8" + }, + "compile": { + "lib/net8.0/Avalonia.Skia.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Avalonia.Skia.dll": { + "related": ".xml" + } + } + }, + "Avalonia.Svg.Skia/11.2.0.2": { + "type": "package", + "dependencies": { + "Avalonia": "11.2.0", + "Avalonia.Skia": "11.2.0", + "SkiaSharp": "2.88.8", + "Svg.Skia": "2.0.0.4" + }, + "compile": { + "lib/net8.0/Avalonia.Svg.Skia.dll": {} + }, + "runtime": { + "lib/net8.0/Avalonia.Svg.Skia.dll": {} + } + }, + "Avalonia.Themes.Fluent/11.2.1": { + "type": "package", + "dependencies": { + "Avalonia": "11.2.1" + }, + "compile": { + "lib/net8.0/Avalonia.Themes.Fluent.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Avalonia.Themes.Fluent.dll": { + "related": ".xml" + } + } + }, + "Avalonia.Themes.Simple/11.2.1": { + "type": "package", + "dependencies": { + "Avalonia": "11.2.1" + }, + "compile": { + "lib/net8.0/Avalonia.Themes.Simple.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Avalonia.Themes.Simple.dll": { + "related": ".xml" + } + } + }, + "Avalonia.Win32/11.2.1": { + "type": "package", + "dependencies": { + "Avalonia": "11.2.1", + "Avalonia.Angle.Windows.Natives": "2.1.22045.20230930" + }, + "compile": { + "lib/net8.0/Avalonia.Win32.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Avalonia.Win32.dll": { + "related": ".xml" + } + } + }, + "Avalonia.X11/11.2.1": { + "type": "package", + "dependencies": { + "Avalonia": "11.2.1", + "Avalonia.FreeDesktop": "11.2.1", + "Avalonia.Skia": "11.2.1" + }, + "compile": { + "lib/net8.0/Avalonia.X11.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Avalonia.X11.dll": { + "related": ".xml" + } + } + }, + "ExCSS/4.2.3": { + "type": "package", + "compile": { + "lib/net7.0/ExCSS.dll": {} + }, + "runtime": { + "lib/net7.0/ExCSS.dll": {} + } + }, + "HarfBuzzSharp/7.3.0.2": { + "type": "package", + "dependencies": { + "HarfBuzzSharp.NativeAssets.Win32": "7.3.0.2", + "HarfBuzzSharp.NativeAssets.macOS": "7.3.0.2" + }, + "compile": { + "lib/net6.0/HarfBuzzSharp.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/HarfBuzzSharp.dll": { + "related": ".pdb;.xml" + } + } + }, + "HarfBuzzSharp.NativeAssets.Linux/7.3.0.2": { + "type": "package", + "dependencies": { + "HarfBuzzSharp": "7.3.0.2" + }, + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/linux-arm/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-musl-x64/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-x64/native/libHarfBuzzSharp.so": { + "assetType": "native", + "rid": "linux-x64" + } + } + }, + "HarfBuzzSharp.NativeAssets.macOS/7.3.0.2": { + "type": "package", + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/osx/native/libHarfBuzzSharp.dylib": { + "assetType": "native", + "rid": "osx" + } + } + }, + "HarfBuzzSharp.NativeAssets.WebAssembly/7.3.0.3-preview.2.2": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + }, + "build": { + "buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.props": {}, + "buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.targets": {} + } + }, + "HarfBuzzSharp.NativeAssets.Win32/7.3.0.2": { + "type": "package", + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win-arm64/native/libHarfBuzzSharp.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/libHarfBuzzSharp.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/libHarfBuzzSharp.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Humanizer.Core/2.14.1": { + "type": "package", + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Humanizer.dll": { + "related": ".xml" + } + } + }, + "MicroCom.Runtime/0.11.0": { + "type": "package", + "compile": { + "lib/net5.0/MicroCom.Runtime.dll": {} + }, + "runtime": { + "lib/net5.0/MicroCom.Runtime.dll": {} + } + }, + "Microsoft.Bcl.AsyncInterfaces/6.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.3": { + "type": "package", + "build": { + "build/_._": {} + } + }, + "Microsoft.CodeAnalysis.Common/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.3", + "System.Collections.Immutable": "6.0.0", + "System.Reflection.Metadata": "6.0.1", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Text.Encoding.CodePages": "6.0.0" + }, + "compile": { + "lib/netcoreapp3.1/_._": { + "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/4.5.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[4.5.0]" + }, + "compile": { + "lib/netcoreapp3.1/_._": { + "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.Workspaces/4.5.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.CSharp": "[4.5.0]", + "Microsoft.CodeAnalysis.Common": "[4.5.0]", + "Microsoft.CodeAnalysis.Workspaces.Common": "[4.5.0]" + }, + "compile": { + "lib/netcoreapp3.1/_._": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Bcl.AsyncInterfaces": "6.0.0", + "Microsoft.CodeAnalysis.Common": "[4.5.0]", + "System.Composition": "6.0.0", + "System.IO.Pipelines": "6.0.3", + "System.Threading.Channels": "6.0.0" + }, + "compile": { + "lib/netcoreapp3.1/_._": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.EntityFrameworkCore/8.0.10": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10", + "Microsoft.EntityFrameworkCore.Analyzers": "8.0.10", + "Microsoft.Extensions.Caching.Memory": "8.0.1", + "Microsoft.Extensions.Logging": "8.0.1" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore.Design/8.0.10": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0", + "Microsoft.EntityFrameworkCore.Relational": "8.0.10", + "Microsoft.Extensions.DependencyModel": "8.0.2", + "Mono.TextTemplating": "2.2.1" + }, + "compile": { + "lib/net8.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": { + "related": ".xml" + } + }, + "build": { + "build/net8.0/Microsoft.EntityFrameworkCore.Design.props": {} + } + }, + "Microsoft.EntityFrameworkCore.Relational/8.0.10": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "8.0.10", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Caching.Memory/8.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyModel/8.0.2": { + "type": "package", + "compile": { + "lib/net8.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Options/8.0.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Mono.TextTemplating/2.2.1": { + "type": "package", + "dependencies": { + "System.CodeDom": "4.4.0" + }, + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Mono.TextTemplating.dll": {} + } + }, + "Npgsql/8.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Npgsql.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "related": ".xml" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/8.0.10": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "8.0.10", + "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10", + "Microsoft.EntityFrameworkCore.Relational": "8.0.10", + "Npgsql": "8.0.5" + }, + "compile": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "related": ".xml" + } + } + }, + "ShimSkiaSharp/2.0.0.4": { + "type": "package", + "compile": { + "lib/net8.0/ShimSkiaSharp.dll": {} + }, + "runtime": { + "lib/net8.0/ShimSkiaSharp.dll": {} + } + }, + "SkiaSharp/2.88.8": { + "type": "package", + "dependencies": { + "SkiaSharp.NativeAssets.Win32": "2.88.8", + "SkiaSharp.NativeAssets.macOS": "2.88.8" + }, + "compile": { + "lib/net6.0/SkiaSharp.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/SkiaSharp.dll": { + "related": ".pdb;.xml" + } + } + }, + "SkiaSharp.HarfBuzz/2.88.8": { + "type": "package", + "dependencies": { + "HarfBuzzSharp": "7.3.0.2", + "SkiaSharp": "2.88.8" + }, + "compile": { + "lib/net6.0/SkiaSharp.HarfBuzz.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/SkiaSharp.HarfBuzz.dll": { + "related": ".pdb;.xml" + } + } + }, + "SkiaSharp.NativeAssets.Linux/2.88.8": { + "type": "package", + "dependencies": { + "SkiaSharp": "2.88.8" + }, + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/linux-arm/native/libSkiaSharp.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libSkiaSharp.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-musl-x64/native/libSkiaSharp.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-x64/native/libSkiaSharp.so": { + "assetType": "native", + "rid": "linux-x64" + } + } + }, + "SkiaSharp.NativeAssets.macOS/2.88.8": { + "type": "package", + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/osx/native/libSkiaSharp.dylib": { + "assetType": "native", + "rid": "osx" + } + } + }, + "SkiaSharp.NativeAssets.WebAssembly/2.88.8": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + }, + "build": { + "buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.props": {}, + "buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.targets": {} + } + }, + "SkiaSharp.NativeAssets.Win32/2.88.8": { + "type": "package", + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win-arm64/native/libSkiaSharp.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/libSkiaSharp.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/libSkiaSharp.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Svg.Custom/2.0.0.4": { + "type": "package", + "dependencies": { + "ExCSS": "4.2.3" + }, + "compile": { + "lib/net8.0/Svg.Custom.dll": {} + }, + "runtime": { + "lib/net8.0/Svg.Custom.dll": {} + } + }, + "Svg.Model/2.0.0.4": { + "type": "package", + "dependencies": { + "ShimSkiaSharp": "2.0.0.4", + "Svg.Custom": "2.0.0.4" + }, + "compile": { + "lib/net8.0/Svg.Model.dll": {} + }, + "runtime": { + "lib/net8.0/Svg.Model.dll": {} + } + }, + "Svg.Skia/2.0.0.4": { + "type": "package", + "dependencies": { + "SkiaSharp": "2.88.8", + "SkiaSharp.HarfBuzz": "2.88.8", + "Svg.Custom": "2.0.0.4", + "Svg.Model": "2.0.0.4" + }, + "compile": { + "lib/net8.0/Svg.Skia.dll": {} + }, + "runtime": { + "lib/net8.0/Svg.Skia.dll": {} + } + }, + "System.CodeDom/4.4.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.CodeDom.dll": {} + } + }, + "System.Collections.Immutable/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Collections.Immutable.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Composition/6.0.0": { + "type": "package", + "dependencies": { + "System.Composition.AttributedModel": "6.0.0", + "System.Composition.Convention": "6.0.0", + "System.Composition.Hosting": "6.0.0", + "System.Composition.Runtime": "6.0.0", + "System.Composition.TypedParts": "6.0.0" + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Composition.AttributedModel/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Composition.AttributedModel.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Composition.Convention/6.0.0": { + "type": "package", + "dependencies": { + "System.Composition.AttributedModel": "6.0.0" + }, + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Composition.Convention.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Composition.Hosting/6.0.0": { + "type": "package", + "dependencies": { + "System.Composition.Runtime": "6.0.0" + }, + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Composition.Hosting.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Composition.Runtime/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Composition.Runtime.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Composition.TypedParts/6.0.0": { + "type": "package", + "dependencies": { + "System.Composition.AttributedModel": "6.0.0", + "System.Composition.Hosting": "6.0.0", + "System.Composition.Runtime": "6.0.0" + }, + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Composition.TypedParts.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.IO.Pipelines/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Reflection.Metadata/6.0.1": { + "type": "package", + "dependencies": { + "System.Collections.Immutable": "6.0.0" + }, + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Reflection.Metadata.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Text.Encoding.CodePages/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Text.Encoding.CodePages.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Threading.Channels/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Threading.Channels.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Tmds.DBus.Protocol/0.20.0": { + "type": "package", + "dependencies": { + "System.IO.Pipelines": "8.0.0" + }, + "compile": { + "lib/net8.0/Tmds.DBus.Protocol.dll": {} + }, + "runtime": { + "lib/net8.0/Tmds.DBus.Protocol.dll": {} + } + }, + "ZXing.Net/0.16.10": { + "type": "package", + "compile": { + "lib/net8.0/zxing.dll": { + "related": ".XML" + } + }, + "runtime": { + "lib/net8.0/zxing.dll": { + "related": ".XML" + } + } + } + } + }, + "libraries": { + "Avalonia/11.2.1": { + "sha512": "AyYhIN2A7bRwxp6BFHrIbXAHUFPXegzSMYwDrUnw1BzZs9ctwYTiCPCM5wbE2PXsEBwFDVJ/a2YHTOp56fSYAw==", + "type": "package", + "path": "avalonia/11.2.1", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/Avalonia.Analyzers.dll", + "analyzers/dotnet/cs/Avalonia.Generators.dll", + "avalonia.11.2.1.nupkg.sha512", + "avalonia.nuspec", + "build/Avalonia.Generators.props", + "build/Avalonia.props", + "build/Avalonia.targets", + "build/AvaloniaBuildTasks.props", + "build/AvaloniaBuildTasks.targets", + "build/AvaloniaItemSchema.xaml", + "build/AvaloniaPrivateApis.targets", + "build/AvaloniaRules.Project.xml", + "build/AvaloniaSingleProject.targets", + "build/AvaloniaVersion.props", + "buildTransitive/Avalonia.Generators.props", + "buildTransitive/Avalonia.props", + "buildTransitive/Avalonia.targets", + "buildTransitive/AvaloniaBuildTasks.props", + "buildTransitive/AvaloniaBuildTasks.targets", + "buildTransitive/AvaloniaItemSchema.xaml", + "buildTransitive/AvaloniaPrivateApis.targets", + "buildTransitive/AvaloniaRules.Project.xml", + "buildTransitive/AvaloniaSingleProject.targets", + "lib/net6.0/Avalonia.Base.dll", + "lib/net6.0/Avalonia.Base.xml", + "lib/net6.0/Avalonia.Controls.dll", + "lib/net6.0/Avalonia.Controls.xml", + "lib/net6.0/Avalonia.DesignerSupport.dll", + "lib/net6.0/Avalonia.DesignerSupport.xml", + "lib/net6.0/Avalonia.Dialogs.dll", + "lib/net6.0/Avalonia.Dialogs.xml", + "lib/net6.0/Avalonia.Markup.Xaml.dll", + "lib/net6.0/Avalonia.Markup.Xaml.xml", + "lib/net6.0/Avalonia.Markup.dll", + "lib/net6.0/Avalonia.Markup.xml", + "lib/net6.0/Avalonia.Metal.dll", + "lib/net6.0/Avalonia.Metal.xml", + "lib/net6.0/Avalonia.MicroCom.dll", + "lib/net6.0/Avalonia.MicroCom.xml", + "lib/net6.0/Avalonia.OpenGL.dll", + "lib/net6.0/Avalonia.OpenGL.xml", + "lib/net6.0/Avalonia.Vulkan.dll", + "lib/net6.0/Avalonia.Vulkan.xml", + "lib/net6.0/Avalonia.dll", + "lib/net6.0/Avalonia.xml", + "lib/net8.0/Avalonia.Base.dll", + "lib/net8.0/Avalonia.Base.xml", + "lib/net8.0/Avalonia.Controls.dll", + "lib/net8.0/Avalonia.Controls.xml", + "lib/net8.0/Avalonia.DesignerSupport.dll", + "lib/net8.0/Avalonia.DesignerSupport.xml", + "lib/net8.0/Avalonia.Dialogs.dll", + "lib/net8.0/Avalonia.Dialogs.xml", + "lib/net8.0/Avalonia.Markup.Xaml.dll", + "lib/net8.0/Avalonia.Markup.Xaml.xml", + "lib/net8.0/Avalonia.Markup.dll", + "lib/net8.0/Avalonia.Markup.xml", + "lib/net8.0/Avalonia.Metal.dll", + "lib/net8.0/Avalonia.Metal.xml", + "lib/net8.0/Avalonia.MicroCom.dll", + "lib/net8.0/Avalonia.MicroCom.xml", + "lib/net8.0/Avalonia.OpenGL.dll", + "lib/net8.0/Avalonia.OpenGL.xml", + "lib/net8.0/Avalonia.Vulkan.dll", + "lib/net8.0/Avalonia.Vulkan.xml", + "lib/net8.0/Avalonia.dll", + "lib/net8.0/Avalonia.xml", + "lib/netstandard2.0/Avalonia.Base.dll", + "lib/netstandard2.0/Avalonia.Base.xml", + "lib/netstandard2.0/Avalonia.Controls.dll", + "lib/netstandard2.0/Avalonia.Controls.xml", + "lib/netstandard2.0/Avalonia.DesignerSupport.dll", + "lib/netstandard2.0/Avalonia.DesignerSupport.xml", + "lib/netstandard2.0/Avalonia.Dialogs.dll", + "lib/netstandard2.0/Avalonia.Dialogs.xml", + "lib/netstandard2.0/Avalonia.Markup.Xaml.dll", + "lib/netstandard2.0/Avalonia.Markup.Xaml.xml", + "lib/netstandard2.0/Avalonia.Markup.dll", + "lib/netstandard2.0/Avalonia.Markup.xml", + "lib/netstandard2.0/Avalonia.Metal.dll", + "lib/netstandard2.0/Avalonia.Metal.xml", + "lib/netstandard2.0/Avalonia.MicroCom.dll", + "lib/netstandard2.0/Avalonia.MicroCom.xml", + "lib/netstandard2.0/Avalonia.OpenGL.dll", + "lib/netstandard2.0/Avalonia.OpenGL.xml", + "lib/netstandard2.0/Avalonia.Vulkan.dll", + "lib/netstandard2.0/Avalonia.Vulkan.xml", + "lib/netstandard2.0/Avalonia.dll", + "lib/netstandard2.0/Avalonia.xml", + "ref/net6.0/Avalonia.Base.dll", + "ref/net6.0/Avalonia.Base.xml", + "ref/net6.0/Avalonia.Controls.dll", + "ref/net6.0/Avalonia.Controls.xml", + "ref/net6.0/Avalonia.DesignerSupport.dll", + "ref/net6.0/Avalonia.DesignerSupport.xml", + "ref/net6.0/Avalonia.Dialogs.dll", + "ref/net6.0/Avalonia.Dialogs.xml", + "ref/net6.0/Avalonia.Markup.Xaml.dll", + "ref/net6.0/Avalonia.Markup.Xaml.xml", + "ref/net6.0/Avalonia.Markup.dll", + "ref/net6.0/Avalonia.Markup.xml", + "ref/net6.0/Avalonia.Metal.dll", + "ref/net6.0/Avalonia.Metal.xml", + "ref/net6.0/Avalonia.MicroCom.dll", + "ref/net6.0/Avalonia.MicroCom.xml", + "ref/net6.0/Avalonia.OpenGL.dll", + "ref/net6.0/Avalonia.OpenGL.xml", + "ref/net6.0/Avalonia.Vulkan.dll", + "ref/net6.0/Avalonia.Vulkan.xml", + "ref/net6.0/Avalonia.dll", + "ref/net6.0/Avalonia.xml", + "ref/net8.0/Avalonia.Base.dll", + "ref/net8.0/Avalonia.Base.xml", + "ref/net8.0/Avalonia.Controls.dll", + "ref/net8.0/Avalonia.Controls.xml", + "ref/net8.0/Avalonia.DesignerSupport.dll", + "ref/net8.0/Avalonia.DesignerSupport.xml", + "ref/net8.0/Avalonia.Dialogs.dll", + "ref/net8.0/Avalonia.Dialogs.xml", + "ref/net8.0/Avalonia.Markup.Xaml.dll", + "ref/net8.0/Avalonia.Markup.Xaml.xml", + "ref/net8.0/Avalonia.Markup.dll", + "ref/net8.0/Avalonia.Markup.xml", + "ref/net8.0/Avalonia.Metal.dll", + "ref/net8.0/Avalonia.Metal.xml", + "ref/net8.0/Avalonia.MicroCom.dll", + "ref/net8.0/Avalonia.MicroCom.xml", + "ref/net8.0/Avalonia.OpenGL.dll", + "ref/net8.0/Avalonia.OpenGL.xml", + "ref/net8.0/Avalonia.Vulkan.dll", + "ref/net8.0/Avalonia.Vulkan.xml", + "ref/net8.0/Avalonia.dll", + "ref/net8.0/Avalonia.xml", + "ref/netstandard2.0/Avalonia.Base.dll", + "ref/netstandard2.0/Avalonia.Base.xml", + "ref/netstandard2.0/Avalonia.Controls.dll", + "ref/netstandard2.0/Avalonia.Controls.xml", + "ref/netstandard2.0/Avalonia.DesignerSupport.dll", + "ref/netstandard2.0/Avalonia.DesignerSupport.xml", + "ref/netstandard2.0/Avalonia.Dialogs.dll", + "ref/netstandard2.0/Avalonia.Dialogs.xml", + "ref/netstandard2.0/Avalonia.Markup.Xaml.dll", + "ref/netstandard2.0/Avalonia.Markup.Xaml.xml", + "ref/netstandard2.0/Avalonia.Markup.dll", + "ref/netstandard2.0/Avalonia.Markup.xml", + "ref/netstandard2.0/Avalonia.Metal.dll", + "ref/netstandard2.0/Avalonia.Metal.xml", + "ref/netstandard2.0/Avalonia.MicroCom.dll", + "ref/netstandard2.0/Avalonia.MicroCom.xml", + "ref/netstandard2.0/Avalonia.OpenGL.dll", + "ref/netstandard2.0/Avalonia.OpenGL.xml", + "ref/netstandard2.0/Avalonia.Vulkan.dll", + "ref/netstandard2.0/Avalonia.Vulkan.xml", + "ref/netstandard2.0/Avalonia.dll", + "ref/netstandard2.0/Avalonia.xml", + "tools/net461/designer/Avalonia.Designer.HostApp.exe", + "tools/netstandard2.0/Avalonia.Build.Tasks.dll", + "tools/netstandard2.0/designer/Avalonia.Designer.HostApp.dll" + ] + }, + "Avalonia.Angle.Windows.Natives/2.1.22045.20230930": { + "sha512": "Bo3qOhKC1b84BIhiogndMdAzB3UrrESKK7hS769f5HWeoMw/pcd42US5KFYW2JJ4ZSTrXnP8mXwLTMzh+S+9Lg==", + "type": "package", + "path": "avalonia.angle.windows.natives/2.1.22045.20230930", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE", + "avalonia.angle.windows.natives.2.1.22045.20230930.nupkg.sha512", + "avalonia.angle.windows.natives.nuspec", + "runtimes/win-arm64/native/av_libglesv2.dll", + "runtimes/win-x64/native/av_libglesv2.dll", + "runtimes/win-x86/native/av_libglesv2.dll" + ] + }, + "Avalonia.BuildServices/0.0.29": { + "sha512": "U4eJLQdoDNHXtEba7MZUCwrBErBTxFp6sUewXBOdAhU0Kwzwaa/EKFcYm8kpcysjzKtfB4S0S9n0uxKZFz/ikw==", + "type": "package", + "path": "avalonia.buildservices/0.0.29", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "avalonia.buildservices.0.0.29.nupkg.sha512", + "avalonia.buildservices.nuspec", + "build/Avalonia.BuildServices.targets", + "buildTransitive/Avalonia.BuildServices.targets", + "tools/netstandard2.0/Avalonia.BuildServices.Collector.dll", + "tools/netstandard2.0/Avalonia.BuildServices.dll", + "tools/netstandard2.0/runtimeconfig.json" + ] + }, + "Avalonia.Controls.ColorPicker/11.2.1": { + "sha512": "t8ViFwfIe6jCO5HvzPWOtwGNSMHYNc8XakWp76Rgy1MOiht8tHKry9cU7k40AHEYU6wVjiYBkl0c8zYZyyha1g==", + "type": "package", + "path": "avalonia.controls.colorpicker/11.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "avalonia.controls.colorpicker.11.2.1.nupkg.sha512", + "avalonia.controls.colorpicker.nuspec", + "lib/net6.0/Avalonia.Controls.ColorPicker.dll", + "lib/net6.0/Avalonia.Controls.ColorPicker.xml", + "lib/net8.0/Avalonia.Controls.ColorPicker.dll", + "lib/net8.0/Avalonia.Controls.ColorPicker.xml", + "lib/netstandard2.0/Avalonia.Controls.ColorPicker.dll", + "lib/netstandard2.0/Avalonia.Controls.ColorPicker.xml" + ] + }, + "Avalonia.Controls.DataGrid/11.2.1": { + "sha512": "UaNQrY86GBqMZqZ/N/5/wLzr4Emh2N405VZI/IgH0I8BoMrjnosNr+++D7BOcahMNce0lUZLOsFyy+OY02PUAw==", + "type": "package", + "path": "avalonia.controls.datagrid/11.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "avalonia.controls.datagrid.11.2.1.nupkg.sha512", + "avalonia.controls.datagrid.nuspec", + "lib/net6.0/Avalonia.Controls.DataGrid.dll", + "lib/net6.0/Avalonia.Controls.DataGrid.xml", + "lib/net8.0/Avalonia.Controls.DataGrid.dll", + "lib/net8.0/Avalonia.Controls.DataGrid.xml", + "lib/netstandard2.0/Avalonia.Controls.DataGrid.dll", + "lib/netstandard2.0/Avalonia.Controls.DataGrid.xml" + ] + }, + "Avalonia.Desktop/11.2.1": { + "sha512": "q6alzkTgFjukOrbiiFlh0mkhkxGRMRTMS8zdNEixIl9apPnD2ln9sjAC4NR2agNz5+HmZVfXYu6kYK12rMmKwA==", + "type": "package", + "path": "avalonia.desktop/11.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "avalonia.desktop.11.2.1.nupkg.sha512", + "avalonia.desktop.nuspec", + "lib/net6.0/Avalonia.Desktop.dll", + "lib/net6.0/Avalonia.Desktop.xml", + "lib/net8.0/Avalonia.Desktop.dll", + "lib/net8.0/Avalonia.Desktop.xml", + "lib/netstandard2.0/Avalonia.Desktop.dll", + "lib/netstandard2.0/Avalonia.Desktop.xml" + ] + }, + "Avalonia.Diagnostics/11.2.1": { + "sha512": "axUWa4sZoe9HgUXPEDhbZXijL8ex+lwQGVwNQLmD299O7pCqKcYThjyG/eCETO/boqjKTt3H85LHEPx94BP9dg==", + "type": "package", + "path": "avalonia.diagnostics/11.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "avalonia.diagnostics.11.2.1.nupkg.sha512", + "avalonia.diagnostics.nuspec", + "lib/net6.0/Avalonia.Diagnostics.dll", + "lib/net6.0/Avalonia.Diagnostics.xml", + "lib/net8.0/Avalonia.Diagnostics.dll", + "lib/net8.0/Avalonia.Diagnostics.xml", + "lib/netstandard2.0/Avalonia.Diagnostics.dll", + "lib/netstandard2.0/Avalonia.Diagnostics.xml" + ] + }, + "Avalonia.Fonts.Inter/11.2.1": { + "sha512": "egEFQWLHuSzyWKolPy9u4qPor270N2GL/4CI33eBxr09chrUVQsOlxQ6zeWPiBLzzgv/lCrZhOMCAIWsOz3tNg==", + "type": "package", + "path": "avalonia.fonts.inter/11.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "avalonia.fonts.inter.11.2.1.nupkg.sha512", + "avalonia.fonts.inter.nuspec", + "lib/net6.0/Avalonia.Fonts.Inter.dll", + "lib/net6.0/Avalonia.Fonts.Inter.xml", + "lib/net8.0/Avalonia.Fonts.Inter.dll", + "lib/net8.0/Avalonia.Fonts.Inter.xml", + "lib/netstandard2.0/Avalonia.Fonts.Inter.dll", + "lib/netstandard2.0/Avalonia.Fonts.Inter.xml" + ] + }, + "Avalonia.FreeDesktop/11.2.1": { + "sha512": "ChKdPjQ2uBJUN0y+/RsdoETzXRn/q1eWFBDwprDy+Zi/AVkUfRk06hKbsb/U+Q3zO65CMEprRcMPbys0EkK2vg==", + "type": "package", + "path": "avalonia.freedesktop/11.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "avalonia.freedesktop.11.2.1.nupkg.sha512", + "avalonia.freedesktop.nuspec", + "lib/net6.0/Avalonia.FreeDesktop.dll", + "lib/net6.0/Avalonia.FreeDesktop.xml", + "lib/net8.0/Avalonia.FreeDesktop.dll", + "lib/net8.0/Avalonia.FreeDesktop.xml", + "lib/netstandard2.0/Avalonia.FreeDesktop.dll", + "lib/netstandard2.0/Avalonia.FreeDesktop.xml" + ] + }, + "Avalonia.Native/11.2.1": { + "sha512": "1cVasDUIkqfAYLkaLFDx+VDZymer2v643OYD6Jd6nzP20TNTqN2LfFOpxXCTYMrWc9Dk5AoVJJCrz3wRE5kooQ==", + "type": "package", + "path": "avalonia.native/11.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "avalonia.native.11.2.1.nupkg.sha512", + "avalonia.native.nuspec", + "lib/net6.0/Avalonia.Native.dll", + "lib/net6.0/Avalonia.Native.xml", + "lib/net8.0/Avalonia.Native.dll", + "lib/net8.0/Avalonia.Native.xml", + "lib/netstandard2.0/Avalonia.Native.dll", + "lib/netstandard2.0/Avalonia.Native.xml", + "runtimes/osx/native/libAvaloniaNative.dylib" + ] + }, + "Avalonia.Remote.Protocol/11.2.1": { + "sha512": "aqEialxjir7DO/dOFf7BGN/yQ4/adSC5UuVfqBr/RUHOENSH6CqoHj8kmtmJxnuz7ESQFSB2+h1kLVnk5csiDw==", + "type": "package", + "path": "avalonia.remote.protocol/11.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "avalonia.remote.protocol.11.2.1.nupkg.sha512", + "avalonia.remote.protocol.nuspec", + "lib/net6.0/Avalonia.Remote.Protocol.dll", + "lib/net6.0/Avalonia.Remote.Protocol.xml", + "lib/net8.0/Avalonia.Remote.Protocol.dll", + "lib/net8.0/Avalonia.Remote.Protocol.xml", + "lib/netstandard2.0/Avalonia.Remote.Protocol.dll", + "lib/netstandard2.0/Avalonia.Remote.Protocol.xml" + ] + }, + "Avalonia.Skia/11.2.1": { + "sha512": "FkqiXWT1hN0s5MIx5IKDGZaqewQENikQh6aBQyApiZVu5koa8H8RW1yfb2cFK3M4IVIyhqwl8ZirkXsS18lf/Q==", + "type": "package", + "path": "avalonia.skia/11.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "avalonia.skia.11.2.1.nupkg.sha512", + "avalonia.skia.nuspec", + "lib/net6.0/Avalonia.Skia.dll", + "lib/net6.0/Avalonia.Skia.xml", + "lib/net8.0/Avalonia.Skia.dll", + "lib/net8.0/Avalonia.Skia.xml", + "lib/netstandard2.0/Avalonia.Skia.dll", + "lib/netstandard2.0/Avalonia.Skia.xml" + ] + }, + "Avalonia.Svg.Skia/11.2.0.2": { + "sha512": "qvP8xTiwz28wi/a7nsQz78GKaqOELfcddFhRX7CsJPXzjaN+TECp2ufvPonRZh1W+xbFAkHIkqcfqXiE/Ftu6g==", + "type": "package", + "path": "avalonia.svg.skia/11.2.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "avalonia.svg.skia.11.2.0.2.nupkg.sha512", + "avalonia.svg.skia.nuspec", + "lib/net461/Avalonia.Svg.Skia.dll", + "lib/net6.0/Avalonia.Svg.Skia.dll", + "lib/net8.0/Avalonia.Svg.Skia.dll", + "lib/netstandard2.0/Avalonia.Svg.Skia.dll" + ] + }, + "Avalonia.Themes.Fluent/11.2.1": { + "sha512": "9YUzDmZO5oDppsoA3Igeu/v1cVi4xu8jdO6ZrBzXJXJ9mma/htK0Ub9+V1lRoCW/O70nQfBX+ZDpm0dca1PVgw==", + "type": "package", + "path": "avalonia.themes.fluent/11.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "avalonia.themes.fluent.11.2.1.nupkg.sha512", + "avalonia.themes.fluent.nuspec", + "lib/net6.0/Avalonia.Themes.Fluent.dll", + "lib/net6.0/Avalonia.Themes.Fluent.xml", + "lib/net8.0/Avalonia.Themes.Fluent.dll", + "lib/net8.0/Avalonia.Themes.Fluent.xml", + "lib/netstandard2.0/Avalonia.Themes.Fluent.dll", + "lib/netstandard2.0/Avalonia.Themes.Fluent.xml" + ] + }, + "Avalonia.Themes.Simple/11.2.1": { + "sha512": "ToiYv8hhJ5gcEtD54VZv7NpBFiqGasj4bjFh/AtjXApiYOp8r3orFPX8Nsc3kHcUCvNNjbjAy9dmBG65nYePkw==", + "type": "package", + "path": "avalonia.themes.simple/11.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "avalonia.themes.simple.11.2.1.nupkg.sha512", + "avalonia.themes.simple.nuspec", + "lib/net6.0/Avalonia.Themes.Simple.dll", + "lib/net6.0/Avalonia.Themes.Simple.xml", + "lib/net8.0/Avalonia.Themes.Simple.dll", + "lib/net8.0/Avalonia.Themes.Simple.xml", + "lib/netstandard2.0/Avalonia.Themes.Simple.dll", + "lib/netstandard2.0/Avalonia.Themes.Simple.xml" + ] + }, + "Avalonia.Win32/11.2.1": { + "sha512": "7Gfw7S1PoINaCXaIV1rh7zo82IhsqhR7a0PAt281cBrfDkJiNU0DYgW2RZxKl3oVFxtfbxJZbdP7hSVmHvoDfw==", + "type": "package", + "path": "avalonia.win32/11.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "avalonia.win32.11.2.1.nupkg.sha512", + "avalonia.win32.nuspec", + "lib/net6.0/Avalonia.Win32.dll", + "lib/net6.0/Avalonia.Win32.xml", + "lib/net8.0/Avalonia.Win32.dll", + "lib/net8.0/Avalonia.Win32.xml", + "lib/netstandard2.0/Avalonia.Win32.dll", + "lib/netstandard2.0/Avalonia.Win32.xml" + ] + }, + "Avalonia.X11/11.2.1": { + "sha512": "h2aCpyLmxGkldPK7cbncEgyobrJ5En7gQtrwVARLmN32Rw6dHut3jyF3P8at2DmWxRuKwZVXgWBSSI62hINgrQ==", + "type": "package", + "path": "avalonia.x11/11.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "avalonia.x11.11.2.1.nupkg.sha512", + "avalonia.x11.nuspec", + "lib/net6.0/Avalonia.X11.dll", + "lib/net6.0/Avalonia.X11.xml", + "lib/net8.0/Avalonia.X11.dll", + "lib/net8.0/Avalonia.X11.xml", + "lib/netstandard2.0/Avalonia.X11.dll", + "lib/netstandard2.0/Avalonia.X11.xml" + ] + }, + "ExCSS/4.2.3": { + "sha512": "SyeAfu2wL5247sipJoPUzQfjiwQtfSd8hN4IbgoyVcDx4PP6Dud4znwPRibWQzLtTlUxYYcbf5f4p+EfFC7KtQ==", + "type": "package", + "path": "excss/4.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "excss.4.2.3.nupkg.sha512", + "excss.nuspec", + "lib/net48/ExCSS.dll", + "lib/net6.0/ExCSS.dll", + "lib/net7.0/ExCSS.dll", + "lib/netcoreapp3.1/ExCSS.dll", + "lib/netstandard2.0/ExCSS.dll", + "lib/netstandard2.1/ExCSS.dll", + "readme.md" + ] + }, + "HarfBuzzSharp/7.3.0.2": { + "sha512": "0tCd6HyCmNsX/DniCp2b00fo0xPbdNwKOs9BxxyT8oOOuMlWjcSFwzONKyeckCKVBFEsbSmsAHPDTqxoSDwZMg==", + "type": "package", + "path": "harfbuzzsharp/7.3.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "harfbuzzsharp.7.3.0.2.nupkg.sha512", + "harfbuzzsharp.nuspec", + "lib/monoandroid1.0/HarfBuzzSharp.dll", + "lib/monoandroid1.0/HarfBuzzSharp.pdb", + "lib/monoandroid1.0/HarfBuzzSharp.xml", + "lib/net462/HarfBuzzSharp.dll", + "lib/net462/HarfBuzzSharp.pdb", + "lib/net462/HarfBuzzSharp.xml", + "lib/net6.0-android30.0/HarfBuzzSharp.dll", + "lib/net6.0-android30.0/HarfBuzzSharp.pdb", + "lib/net6.0-android30.0/HarfBuzzSharp.xml", + "lib/net6.0-ios13.6/HarfBuzzSharp.dll", + "lib/net6.0-ios13.6/HarfBuzzSharp.pdb", + "lib/net6.0-ios13.6/HarfBuzzSharp.xml", + "lib/net6.0-maccatalyst13.5/HarfBuzzSharp.dll", + "lib/net6.0-maccatalyst13.5/HarfBuzzSharp.pdb", + "lib/net6.0-maccatalyst13.5/HarfBuzzSharp.xml", + "lib/net6.0-macos10.15/HarfBuzzSharp.dll", + "lib/net6.0-macos10.15/HarfBuzzSharp.pdb", + "lib/net6.0-macos10.15/HarfBuzzSharp.xml", + "lib/net6.0-tvos13.4/HarfBuzzSharp.dll", + "lib/net6.0-tvos13.4/HarfBuzzSharp.pdb", + "lib/net6.0-tvos13.4/HarfBuzzSharp.xml", + "lib/net6.0/HarfBuzzSharp.dll", + "lib/net6.0/HarfBuzzSharp.pdb", + "lib/net6.0/HarfBuzzSharp.xml", + "lib/netcoreapp3.1/HarfBuzzSharp.dll", + "lib/netcoreapp3.1/HarfBuzzSharp.pdb", + "lib/netcoreapp3.1/HarfBuzzSharp.xml", + "lib/netstandard1.3/HarfBuzzSharp.dll", + "lib/netstandard1.3/HarfBuzzSharp.pdb", + "lib/netstandard1.3/HarfBuzzSharp.xml", + "lib/netstandard2.0/HarfBuzzSharp.dll", + "lib/netstandard2.0/HarfBuzzSharp.pdb", + "lib/netstandard2.0/HarfBuzzSharp.xml", + "lib/netstandard2.1/HarfBuzzSharp.dll", + "lib/netstandard2.1/HarfBuzzSharp.pdb", + "lib/netstandard2.1/HarfBuzzSharp.xml", + "lib/tizen40/HarfBuzzSharp.dll", + "lib/tizen40/HarfBuzzSharp.pdb", + "lib/tizen40/HarfBuzzSharp.xml", + "lib/uap10.0.10240/HarfBuzzSharp.dll", + "lib/uap10.0.10240/HarfBuzzSharp.pdb", + "lib/uap10.0.10240/HarfBuzzSharp.xml", + "lib/uap10.0.16299/HarfBuzzSharp.dll", + "lib/uap10.0.16299/HarfBuzzSharp.pdb", + "lib/uap10.0.16299/HarfBuzzSharp.xml", + "lib/xamarinios1.0/HarfBuzzSharp.dll", + "lib/xamarinios1.0/HarfBuzzSharp.pdb", + "lib/xamarinios1.0/HarfBuzzSharp.xml", + "lib/xamarinmac2.0/HarfBuzzSharp.dll", + "lib/xamarinmac2.0/HarfBuzzSharp.pdb", + "lib/xamarinmac2.0/HarfBuzzSharp.xml", + "lib/xamarintvos1.0/HarfBuzzSharp.dll", + "lib/xamarintvos1.0/HarfBuzzSharp.pdb", + "lib/xamarintvos1.0/HarfBuzzSharp.xml", + "lib/xamarinwatchos1.0/HarfBuzzSharp.dll", + "lib/xamarinwatchos1.0/HarfBuzzSharp.pdb", + "lib/xamarinwatchos1.0/HarfBuzzSharp.xml" + ] + }, + "HarfBuzzSharp.NativeAssets.Linux/7.3.0.2": { + "sha512": "aKa5J1RqjXKAtdcZJp5wjC78klfBIzJHM6CneN76lFmQ9LLRJA9Oa0TkIDaV8lVLDKMAy5fCKHXFlXUK1YfL/g==", + "type": "package", + "path": "harfbuzzsharp.nativeassets.linux/7.3.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/HarfBuzzSharp.NativeAssets.Linux.targets", + "buildTransitive/net462/HarfBuzzSharp.NativeAssets.Linux.targets", + "harfbuzzsharp.nativeassets.linux.7.3.0.2.nupkg.sha512", + "harfbuzzsharp.nativeassets.linux.nuspec", + "lib/net462/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "runtimes/linux-arm/native/libHarfBuzzSharp.so", + "runtimes/linux-arm64/native/libHarfBuzzSharp.so", + "runtimes/linux-musl-x64/native/libHarfBuzzSharp.so", + "runtimes/linux-x64/native/libHarfBuzzSharp.so" + ] + }, + "HarfBuzzSharp.NativeAssets.macOS/7.3.0.2": { + "sha512": "nycYH/WLJ6ogm+I+QSFCdPJsdxSb5GANWYbQyp1vsd/KjXN56RVUJWPhbgP2GKb/Y7mrsHM7EProqVXlO/EMsA==", + "type": "package", + "path": "harfbuzzsharp.nativeassets.macos/7.3.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/HarfBuzzSharp.NativeAssets.macOS.targets", + "build/net6.0-macos10.15/HarfBuzzSharp.NativeAssets.macOS.targets", + "build/xamarinmac2.0/HarfBuzzSharp.NativeAssets.macOS.targets", + "buildTransitive/net462/HarfBuzzSharp.NativeAssets.macOS.targets", + "buildTransitive/net6.0-macos10.15/HarfBuzzSharp.NativeAssets.macOS.targets", + "buildTransitive/xamarinmac2.0/HarfBuzzSharp.NativeAssets.macOS.targets", + "harfbuzzsharp.nativeassets.macos.7.3.0.2.nupkg.sha512", + "harfbuzzsharp.nativeassets.macos.nuspec", + "lib/net462/_._", + "lib/net6.0-macos10.15/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "lib/xamarinmac2.0/_._", + "runtimes/osx/native/libHarfBuzzSharp.dylib" + ] + }, + "HarfBuzzSharp.NativeAssets.WebAssembly/7.3.0.3-preview.2.2": { + "sha512": "Dc+dolrhmkpqwT25NfNEEgceW0//KRR2WIOvxlyIIHIIMBCn0FfUeJX5RhFll8kyaZwF8tuKsxRJtQG/rzSBog==", + "type": "package", + "path": "harfbuzzsharp.nativeassets.webassembly/7.3.0.3-preview.2.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.props", + "build/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.targets", + "build/netstandard1.0/libHarfBuzzSharp.a/2.0.23/libHarfBuzzSharp.a", + "build/netstandard1.0/libHarfBuzzSharp.a/2.0.6/libHarfBuzzSharp.a", + "build/netstandard1.0/libHarfBuzzSharp.a/3.1.12/mt,simd/libHarfBuzzSharp.a", + "build/netstandard1.0/libHarfBuzzSharp.a/3.1.12/mt/libHarfBuzzSharp.a", + "build/netstandard1.0/libHarfBuzzSharp.a/3.1.12/simd/libHarfBuzzSharp.a", + "build/netstandard1.0/libHarfBuzzSharp.a/3.1.12/st/libHarfBuzzSharp.a", + "build/netstandard1.0/libHarfBuzzSharp.a/3.1.34/mt/libHarfBuzzSharp.a", + "build/netstandard1.0/libHarfBuzzSharp.a/3.1.34/simd,mt/libHarfBuzzSharp.a", + "build/netstandard1.0/libHarfBuzzSharp.a/3.1.34/simd,st/libHarfBuzzSharp.a", + "build/netstandard1.0/libHarfBuzzSharp.a/3.1.34/st/libHarfBuzzSharp.a", + "build/netstandard1.0/libHarfBuzzSharp.a/3.1.56/mt/libHarfBuzzSharp.a", + "build/netstandard1.0/libHarfBuzzSharp.a/3.1.56/simd,mt/libHarfBuzzSharp.a", + "build/netstandard1.0/libHarfBuzzSharp.a/3.1.56/simd,st/libHarfBuzzSharp.a", + "build/netstandard1.0/libHarfBuzzSharp.a/3.1.56/st/libHarfBuzzSharp.a", + "build/netstandard1.0/libHarfBuzzSharp.a/3.1.7/libHarfBuzzSharp.a", + "buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.props", + "buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.targets", + "harfbuzzsharp.nativeassets.webassembly.7.3.0.3-preview.2.2.nupkg.sha512", + "harfbuzzsharp.nativeassets.webassembly.nuspec", + "lib/netstandard1.0/_._" + ] + }, + "HarfBuzzSharp.NativeAssets.Win32/7.3.0.2": { + "sha512": "DpF9JBzwws2dupOLnjME65hxQWWbN/GD40AoTkwB4S05WANvxo3n81AnQJKxWDCnrWfWhLPB36OF27TvEqzb/A==", + "type": "package", + "path": "harfbuzzsharp.nativeassets.win32/7.3.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/HarfBuzzSharp.NativeAssets.Win32.targets", + "buildTransitive/net462/HarfBuzzSharp.NativeAssets.Win32.targets", + "harfbuzzsharp.nativeassets.win32.7.3.0.2.nupkg.sha512", + "harfbuzzsharp.nativeassets.win32.nuspec", + "lib/net462/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "runtimes/win-arm64/native/libHarfBuzzSharp.dll", + "runtimes/win-x64/native/libHarfBuzzSharp.dll", + "runtimes/win-x86/native/libHarfBuzzSharp.dll" + ] + }, + "Humanizer.Core/2.14.1": { + "sha512": "lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", + "type": "package", + "path": "humanizer.core/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.2.14.1.nupkg.sha512", + "humanizer.core.nuspec", + "lib/net6.0/Humanizer.dll", + "lib/net6.0/Humanizer.xml", + "lib/netstandard1.0/Humanizer.dll", + "lib/netstandard1.0/Humanizer.xml", + "lib/netstandard2.0/Humanizer.dll", + "lib/netstandard2.0/Humanizer.xml", + "logo.png" + ] + }, + "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.Bcl.AsyncInterfaces/6.0.0": { + "sha512": "UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==", + "type": "package", + "path": "microsoft.bcl.asyncinterfaces/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", + "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512", + "microsoft.bcl.asyncinterfaces.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.3": { + "sha512": "j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==", + "type": "package", + "path": "microsoft.codeanalysis.analyzers/3.3.3", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "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", + "build/config/analysislevel_2_9_8_all.editorconfig", + "build/config/analysislevel_2_9_8_default.editorconfig", + "build/config/analysislevel_2_9_8_minimum.editorconfig", + "build/config/analysislevel_2_9_8_none.editorconfig", + "build/config/analysislevel_2_9_8_recommended.editorconfig", + "build/config/analysislevel_3_3_all.editorconfig", + "build/config/analysislevel_3_3_default.editorconfig", + "build/config/analysislevel_3_3_minimum.editorconfig", + "build/config/analysislevel_3_3_none.editorconfig", + "build/config/analysislevel_3_3_recommended.editorconfig", + "build/config/analysislevel_3_all.editorconfig", + "build/config/analysislevel_3_default.editorconfig", + "build/config/analysislevel_3_minimum.editorconfig", + "build/config/analysislevel_3_none.editorconfig", + "build/config/analysislevel_3_recommended.editorconfig", + "build/config/analysislevelcorrectness_2_9_8_all.editorconfig", + "build/config/analysislevelcorrectness_2_9_8_default.editorconfig", + "build/config/analysislevelcorrectness_2_9_8_minimum.editorconfig", + "build/config/analysislevelcorrectness_2_9_8_none.editorconfig", + "build/config/analysislevelcorrectness_2_9_8_recommended.editorconfig", + "build/config/analysislevelcorrectness_3_3_all.editorconfig", + "build/config/analysislevelcorrectness_3_3_default.editorconfig", + "build/config/analysislevelcorrectness_3_3_minimum.editorconfig", + "build/config/analysislevelcorrectness_3_3_none.editorconfig", + "build/config/analysislevelcorrectness_3_3_recommended.editorconfig", + "build/config/analysislevelcorrectness_3_all.editorconfig", + "build/config/analysislevelcorrectness_3_default.editorconfig", + "build/config/analysislevelcorrectness_3_minimum.editorconfig", + "build/config/analysislevelcorrectness_3_none.editorconfig", + "build/config/analysislevelcorrectness_3_recommended.editorconfig", + "build/config/analysislevellibrary_2_9_8_all.editorconfig", + "build/config/analysislevellibrary_2_9_8_default.editorconfig", + "build/config/analysislevellibrary_2_9_8_minimum.editorconfig", + "build/config/analysislevellibrary_2_9_8_none.editorconfig", + "build/config/analysislevellibrary_2_9_8_recommended.editorconfig", + "build/config/analysislevellibrary_3_3_all.editorconfig", + "build/config/analysislevellibrary_3_3_default.editorconfig", + "build/config/analysislevellibrary_3_3_minimum.editorconfig", + "build/config/analysislevellibrary_3_3_none.editorconfig", + "build/config/analysislevellibrary_3_3_recommended.editorconfig", + "build/config/analysislevellibrary_3_all.editorconfig", + "build/config/analysislevellibrary_3_default.editorconfig", + "build/config/analysislevellibrary_3_minimum.editorconfig", + "build/config/analysislevellibrary_3_none.editorconfig", + "build/config/analysislevellibrary_3_recommended.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisdesign_3_all.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisdesign_3_default.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisdesign_3_none.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysislocalization_3_all.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysislocalization_3_default.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysislocalization_3_none.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisperformance_3_all.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisperformance_3_default.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisperformance_3_none.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none.editorconfig", + "build/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended.editorconfig", + "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.3.3.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/4.5.0": { + "sha512": "lwAbIZNdnY0SUNoDmZHkVUwLO8UyNnyyh1t/4XsbFxi4Ounb3xszIYZaWhyj5ZjyfcwqwmtMbE7fUTVCqQEIdQ==", + "type": "package", + "path": "microsoft.codeanalysis.common/4.5.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.4.5.0.nupkg.sha512", + "microsoft.codeanalysis.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp/4.5.0": { + "sha512": "cM59oMKAOxvdv76bdmaKPy5hfj+oR+zxikWoueEB7CwTko7mt9sVKZI8Qxlov0C/LuKEG+WQwifepqL3vuTiBQ==", + "type": "package", + "path": "microsoft.codeanalysis.csharp/4.5.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.4.5.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": { + "sha512": "h74wTpmGOp4yS4hj+EvNzEiPgg/KVs2wmSfTZ81upJZOtPkJsVkgfsgtxxqmAeapjT/vLKfmYV0bS8n5MNVP+g==", + "type": "package", + "path": "microsoft.codeanalysis.csharp.workspaces/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.workspaces.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": { + "sha512": "l4dDRmGELXG72XZaonnOeORyD/T5RpEu5LGHOUIhnv+MmUWDY/m1kWXGwtcgQ5CJ5ynkFiRnIYzTKXYjUs7rbw==", + "type": "package", + "path": "microsoft.codeanalysis.workspaces.common/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.pdb", + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.xml", + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512", + "microsoft.codeanalysis.workspaces.common.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore/8.0.10": { + "sha512": "PPkQdIqfR1nU3n6YgGGDk8G+eaYbaAKM1AzIQtlPNTKf10Osg3N9T+iK9AlnSA/ujsK00flPpFHVfJrbuBFS1A==", + "type": "package", + "path": "microsoft.entityframeworkcore/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props", + "lib/net8.0/Microsoft.EntityFrameworkCore.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.xml", + "microsoft.entityframeworkcore.8.0.10.nupkg.sha512", + "microsoft.entityframeworkcore.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": { + "sha512": "FV0QlcX9INY4kAD2o72uPtyOh0nZut2jB11Jf9mNYBtHay8gDLe+x4AbXFwuQg+eSvofjT7naV82e827zGfyMg==", + "type": "package", + "path": "microsoft.entityframeworkcore.abstractions/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.xml", + "microsoft.entityframeworkcore.abstractions.8.0.10.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": { + "sha512": "51KkPIc0EMv/gVXhPIUi6cwJE9Mvh+PLr4Lap4naLcsoGZ0lF2SvOPgUUprwRV3MnN7nyD1XPhT5RJ/p+xFAXw==", + "type": "package", + "path": "microsoft.entityframeworkcore.analyzers/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", + "docs/PACKAGE.md", + "lib/netstandard2.0/_._", + "microsoft.entityframeworkcore.analyzers.8.0.10.nupkg.sha512", + "microsoft.entityframeworkcore.analyzers.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Design/8.0.10": { + "sha512": "uGNjfKvAsql2KHRqxlK5wHo8mMC60G/FecrFKEjJgeIxtUAbSXGOgKGw/gD9flO5Fzzt1C7uxfIcr6ZsMmFkeg==", + "type": "package", + "path": "microsoft.entityframeworkcore.design/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "build/net8.0/Microsoft.EntityFrameworkCore.Design.props", + "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Design.xml", + "microsoft.entityframeworkcore.design.8.0.10.nupkg.sha512", + "microsoft.entityframeworkcore.design.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Relational/8.0.10": { + "sha512": "OefBEE47kGKPRPV3OT+FAW6o5BFgLk2D9EoeWVy7NbOepzUneayLQxbVE098FfedTyMwxvZQoDD9LrvZc3MadA==", + "type": "package", + "path": "microsoft.entityframeworkcore.relational/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.xml", + "microsoft.entityframeworkcore.relational.8.0.10.nupkg.sha512", + "microsoft.entityframeworkcore.relational.nuspec" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "sha512": "3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.Memory/8.0.1": { + "sha512": "HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==", + "type": "package", + "path": "microsoft.extensions.caching.memory/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets", + "lib/net462/Microsoft.Extensions.Caching.Memory.dll", + "lib/net462/Microsoft.Extensions.Caching.Memory.xml", + "lib/net6.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net6.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net7.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", + "microsoft.extensions.caching.memory.8.0.1.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "sha512": "3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/8.0.1": { + "sha512": "BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "sha512": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyModel/8.0.2": { + "sha512": "mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/8.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets", + "lib/net462/Microsoft.Extensions.DependencyModel.dll", + "lib/net462/Microsoft.Extensions.DependencyModel.xml", + "lib/net6.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net6.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net7.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net7.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net8.0/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging/8.0.1": { + "sha512": "4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==", + "type": "package", + "path": "microsoft.extensions.logging/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", + "lib/net462/Microsoft.Extensions.Logging.dll", + "lib/net462/Microsoft.Extensions.Logging.xml", + "lib/net6.0/Microsoft.Extensions.Logging.dll", + "lib/net6.0/Microsoft.Extensions.Logging.xml", + "lib/net7.0/Microsoft.Extensions.Logging.dll", + "lib/net7.0/Microsoft.Extensions.Logging.xml", + "lib/net8.0/Microsoft.Extensions.Logging.dll", + "lib/net8.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.8.0.1.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "sha512": "nroMDjS7hNBPtkZqVBbSiQaQjWRDxITI8Y7XnDs97rqG3EbzVTNLZQf7bIeUJcaHOV8bca47s1Uxq94+2oGdxA==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/8.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/8.0.2": { + "sha512": "dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==", + "type": "package", + "path": "microsoft.extensions.options/8.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/Microsoft.Extensions.Options.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net6.0/Microsoft.Extensions.Options.dll", + "lib/net6.0/Microsoft.Extensions.Options.xml", + "lib/net7.0/Microsoft.Extensions.Options.dll", + "lib/net7.0/Microsoft.Extensions.Options.xml", + "lib/net8.0/Microsoft.Extensions.Options.dll", + "lib/net8.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.8.0.2.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "sha512": "bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==", + "type": "package", + "path": "microsoft.extensions.primitives/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/net7.0/Microsoft.Extensions.Primitives.dll", + "lib/net7.0/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.8.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Mono.TextTemplating/2.2.1": { + "sha512": "KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==", + "type": "package", + "path": "mono.texttemplating/2.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net472/Mono.TextTemplating.dll", + "lib/netstandard2.0/Mono.TextTemplating.dll", + "mono.texttemplating.2.2.1.nupkg.sha512", + "mono.texttemplating.nuspec" + ] + }, + "Npgsql/8.0.5": { + "sha512": "zRG5V8cyeZLpzJlKzFKjEwkRMYIYnHWJvEor2lWXeccS2E1G2nIWYYhnukB51iz5XsWSVEtqg3AxTWM0QJ6vfg==", + "type": "package", + "path": "npgsql/8.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net6.0/Npgsql.dll", + "lib/net6.0/Npgsql.xml", + "lib/net7.0/Npgsql.dll", + "lib/net7.0/Npgsql.xml", + "lib/net8.0/Npgsql.dll", + "lib/net8.0/Npgsql.xml", + "lib/netstandard2.0/Npgsql.dll", + "lib/netstandard2.0/Npgsql.xml", + "lib/netstandard2.1/Npgsql.dll", + "lib/netstandard2.1/Npgsql.xml", + "npgsql.8.0.5.nupkg.sha512", + "npgsql.nuspec", + "postgresql.png" + ] + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/8.0.10": { + "sha512": "gFPl9Dmxih7Yi4tZ3bITzZFzbxFMBx04gqTqcjoL2r5VEW+O2TA5UVw/wm/XW26NAJ7sg59Je0+9QrwiZt6MPQ==", + "type": "package", + "path": "npgsql.entityframeworkcore.postgresql/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll", + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.xml", + "npgsql.entityframeworkcore.postgresql.8.0.10.nupkg.sha512", + "npgsql.entityframeworkcore.postgresql.nuspec", + "postgresql.png" + ] + }, + "ShimSkiaSharp/2.0.0.4": { + "sha512": "7UDQA2c0k56I8yvgHWoRTq4JUOLU9alajszvixR4IDhXgTJaEHqXqzu618Dh26K31zvKMR4ndc9y+OhtuDdhqQ==", + "type": "package", + "path": "shimskiasharp/2.0.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/ShimSkiaSharp.dll", + "lib/net6.0/ShimSkiaSharp.dll", + "lib/net8.0/ShimSkiaSharp.dll", + "lib/netstandard2.0/ShimSkiaSharp.dll", + "shimskiasharp.2.0.0.4.nupkg.sha512", + "shimskiasharp.nuspec" + ] + }, + "SkiaSharp/2.88.8": { + "sha512": "bRkp3uKp5ZI8gXYQT57uKwil1uobb2p8c69n7v5evlB/2JNcMAXVcw9DZAP5Ig3WSvgzGm2YSn27UVeOi05NlA==", + "type": "package", + "path": "skiasharp/2.88.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "interactive-extensions/dotnet/SkiaSharp.DotNet.Interactive.dll", + "lib/monoandroid1.0/SkiaSharp.dll", + "lib/monoandroid1.0/SkiaSharp.pdb", + "lib/monoandroid1.0/SkiaSharp.xml", + "lib/net462/SkiaSharp.dll", + "lib/net462/SkiaSharp.pdb", + "lib/net462/SkiaSharp.xml", + "lib/net6.0-android30.0/SkiaSharp.dll", + "lib/net6.0-android30.0/SkiaSharp.pdb", + "lib/net6.0-android30.0/SkiaSharp.xml", + "lib/net6.0-ios13.6/SkiaSharp.dll", + "lib/net6.0-ios13.6/SkiaSharp.pdb", + "lib/net6.0-ios13.6/SkiaSharp.xml", + "lib/net6.0-maccatalyst13.5/SkiaSharp.dll", + "lib/net6.0-maccatalyst13.5/SkiaSharp.pdb", + "lib/net6.0-maccatalyst13.5/SkiaSharp.xml", + "lib/net6.0-macos10.15/SkiaSharp.dll", + "lib/net6.0-macos10.15/SkiaSharp.pdb", + "lib/net6.0-macos10.15/SkiaSharp.xml", + "lib/net6.0-tizen7.0/SkiaSharp.dll", + "lib/net6.0-tizen7.0/SkiaSharp.pdb", + "lib/net6.0-tizen7.0/SkiaSharp.xml", + "lib/net6.0-tvos13.4/SkiaSharp.dll", + "lib/net6.0-tvos13.4/SkiaSharp.pdb", + "lib/net6.0-tvos13.4/SkiaSharp.xml", + "lib/net6.0/SkiaSharp.dll", + "lib/net6.0/SkiaSharp.pdb", + "lib/net6.0/SkiaSharp.xml", + "lib/netcoreapp3.1/SkiaSharp.dll", + "lib/netcoreapp3.1/SkiaSharp.pdb", + "lib/netcoreapp3.1/SkiaSharp.xml", + "lib/netstandard1.3/SkiaSharp.dll", + "lib/netstandard1.3/SkiaSharp.pdb", + "lib/netstandard1.3/SkiaSharp.xml", + "lib/netstandard2.0/SkiaSharp.dll", + "lib/netstandard2.0/SkiaSharp.pdb", + "lib/netstandard2.0/SkiaSharp.xml", + "lib/netstandard2.1/SkiaSharp.dll", + "lib/netstandard2.1/SkiaSharp.pdb", + "lib/netstandard2.1/SkiaSharp.xml", + "lib/tizen40/SkiaSharp.dll", + "lib/tizen40/SkiaSharp.pdb", + "lib/tizen40/SkiaSharp.xml", + "lib/uap10.0.10240/SkiaSharp.dll", + "lib/uap10.0.10240/SkiaSharp.pdb", + "lib/uap10.0.10240/SkiaSharp.xml", + "lib/uap10.0.16299/SkiaSharp.dll", + "lib/uap10.0.16299/SkiaSharp.pdb", + "lib/uap10.0.16299/SkiaSharp.xml", + "lib/xamarinios1.0/SkiaSharp.dll", + "lib/xamarinios1.0/SkiaSharp.pdb", + "lib/xamarinios1.0/SkiaSharp.xml", + "lib/xamarinmac2.0/SkiaSharp.dll", + "lib/xamarinmac2.0/SkiaSharp.pdb", + "lib/xamarinmac2.0/SkiaSharp.xml", + "lib/xamarintvos1.0/SkiaSharp.dll", + "lib/xamarintvos1.0/SkiaSharp.pdb", + "lib/xamarintvos1.0/SkiaSharp.xml", + "lib/xamarinwatchos1.0/SkiaSharp.dll", + "lib/xamarinwatchos1.0/SkiaSharp.pdb", + "lib/xamarinwatchos1.0/SkiaSharp.xml", + "skiasharp.2.88.8.nupkg.sha512", + "skiasharp.nuspec" + ] + }, + "SkiaSharp.HarfBuzz/2.88.8": { + "sha512": "ajSyJ2D17R0kZ4FwKwFrJTsYs3D3Y9iRBLhNecROR7dOxC6VTFaMPXJuwQB8KYpAqgmb2JAJFEgZ3i8MaaIw1g==", + "type": "package", + "path": "skiasharp.harfbuzz/2.88.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "lib/net462/SkiaSharp.HarfBuzz.dll", + "lib/net462/SkiaSharp.HarfBuzz.pdb", + "lib/net462/SkiaSharp.HarfBuzz.xml", + "lib/net6.0/SkiaSharp.HarfBuzz.dll", + "lib/net6.0/SkiaSharp.HarfBuzz.pdb", + "lib/net6.0/SkiaSharp.HarfBuzz.xml", + "lib/netcoreapp3.1/SkiaSharp.HarfBuzz.dll", + "lib/netcoreapp3.1/SkiaSharp.HarfBuzz.pdb", + "lib/netcoreapp3.1/SkiaSharp.HarfBuzz.xml", + "lib/netstandard1.3/SkiaSharp.HarfBuzz.dll", + "lib/netstandard1.3/SkiaSharp.HarfBuzz.pdb", + "lib/netstandard1.3/SkiaSharp.HarfBuzz.xml", + "lib/netstandard2.0/SkiaSharp.HarfBuzz.dll", + "lib/netstandard2.0/SkiaSharp.HarfBuzz.pdb", + "lib/netstandard2.0/SkiaSharp.HarfBuzz.xml", + "lib/netstandard2.1/SkiaSharp.HarfBuzz.dll", + "lib/netstandard2.1/SkiaSharp.HarfBuzz.pdb", + "lib/netstandard2.1/SkiaSharp.HarfBuzz.xml", + "skiasharp.harfbuzz.2.88.8.nupkg.sha512", + "skiasharp.harfbuzz.nuspec" + ] + }, + "SkiaSharp.NativeAssets.Linux/2.88.8": { + "sha512": "0FO6YA7paNFBMJULvEyecPmCvL9/STvOAi5VOUw2srqJ7pNTbiiZkfl7sulAzcumbWgfzaVjRXYTgMj7SoUnWQ==", + "type": "package", + "path": "skiasharp.nativeassets.linux/2.88.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/SkiaSharp.NativeAssets.Linux.targets", + "buildTransitive/net462/SkiaSharp.NativeAssets.Linux.targets", + "lib/net462/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "runtimes/linux-arm/native/libSkiaSharp.so", + "runtimes/linux-arm64/native/libSkiaSharp.so", + "runtimes/linux-musl-x64/native/libSkiaSharp.so", + "runtimes/linux-x64/native/libSkiaSharp.so", + "skiasharp.nativeassets.linux.2.88.8.nupkg.sha512", + "skiasharp.nativeassets.linux.nuspec" + ] + }, + "SkiaSharp.NativeAssets.macOS/2.88.8": { + "sha512": "6Kn5TSkKlfyS6azWHF3Jk2sW5C4jCE5uSshM/5AbfFrR+5n6qM5XEnz9h4VaVl7LTxBvHvMkuPb/3bpbq0vxTw==", + "type": "package", + "path": "skiasharp.nativeassets.macos/2.88.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/SkiaSharp.NativeAssets.macOS.targets", + "build/net6.0-macos10.15/SkiaSharp.NativeAssets.macOS.targets", + "build/xamarinmac2.0/SkiaSharp.NativeAssets.macOS.targets", + "buildTransitive/net462/SkiaSharp.NativeAssets.macOS.targets", + "buildTransitive/net6.0-macos10.15/SkiaSharp.NativeAssets.macOS.targets", + "buildTransitive/xamarinmac2.0/SkiaSharp.NativeAssets.macOS.targets", + "lib/net462/_._", + "lib/net6.0-macos10.15/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "lib/xamarinmac2.0/_._", + "runtimes/osx/native/libSkiaSharp.dylib", + "skiasharp.nativeassets.macos.2.88.8.nupkg.sha512", + "skiasharp.nativeassets.macos.nuspec" + ] + }, + "SkiaSharp.NativeAssets.WebAssembly/2.88.8": { + "sha512": "S3qRo8c+gVYOyfrdf6FYnjx/ft+gPkb4dNY2IPv5Oy5yNBhDhXhKqHFr9h4+ne6ZU+7D4dbuRQqsIqCo8u1/DA==", + "type": "package", + "path": "skiasharp.nativeassets.webassembly/2.88.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.props", + "build/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.targets", + "build/netstandard1.0/libSkiaSharp.a/2.0.23/libSkiaSharp.a", + "build/netstandard1.0/libSkiaSharp.a/2.0.6/libSkiaSharp.a", + "build/netstandard1.0/libSkiaSharp.a/3.1.12/mt,simd/libSkiaSharp.a", + "build/netstandard1.0/libSkiaSharp.a/3.1.12/mt/libSkiaSharp.a", + "build/netstandard1.0/libSkiaSharp.a/3.1.12/simd/libSkiaSharp.a", + "build/netstandard1.0/libSkiaSharp.a/3.1.12/st/libSkiaSharp.a", + "build/netstandard1.0/libSkiaSharp.a/3.1.34/mt/libSkiaSharp.a", + "build/netstandard1.0/libSkiaSharp.a/3.1.34/simd,mt/libSkiaSharp.a", + "build/netstandard1.0/libSkiaSharp.a/3.1.34/simd,st/libSkiaSharp.a", + "build/netstandard1.0/libSkiaSharp.a/3.1.34/st/libSkiaSharp.a", + "build/netstandard1.0/libSkiaSharp.a/3.1.7/libSkiaSharp.a", + "buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.props", + "buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.targets", + "lib/netstandard1.0/_._", + "skiasharp.nativeassets.webassembly.2.88.8.nupkg.sha512", + "skiasharp.nativeassets.webassembly.nuspec" + ] + }, + "SkiaSharp.NativeAssets.Win32/2.88.8": { + "sha512": "O9QXoWEXA+6cweR4h3BOnwMz+pO9vL9mXdjLrpDd0w1QzCgWmLQBxa1VgySDITiH7nQndrDG1h6937zm9pLj1Q==", + "type": "package", + "path": "skiasharp.nativeassets.win32/2.88.8", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "THIRD-PARTY-NOTICES.txt", + "build/net462/SkiaSharp.NativeAssets.Win32.targets", + "buildTransitive/net462/SkiaSharp.NativeAssets.Win32.targets", + "lib/net462/_._", + "lib/net6.0/_._", + "lib/netcoreapp3.1/_._", + "lib/netstandard1.3/_._", + "runtimes/win-arm64/native/libSkiaSharp.dll", + "runtimes/win-x64/native/libSkiaSharp.dll", + "runtimes/win-x86/native/libSkiaSharp.dll", + "skiasharp.nativeassets.win32.2.88.8.nupkg.sha512", + "skiasharp.nativeassets.win32.nuspec" + ] + }, + "Svg.Custom/2.0.0.4": { + "sha512": "RTA2brxnCbPi+hR8Z6qRGNA0aB7CGR2dBn57xmK3KXbuZPmiV1OUEjuI5++oMN6HcnEMIXSa8UkHTanjNt3eMA==", + "type": "package", + "path": "svg.custom/2.0.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net6.0/Svg.Custom.dll", + "lib/net8.0/Svg.Custom.dll", + "lib/netstandard2.0/Svg.Custom.dll", + "svg.custom.2.0.0.4.nupkg.sha512", + "svg.custom.nuspec" + ] + }, + "Svg.Model/2.0.0.4": { + "sha512": "u3O0EW7w4PUI7hyYKeH9F5hm1KDgRnz3KRutwTyRwGia/MqCuYF6nf9HeNiw7rOuX0tR14wa8peQ/rw9RpWSOQ==", + "type": "package", + "path": "svg.model/2.0.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Svg.Model.dll", + "lib/net6.0/Svg.Model.dll", + "lib/net8.0/Svg.Model.dll", + "lib/netstandard2.0/Svg.Model.dll", + "svg.model.2.0.0.4.nupkg.sha512", + "svg.model.nuspec" + ] + }, + "Svg.Skia/2.0.0.4": { + "sha512": "RlM5lc+y9yIXdBnMKvuyutBdylSWGTfg7hqiGz6dLcJdOYiKQS+WcCECC+pYMTauSNeTQX77YMryMKiG1lMFyQ==", + "type": "package", + "path": "svg.skia/2.0.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Svg.Skia.dll", + "lib/net6.0/Svg.Skia.dll", + "lib/net8.0/Svg.Skia.dll", + "lib/netstandard2.0/Svg.Skia.dll", + "svg.skia.2.0.0.4.nupkg.sha512", + "svg.skia.nuspec" + ] + }, + "System.CodeDom/4.4.0": { + "sha512": "2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==", + "type": "package", + "path": "system.codedom/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.CodeDom.dll", + "lib/netstandard2.0/System.CodeDom.dll", + "ref/net461/System.CodeDom.dll", + "ref/net461/System.CodeDom.xml", + "ref/netstandard2.0/System.CodeDom.dll", + "ref/netstandard2.0/System.CodeDom.xml", + "system.codedom.4.4.0.nupkg.sha512", + "system.codedom.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections.Immutable/6.0.0": { + "sha512": "l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==", + "type": "package", + "path": "system.collections.immutable/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Collections.Immutable.dll", + "lib/net461/System.Collections.Immutable.xml", + "lib/net6.0/System.Collections.Immutable.dll", + "lib/net6.0/System.Collections.Immutable.xml", + "lib/netstandard2.0/System.Collections.Immutable.dll", + "lib/netstandard2.0/System.Collections.Immutable.xml", + "system.collections.immutable.6.0.0.nupkg.sha512", + "system.collections.immutable.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition/6.0.0": { + "sha512": "d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==", + "type": "package", + "path": "system.composition/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Composition.targets", + "buildTransitive/netcoreapp3.1/_._", + "system.composition.6.0.0.nupkg.sha512", + "system.composition.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.AttributedModel/6.0.0": { + "sha512": "WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w==", + "type": "package", + "path": "system.composition.attributedmodel/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Composition.AttributedModel.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Composition.AttributedModel.dll", + "lib/net461/System.Composition.AttributedModel.xml", + "lib/net6.0/System.Composition.AttributedModel.dll", + "lib/net6.0/System.Composition.AttributedModel.xml", + "lib/netstandard2.0/System.Composition.AttributedModel.dll", + "lib/netstandard2.0/System.Composition.AttributedModel.xml", + "system.composition.attributedmodel.6.0.0.nupkg.sha512", + "system.composition.attributedmodel.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.Convention/6.0.0": { + "sha512": "XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==", + "type": "package", + "path": "system.composition.convention/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Composition.Convention.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Composition.Convention.dll", + "lib/net461/System.Composition.Convention.xml", + "lib/net6.0/System.Composition.Convention.dll", + "lib/net6.0/System.Composition.Convention.xml", + "lib/netstandard2.0/System.Composition.Convention.dll", + "lib/netstandard2.0/System.Composition.Convention.xml", + "system.composition.convention.6.0.0.nupkg.sha512", + "system.composition.convention.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.Hosting/6.0.0": { + "sha512": "w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==", + "type": "package", + "path": "system.composition.hosting/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Composition.Hosting.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Composition.Hosting.dll", + "lib/net461/System.Composition.Hosting.xml", + "lib/net6.0/System.Composition.Hosting.dll", + "lib/net6.0/System.Composition.Hosting.xml", + "lib/netstandard2.0/System.Composition.Hosting.dll", + "lib/netstandard2.0/System.Composition.Hosting.xml", + "system.composition.hosting.6.0.0.nupkg.sha512", + "system.composition.hosting.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.Runtime/6.0.0": { + "sha512": "qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg==", + "type": "package", + "path": "system.composition.runtime/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Composition.Runtime.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Composition.Runtime.dll", + "lib/net461/System.Composition.Runtime.xml", + "lib/net6.0/System.Composition.Runtime.dll", + "lib/net6.0/System.Composition.Runtime.xml", + "lib/netstandard2.0/System.Composition.Runtime.dll", + "lib/netstandard2.0/System.Composition.Runtime.xml", + "system.composition.runtime.6.0.0.nupkg.sha512", + "system.composition.runtime.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.TypedParts/6.0.0": { + "sha512": "iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==", + "type": "package", + "path": "system.composition.typedparts/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Composition.TypedParts.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Composition.TypedParts.dll", + "lib/net461/System.Composition.TypedParts.xml", + "lib/net6.0/System.Composition.TypedParts.dll", + "lib/net6.0/System.Composition.TypedParts.xml", + "lib/netstandard2.0/System.Composition.TypedParts.dll", + "lib/netstandard2.0/System.Composition.TypedParts.xml", + "system.composition.typedparts.6.0.0.nupkg.sha512", + "system.composition.typedparts.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.IO.Pipelines/8.0.0": { + "sha512": "FHNOatmUq0sqJOkTx+UF/9YK1f180cnW5FVqnQMvYUN0elp6wFzbtPSiqbo1/ru8ICp43JM1i7kKkk6GsNGHlA==", + "type": "package", + "path": "system.io.pipelines/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.IO.Pipelines.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets", + "lib/net462/System.IO.Pipelines.dll", + "lib/net462/System.IO.Pipelines.xml", + "lib/net6.0/System.IO.Pipelines.dll", + "lib/net6.0/System.IO.Pipelines.xml", + "lib/net7.0/System.IO.Pipelines.dll", + "lib/net7.0/System.IO.Pipelines.xml", + "lib/net8.0/System.IO.Pipelines.dll", + "lib/net8.0/System.IO.Pipelines.xml", + "lib/netstandard2.0/System.IO.Pipelines.dll", + "lib/netstandard2.0/System.IO.Pipelines.xml", + "system.io.pipelines.8.0.0.nupkg.sha512", + "system.io.pipelines.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Reflection.Metadata/6.0.1": { + "sha512": "III/lNMSn0ZRBuM9m5Cgbiho5j81u0FAEagFX5ta2DKbljZ3T0IpD8j+BIiHQPeKqJppWS9bGEp6JnKnWKze0g==", + "type": "package", + "path": "system.reflection.metadata/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Reflection.Metadata.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Reflection.Metadata.dll", + "lib/net461/System.Reflection.Metadata.xml", + "lib/net6.0/System.Reflection.Metadata.dll", + "lib/net6.0/System.Reflection.Metadata.xml", + "lib/netstandard2.0/System.Reflection.Metadata.dll", + "lib/netstandard2.0/System.Reflection.Metadata.xml", + "system.reflection.metadata.6.0.1.nupkg.sha512", + "system.reflection.metadata.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Encoding.CodePages/6.0.0": { + "sha512": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", + "type": "package", + "path": "system.text.encoding.codepages/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.xml", + "lib/net6.0/System.Text.Encoding.CodePages.dll", + "lib/net6.0/System.Text.Encoding.CodePages.xml", + "lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll", + "lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "system.text.encoding.codepages.6.0.0.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Threading.Channels/6.0.0": { + "sha512": "TY8/9+tI0mNaUMgntOxxaq2ndTkdXqLSxvPmas7XEqOlv9lQtB7wLjYGd756lOaO7Dvb5r/WXhluM+0Xe87v5Q==", + "type": "package", + "path": "system.threading.channels/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Threading.Channels.dll", + "lib/net461/System.Threading.Channels.xml", + "lib/net6.0/System.Threading.Channels.dll", + "lib/net6.0/System.Threading.Channels.xml", + "lib/netcoreapp3.1/System.Threading.Channels.dll", + "lib/netcoreapp3.1/System.Threading.Channels.xml", + "lib/netstandard2.0/System.Threading.Channels.dll", + "lib/netstandard2.0/System.Threading.Channels.xml", + "lib/netstandard2.1/System.Threading.Channels.dll", + "lib/netstandard2.1/System.Threading.Channels.xml", + "system.threading.channels.6.0.0.nupkg.sha512", + "system.threading.channels.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Tmds.DBus.Protocol/0.20.0": { + "sha512": "2gkt2kuYPhDKd8gtl34jZSJOnn4nRJfFngCDcTZT/uySbK++ua0YQx2418l9Rn1Y4dE5XNq6zG9ZsE5ltLlNNw==", + "type": "package", + "path": "tmds.dbus.protocol/0.20.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net6.0/Tmds.DBus.Protocol.dll", + "lib/net8.0/Tmds.DBus.Protocol.dll", + "lib/netstandard2.0/Tmds.DBus.Protocol.dll", + "lib/netstandard2.1/Tmds.DBus.Protocol.dll", + "tmds.dbus.protocol.0.20.0.nupkg.sha512", + "tmds.dbus.protocol.nuspec" + ] + }, + "ZXing.Net/0.16.10": { + "sha512": "9avtcn21T7Ndcl8PQ1LHR7/wEoCruX1QKKHvO6zBPTsDW9IdvR5vKOmd618AY+DtDWZz8NaFDTkpbZdgaF4l4w==", + "type": "package", + "path": "zxing.net/0.16.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/native/zxing.XML", + "lib/native/zxing.pri", + "lib/native/zxing.winmd", + "lib/net20-cf/zxing.ce2.0.dll", + "lib/net20-cf/zxing.ce2.0.xml", + "lib/net20/zxing.XML", + "lib/net20/zxing.dll", + "lib/net35-cf/zxing.ce3.5.dll", + "lib/net35-cf/zxing.ce3.5.xml", + "lib/net35/zxing.XML", + "lib/net35/zxing.dll", + "lib/net40/zxing.XML", + "lib/net40/zxing.dll", + "lib/net40/zxing.presentation.XML", + "lib/net40/zxing.presentation.dll", + "lib/net45/zxing.XML", + "lib/net45/zxing.dll", + "lib/net45/zxing.presentation.XML", + "lib/net45/zxing.presentation.dll", + "lib/net461/zxing.XML", + "lib/net461/zxing.dll", + "lib/net461/zxing.presentation.XML", + "lib/net461/zxing.presentation.dll", + "lib/net47/zxing.XML", + "lib/net47/zxing.dll", + "lib/net47/zxing.presentation.XML", + "lib/net47/zxing.presentation.dll", + "lib/net48/zxing.XML", + "lib/net48/zxing.dll", + "lib/net48/zxing.presentation.XML", + "lib/net48/zxing.presentation.dll", + "lib/net5.0/zxing.XML", + "lib/net5.0/zxing.dll", + "lib/net6.0/zxing.XML", + "lib/net6.0/zxing.dll", + "lib/net7.0/zxing.XML", + "lib/net7.0/zxing.dll", + "lib/net8.0/zxing.XML", + "lib/net8.0/zxing.dll", + "lib/net9.0/zxing.XML", + "lib/net9.0/zxing.dll", + "lib/netcoreapp3.0/zxing.dll", + "lib/netcoreapp3.0/zxing.xml", + "lib/netcoreapp3.1/zxing.dll", + "lib/netcoreapp3.1/zxing.xml", + "lib/netstandard1.0/zxing.dll", + "lib/netstandard1.0/zxing.xml", + "lib/netstandard1.1/zxing.dll", + "lib/netstandard1.1/zxing.xml", + "lib/netstandard1.3/zxing.dll", + "lib/netstandard1.3/zxing.xml", + "lib/netstandard2.0/zxing.dll", + "lib/netstandard2.0/zxing.xml", + "lib/netstandard2.1/zxing.dll", + "lib/netstandard2.1/zxing.xml", + "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.XML", + "lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.dll", + "lib/sl3-wp/zxing.wp7.0.XML", + "lib/sl3-wp/zxing.wp7.0.dll", + "lib/sl4-wp71/zxing.wp7.1.XML", + "lib/sl4-wp71/zxing.wp7.1.dll", + "lib/sl4/zxing.sl4.XML", + "lib/sl4/zxing.sl4.dll", + "lib/sl5/zxing.sl5.XML", + "lib/sl5/zxing.sl5.dll", + "lib/uap10/zxing.dll", + "lib/uap10/zxing.pri", + "lib/uap10/zxing.xml", + "lib/windows8-managed/zxing.winrt.XML", + "lib/windows8-managed/zxing.winrt.dll", + "lib/windows8/zxing.XML", + "lib/windows8/zxing.pri", + "lib/windows8/zxing.winmd", + "lib/wp8/zxing.wp8.0.XML", + "lib/wp8/zxing.wp8.0.dll", + "logo.jpg", + "zxing.net.0.16.10.nupkg.sha512", + "zxing.net.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "net8.0": [ + "Avalonia >= 11.2.1", + "Avalonia.Desktop >= 11.2.1", + "Avalonia.Diagnostics >= 11.2.1", + "Avalonia.Fonts.Inter >= 11.2.1", + "Avalonia.Svg.Skia >= 11.2.0.2", + "Avalonia.Themes.Fluent >= 11.2.1", + "Microsoft.EntityFrameworkCore >= 8.0.10", + "Microsoft.EntityFrameworkCore.Design >= 8.0.10", + "Npgsql.EntityFrameworkCore.PostgreSQL >= 8.0.10", + "ZXing.Net >= 0.16.10" + ] + }, + "packageFolders": { + "C:\\Users\\sokol\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\sokol\\RiderProjects\\demo_hard\\demo_hard.csproj", + "projectName": "demo_hard", + "projectPath": "C:\\Users\\sokol\\RiderProjects\\demo_hard\\demo_hard.csproj", + "packagesPath": "C:\\Users\\sokol\\.nuget\\packages\\", + "outputPath": "C:\\Users\\sokol\\RiderProjects\\demo_hard\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\sokol\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.100" + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Avalonia": { + "target": "Package", + "version": "[11.2.1, )" + }, + "Avalonia.Desktop": { + "target": "Package", + "version": "[11.2.1, )" + }, + "Avalonia.Diagnostics": { + "target": "Package", + "version": "[11.2.1, )" + }, + "Avalonia.Fonts.Inter": { + "target": "Package", + "version": "[11.2.1, )" + }, + "Avalonia.Svg.Skia": { + "target": "Package", + "version": "[11.2.0.2, )" + }, + "Avalonia.Themes.Fluent": { + "target": "Package", + "version": "[11.2.1, )" + }, + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[8.0.10, )" + }, + "Microsoft.EntityFrameworkCore.Design": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[8.0.10, )" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL": { + "target": "Package", + "version": "[8.0.10, )" + }, + "ZXing.Net": { + "target": "Package", + "version": "[0.16.10, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Ref", + "version": "[8.0.12, 8.0.12]" + }, + { + "name": "Microsoft.NETCore.App.Host.win-x64", + "version": "[8.0.12, 8.0.12]" + }, + { + "name": "Microsoft.NETCore.App.Ref", + "version": "[8.0.12, 8.0.12]" + }, + { + "name": "Microsoft.WindowsDesktop.App.Ref", + "version": "[8.0.12, 8.0.12]" + } + ], + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.102/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache new file mode 100644 index 0000000..4300743 --- /dev/null +++ b/obj/project.nuget.cache @@ -0,0 +1,87 @@ +{ + "version": 2, + "dgSpecHash": "0RbIq6+0Y8M=", + "success": true, + "projectFilePath": "C:\\Users\\sokol\\RiderProjects\\demo_hard\\demo_hard.csproj", + "expectedPackageFiles": [ + "C:\\Users\\sokol\\.nuget\\packages\\avalonia\\11.2.1\\avalonia.11.2.1.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\avalonia.angle.windows.natives\\2.1.22045.20230930\\avalonia.angle.windows.natives.2.1.22045.20230930.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\avalonia.buildservices\\0.0.29\\avalonia.buildservices.0.0.29.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\avalonia.controls.colorpicker\\11.2.1\\avalonia.controls.colorpicker.11.2.1.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\avalonia.controls.datagrid\\11.2.1\\avalonia.controls.datagrid.11.2.1.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\avalonia.desktop\\11.2.1\\avalonia.desktop.11.2.1.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\avalonia.diagnostics\\11.2.1\\avalonia.diagnostics.11.2.1.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\avalonia.fonts.inter\\11.2.1\\avalonia.fonts.inter.11.2.1.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\avalonia.freedesktop\\11.2.1\\avalonia.freedesktop.11.2.1.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\avalonia.native\\11.2.1\\avalonia.native.11.2.1.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\avalonia.remote.protocol\\11.2.1\\avalonia.remote.protocol.11.2.1.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\avalonia.skia\\11.2.1\\avalonia.skia.11.2.1.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\avalonia.svg.skia\\11.2.0.2\\avalonia.svg.skia.11.2.0.2.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\avalonia.themes.fluent\\11.2.1\\avalonia.themes.fluent.11.2.1.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\avalonia.themes.simple\\11.2.1\\avalonia.themes.simple.11.2.1.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\avalonia.win32\\11.2.1\\avalonia.win32.11.2.1.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\avalonia.x11\\11.2.1\\avalonia.x11.11.2.1.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\excss\\4.2.3\\excss.4.2.3.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\harfbuzzsharp\\7.3.0.2\\harfbuzzsharp.7.3.0.2.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\harfbuzzsharp.nativeassets.linux\\7.3.0.2\\harfbuzzsharp.nativeassets.linux.7.3.0.2.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\harfbuzzsharp.nativeassets.macos\\7.3.0.2\\harfbuzzsharp.nativeassets.macos.7.3.0.2.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\harfbuzzsharp.nativeassets.webassembly\\7.3.0.3-preview.2.2\\harfbuzzsharp.nativeassets.webassembly.7.3.0.3-preview.2.2.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\harfbuzzsharp.nativeassets.win32\\7.3.0.2\\harfbuzzsharp.nativeassets.win32.7.3.0.2.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\humanizer.core\\2.14.1\\humanizer.core.2.14.1.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\microcom.runtime\\0.11.0\\microcom.runtime.0.11.0.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\6.0.0\\microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.3\\microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\microsoft.codeanalysis.common\\4.5.0\\microsoft.codeanalysis.common.4.5.0.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.5.0\\microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\microsoft.codeanalysis.csharp.workspaces\\4.5.0\\microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\microsoft.codeanalysis.workspaces.common\\4.5.0\\microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\microsoft.entityframeworkcore\\8.0.10\\microsoft.entityframeworkcore.8.0.10.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\8.0.10\\microsoft.entityframeworkcore.abstractions.8.0.10.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\8.0.10\\microsoft.entityframeworkcore.analyzers.8.0.10.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\microsoft.entityframeworkcore.design\\8.0.10\\microsoft.entityframeworkcore.design.8.0.10.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\8.0.10\\microsoft.entityframeworkcore.relational.8.0.10.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\8.0.0\\microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\microsoft.extensions.caching.memory\\8.0.1\\microsoft.extensions.caching.memory.8.0.1.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\8.0.0\\microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\8.0.1\\microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.2\\microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\microsoft.extensions.dependencymodel\\8.0.2\\microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\microsoft.extensions.logging\\8.0.1\\microsoft.extensions.logging.8.0.1.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\8.0.2\\microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\microsoft.extensions.options\\8.0.2\\microsoft.extensions.options.8.0.2.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\microsoft.extensions.primitives\\8.0.0\\microsoft.extensions.primitives.8.0.0.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\mono.texttemplating\\2.2.1\\mono.texttemplating.2.2.1.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\npgsql\\8.0.5\\npgsql.8.0.5.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\8.0.10\\npgsql.entityframeworkcore.postgresql.8.0.10.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\shimskiasharp\\2.0.0.4\\shimskiasharp.2.0.0.4.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\skiasharp\\2.88.8\\skiasharp.2.88.8.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\skiasharp.harfbuzz\\2.88.8\\skiasharp.harfbuzz.2.88.8.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\skiasharp.nativeassets.linux\\2.88.8\\skiasharp.nativeassets.linux.2.88.8.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\skiasharp.nativeassets.macos\\2.88.8\\skiasharp.nativeassets.macos.2.88.8.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\skiasharp.nativeassets.webassembly\\2.88.8\\skiasharp.nativeassets.webassembly.2.88.8.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\skiasharp.nativeassets.win32\\2.88.8\\skiasharp.nativeassets.win32.2.88.8.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\svg.custom\\2.0.0.4\\svg.custom.2.0.0.4.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\svg.model\\2.0.0.4\\svg.model.2.0.0.4.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\svg.skia\\2.0.0.4\\svg.skia.2.0.0.4.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\system.codedom\\4.4.0\\system.codedom.4.4.0.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\system.collections.immutable\\6.0.0\\system.collections.immutable.6.0.0.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\system.composition\\6.0.0\\system.composition.6.0.0.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\system.composition.attributedmodel\\6.0.0\\system.composition.attributedmodel.6.0.0.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\system.composition.convention\\6.0.0\\system.composition.convention.6.0.0.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\system.composition.hosting\\6.0.0\\system.composition.hosting.6.0.0.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\system.composition.runtime\\6.0.0\\system.composition.runtime.6.0.0.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\system.composition.typedparts\\6.0.0\\system.composition.typedparts.6.0.0.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\system.io.pipelines\\8.0.0\\system.io.pipelines.8.0.0.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\system.reflection.metadata\\6.0.1\\system.reflection.metadata.6.0.1.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\system.text.encoding.codepages\\6.0.0\\system.text.encoding.codepages.6.0.0.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\system.threading.channels\\6.0.0\\system.threading.channels.6.0.0.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\tmds.dbus.protocol\\0.20.0\\tmds.dbus.protocol.0.20.0.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\zxing.net\\0.16.10\\zxing.net.0.16.10.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\microsoft.netcore.app.ref\\8.0.12\\microsoft.netcore.app.ref.8.0.12.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\microsoft.windowsdesktop.app.ref\\8.0.12\\microsoft.windowsdesktop.app.ref.8.0.12.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\microsoft.aspnetcore.app.ref\\8.0.12\\microsoft.aspnetcore.app.ref.8.0.12.nupkg.sha512", + "C:\\Users\\sokol\\.nuget\\packages\\microsoft.netcore.app.host.win-x64\\8.0.12\\microsoft.netcore.app.host.win-x64.8.0.12.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/obj/project.packagespec.json b/obj/project.packagespec.json new file mode 100644 index 0000000..c500cce --- /dev/null +++ b/obj/project.packagespec.json @@ -0,0 +1 @@ +"restore":{"projectUniqueName":"C:\\Users\\sokol\\RiderProjects\\demo_hard\\demo_hard.csproj","projectName":"demo_hard","projectPath":"C:\\Users\\sokol\\RiderProjects\\demo_hard\\demo_hard.csproj","outputPath":"C:\\Users\\sokol\\RiderProjects\\demo_hard\\obj\\","projectStyle":"PackageReference","fallbackFolders":["C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"],"originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"},"SdkAnalysisLevel":"9.0.100"}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"Avalonia":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Desktop":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Diagnostics":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Fonts.Inter":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Svg.Skia":{"target":"Package","version":"[11.2.0.2, )"},"Avalonia.Themes.Fluent":{"target":"Package","version":"[11.2.1, )"},"Microsoft.EntityFrameworkCore":{"target":"Package","version":"[8.0.10, )"},"Microsoft.EntityFrameworkCore.Design":{"include":"Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive","suppressParent":"All","target":"Package","version":"[8.0.10, )"},"Npgsql.EntityFrameworkCore.PostgreSQL":{"target":"Package","version":"[8.0.10, )"},"ZXing.Net":{"target":"Package","version":"[0.16.10, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"downloadDependencies":[{"name":"Microsoft.AspNetCore.App.Ref","version":"[8.0.12, 8.0.12]"},{"name":"Microsoft.NETCore.App.Host.win-x64","version":"[8.0.12, 8.0.12]"},{"name":"Microsoft.NETCore.App.Ref","version":"[8.0.12, 8.0.12]"},{"name":"Microsoft.WindowsDesktop.App.Ref","version":"[8.0.12, 8.0.12]"}],"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\9.0.102/PortableRuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/obj/rider.project.model.nuget.info b/obj/rider.project.model.nuget.info new file mode 100644 index 0000000..929fceb --- /dev/null +++ b/obj/rider.project.model.nuget.info @@ -0,0 +1 @@ +17392694736327909 \ No newline at end of file diff --git a/obj/rider.project.restore.info b/obj/rider.project.restore.info new file mode 100644 index 0000000..2ba3390 --- /dev/null +++ b/obj/rider.project.restore.info @@ -0,0 +1 @@ +17392694740457076 \ No newline at end of file