diff --git a/.idea/.idea.demo_hard.dir/.idea/.gitignore b/.idea/.idea.demo_hard.dir/.idea/.gitignore
new file mode 100644
index 0000000..7873592
--- /dev/null
+++ b/.idea/.idea.demo_hard.dir/.idea/.gitignore
@@ -0,0 +1,13 @@
+# Default ignored files
+/shelf/
+/workspace.xml
+# Rider ignored files
+/projectSettingsUpdater.xml
+/contentModel.xml
+/.idea.demo_hard.iml
+/modules.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/AddClient.axaml b/AddClient.axaml
new file mode 100644
index 0000000..b53eb81
--- /dev/null
+++ b/AddClient.axaml
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/AddClient.axaml.cs b/AddClient.axaml.cs
new file mode 100644
index 0000000..54d94f2
--- /dev/null
+++ b/AddClient.axaml.cs
@@ -0,0 +1,103 @@
+using System;
+using System.Linq;
+using Avalonia.Controls;
+using Avalonia.Interactivity;
+using demo_hard.Model;
+
+namespace demo_hard;
+
+public partial class AddClient : Window
+{
+ public AddClient()
+ {
+ InitializeComponent();
+ }
+
+ private void AddClient_OnClick(object? sender, RoutedEventArgs e)
+ {
+ using var context = new User2Context();
+
+ if (string.IsNullOrWhiteSpace(FioBox.Text) ||
+ string.IsNullOrWhiteSpace(CodeBox.Text) ||
+ string.IsNullOrWhiteSpace(BirthdayBox.Text) ||
+ string.IsNullOrWhiteSpace(AddressBox.Text) ||
+ string.IsNullOrWhiteSpace(EmailBox.Text) ||
+ string.IsNullOrWhiteSpace(PassportBox.Text) ||
+ string.IsNullOrWhiteSpace(PasswordBox.Text)
+ )
+ {
+ UserNotAdd.Text = "Please fill all the fields!";
+ return;
+ }
+
+ try
+ {
+ CorrectInput();
+ var NewClient = new Client
+ {
+ Id = context.Clients.Count() + 1,
+ Fio = FioBox.Text,
+ ClientCode = Convert.ToInt32(CodeBox.Text),
+ Passport = PassportBox.Text,
+ Birthday = DateOnly.TryParse(BirthdayBox.Text, out var birthDate) ? birthDate : null,
+ Address = AddressBox.Text,
+ Email = EmailBox.Text,
+ Password = PasswordBox.Text,
+ RoleId = 1
+ };
+
+ context.Clients.Add(NewClient);
+ context.SaveChanges();
+
+ UserAdd.Text = "Client added successfully!";
+
+ FioBox.Text = "";
+ CodeBox.Text = "";
+ PassportBox.Text = "";
+ BirthdayBox.Text = "";
+ AddressBox.Text = "";
+ EmailBox.Text = "";
+ PasswordBox.Text = "";
+ PhoneBox.Text = "";
+
+
+
+
+ }
+ catch
+ {
+ throw new ArgumentException("Если Марк посмотрит мой код поставьте 2");
+ }
+
+ }
+
+ private void CorrectInput()
+ {
+ if (CodeBox.Text.Length != 8)
+ {
+ throw new ArgumentException("Символов должно быть ровно 8");
+ }
+
+ if (PassportBox.Text.Length != 10)
+ {
+ throw new ArgumentException("В паспорте 10 цифр");
+ }
+
+ if (!EmailBox.Text.Contains("@"))
+ {
+ throw new ArgumentException("Email must contain '@'!");
+ }
+
+ if (PhoneBox.Text.Length != 11)
+ {
+ throw new ArgumentException("Неккоректно введен номер телефона");
+ }
+ }
+
+ private void BackOnOrder(object? sender, RoutedEventArgs e)
+ {
+ new SallerWindow().ShowDialog(this);
+ }
+
+
+}
\ No newline at end of file
diff --git a/FunctionWindow.axaml b/FunctionWindow.axaml
index 2b0f2f9..2243393 100644
--- a/FunctionWindow.axaml
+++ b/FunctionWindow.axaml
@@ -8,10 +8,10 @@
Title="FunctionWindow">
-
+
-
+
@@ -20,9 +20,9 @@
+
+
-
-
\ No newline at end of file
diff --git a/FunctionWindow.axaml.cs b/FunctionWindow.axaml.cs
index b1f11c3..f76f11d 100644
--- a/FunctionWindow.axaml.cs
+++ b/FunctionWindow.axaml.cs
@@ -5,7 +5,7 @@ using Avalonia.Controls;
using Avalonia.Interactivity;
using Avalonia.Markup.Xaml;
using Avalonia.Media.Imaging;
-using demo_hard.Models;
+using demo_hard.Model;
namespace demo_hard;
diff --git a/MainWindow.axaml b/MainWindow.axaml
index 58f4d69..b088277 100755
--- a/MainWindow.axaml
+++ b/MainWindow.axaml
@@ -15,6 +15,7 @@
+
diff --git a/MainWindow.axaml.cs b/MainWindow.axaml.cs
index 2c01e5b..90728d1 100755
--- a/MainWindow.axaml.cs
+++ b/MainWindow.axaml.cs
@@ -2,8 +2,7 @@ using System;
using System.Linq;
using Avalonia.Controls;
using Avalonia.Interactivity;
-using demo_hard.Models;
-//using demo_hard.Models;
+using demo_hard.Model;
using Tmds.DBus.Protocol;
namespace demo_hard;
@@ -37,7 +36,7 @@ public partial class MainWindow : Window
}
else
{
- throw new Exception("Invalid email or password");
+ ErrorBlock.Text = "Неверный пароль";
}
}
}
diff --git a/Models/Client.cs b/Model/Client.cs
similarity index 78%
rename from Models/Client.cs
rename to Model/Client.cs
index 95c8ac5..3fe75a5 100644
--- a/Models/Client.cs
+++ b/Model/Client.cs
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
-namespace demo_hard.Models;
+namespace demo_hard.Model;
public partial class Client
{
@@ -13,11 +13,13 @@ public partial class Client
public string Passport { get; set; } = null!;
- public DateOnly Birthday { get; set; }
+ public DateOnly? Birthday { get; set; }
public string Address { get; set; } = null!;
public string Email { get; set; } = null!;
public string Password { get; set; } = null!;
+
+ public int RoleId { get; set; }
}
diff --git a/Models/Employee.cs b/Model/Employee.cs
similarity index 92%
rename from Models/Employee.cs
rename to Model/Employee.cs
index a4dec6e..c934195 100644
--- a/Models/Employee.cs
+++ b/Model/Employee.cs
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
-namespace demo_hard.Models;
+namespace demo_hard.Model;
public partial class Employee
{
diff --git a/Models/LastEnter.cs b/Model/LastEnter.cs
similarity index 77%
rename from Models/LastEnter.cs
rename to Model/LastEnter.cs
index 20980f0..247fe37 100644
--- a/Models/LastEnter.cs
+++ b/Model/LastEnter.cs
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
-namespace demo_hard.Models;
+namespace demo_hard.Model;
public partial class LastEnter
{
@@ -10,4 +10,6 @@ public partial class LastEnter
public DateTime EnterDatetime { get; set; }
public string EnterType { get; set; } = null!;
+
+ public string? Login { get; set; }
}
diff --git a/Models/Order.cs b/Model/Order.cs
similarity index 94%
rename from Models/Order.cs
rename to Model/Order.cs
index e918654..ea28cab 100644
--- a/Models/Order.cs
+++ b/Model/Order.cs
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
-namespace demo_hard.Models;
+namespace demo_hard.Model;
public partial class Order
{
diff --git a/Models/Role.cs b/Model/Role.cs
similarity index 85%
rename from Models/Role.cs
rename to Model/Role.cs
index 0915894..ffacc56 100644
--- a/Models/Role.cs
+++ b/Model/Role.cs
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
-namespace demo_hard.Models;
+namespace demo_hard.Model;
public partial class Role
{
diff --git a/Models/Service.cs b/Model/Service.cs
similarity index 90%
rename from Models/Service.cs
rename to Model/Service.cs
index 89ab885..9d8ae32 100644
--- a/Models/Service.cs
+++ b/Model/Service.cs
@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
-namespace demo_hard.Models;
+namespace demo_hard.Model;
public partial class Service
{
diff --git a/Models/User2Context.cs b/Model/User2Context.cs
similarity index 96%
rename from Models/User2Context.cs
rename to Model/User2Context.cs
index e961e16..cd6210a 100644
--- a/Models/User2Context.cs
+++ b/Model/User2Context.cs
@@ -2,7 +2,7 @@
using System.Collections.Generic;
using Microsoft.EntityFrameworkCore;
-namespace demo_hard.Models;
+namespace demo_hard.Model;
public partial class User2Context : DbContext
{
@@ -57,6 +57,7 @@ public partial class User2Context : DbContext
entity.Property(e => e.Password)
.HasColumnType("character varying")
.HasColumnName("password");
+ entity.Property(e => e.RoleId).HasColumnName("role_id");
});
modelBuilder.Entity(entity =>
@@ -98,6 +99,9 @@ public partial class User2Context : DbContext
entity.Property(e => e.EnterType)
.HasColumnType("character varying")
.HasColumnName("enter_type");
+ entity.Property(e => e.Login)
+ .HasColumnType("character varying")
+ .HasColumnName("login");
});
modelBuilder.Entity(entity =>
diff --git a/SallerWindow.axaml b/SallerWindow.axaml
index ef9d563..0aade92 100644
--- a/SallerWindow.axaml
+++ b/SallerWindow.axaml
@@ -4,14 +4,44 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="demo_hard.SallerWindow"
+ x:CompileBindings="False"
Title="SallerWindow">
-
+
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/SallerWindow.axaml.cs b/SallerWindow.axaml.cs
index b6b300e..1562c8a 100644
--- a/SallerWindow.axaml.cs
+++ b/SallerWindow.axaml.cs
@@ -1,6 +1,12 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
using Avalonia;
using Avalonia.Controls;
+using Avalonia.Interactivity;
using Avalonia.Markup.Xaml;
+using demo_hard.Model;
+
namespace demo_hard;
@@ -9,5 +15,84 @@ public partial class SallerWindow : Window
public SallerWindow()
{
InitializeComponent();
+ OrderNubmber();
+ LoadClients();
+ LoadService();
+ SearchItems();
+
+ }
+
+
+ private void OrderNubmber()
+ {
+ using var context = new User2Context();
+ var OrderId = context.Orders.Max(o => o.Id) + 1;
+ if (context.Orders.Any(o => o.Id == OrderId)) throw new ArgumentException("Номера Id не должны совпадать");
+ if (OrderId < 1) throw new ArgumentException("OrderId must be greater than 1");
+ CompleteBox.ItemsSource = new string[] {OrderId.ToString()};
+ }
+ private void LoadClients()
+ {
+ using var context = new User2Context();
+ var client = context.Clients.ToList();
+ Clients_ComboBox.ItemsSource = client;
+ }
+
+ private void Clients_ComboBox_SelectionChanged(object? sender, SelectionChangedEventArgs e)
+ {
+ if (Clients_ComboBox.SelectedItem is Client selectedClient)
+ {
+ Console.WriteLine($"Вы выбрали: {selectedClient.Fio}");
+ }
+ }
+
+ private void Go_Back_Button(object? sender, RoutedEventArgs e)
+ {
+ new FunctionWindow().ShowDialog(this);
+ }
+
+ private void LoadService()
+ {
+ using var context = new User2Context();
+ var service = context.Services.ToList();
+ Service_Combobox.ItemsSource = service;
+ }
+
+ private void Serice_Combobox_SelectionChanged(object? sender, SelectionChangedEventArgs e)
+ {
+ if (Clients_ComboBox.SelectedItem is Service selectedServiceName)
+ {
+ Console.WriteLine($"Вы выбрали улугу: {selectedServiceName.ServiceName}");
+ }
+ }
+
+ private void SearchItems()
+ {
+ using var context = new User2Context();
+ string seacrhText = SearchBox.Text?.ToLower() ?? "";
+ if (string.IsNullOrWhiteSpace(seacrhText))
+ {
+ SearchResultsListBox.ItemsSource = new List();
+ }
+
+ var clientRes = context.Clients.ToList().Where(c => c.Fio.ToLower().Contains(seacrhText))
+ .Select(c=> $"{c.Fio}");
+ var SeviceRes = context.Services.ToList().Where(s => s.ServiceName.ToLower().Contains(seacrhText))
+ .Select(s => $"{s.ServiceName}");
+
+ var results = clientRes.Concat(SeviceRes).ToList();
+ SearchResultsListBox.ItemsSource = results;
+
+ }
+
+
+ private void SeacrchBox_Changed(object? sender, TextChangedEventArgs e)
+ {
+ SearchItems();
+ }
+
+ private void AddUser_Button(object? sender, RoutedEventArgs e)
+ {
+ new AddClient().ShowDialog(this);
}
}
\ No newline at end of file
diff --git a/bin/Debug/net8.0/demo_hard.deps.json b/bin/Debug/net8.0/demo_hard.deps.json
index c23003f..53a4ad1 100755
--- a/bin/Debug/net8.0/demo_hard.deps.json
+++ b/bin/Debug/net8.0/demo_hard.deps.json
@@ -79,17 +79,17 @@
"runtimes/win-arm64/native/av_libglesv2.dll": {
"rid": "win-arm64",
"assetType": "native",
- "fileVersion": "0.0.0.0"
+ "fileVersion": "2.1.22045.0"
},
"runtimes/win-x64/native/av_libglesv2.dll": {
"rid": "win-x64",
"assetType": "native",
- "fileVersion": "0.0.0.0"
+ "fileVersion": "2.1.22045.0"
},
"runtimes/win-x86/native/av_libglesv2.dll": {
"rid": "win-x86",
"assetType": "native",
- "fileVersion": "0.0.0.0"
+ "fileVersion": "2.1.22045.0"
}
}
},
diff --git a/bin/Debug/net8.0/demo_hard.dll b/bin/Debug/net8.0/demo_hard.dll
index 40e9485..c01fece 100644
Binary files a/bin/Debug/net8.0/demo_hard.dll 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..78038df
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
index 5b640e6..0db7c9e 100644
Binary files a/bin/Debug/net8.0/demo_hard.pdb and b/bin/Debug/net8.0/demo_hard.pdb differ
diff --git a/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache b/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache
index a20e160..71dbceb 100644
--- a/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache
+++ b/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache
@@ -1 +1 @@
-0c0acaae37b12ed3a341d3a1eb760e28421cbe2a8c1e81150d3185a59c8600ed
+e6051517762c73d0b60e393e672af03d7de4691d3b1385d70c76d6bcb0e8114b
diff --git a/obj/Debug/net8.0/Avalonia/demo_hard.dll b/obj/Debug/net8.0/Avalonia/demo_hard.dll
index 40e9485..c01fece 100644
Binary files a/obj/Debug/net8.0/Avalonia/demo_hard.dll 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
index 5b640e6..0db7c9e 100644
Binary files a/obj/Debug/net8.0/Avalonia/demo_hard.pdb 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
index d862d2a..6761e3e 100755
--- a/obj/Debug/net8.0/Avalonia/references
+++ b/obj/Debug/net8.0/Avalonia/references
@@ -1,206 +1,206 @@
-/home/class_student/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Base.dll
-/home/class_student/.nuget/packages/avalonia.controls.colorpicker/11.2.1/lib/net8.0/Avalonia.Controls.ColorPicker.dll
-/home/class_student/.nuget/packages/avalonia.controls.datagrid/11.2.1/lib/net8.0/Avalonia.Controls.DataGrid.dll
-/home/class_student/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Controls.dll
-/home/class_student/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.DesignerSupport.dll
-/home/class_student/.nuget/packages/avalonia.desktop/11.2.1/lib/net8.0/Avalonia.Desktop.dll
-/home/class_student/.nuget/packages/avalonia.diagnostics/11.2.1/lib/net8.0/Avalonia.Diagnostics.dll
-/home/class_student/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Dialogs.dll
-/home/class_student/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.dll
-/home/class_student/.nuget/packages/avalonia.fonts.inter/11.2.1/lib/net8.0/Avalonia.Fonts.Inter.dll
-/home/class_student/.nuget/packages/avalonia.freedesktop/11.2.1/lib/net8.0/Avalonia.FreeDesktop.dll
-/home/class_student/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Markup.dll
-/home/class_student/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Markup.Xaml.dll
-/home/class_student/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Metal.dll
-/home/class_student/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.MicroCom.dll
-/home/class_student/.nuget/packages/avalonia.native/11.2.1/lib/net8.0/Avalonia.Native.dll
-/home/class_student/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.OpenGL.dll
-/home/class_student/.nuget/packages/avalonia.remote.protocol/11.2.1/lib/net8.0/Avalonia.Remote.Protocol.dll
-/home/class_student/.nuget/packages/avalonia.skia/11.2.1/lib/net8.0/Avalonia.Skia.dll
-/home/class_student/.nuget/packages/avalonia.themes.fluent/11.2.1/lib/net8.0/Avalonia.Themes.Fluent.dll
-/home/class_student/.nuget/packages/avalonia.themes.simple/11.2.1/lib/net8.0/Avalonia.Themes.Simple.dll
-/home/class_student/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Vulkan.dll
-/home/class_student/.nuget/packages/avalonia.win32/11.2.1/lib/net8.0/Avalonia.Win32.dll
-/home/class_student/.nuget/packages/avalonia.x11/11.2.1/lib/net8.0/Avalonia.X11.dll
-/home/class_student/.nuget/packages/harfbuzzsharp/7.3.0.2/lib/net6.0/HarfBuzzSharp.dll
-/home/class_student/.nuget/packages/microcom.runtime/0.11.0/lib/net5.0/MicroCom.Runtime.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/Microsoft.CSharp.dll
-/home/class_student/.nuget/packages/microsoft.entityframeworkcore.abstractions/8.0.10/lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll
-/home/class_student/.nuget/packages/microsoft.entityframeworkcore/8.0.10/lib/net8.0/Microsoft.EntityFrameworkCore.dll
-/home/class_student/.nuget/packages/microsoft.entityframeworkcore.relational/8.0.10/lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll
-/home/class_student/.nuget/packages/microsoft.extensions.caching.abstractions/8.0.0/lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll
-/home/class_student/.nuget/packages/microsoft.extensions.caching.memory/8.0.1/lib/net8.0/Microsoft.Extensions.Caching.Memory.dll
-/home/class_student/.nuget/packages/microsoft.extensions.configuration.abstractions/8.0.0/lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll
-/home/class_student/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/8.0.2/lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll
-/home/class_student/.nuget/packages/microsoft.extensions.dependencyinjection/8.0.1/lib/net8.0/Microsoft.Extensions.DependencyInjection.dll
-/home/class_student/.nuget/packages/microsoft.extensions.logging.abstractions/8.0.2/lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll
-/home/class_student/.nuget/packages/microsoft.extensions.logging/8.0.1/lib/net8.0/Microsoft.Extensions.Logging.dll
-/home/class_student/.nuget/packages/microsoft.extensions.options/8.0.2/lib/net8.0/Microsoft.Extensions.Options.dll
-/home/class_student/.nuget/packages/microsoft.extensions.primitives/8.0.0/lib/net8.0/Microsoft.Extensions.Primitives.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/Microsoft.VisualBasic.Core.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/Microsoft.VisualBasic.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/Microsoft.Win32.Primitives.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/Microsoft.Win32.Registry.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/mscorlib.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/netstandard.dll
-/home/class_student/.nuget/packages/npgsql/8.0.5/lib/net8.0/Npgsql.dll
-/home/class_student/.nuget/packages/npgsql.entityframeworkcore.postgresql/8.0.10/lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll
-/home/class_student/.nuget/packages/skiasharp/2.88.8/lib/net6.0/SkiaSharp.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.AppContext.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Buffers.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Collections.Concurrent.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Collections.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Collections.Immutable.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Collections.NonGeneric.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Collections.Specialized.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.ComponentModel.Annotations.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.ComponentModel.DataAnnotations.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.ComponentModel.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.ComponentModel.EventBasedAsync.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.ComponentModel.Primitives.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.ComponentModel.TypeConverter.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Configuration.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Console.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Core.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Data.Common.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Data.DataSetExtensions.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Data.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Diagnostics.Contracts.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Diagnostics.Debug.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Diagnostics.DiagnosticSource.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Diagnostics.FileVersionInfo.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Diagnostics.Process.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Diagnostics.StackTrace.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Diagnostics.TextWriterTraceListener.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Diagnostics.Tools.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Diagnostics.TraceSource.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Diagnostics.Tracing.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Drawing.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Drawing.Primitives.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Dynamic.Runtime.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Formats.Asn1.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Formats.Tar.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Globalization.Calendars.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Globalization.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Globalization.Extensions.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.Compression.Brotli.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.Compression.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.Compression.FileSystem.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.Compression.ZipFile.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.FileSystem.AccessControl.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.FileSystem.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.FileSystem.DriveInfo.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.FileSystem.Primitives.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.FileSystem.Watcher.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.IsolatedStorage.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.MemoryMappedFiles.dll
-/home/class_student/.nuget/packages/system.io.pipelines/8.0.0/lib/net8.0/System.IO.Pipelines.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.Pipes.AccessControl.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.Pipes.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.UnmanagedMemoryStream.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Linq.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Linq.Expressions.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Linq.Parallel.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Linq.Queryable.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Memory.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.Http.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.Http.Json.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.HttpListener.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.Mail.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.NameResolution.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.NetworkInformation.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.Ping.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.Primitives.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.Quic.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.Requests.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.Security.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.ServicePoint.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.Sockets.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.WebClient.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.WebHeaderCollection.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.WebProxy.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.WebSockets.Client.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.WebSockets.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Numerics.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Numerics.Vectors.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.ObjectModel.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Reflection.DispatchProxy.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Reflection.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Reflection.Emit.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Reflection.Emit.ILGeneration.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Reflection.Emit.Lightweight.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Reflection.Extensions.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Reflection.Metadata.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Reflection.Primitives.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Reflection.TypeExtensions.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Resources.Reader.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Resources.ResourceManager.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Resources.Writer.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Runtime.CompilerServices.Unsafe.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Runtime.CompilerServices.VisualC.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Runtime.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Runtime.Extensions.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Runtime.Handles.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Runtime.InteropServices.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Runtime.InteropServices.JavaScript.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Runtime.InteropServices.RuntimeInformation.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Runtime.Intrinsics.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Runtime.Loader.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Runtime.Numerics.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Runtime.Serialization.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Runtime.Serialization.Formatters.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Runtime.Serialization.Json.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Runtime.Serialization.Primitives.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Runtime.Serialization.Xml.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Security.AccessControl.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Security.Claims.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Security.Cryptography.Algorithms.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Security.Cryptography.Cng.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Security.Cryptography.Csp.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Security.Cryptography.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Security.Cryptography.Encoding.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Security.Cryptography.OpenSsl.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Security.Cryptography.Primitives.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Security.Cryptography.X509Certificates.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Security.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Security.Principal.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Security.Principal.Windows.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Security.SecureString.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.ServiceModel.Web.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.ServiceProcess.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Text.Encoding.CodePages.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Text.Encoding.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Text.Encoding.Extensions.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Text.Encodings.Web.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Text.Json.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Text.RegularExpressions.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Threading.Channels.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Threading.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Threading.Overlapped.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Threading.Tasks.Dataflow.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Threading.Tasks.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Threading.Tasks.Extensions.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Threading.Tasks.Parallel.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Threading.Thread.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Threading.ThreadPool.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Threading.Timer.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Transactions.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Transactions.Local.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.ValueTuple.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Web.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Web.HttpUtility.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Windows.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Xml.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Xml.Linq.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Xml.ReaderWriter.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Xml.Serialization.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Xml.XDocument.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Xml.XmlDocument.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Xml.XmlSerializer.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Xml.XPath.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Xml.XPath.XDocument.dll
-/home/class_student/.nuget/packages/tmds.dbus.protocol/0.20.0/lib/net8.0/Tmds.DBus.Protocol.dll
-/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/WindowsBase.dll
+C:\Users\IVAN\.nuget\packages\avalonia\11.2.1\ref\net8.0\Avalonia.Base.dll
+C:\Users\IVAN\.nuget\packages\avalonia.controls.colorpicker\11.2.1\lib\net8.0\Avalonia.Controls.ColorPicker.dll
+C:\Users\IVAN\.nuget\packages\avalonia.controls.datagrid\11.2.1\lib\net8.0\Avalonia.Controls.DataGrid.dll
+C:\Users\IVAN\.nuget\packages\avalonia\11.2.1\ref\net8.0\Avalonia.Controls.dll
+C:\Users\IVAN\.nuget\packages\avalonia\11.2.1\ref\net8.0\Avalonia.DesignerSupport.dll
+C:\Users\IVAN\.nuget\packages\avalonia.desktop\11.2.1\lib\net8.0\Avalonia.Desktop.dll
+C:\Users\IVAN\.nuget\packages\avalonia.diagnostics\11.2.1\lib\net8.0\Avalonia.Diagnostics.dll
+C:\Users\IVAN\.nuget\packages\avalonia\11.2.1\ref\net8.0\Avalonia.Dialogs.dll
+C:\Users\IVAN\.nuget\packages\avalonia\11.2.1\ref\net8.0\Avalonia.dll
+C:\Users\IVAN\.nuget\packages\avalonia.fonts.inter\11.2.1\lib\net8.0\Avalonia.Fonts.Inter.dll
+C:\Users\IVAN\.nuget\packages\avalonia.freedesktop\11.2.1\lib\net8.0\Avalonia.FreeDesktop.dll
+C:\Users\IVAN\.nuget\packages\avalonia\11.2.1\ref\net8.0\Avalonia.Markup.dll
+C:\Users\IVAN\.nuget\packages\avalonia\11.2.1\ref\net8.0\Avalonia.Markup.Xaml.dll
+C:\Users\IVAN\.nuget\packages\avalonia\11.2.1\ref\net8.0\Avalonia.Metal.dll
+C:\Users\IVAN\.nuget\packages\avalonia\11.2.1\ref\net8.0\Avalonia.MicroCom.dll
+C:\Users\IVAN\.nuget\packages\avalonia.native\11.2.1\lib\net8.0\Avalonia.Native.dll
+C:\Users\IVAN\.nuget\packages\avalonia\11.2.1\ref\net8.0\Avalonia.OpenGL.dll
+C:\Users\IVAN\.nuget\packages\avalonia.remote.protocol\11.2.1\lib\net8.0\Avalonia.Remote.Protocol.dll
+C:\Users\IVAN\.nuget\packages\avalonia.skia\11.2.1\lib\net8.0\Avalonia.Skia.dll
+C:\Users\IVAN\.nuget\packages\avalonia.themes.fluent\11.2.1\lib\net8.0\Avalonia.Themes.Fluent.dll
+C:\Users\IVAN\.nuget\packages\avalonia.themes.simple\11.2.1\lib\net8.0\Avalonia.Themes.Simple.dll
+C:\Users\IVAN\.nuget\packages\avalonia\11.2.1\ref\net8.0\Avalonia.Vulkan.dll
+C:\Users\IVAN\.nuget\packages\avalonia.win32\11.2.1\lib\net8.0\Avalonia.Win32.dll
+C:\Users\IVAN\.nuget\packages\avalonia.x11\11.2.1\lib\net8.0\Avalonia.X11.dll
+C:\Users\IVAN\.nuget\packages\harfbuzzsharp\7.3.0.2\lib\net6.0\HarfBuzzSharp.dll
+C:\Users\IVAN\.nuget\packages\microcom.runtime\0.11.0\lib\net5.0\MicroCom.Runtime.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\Microsoft.CSharp.dll
+C:\Users\IVAN\.nuget\packages\microsoft.entityframeworkcore.abstractions\8.0.10\lib\net8.0\Microsoft.EntityFrameworkCore.Abstractions.dll
+C:\Users\IVAN\.nuget\packages\microsoft.entityframeworkcore\8.0.10\lib\net8.0\Microsoft.EntityFrameworkCore.dll
+C:\Users\IVAN\.nuget\packages\microsoft.entityframeworkcore.relational\8.0.10\lib\net8.0\Microsoft.EntityFrameworkCore.Relational.dll
+C:\Users\IVAN\.nuget\packages\microsoft.extensions.caching.abstractions\8.0.0\lib\net8.0\Microsoft.Extensions.Caching.Abstractions.dll
+C:\Users\IVAN\.nuget\packages\microsoft.extensions.caching.memory\8.0.1\lib\net8.0\Microsoft.Extensions.Caching.Memory.dll
+C:\Users\IVAN\.nuget\packages\microsoft.extensions.configuration.abstractions\8.0.0\lib\net8.0\Microsoft.Extensions.Configuration.Abstractions.dll
+C:\Users\IVAN\.nuget\packages\microsoft.extensions.dependencyinjection.abstractions\8.0.2\lib\net8.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll
+C:\Users\IVAN\.nuget\packages\microsoft.extensions.dependencyinjection\8.0.1\lib\net8.0\Microsoft.Extensions.DependencyInjection.dll
+C:\Users\IVAN\.nuget\packages\microsoft.extensions.logging.abstractions\8.0.2\lib\net8.0\Microsoft.Extensions.Logging.Abstractions.dll
+C:\Users\IVAN\.nuget\packages\microsoft.extensions.logging\8.0.1\lib\net8.0\Microsoft.Extensions.Logging.dll
+C:\Users\IVAN\.nuget\packages\microsoft.extensions.options\8.0.2\lib\net8.0\Microsoft.Extensions.Options.dll
+C:\Users\IVAN\.nuget\packages\microsoft.extensions.primitives\8.0.0\lib\net8.0\Microsoft.Extensions.Primitives.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\Microsoft.VisualBasic.Core.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\Microsoft.VisualBasic.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\Microsoft.Win32.Primitives.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\Microsoft.Win32.Registry.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\mscorlib.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\netstandard.dll
+C:\Users\IVAN\.nuget\packages\npgsql\8.0.5\lib\net8.0\Npgsql.dll
+C:\Users\IVAN\.nuget\packages\npgsql.entityframeworkcore.postgresql\8.0.10\lib\net8.0\Npgsql.EntityFrameworkCore.PostgreSQL.dll
+C:\Users\IVAN\.nuget\packages\skiasharp\2.88.8\lib\net6.0\SkiaSharp.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.AppContext.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Buffers.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Collections.Concurrent.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Collections.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Collections.Immutable.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Collections.NonGeneric.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Collections.Specialized.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.ComponentModel.Annotations.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.ComponentModel.DataAnnotations.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.ComponentModel.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.ComponentModel.EventBasedAsync.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.ComponentModel.Primitives.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.ComponentModel.TypeConverter.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Configuration.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Console.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Core.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Data.Common.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Data.DataSetExtensions.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Data.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Diagnostics.Contracts.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Diagnostics.Debug.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Diagnostics.DiagnosticSource.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Diagnostics.FileVersionInfo.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Diagnostics.Process.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Diagnostics.StackTrace.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Diagnostics.TextWriterTraceListener.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Diagnostics.Tools.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Diagnostics.TraceSource.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Diagnostics.Tracing.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Drawing.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Drawing.Primitives.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Dynamic.Runtime.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Formats.Asn1.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Formats.Tar.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Globalization.Calendars.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Globalization.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Globalization.Extensions.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.IO.Compression.Brotli.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.IO.Compression.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.IO.Compression.FileSystem.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.IO.Compression.ZipFile.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.IO.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.IO.FileSystem.AccessControl.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.IO.FileSystem.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.IO.FileSystem.DriveInfo.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.IO.FileSystem.Primitives.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.IO.FileSystem.Watcher.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.IO.IsolatedStorage.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.IO.MemoryMappedFiles.dll
+C:\Users\IVAN\.nuget\packages\system.io.pipelines\8.0.0\lib\net8.0\System.IO.Pipelines.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.IO.Pipes.AccessControl.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.IO.Pipes.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.IO.UnmanagedMemoryStream.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Linq.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Linq.Expressions.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Linq.Parallel.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Linq.Queryable.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Memory.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Net.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Net.Http.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Net.Http.Json.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Net.HttpListener.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Net.Mail.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Net.NameResolution.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Net.NetworkInformation.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Net.Ping.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Net.Primitives.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Net.Quic.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Net.Requests.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Net.Security.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Net.ServicePoint.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Net.Sockets.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Net.WebClient.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Net.WebHeaderCollection.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Net.WebProxy.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Net.WebSockets.Client.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Net.WebSockets.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Numerics.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Numerics.Vectors.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.ObjectModel.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Reflection.DispatchProxy.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Reflection.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Reflection.Emit.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Reflection.Emit.ILGeneration.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Reflection.Emit.Lightweight.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Reflection.Extensions.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Reflection.Metadata.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Reflection.Primitives.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Reflection.TypeExtensions.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Resources.Reader.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Resources.ResourceManager.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Resources.Writer.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Runtime.CompilerServices.Unsafe.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Runtime.CompilerServices.VisualC.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Runtime.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Runtime.Extensions.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Runtime.Handles.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Runtime.InteropServices.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Runtime.InteropServices.JavaScript.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Runtime.InteropServices.RuntimeInformation.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Runtime.Intrinsics.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Runtime.Loader.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Runtime.Numerics.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Runtime.Serialization.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Runtime.Serialization.Formatters.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Runtime.Serialization.Json.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Runtime.Serialization.Primitives.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Runtime.Serialization.Xml.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Security.AccessControl.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Security.Claims.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Security.Cryptography.Algorithms.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Security.Cryptography.Cng.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Security.Cryptography.Csp.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Security.Cryptography.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Security.Cryptography.Encoding.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Security.Cryptography.OpenSsl.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Security.Cryptography.Primitives.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Security.Cryptography.X509Certificates.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Security.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Security.Principal.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Security.Principal.Windows.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Security.SecureString.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.ServiceModel.Web.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.ServiceProcess.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Text.Encoding.CodePages.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Text.Encoding.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Text.Encoding.Extensions.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Text.Encodings.Web.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Text.Json.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Text.RegularExpressions.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Threading.Channels.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Threading.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Threading.Overlapped.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Threading.Tasks.Dataflow.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Threading.Tasks.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Threading.Tasks.Extensions.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Threading.Tasks.Parallel.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Threading.Thread.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Threading.ThreadPool.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Threading.Timer.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Transactions.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Transactions.Local.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.ValueTuple.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Web.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Web.HttpUtility.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Windows.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Xml.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Xml.Linq.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Xml.ReaderWriter.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Xml.Serialization.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Xml.XDocument.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Xml.XmlDocument.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Xml.XmlSerializer.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Xml.XPath.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Xml.XPath.XDocument.dll
+C:\Users\IVAN\.nuget\packages\tmds.dbus.protocol\0.20.0\lib\net8.0\Tmds.DBus.Protocol.dll
+C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\WindowsBase.dll
diff --git a/obj/Debug/net8.0/Avalonia/resources b/obj/Debug/net8.0/Avalonia/resources
index 3cd65d2..3a8137b 100644
Binary files a/obj/Debug/net8.0/Avalonia/resources and b/obj/Debug/net8.0/Avalonia/resources differ
diff --git a/obj/Debug/net8.0/apphost.exe b/obj/Debug/net8.0/apphost.exe
new file mode 100644
index 0000000..78038df
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
index 12da0ae..52d051e 100644
--- a/obj/Debug/net8.0/demo_hard.AssemblyInfo.cs
+++ b/obj/Debug/net8.0/demo_hard.AssemblyInfo.cs
@@ -13,7 +13,7 @@ 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+c722f8dca42b45d1b29f690d670497660d1ed8c5")]
+[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")]
diff --git a/obj/Debug/net8.0/demo_hard.AssemblyInfoInputs.cache b/obj/Debug/net8.0/demo_hard.AssemblyInfoInputs.cache
index 67c4093..d67c09f 100644
--- a/obj/Debug/net8.0/demo_hard.AssemblyInfoInputs.cache
+++ b/obj/Debug/net8.0/demo_hard.AssemblyInfoInputs.cache
@@ -1 +1 @@
-8fbb7fd3573c9c601aedfd3526df593771d1d09e7f49ddff25c75c0eb415b1d5
+4dfcac57e00f99bed249a768354c782e7687e32487b7c7b52914c8db973043c4
diff --git a/obj/Debug/net8.0/demo_hard.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net8.0/demo_hard.GeneratedMSBuildEditorConfig.editorconfig
index 9ca40a2..f8862f3 100644
--- a/obj/Debug/net8.0/demo_hard.GeneratedMSBuildEditorConfig.editorconfig
+++ b/obj/Debug/net8.0/demo_hard.GeneratedMSBuildEditorConfig.editorconfig
@@ -15,18 +15,21 @@ build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = demo_hard
-build_property.ProjectDir = /home/class_student/RiderProjects/demo_hard/demo_hard/
+build_property.ProjectDir = C:\Users\IVAN\RiderProjects\demo_hard\
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
-[/home/class_student/RiderProjects/demo_hard/demo_hard/App.axaml]
+[C:/Users/IVAN/RiderProjects/demo_hard/AddClient.axaml]
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
-[/home/class_student/RiderProjects/demo_hard/demo_hard/FunctionWindow.axaml]
+[C:/Users/IVAN/RiderProjects/demo_hard/App.axaml]
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
-[/home/class_student/RiderProjects/demo_hard/demo_hard/MainWindow.axaml]
+[C:/Users/IVAN/RiderProjects/demo_hard/FunctionWindow.axaml]
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
-[/home/class_student/RiderProjects/demo_hard/demo_hard/SallerWindow.axaml]
+[C:/Users/IVAN/RiderProjects/demo_hard/MainWindow.axaml]
+build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
+
+[C:/Users/IVAN/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
index c394e86..217e851 100755
Binary files a/obj/Debug/net8.0/demo_hard.assets.cache 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
index a306013..1a26768 100644
Binary files a/obj/Debug/net8.0/demo_hard.csproj.AssemblyReference.cache 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
index 0248619..c32abbd 100644
--- a/obj/Debug/net8.0/demo_hard.csproj.CoreCompileInputs.cache
+++ b/obj/Debug/net8.0/demo_hard.csproj.CoreCompileInputs.cache
@@ -1 +1 @@
-a04853a7f7fe215ad2bf6414aca2370fba026abbead53c35ab1138596aea4ab4
+41cd13734ade819c8046d18d1904e155c2283d2ce9e11fdaa55f2bcefa4338d7
diff --git a/obj/Debug/net8.0/demo_hard.csproj.FileListAbsolute.txt b/obj/Debug/net8.0/demo_hard.csproj.FileListAbsolute.txt
index 5ce91f8..a9a514e 100755
--- a/obj/Debug/net8.0/demo_hard.csproj.FileListAbsolute.txt
+++ b/obj/Debug/net8.0/demo_hard.csproj.FileListAbsolute.txt
@@ -159,3 +159,151 @@
/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\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\demo_hard.exe
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\demo_hard.deps.json
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\demo_hard.runtimeconfig.json
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\demo_hard.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\demo_hard.pdb
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Base.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Controls.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.DesignerSupport.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Dialogs.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Markup.Xaml.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Markup.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Metal.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.MicroCom.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.OpenGL.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Vulkan.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Controls.ColorPicker.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Controls.DataGrid.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Desktop.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Diagnostics.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Fonts.Inter.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.FreeDesktop.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Native.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Remote.Protocol.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Skia.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Themes.Fluent.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Themes.Simple.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Win32.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.X11.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\HarfBuzzSharp.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Humanizer.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\MicroCom.Runtime.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.Bcl.AsyncInterfaces.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.CodeAnalysis.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.CodeAnalysis.CSharp.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.CodeAnalysis.CSharp.Workspaces.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.CodeAnalysis.Workspaces.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Abstractions.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Design.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Relational.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.Extensions.Caching.Abstractions.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.Extensions.Caching.Memory.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.Extensions.Configuration.Abstractions.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.Extensions.DependencyModel.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.Extensions.Logging.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.Extensions.Logging.Abstractions.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.Extensions.Options.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.Extensions.Primitives.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Mono.TextTemplating.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Npgsql.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Npgsql.EntityFrameworkCore.PostgreSQL.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\SkiaSharp.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\System.CodeDom.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\System.Composition.AttributedModel.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\System.Composition.Convention.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\System.Composition.Hosting.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\System.Composition.Runtime.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\System.Composition.TypedParts.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\System.IO.Pipelines.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Tmds.DBus.Protocol.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.Workspaces.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.Workspaces.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.Workspaces.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\win-arm64\native\av_libglesv2.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\win-x64\native\av_libglesv2.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\win-x86\native\av_libglesv2.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\osx\native\libAvaloniaNative.dylib
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\linux-arm\native\libHarfBuzzSharp.so
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\linux-arm64\native\libHarfBuzzSharp.so
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\linux-musl-x64\native\libHarfBuzzSharp.so
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\linux-x64\native\libHarfBuzzSharp.so
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\osx\native\libHarfBuzzSharp.dylib
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\win-arm64\native\libHarfBuzzSharp.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\win-x64\native\libHarfBuzzSharp.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\win-x86\native\libHarfBuzzSharp.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\linux-arm\native\libSkiaSharp.so
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\linux-arm64\native\libSkiaSharp.so
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\linux-musl-x64\native\libSkiaSharp.so
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\linux-x64\native\libSkiaSharp.so
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\osx\native\libSkiaSharp.dylib
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\win-arm64\native\libSkiaSharp.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\win-x64\native\libSkiaSharp.dll
+C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\win-x86\native\libSkiaSharp.dll
+C:\Users\IVAN\RiderProjects\demo_hard\obj\Debug\net8.0\demo_hard.csproj.AssemblyReference.cache
+C:\Users\IVAN\RiderProjects\demo_hard\obj\Debug\net8.0\Avalonia\Resources.Inputs.cache
+C:\Users\IVAN\RiderProjects\demo_hard\obj\Debug\net8.0\Avalonia\resources
+C:\Users\IVAN\RiderProjects\demo_hard\obj\Debug\net8.0\demo_hard.GeneratedMSBuildEditorConfig.editorconfig
+C:\Users\IVAN\RiderProjects\demo_hard\obj\Debug\net8.0\demo_hard.AssemblyInfoInputs.cache
+C:\Users\IVAN\RiderProjects\demo_hard\obj\Debug\net8.0\demo_hard.AssemblyInfo.cs
+C:\Users\IVAN\RiderProjects\demo_hard\obj\Debug\net8.0\demo_hard.csproj.CoreCompileInputs.cache
+C:\Users\IVAN\RiderProjects\demo_hard\obj\Debug\net8.0\Avalonia\demo_hard.dll
+C:\Users\IVAN\RiderProjects\demo_hard\obj\Debug\net8.0\Avalonia\demo_hard.pdb
+C:\Users\IVAN\RiderProjects\demo_hard\obj\Debug\net8.0\refint\Avalonia\demo_hard.dll
+C:\Users\IVAN\RiderProjects\demo_hard\obj\Debug\net8.0\demo_hard.csproj.Up2Date
+C:\Users\IVAN\RiderProjects\demo_hard\obj\Debug\net8.0\demo_hard.genruntimeconfig.cache
+C:\Users\IVAN\RiderProjects\demo_hard\obj\Debug\net8.0\ref\demo_hard.dll
diff --git a/obj/Debug/net8.0/demo_hard.dll b/obj/Debug/net8.0/demo_hard.dll
index 4a3586c..d46f4e5 100644
Binary files a/obj/Debug/net8.0/demo_hard.dll 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
index 80831a8..9a24c55 100755
--- a/obj/Debug/net8.0/demo_hard.genruntimeconfig.cache
+++ b/obj/Debug/net8.0/demo_hard.genruntimeconfig.cache
@@ -1 +1 @@
-f245aba415d302a87fcde81a2137e47d9d2ea8c68553a1bfde00ae9d09384c4d
+c28670c56c1196bae2100c25eb1e7ae1f280772ddf2e2779c971d17f11fdc1e5
diff --git a/obj/Debug/net8.0/demo_hard.pdb b/obj/Debug/net8.0/demo_hard.pdb
index 2c0ec24..02f277f 100644
Binary files a/obj/Debug/net8.0/demo_hard.pdb 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
index bee1b91..7d267a5 100644
Binary files a/obj/Debug/net8.0/ref/demo_hard.dll 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
index bee1b91..7d267a5 100644
Binary files a/obj/Debug/net8.0/refint/Avalonia/demo_hard.dll 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
index a23f939..78e00d3 100644
Binary files a/obj/Debug/net8.0/refint/demo_hard.dll and b/obj/Debug/net8.0/refint/demo_hard.dll differ
diff --git a/obj/demo_hard.csproj.nuget.dgspec.json b/obj/demo_hard.csproj.nuget.dgspec.json
index 4ae3550..d3a6237 100644
--- a/obj/demo_hard.csproj.nuget.dgspec.json
+++ b/obj/demo_hard.csproj.nuget.dgspec.json
@@ -1,25 +1,32 @@
{
"format": 1,
"restore": {
- "/home/class_student/RiderProjects/demo_hard/demo_hard/demo_hard.csproj": {}
+ "C:\\Users\\IVAN\\RiderProjects\\demo_hard\\demo_hard.csproj": {}
},
"projects": {
- "/home/class_student/RiderProjects/demo_hard/demo_hard/demo_hard.csproj": {
+ "C:\\Users\\IVAN\\RiderProjects\\demo_hard\\demo_hard.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/home/class_student/RiderProjects/demo_hard/demo_hard/demo_hard.csproj",
+ "projectUniqueName": "C:\\Users\\IVAN\\RiderProjects\\demo_hard\\demo_hard.csproj",
"projectName": "demo_hard",
- "projectPath": "/home/class_student/RiderProjects/demo_hard/demo_hard/demo_hard.csproj",
- "packagesPath": "/home/class_student/.nuget/packages/",
- "outputPath": "/home/class_student/RiderProjects/demo_hard/demo_hard/obj/",
+ "projectPath": "C:\\Users\\IVAN\\RiderProjects\\demo_hard\\demo_hard.csproj",
+ "packagesPath": "C:\\Users\\IVAN\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\IVAN\\RiderProjects\\demo_hard\\obj\\",
"projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
+ ],
"configFilePaths": [
- "/home/class_student/.nuget/NuGet/NuGet.Config"
+ "C:\\Users\\IVAN\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net8.0"
],
"sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "C:\\Program Files\\dotnet\\library-packs": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
@@ -94,7 +101,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "/home/class_student/.dotnet/sdk/8.0.405/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.400/PortableRuntimeIdentifierGraph.json"
}
}
}
diff --git a/obj/demo_hard.csproj.nuget.g.props b/obj/demo_hard.csproj.nuget.g.props
index 7b303bc..aff4654 100755
--- a/obj/demo_hard.csproj.nuget.g.props
+++ b/obj/demo_hard.csproj.nuget.g.props
@@ -4,24 +4,25 @@
True
NuGet
$(MSBuildThisFileDirectory)project.assets.json
- /home/class_student/.nuget/packages/
- /home/class_student/.nuget/packages/
+ $(UserProfile)\.nuget\packages\
+ C:\Users\IVAN\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages
PackageReference
6.12.2
-
+
+
-
-
-
-
-
+
+
+
+
+
- /home/class_student/.nuget/packages/microsoft.codeanalysis.analyzers/3.3.3
- /home/class_student/.nuget/packages/avalonia.buildservices/0.0.29
- /home/class_student/.nuget/packages/avalonia/11.2.1
+ C:\Users\IVAN\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.3
+ C:\Users\IVAN\.nuget\packages\avalonia.buildservices\0.0.29
+ C:\Users\IVAN\.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
index 27dd88a..ae359f2 100755
--- a/obj/demo_hard.csproj.nuget.g.targets
+++ b/obj/demo_hard.csproj.nuget.g.targets
@@ -1,11 +1,11 @@
-
-
-
-
-
-
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/project.assets.json b/obj/project.assets.json
index ef54ee5..bd86fb6 100644
--- a/obj/project.assets.json
+++ b/obj/project.assets.json
@@ -3484,24 +3484,32 @@
]
},
"packageFolders": {
- "/home/class_student/.nuget/packages/": {}
+ "C:\\Users\\IVAN\\.nuget\\packages\\": {},
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
},
"project": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/home/class_student/RiderProjects/demo_hard/demo_hard/demo_hard.csproj",
+ "projectUniqueName": "C:\\Users\\IVAN\\RiderProjects\\demo_hard\\demo_hard.csproj",
"projectName": "demo_hard",
- "projectPath": "/home/class_student/RiderProjects/demo_hard/demo_hard/demo_hard.csproj",
- "packagesPath": "/home/class_student/.nuget/packages/",
- "outputPath": "/home/class_student/RiderProjects/demo_hard/demo_hard/obj/",
+ "projectPath": "C:\\Users\\IVAN\\RiderProjects\\demo_hard\\demo_hard.csproj",
+ "packagesPath": "C:\\Users\\IVAN\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\IVAN\\RiderProjects\\demo_hard\\obj\\",
"projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
+ ],
"configFilePaths": [
- "/home/class_student/.nuget/NuGet/NuGet.Config"
+ "C:\\Users\\IVAN\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net8.0"
],
"sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "C:\\Program Files\\dotnet\\library-packs": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
@@ -3576,7 +3584,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "/home/class_student/.dotnet/sdk/8.0.405/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.400/PortableRuntimeIdentifierGraph.json"
}
}
}
diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache
index 5f24f89..4d10b6a 100644
--- a/obj/project.nuget.cache
+++ b/obj/project.nuget.cache
@@ -1,75 +1,75 @@
{
"version": 2,
- "dgSpecHash": "EVCAWmqygcE=",
+ "dgSpecHash": "Aoffvz4u72E=",
"success": true,
- "projectFilePath": "/home/class_student/RiderProjects/demo_hard/demo_hard/demo_hard.csproj",
+ "projectFilePath": "C:\\Users\\IVAN\\RiderProjects\\demo_hard\\demo_hard.csproj",
"expectedPackageFiles": [
- "/home/class_student/.nuget/packages/avalonia/11.2.1/avalonia.11.2.1.nupkg.sha512",
- "/home/class_student/.nuget/packages/avalonia.angle.windows.natives/2.1.22045.20230930/avalonia.angle.windows.natives.2.1.22045.20230930.nupkg.sha512",
- "/home/class_student/.nuget/packages/avalonia.buildservices/0.0.29/avalonia.buildservices.0.0.29.nupkg.sha512",
- "/home/class_student/.nuget/packages/avalonia.controls.colorpicker/11.2.1/avalonia.controls.colorpicker.11.2.1.nupkg.sha512",
- "/home/class_student/.nuget/packages/avalonia.controls.datagrid/11.2.1/avalonia.controls.datagrid.11.2.1.nupkg.sha512",
- "/home/class_student/.nuget/packages/avalonia.desktop/11.2.1/avalonia.desktop.11.2.1.nupkg.sha512",
- "/home/class_student/.nuget/packages/avalonia.diagnostics/11.2.1/avalonia.diagnostics.11.2.1.nupkg.sha512",
- "/home/class_student/.nuget/packages/avalonia.fonts.inter/11.2.1/avalonia.fonts.inter.11.2.1.nupkg.sha512",
- "/home/class_student/.nuget/packages/avalonia.freedesktop/11.2.1/avalonia.freedesktop.11.2.1.nupkg.sha512",
- "/home/class_student/.nuget/packages/avalonia.native/11.2.1/avalonia.native.11.2.1.nupkg.sha512",
- "/home/class_student/.nuget/packages/avalonia.remote.protocol/11.2.1/avalonia.remote.protocol.11.2.1.nupkg.sha512",
- "/home/class_student/.nuget/packages/avalonia.skia/11.2.1/avalonia.skia.11.2.1.nupkg.sha512",
- "/home/class_student/.nuget/packages/avalonia.themes.fluent/11.2.1/avalonia.themes.fluent.11.2.1.nupkg.sha512",
- "/home/class_student/.nuget/packages/avalonia.themes.simple/11.2.1/avalonia.themes.simple.11.2.1.nupkg.sha512",
- "/home/class_student/.nuget/packages/avalonia.win32/11.2.1/avalonia.win32.11.2.1.nupkg.sha512",
- "/home/class_student/.nuget/packages/avalonia.x11/11.2.1/avalonia.x11.11.2.1.nupkg.sha512",
- "/home/class_student/.nuget/packages/harfbuzzsharp/7.3.0.2/harfbuzzsharp.7.3.0.2.nupkg.sha512",
- "/home/class_student/.nuget/packages/harfbuzzsharp.nativeassets.linux/7.3.0.2/harfbuzzsharp.nativeassets.linux.7.3.0.2.nupkg.sha512",
- "/home/class_student/.nuget/packages/harfbuzzsharp.nativeassets.macos/7.3.0.2/harfbuzzsharp.nativeassets.macos.7.3.0.2.nupkg.sha512",
- "/home/class_student/.nuget/packages/harfbuzzsharp.nativeassets.webassembly/7.3.0.3-preview.2.2/harfbuzzsharp.nativeassets.webassembly.7.3.0.3-preview.2.2.nupkg.sha512",
- "/home/class_student/.nuget/packages/harfbuzzsharp.nativeassets.win32/7.3.0.2/harfbuzzsharp.nativeassets.win32.7.3.0.2.nupkg.sha512",
- "/home/class_student/.nuget/packages/humanizer.core/2.14.1/humanizer.core.2.14.1.nupkg.sha512",
- "/home/class_student/.nuget/packages/microcom.runtime/0.11.0/microcom.runtime.0.11.0.nupkg.sha512",
- "/home/class_student/.nuget/packages/microsoft.bcl.asyncinterfaces/6.0.0/microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512",
- "/home/class_student/.nuget/packages/microsoft.codeanalysis.analyzers/3.3.3/microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512",
- "/home/class_student/.nuget/packages/microsoft.codeanalysis.common/4.5.0/microsoft.codeanalysis.common.4.5.0.nupkg.sha512",
- "/home/class_student/.nuget/packages/microsoft.codeanalysis.csharp/4.5.0/microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512",
- "/home/class_student/.nuget/packages/microsoft.codeanalysis.csharp.workspaces/4.5.0/microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512",
- "/home/class_student/.nuget/packages/microsoft.codeanalysis.workspaces.common/4.5.0/microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512",
- "/home/class_student/.nuget/packages/microsoft.entityframeworkcore/8.0.10/microsoft.entityframeworkcore.8.0.10.nupkg.sha512",
- "/home/class_student/.nuget/packages/microsoft.entityframeworkcore.abstractions/8.0.10/microsoft.entityframeworkcore.abstractions.8.0.10.nupkg.sha512",
- "/home/class_student/.nuget/packages/microsoft.entityframeworkcore.analyzers/8.0.10/microsoft.entityframeworkcore.analyzers.8.0.10.nupkg.sha512",
- "/home/class_student/.nuget/packages/microsoft.entityframeworkcore.design/8.0.10/microsoft.entityframeworkcore.design.8.0.10.nupkg.sha512",
- "/home/class_student/.nuget/packages/microsoft.entityframeworkcore.relational/8.0.10/microsoft.entityframeworkcore.relational.8.0.10.nupkg.sha512",
- "/home/class_student/.nuget/packages/microsoft.extensions.caching.abstractions/8.0.0/microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512",
- "/home/class_student/.nuget/packages/microsoft.extensions.caching.memory/8.0.1/microsoft.extensions.caching.memory.8.0.1.nupkg.sha512",
- "/home/class_student/.nuget/packages/microsoft.extensions.configuration.abstractions/8.0.0/microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512",
- "/home/class_student/.nuget/packages/microsoft.extensions.dependencyinjection/8.0.1/microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512",
- "/home/class_student/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/8.0.2/microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512",
- "/home/class_student/.nuget/packages/microsoft.extensions.dependencymodel/8.0.2/microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512",
- "/home/class_student/.nuget/packages/microsoft.extensions.logging/8.0.1/microsoft.extensions.logging.8.0.1.nupkg.sha512",
- "/home/class_student/.nuget/packages/microsoft.extensions.logging.abstractions/8.0.2/microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512",
- "/home/class_student/.nuget/packages/microsoft.extensions.options/8.0.2/microsoft.extensions.options.8.0.2.nupkg.sha512",
- "/home/class_student/.nuget/packages/microsoft.extensions.primitives/8.0.0/microsoft.extensions.primitives.8.0.0.nupkg.sha512",
- "/home/class_student/.nuget/packages/mono.texttemplating/2.2.1/mono.texttemplating.2.2.1.nupkg.sha512",
- "/home/class_student/.nuget/packages/npgsql/8.0.5/npgsql.8.0.5.nupkg.sha512",
- "/home/class_student/.nuget/packages/npgsql.entityframeworkcore.postgresql/8.0.10/npgsql.entityframeworkcore.postgresql.8.0.10.nupkg.sha512",
- "/home/class_student/.nuget/packages/skiasharp/2.88.8/skiasharp.2.88.8.nupkg.sha512",
- "/home/class_student/.nuget/packages/skiasharp.nativeassets.linux/2.88.8/skiasharp.nativeassets.linux.2.88.8.nupkg.sha512",
- "/home/class_student/.nuget/packages/skiasharp.nativeassets.macos/2.88.8/skiasharp.nativeassets.macos.2.88.8.nupkg.sha512",
- "/home/class_student/.nuget/packages/skiasharp.nativeassets.webassembly/2.88.8/skiasharp.nativeassets.webassembly.2.88.8.nupkg.sha512",
- "/home/class_student/.nuget/packages/skiasharp.nativeassets.win32/2.88.8/skiasharp.nativeassets.win32.2.88.8.nupkg.sha512",
- "/home/class_student/.nuget/packages/system.codedom/4.4.0/system.codedom.4.4.0.nupkg.sha512",
- "/home/class_student/.nuget/packages/system.collections.immutable/6.0.0/system.collections.immutable.6.0.0.nupkg.sha512",
- "/home/class_student/.nuget/packages/system.composition/6.0.0/system.composition.6.0.0.nupkg.sha512",
- "/home/class_student/.nuget/packages/system.composition.attributedmodel/6.0.0/system.composition.attributedmodel.6.0.0.nupkg.sha512",
- "/home/class_student/.nuget/packages/system.composition.convention/6.0.0/system.composition.convention.6.0.0.nupkg.sha512",
- "/home/class_student/.nuget/packages/system.composition.hosting/6.0.0/system.composition.hosting.6.0.0.nupkg.sha512",
- "/home/class_student/.nuget/packages/system.composition.runtime/6.0.0/system.composition.runtime.6.0.0.nupkg.sha512",
- "/home/class_student/.nuget/packages/system.composition.typedparts/6.0.0/system.composition.typedparts.6.0.0.nupkg.sha512",
- "/home/class_student/.nuget/packages/system.io.pipelines/8.0.0/system.io.pipelines.8.0.0.nupkg.sha512",
- "/home/class_student/.nuget/packages/system.reflection.metadata/6.0.1/system.reflection.metadata.6.0.1.nupkg.sha512",
- "/home/class_student/.nuget/packages/system.runtime.compilerservices.unsafe/6.0.0/system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
- "/home/class_student/.nuget/packages/system.text.encoding.codepages/6.0.0/system.text.encoding.codepages.6.0.0.nupkg.sha512",
- "/home/class_student/.nuget/packages/system.threading.channels/6.0.0/system.threading.channels.6.0.0.nupkg.sha512",
- "/home/class_student/.nuget/packages/tmds.dbus.protocol/0.20.0/tmds.dbus.protocol.0.20.0.nupkg.sha512"
+ "C:\\Users\\IVAN\\.nuget\\packages\\avalonia\\11.2.1\\avalonia.11.2.1.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\avalonia.angle.windows.natives\\2.1.22045.20230930\\avalonia.angle.windows.natives.2.1.22045.20230930.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\avalonia.buildservices\\0.0.29\\avalonia.buildservices.0.0.29.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\avalonia.controls.colorpicker\\11.2.1\\avalonia.controls.colorpicker.11.2.1.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\avalonia.controls.datagrid\\11.2.1\\avalonia.controls.datagrid.11.2.1.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\avalonia.desktop\\11.2.1\\avalonia.desktop.11.2.1.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\avalonia.diagnostics\\11.2.1\\avalonia.diagnostics.11.2.1.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\avalonia.fonts.inter\\11.2.1\\avalonia.fonts.inter.11.2.1.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\avalonia.freedesktop\\11.2.1\\avalonia.freedesktop.11.2.1.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\avalonia.native\\11.2.1\\avalonia.native.11.2.1.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\avalonia.remote.protocol\\11.2.1\\avalonia.remote.protocol.11.2.1.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\avalonia.skia\\11.2.1\\avalonia.skia.11.2.1.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\avalonia.themes.fluent\\11.2.1\\avalonia.themes.fluent.11.2.1.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\avalonia.themes.simple\\11.2.1\\avalonia.themes.simple.11.2.1.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\avalonia.win32\\11.2.1\\avalonia.win32.11.2.1.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\avalonia.x11\\11.2.1\\avalonia.x11.11.2.1.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\harfbuzzsharp\\7.3.0.2\\harfbuzzsharp.7.3.0.2.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\harfbuzzsharp.nativeassets.linux\\7.3.0.2\\harfbuzzsharp.nativeassets.linux.7.3.0.2.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\harfbuzzsharp.nativeassets.macos\\7.3.0.2\\harfbuzzsharp.nativeassets.macos.7.3.0.2.nupkg.sha512",
+ "C:\\Users\\IVAN\\.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\\IVAN\\.nuget\\packages\\harfbuzzsharp.nativeassets.win32\\7.3.0.2\\harfbuzzsharp.nativeassets.win32.7.3.0.2.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\humanizer.core\\2.14.1\\humanizer.core.2.14.1.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\microcom.runtime\\0.11.0\\microcom.runtime.0.11.0.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\6.0.0\\microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.3\\microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\microsoft.codeanalysis.common\\4.5.0\\microsoft.codeanalysis.common.4.5.0.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.5.0\\microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\microsoft.codeanalysis.csharp.workspaces\\4.5.0\\microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\microsoft.codeanalysis.workspaces.common\\4.5.0\\microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\microsoft.entityframeworkcore\\8.0.10\\microsoft.entityframeworkcore.8.0.10.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\8.0.10\\microsoft.entityframeworkcore.abstractions.8.0.10.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\8.0.10\\microsoft.entityframeworkcore.analyzers.8.0.10.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\microsoft.entityframeworkcore.design\\8.0.10\\microsoft.entityframeworkcore.design.8.0.10.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\8.0.10\\microsoft.entityframeworkcore.relational.8.0.10.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\8.0.0\\microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\microsoft.extensions.caching.memory\\8.0.1\\microsoft.extensions.caching.memory.8.0.1.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\8.0.0\\microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\8.0.1\\microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.2\\microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\microsoft.extensions.dependencymodel\\8.0.2\\microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\microsoft.extensions.logging\\8.0.1\\microsoft.extensions.logging.8.0.1.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\8.0.2\\microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\microsoft.extensions.options\\8.0.2\\microsoft.extensions.options.8.0.2.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\microsoft.extensions.primitives\\8.0.0\\microsoft.extensions.primitives.8.0.0.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\mono.texttemplating\\2.2.1\\mono.texttemplating.2.2.1.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\npgsql\\8.0.5\\npgsql.8.0.5.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\8.0.10\\npgsql.entityframeworkcore.postgresql.8.0.10.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\skiasharp\\2.88.8\\skiasharp.2.88.8.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\skiasharp.nativeassets.linux\\2.88.8\\skiasharp.nativeassets.linux.2.88.8.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\skiasharp.nativeassets.macos\\2.88.8\\skiasharp.nativeassets.macos.2.88.8.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\skiasharp.nativeassets.webassembly\\2.88.8\\skiasharp.nativeassets.webassembly.2.88.8.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\skiasharp.nativeassets.win32\\2.88.8\\skiasharp.nativeassets.win32.2.88.8.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\system.codedom\\4.4.0\\system.codedom.4.4.0.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\system.collections.immutable\\6.0.0\\system.collections.immutable.6.0.0.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\system.composition\\6.0.0\\system.composition.6.0.0.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\system.composition.attributedmodel\\6.0.0\\system.composition.attributedmodel.6.0.0.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\system.composition.convention\\6.0.0\\system.composition.convention.6.0.0.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\system.composition.hosting\\6.0.0\\system.composition.hosting.6.0.0.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\system.composition.runtime\\6.0.0\\system.composition.runtime.6.0.0.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\system.composition.typedparts\\6.0.0\\system.composition.typedparts.6.0.0.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\system.io.pipelines\\8.0.0\\system.io.pipelines.8.0.0.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\system.reflection.metadata\\6.0.1\\system.reflection.metadata.6.0.1.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\system.text.encoding.codepages\\6.0.0\\system.text.encoding.codepages.6.0.0.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\system.threading.channels\\6.0.0\\system.threading.channels.6.0.0.nupkg.sha512",
+ "C:\\Users\\IVAN\\.nuget\\packages\\tmds.dbus.protocol\\0.20.0\\tmds.dbus.protocol.0.20.0.nupkg.sha512"
],
"logs": []
}
\ No newline at end of file
diff --git a/obj/project.packagespec.json b/obj/project.packagespec.json
index bfa23c3..0c32f5a 100755
--- a/obj/project.packagespec.json
+++ b/obj/project.packagespec.json
@@ -1 +1 @@
-"restore":{"projectUniqueName":"/home/class_student/RiderProjects/demo_hard/demo_hard/demo_hard.csproj","projectName":"demo_hard","projectPath":"/home/class_student/RiderProjects/demo_hard/demo_hard/demo_hard.csproj","outputPath":"/home/class_student/RiderProjects/demo_hard/demo_hard/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"Avalonia":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Desktop":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Diagnostics":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Fonts.Inter":{"target":"Package","version":"[11.2.1, )"},"Avalonia.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, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/home/class_student/.dotnet/sdk/8.0.405/PortableRuntimeIdentifierGraph.json"}}
\ No newline at end of file
+"restore":{"projectUniqueName":"C:\\Users\\IVAN\\RiderProjects\\demo_hard\\demo_hard.csproj","projectName":"demo_hard","projectPath":"C:\\Users\\IVAN\\RiderProjects\\demo_hard\\demo_hard.csproj","outputPath":"C:\\Users\\IVAN\\RiderProjects\\demo_hard\\obj\\","projectStyle":"PackageReference","fallbackFolders":["C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"],"originalTargetFrameworks":["net8.0"],"sources":{"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\":{},"C:\\Program Files\\dotnet\\library-packs":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"Avalonia":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Desktop":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Diagnostics":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Fonts.Inter":{"target":"Package","version":"[11.2.1, )"},"Avalonia.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, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\8.0.400/PortableRuntimeIdentifierGraph.json"}}
\ No newline at end of file
diff --git a/obj/rider.project.model.nuget.info b/obj/rider.project.model.nuget.info
index 4f902a6..6a9990a 100755
--- a/obj/rider.project.model.nuget.info
+++ b/obj/rider.project.model.nuget.info
@@ -1 +1 @@
-17387422914147165
\ No newline at end of file
+17392536187517144
\ No newline at end of file
diff --git a/obj/rider.project.restore.info b/obj/rider.project.restore.info
index 4f902a6..6a9990a 100755
--- a/obj/rider.project.restore.info
+++ b/obj/rider.project.restore.info
@@ -1 +1 @@
-17387422914147165
\ No newline at end of file
+17392536187517144
\ No newline at end of file