diff --git a/.idea/.idea.demo_2023/.idea/vcs.xml b/.idea/.idea.demo_2023/.idea/vcs.xml
index d843f34..94a25f7 100644
--- a/.idea/.idea.demo_2023/.idea/vcs.xml
+++ b/.idea/.idea.demo_2023/.idea/vcs.xml
@@ -1,4 +1,6 @@
-
+
+
+
\ No newline at end of file
diff --git a/demo_2023/Additem.axaml b/demo_2023/Additem.axaml
index d4ff213..4481c81 100644
--- a/demo_2023/Additem.axaml
+++ b/demo_2023/Additem.axaml
@@ -2,16 +2,50 @@
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:models="clr-namespace:demo_2023.Models"
- mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
+ mc:Ignorable="d" d:DesignWidth="400" d:DesignHeight="450"
+ Width="700"
+ Height="700"
x:Class="demo_2023.Additem"
- Title="Additem"
- x:DataType="models:ClientPresenter">
+ x:CompileBindings="False"
+ Title="demo_2023">
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/demo_2023/Additem.axaml.cs b/demo_2023/Additem.axaml.cs
index bfcc9ab..e877c0b 100644
--- a/demo_2023/Additem.axaml.cs
+++ b/demo_2023/Additem.axaml.cs
@@ -1,5 +1,6 @@
using Avalonia;
using Avalonia.Controls;
+using Avalonia.Interactivity;
using Avalonia.Markup.Xaml;
using demo_2023.Models;
@@ -13,4 +14,6 @@ public partial class Additem : Window
DataContext = new ClientPresenter();
}
+
+
}
\ No newline at end of file
diff --git a/demo_2023/App.axaml b/demo_2023/App.axaml
index c2da903..bb1ccfe 100644
--- a/demo_2023/App.axaml
+++ b/demo_2023/App.axaml
@@ -1,6 +1,6 @@
diff --git a/demo_2023/MainWindow.axaml b/demo_2023/MainWindow.axaml
index 797af8f..b25159d 100644
--- a/demo_2023/MainWindow.axaml
+++ b/demo_2023/MainWindow.axaml
@@ -11,43 +11,57 @@
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/demo_2023/MainWindow.axaml.cs b/demo_2023/MainWindow.axaml.cs
index 61a3517..eb668b3 100644
--- a/demo_2023/MainWindow.axaml.cs
+++ b/demo_2023/MainWindow.axaml.cs
@@ -1,21 +1,58 @@
+using System;
using System.Collections.Generic;
+using System.Collections.ObjectModel;
+using System.IO;
+using System.Linq;
using Avalonia.Controls;
using Avalonia.Interactivity;
+using Avalonia.Media.Imaging;
+using Avalonia.Platform.Storage;
+using Avalonia.Win32;
using demo_2023.Models;
namespace demo_2023;
public partial class MainWindow : Window
{
+ ObservableCollection events = new ObservableCollection();
+ List dataSourseEvent;
+
public MainWindow()
{
InitializeComponent();
- DataContext = new ClientPresenter();
+ using var context = new User15Context();
+
+ dataSourseEvent = context.Events.ToList();
+ EventListBox.ItemsSource = dataSourseEvent;
+ }
+
+
+ public class EventPresenter() : Event
+ {
+ Bitmap? image
+ {
+ get
+ {
+ try
+ {
+ string absolutePath = Path.Combine(AppContext.BaseDirectory, photo);
+ return new Bitmap(absolutePath);
+ }
+ catch
+ {
+ return null;
+ }
+ }
+ }
}
- private void AddItem_OnClick(object? sender, RoutedEventArgs e)
+
+
+
+
+ private void Jury_reg(object? sender, RoutedEventArgs e)
{
new Additem().ShowDialog(this);
}
-}
\ No newline at end of file
+}
\ No newline at end of file
diff --git a/demo_2023/Models/Activity.cs b/demo_2023/Models/Activity.cs
deleted file mode 100644
index f520945..0000000
--- a/demo_2023/Models/Activity.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using System;
-using System.Collections.Generic;
-
-namespace demo_2023.Models;
-
-public partial class Activity
-{
- public int Id { get; set; }
-
- public string Name { get; set; } = null!;
-
- public virtual ICollection Moderators { get; set; } = new List();
-
- public virtual ICollection Winners { get; set; } = new List();
-}
diff --git a/demo_2023/Models/City.cs b/demo_2023/Models/City.cs
deleted file mode 100644
index d9ac719..0000000
--- a/demo_2023/Models/City.cs
+++ /dev/null
@@ -1,13 +0,0 @@
-using System;
-using System.Collections.Generic;
-
-namespace demo_2023.Models;
-
-public partial class City
-{
- public int Id { get; set; }
-
- public string Name { get; set; } = null!;
-
- public virtual ICollection Events { get; set; } = new List();
-}
diff --git a/demo_2023/Models/Client.cs b/demo_2023/Models/Client.cs
deleted file mode 100644
index 544ec34..0000000
--- a/demo_2023/Models/Client.cs
+++ /dev/null
@@ -1,37 +0,0 @@
-using System;
-using System.Collections.Generic;
-
-namespace demo_2023.Models;
-
-public partial class Client
-{
- public int Id { get; set; }
-
- public string Fio { get; set; } = null!;
-
- public string Email { get; set; } = null!;
-
- public DateTime Date { get; set; }
-
- public int Country { get; set; }
-
- public string Phone { get; set; } = null!;
-
- public string Password { get; set; } = null!;
-
- public string? Spec { get; set; }
-
- public string Photopath { get; set; } = null!;
-
- public char Gender { get; set; }
-
- public int Role { get; set; }
-
- public virtual Country CountryNavigation { get; set; } = null!;
-
- public virtual Role RoleNavigation { get; set; } = null!;
-
- public virtual ICollection Activities { get; set; } = new List();
-
- public virtual ICollection ActivitiesNavigation { get; set; } = new List();
-}
diff --git a/demo_2023/Models/Country.cs b/demo_2023/Models/Country.cs
deleted file mode 100644
index f8b8d6b..0000000
--- a/demo_2023/Models/Country.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-using System;
-using System.Collections.Generic;
-
-namespace demo_2023.Models;
-
-public partial class Country
-{
- public int Id { get; set; }
-
- public string Name { get; set; } = null!;
-
- public string EnName { get; set; } = null!;
-
- public string Code { get; set; } = null!;
-
- public int Code2 { get; set; }
-
- public virtual ICollection Clients { get; set; } = new List();
-}
diff --git a/demo_2023/Models/Event.cs b/demo_2023/Models/Event.cs
deleted file mode 100644
index 534a7f4..0000000
--- a/demo_2023/Models/Event.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-using System;
-using System.Collections.Generic;
-
-namespace demo_2023.Models;
-
-public partial class Event
-{
- public int Id { get; set; }
-
- public string Sobitie { get; set; } = null!;
-
- public DateTime Date { get; set; }
-
- public int Days { get; set; }
-
- public int City { get; set; }
-
- public virtual City CityNavigation { get; set; } = null!;
-}
diff --git a/demo_2023/Models/Eventactivity.cs b/demo_2023/Models/Eventactivity.cs
deleted file mode 100644
index eff6a5e..0000000
--- a/demo_2023/Models/Eventactivity.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using System;
-using System.Collections.Generic;
-
-namespace demo_2023.Models;
-
-public partial class Eventactivity
-{
- public int Eventid { get; set; }
-
- public int Activityid { get; set; }
-
- public virtual Activity Activity { get; set; } = null!;
-
- public virtual Event Event { get; set; } = null!;
-}
diff --git a/demo_2023/Models/Jhuriactivity.cs b/demo_2023/Models/Jhuriactivity.cs
deleted file mode 100644
index e865d62..0000000
--- a/demo_2023/Models/Jhuriactivity.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using System;
-using System.Collections.Generic;
-
-namespace demo_2023.Models;
-
-public partial class Jhuriactivity
-{
- public int Activityid { get; set; }
-
- public int? Jhuriid { get; set; }
-
- public virtual Activity Activity { get; set; } = null!;
-
- public virtual Client? Jhuri { get; set; }
-}
diff --git a/demo_2023/Models/JuryEvent.cs b/demo_2023/Models/JuryEvent.cs
deleted file mode 100644
index e1b8388..0000000
--- a/demo_2023/Models/JuryEvent.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-using System;
-using System.Collections.Generic;
-
-namespace demo_2023.Models;
-
-public partial class JuryEvent
-{
- public int? JuryId { get; set; }
-
- public int? EventId { get; set; }
-}
diff --git a/demo_2023/Models/ModerEvent.cs b/demo_2023/Models/ModerEvent.cs
deleted file mode 100644
index 0b473e2..0000000
--- a/demo_2023/Models/ModerEvent.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-using System;
-using System.Collections.Generic;
-
-namespace demo_2023.Models;
-
-public partial class ModerEvent
-{
- public int? ModerId { get; set; }
-
- public int? EventId { get; set; }
-}
diff --git a/demo_2023/Models/Role.cs b/demo_2023/Models/Role.cs
deleted file mode 100644
index fab52b1..0000000
--- a/demo_2023/Models/Role.cs
+++ /dev/null
@@ -1,13 +0,0 @@
-using System;
-using System.Collections.Generic;
-
-namespace demo_2023.Models;
-
-public partial class Role
-{
- public int Id { get; set; }
-
- public string Name { get; set; } = null!;
-
- public virtual ICollection Clients { get; set; } = new List();
-}
diff --git a/demo_2023/Models/User15Context.cs b/demo_2023/Models/User15Context.cs
deleted file mode 100644
index 21ba704..0000000
--- a/demo_2023/Models/User15Context.cs
+++ /dev/null
@@ -1,307 +0,0 @@
-using System;
-using System.Collections.Generic;
-using Microsoft.EntityFrameworkCore;
-
-namespace demo_2023.Models;
-
-public partial class User15Context : DbContext
-{
- public User15Context()
- {
- }
-
- public User15Context(DbContextOptions options)
- : base(options)
- {
- }
-
- public virtual DbSet Activities { get; set; }
-
- public virtual DbSet Cities { get; set; }
-
- public virtual DbSet Clients { get; set; }
-
- public virtual DbSet Countries { get; set; }
-
- public virtual DbSet Events { get; set; }
-
- public virtual DbSet Eventactivities { get; set; }
-
- public virtual DbSet Jhuriactivities { get; set; }
-
- public virtual DbSet JuryEvents { get; set; }
-
- public virtual DbSet ModerEvents { get; set; }
-
- public virtual DbSet Roles { get; set; }
-
- public virtual DbSet ValidActivityJhuris { get; set; }
-
- public virtual DbSet ValidActivityModerators { get; set; }
-
- public virtual DbSet ValidActivityWinners { get; set; }
-
- protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
-#warning To protect potentially sensitive information in your connection string, you should move it out of source code. You can avoid scaffolding the connection string by using the Name= syntax to read it from configuration - see https://go.microsoft.com/fwlink/?linkid=2131148. For more guidance on storing connection strings, see https://go.microsoft.com/fwlink/?LinkId=723263.
- => optionsBuilder.UseNpgsql("Host=45.67.56.214;Port=5421;Database=user15;Username=user15;Password=3XkvwMOb");
-
- protected override void OnModelCreating(ModelBuilder modelBuilder)
- {
- modelBuilder.Entity(entity =>
- {
- entity.HasKey(e => e.Id).HasName("activity_pkey");
-
- entity.ToTable("activity");
-
- entity.Property(e => e.Id).HasColumnName("id");
- entity.Property(e => e.Name)
- .HasMaxLength(100)
- .HasColumnName("name");
-
- entity.HasMany(d => d.Moderators).WithMany(p => p.Activities)
- .UsingEntity>(
- "Activitymoderator",
- r => r.HasOne().WithMany()
- .HasForeignKey("Moderatorid")
- .OnDelete(DeleteBehavior.ClientSetNull)
- .HasConstraintName("fk_moderator"),
- l => l.HasOne().WithMany()
- .HasForeignKey("Activityid")
- .OnDelete(DeleteBehavior.ClientSetNull)
- .HasConstraintName("fk_activity"),
- j =>
- {
- j.HasKey("Activityid", "Moderatorid").HasName("activitymoderator_pkey");
- j.ToTable("activitymoderator");
- j.IndexerProperty("Activityid").HasColumnName("activityid");
- j.IndexerProperty("Moderatorid").HasColumnName("moderatorid");
- });
-
- entity.HasMany(d => d.Winners).WithMany(p => p.ActivitiesNavigation)
- .UsingEntity>(
- "Activitywinner",
- r => r.HasOne().WithMany()
- .HasForeignKey("Winnerid")
- .OnDelete(DeleteBehavior.ClientSetNull)
- .HasConstraintName("fk_moderator"),
- l => l.HasOne().WithMany()
- .HasForeignKey("Activityid")
- .OnDelete(DeleteBehavior.ClientSetNull)
- .HasConstraintName("fk_activity"),
- j =>
- {
- j.HasKey("Activityid", "Winnerid").HasName("activitywinner_pkey");
- j.ToTable("activitywinner");
- j.IndexerProperty("Activityid").HasColumnName("activityid");
- j.IndexerProperty("Winnerid").HasColumnName("winnerid");
- });
- });
-
- modelBuilder.Entity(entity =>
- {
- entity.HasKey(e => e.Id).HasName("city_pkey");
-
- entity.ToTable("city");
-
- entity.Property(e => e.Id).HasColumnName("id");
- entity.Property(e => e.Name)
- .HasMaxLength(100)
- .HasColumnName("name");
- });
-
- modelBuilder.Entity(entity =>
- {
- entity.HasKey(e => e.Id).HasName("clients_pkey");
-
- entity.ToTable("clients");
-
- entity.Property(e => e.Id).HasColumnName("id");
- entity.Property(e => e.Country).HasColumnName("country");
- entity.Property(e => e.Date)
- .HasColumnType("timestamp(6) without time zone")
- .HasColumnName("date");
- entity.Property(e => e.Email)
- .HasMaxLength(100)
- .HasColumnName("email");
- entity.Property(e => e.Fio)
- .HasMaxLength(200)
- .HasColumnName("fio");
- entity.Property(e => e.Gender)
- .HasMaxLength(1)
- .HasColumnName("gender");
- entity.Property(e => e.Password)
- .HasMaxLength(50)
- .HasColumnName("password");
- entity.Property(e => e.Phone)
- .HasMaxLength(20)
- .HasColumnName("phone");
- entity.Property(e => e.Photopath)
- .HasMaxLength(100)
- .HasColumnName("photopath");
- entity.Property(e => e.Role).HasColumnName("role");
- entity.Property(e => e.Spec)
- .HasMaxLength(50)
- .HasColumnName("spec");
-
- entity.HasOne(d => d.CountryNavigation).WithMany(p => p.Clients)
- .HasForeignKey(d => d.Country)
- .OnDelete(DeleteBehavior.ClientSetNull)
- .HasConstraintName("fk_country");
-
- entity.HasOne(d => d.RoleNavigation).WithMany(p => p.Clients)
- .HasForeignKey(d => d.Role)
- .OnDelete(DeleteBehavior.ClientSetNull)
- .HasConstraintName("fk_role");
- });
-
- modelBuilder.Entity(entity =>
- {
- entity.HasKey(e => e.Id).HasName("country_pkey");
-
- entity.ToTable("country");
-
- entity.HasIndex(e => e.Code2, "country_code2_key").IsUnique();
-
- entity.Property(e => e.Id).HasColumnName("id");
- entity.Property(e => e.Code)
- .HasMaxLength(5)
- .HasColumnName("code");
- entity.Property(e => e.Code2).HasColumnName("code2");
- entity.Property(e => e.EnName)
- .HasMaxLength(100)
- .HasColumnName("en_name");
- entity.Property(e => e.Name)
- .HasMaxLength(100)
- .HasColumnName("name");
- });
-
- modelBuilder.Entity(entity =>
- {
- entity.HasKey(e => e.Id).HasName("event_pkey");
-
- entity.ToTable("event");
-
- entity.HasIndex(e => e.Date, "event_date_key").IsUnique();
-
- entity.Property(e => e.Id).HasColumnName("id");
- entity.Property(e => e.City).HasColumnName("city");
- entity.Property(e => e.Date)
- .HasColumnType("timestamp(6) without time zone")
- .HasColumnName("date");
- entity.Property(e => e.Days).HasColumnName("days");
- entity.Property(e => e.Sobitie)
- .HasMaxLength(200)
- .HasColumnName("sobitie");
-
- entity.HasOne(d => d.CityNavigation).WithMany(p => p.Events)
- .HasForeignKey(d => d.City)
- .OnDelete(DeleteBehavior.ClientSetNull)
- .HasConstraintName("fk_city");
- });
-
- modelBuilder.Entity(entity =>
- {
- entity
- .HasNoKey()
- .ToTable("eventactivity");
-
- entity.Property(e => e.Activityid).HasColumnName("activityid");
- entity.Property(e => e.Eventid).HasColumnName("eventid");
-
- entity.HasOne(d => d.Activity).WithMany()
- .HasForeignKey(d => d.Activityid)
- .OnDelete(DeleteBehavior.ClientSetNull)
- .HasConstraintName("fk_activity");
-
- entity.HasOne(d => d.Event).WithMany()
- .HasForeignKey(d => d.Eventid)
- .OnDelete(DeleteBehavior.ClientSetNull)
- .HasConstraintName("fk_event");
- });
-
- modelBuilder.Entity(entity =>
- {
- entity
- .HasNoKey()
- .ToTable("jhuriactivity");
-
- entity.Property(e => e.Activityid).HasColumnName("activityid");
- entity.Property(e => e.Jhuriid).HasColumnName("jhuriid");
-
- entity.HasOne(d => d.Activity).WithMany()
- .HasForeignKey(d => d.Activityid)
- .OnDelete(DeleteBehavior.ClientSetNull)
- .HasConstraintName("fk_activity");
-
- entity.HasOne(d => d.Jhuri).WithMany()
- .HasForeignKey(d => d.Jhuriid)
- .HasConstraintName("fk_moderator");
- });
-
- modelBuilder.Entity(entity =>
- {
- entity
- .HasNoKey()
- .ToTable("jury_event");
-
- entity.Property(e => e.EventId).HasColumnName("event_id");
- entity.Property(e => e.JuryId).HasColumnName("jury_id");
- });
-
- modelBuilder.Entity(entity =>
- {
- entity
- .HasNoKey()
- .ToTable("moder_event");
-
- entity.Property(e => e.EventId).HasColumnName("event_id");
- entity.Property(e => e.ModerId).HasColumnName("moder_id");
- });
-
- modelBuilder.Entity(entity =>
- {
- entity.HasKey(e => e.Id).HasName("roles_pkey");
-
- entity.ToTable("roles");
-
- entity.Property(e => e.Id).HasColumnName("id");
- entity.Property(e => e.Name)
- .HasMaxLength(20)
- .HasColumnName("name");
- });
-
- modelBuilder.Entity(entity =>
- {
- entity
- .HasNoKey()
- .ToView("valid_activity_jhuri");
-
- entity.Property(e => e.Activityid).HasColumnName("activityid");
- entity.Property(e => e.Jhuriid).HasColumnName("jhuriid");
- });
-
- modelBuilder.Entity(entity =>
- {
- entity
- .HasNoKey()
- .ToView("valid_activity_moderators");
-
- entity.Property(e => e.Activityid).HasColumnName("activityid");
- entity.Property(e => e.Moderatorid).HasColumnName("moderatorid");
- });
-
- modelBuilder.Entity(entity =>
- {
- entity
- .HasNoKey()
- .ToView("valid_activity_winners");
-
- entity.Property(e => e.Activityid).HasColumnName("activityid");
- entity.Property(e => e.Winnerid).HasColumnName("winnerid");
- });
-
- OnModelCreatingPartial(modelBuilder);
- }
-
- partial void OnModelCreatingPartial(ModelBuilder modelBuilder);
-}
diff --git a/demo_2023/Models/ValidActivityJhuri.cs b/demo_2023/Models/ValidActivityJhuri.cs
deleted file mode 100644
index ad89630..0000000
--- a/demo_2023/Models/ValidActivityJhuri.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-using System;
-using System.Collections.Generic;
-
-namespace demo_2023.Models;
-
-public partial class ValidActivityJhuri
-{
- public int? Activityid { get; set; }
-
- public int? Jhuriid { get; set; }
-}
diff --git a/demo_2023/Models/ValidActivityModerator.cs b/demo_2023/Models/ValidActivityModerator.cs
deleted file mode 100644
index 22818ed..0000000
--- a/demo_2023/Models/ValidActivityModerator.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-using System;
-using System.Collections.Generic;
-
-namespace demo_2023.Models;
-
-public partial class ValidActivityModerator
-{
- public int? Activityid { get; set; }
-
- public int? Moderatorid { get; set; }
-}
diff --git a/demo_2023/Models/ValidActivityWinner.cs b/demo_2023/Models/ValidActivityWinner.cs
deleted file mode 100644
index d51d7ae..0000000
--- a/demo_2023/Models/ValidActivityWinner.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-using System;
-using System.Collections.Generic;
-
-namespace demo_2023.Models;
-
-public partial class ValidActivityWinner
-{
- public int? Activityid { get; set; }
-
- public int? Winnerid { get; set; }
-}
diff --git a/demo_2023/bin/Debug/net8.0/demo_2023.dll b/demo_2023/bin/Debug/net8.0/demo_2023.dll
index 2c72fe2..5f7bcf7 100644
Binary files a/demo_2023/bin/Debug/net8.0/demo_2023.dll and b/demo_2023/bin/Debug/net8.0/demo_2023.dll differ
diff --git a/demo_2023/bin/Debug/net8.0/demo_2023.pdb b/demo_2023/bin/Debug/net8.0/demo_2023.pdb
index dff22bc..214ea98 100644
Binary files a/demo_2023/bin/Debug/net8.0/demo_2023.pdb and b/demo_2023/bin/Debug/net8.0/demo_2023.pdb differ
diff --git a/demo_2023/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache b/demo_2023/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache
index 45bafce..3501f3f 100644
--- a/demo_2023/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache
+++ b/demo_2023/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache
@@ -1 +1 @@
-255e2bb05024b47bb75baa7f4ad8e9af6224215658c49e336aac6f08a3923708
+1c683b51456b3d77e40259b53be800033724d02baf9373901805160abf21a966
diff --git a/demo_2023/obj/Debug/net8.0/Avalonia/demo_2023.dll b/demo_2023/obj/Debug/net8.0/Avalonia/demo_2023.dll
index 2c72fe2..5f7bcf7 100644
Binary files a/demo_2023/obj/Debug/net8.0/Avalonia/demo_2023.dll and b/demo_2023/obj/Debug/net8.0/Avalonia/demo_2023.dll differ
diff --git a/demo_2023/obj/Debug/net8.0/Avalonia/demo_2023.pdb b/demo_2023/obj/Debug/net8.0/Avalonia/demo_2023.pdb
index dff22bc..214ea98 100644
Binary files a/demo_2023/obj/Debug/net8.0/Avalonia/demo_2023.pdb and b/demo_2023/obj/Debug/net8.0/Avalonia/demo_2023.pdb differ
diff --git a/demo_2023/obj/Debug/net8.0/Avalonia/references b/demo_2023/obj/Debug/net8.0/Avalonia/references
index 040f87e..d862d2a 100644
--- a/demo_2023/obj/Debug/net8.0/Avalonia/references
+++ b/demo_2023/obj/Debug/net8.0/Avalonia/references
@@ -1,206 +1,206 @@
-/home/localuser/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Base.dll
-/home/localuser/.nuget/packages/avalonia.controls.colorpicker/11.2.1/lib/net8.0/Avalonia.Controls.ColorPicker.dll
-/home/localuser/.nuget/packages/avalonia.controls.datagrid/11.2.1/lib/net8.0/Avalonia.Controls.DataGrid.dll
-/home/localuser/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Controls.dll
-/home/localuser/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.DesignerSupport.dll
-/home/localuser/.nuget/packages/avalonia.desktop/11.2.1/lib/net8.0/Avalonia.Desktop.dll
-/home/localuser/.nuget/packages/avalonia.diagnostics/11.2.1/lib/net8.0/Avalonia.Diagnostics.dll
-/home/localuser/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Dialogs.dll
-/home/localuser/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.dll
-/home/localuser/.nuget/packages/avalonia.fonts.inter/11.2.1/lib/net8.0/Avalonia.Fonts.Inter.dll
-/home/localuser/.nuget/packages/avalonia.freedesktop/11.2.1/lib/net8.0/Avalonia.FreeDesktop.dll
-/home/localuser/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Markup.dll
-/home/localuser/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Markup.Xaml.dll
-/home/localuser/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Metal.dll
-/home/localuser/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.MicroCom.dll
-/home/localuser/.nuget/packages/avalonia.native/11.2.1/lib/net8.0/Avalonia.Native.dll
-/home/localuser/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.OpenGL.dll
-/home/localuser/.nuget/packages/avalonia.remote.protocol/11.2.1/lib/net8.0/Avalonia.Remote.Protocol.dll
-/home/localuser/.nuget/packages/avalonia.skia/11.2.1/lib/net8.0/Avalonia.Skia.dll
-/home/localuser/.nuget/packages/avalonia.themes.fluent/11.2.1/lib/net8.0/Avalonia.Themes.Fluent.dll
-/home/localuser/.nuget/packages/avalonia.themes.simple/11.2.1/lib/net8.0/Avalonia.Themes.Simple.dll
-/home/localuser/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Vulkan.dll
-/home/localuser/.nuget/packages/avalonia.win32/11.2.1/lib/net8.0/Avalonia.Win32.dll
-/home/localuser/.nuget/packages/avalonia.x11/11.2.1/lib/net8.0/Avalonia.X11.dll
-/home/localuser/.nuget/packages/harfbuzzsharp/7.3.0.2/lib/net6.0/HarfBuzzSharp.dll
-/home/localuser/.nuget/packages/microcom.runtime/0.11.0/lib/net5.0/MicroCom.Runtime.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/Microsoft.CSharp.dll
-/home/localuser/.nuget/packages/microsoft.entityframeworkcore.abstractions/8.0.10/lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll
-/home/localuser/.nuget/packages/microsoft.entityframeworkcore/8.0.10/lib/net8.0/Microsoft.EntityFrameworkCore.dll
-/home/localuser/.nuget/packages/microsoft.entityframeworkcore.relational/8.0.10/lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll
-/home/localuser/.nuget/packages/microsoft.extensions.caching.abstractions/8.0.0/lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll
-/home/localuser/.nuget/packages/microsoft.extensions.caching.memory/8.0.1/lib/net8.0/Microsoft.Extensions.Caching.Memory.dll
-/home/localuser/.nuget/packages/microsoft.extensions.configuration.abstractions/8.0.0/lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll
-/home/localuser/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/8.0.2/lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll
-/home/localuser/.nuget/packages/microsoft.extensions.dependencyinjection/8.0.1/lib/net8.0/Microsoft.Extensions.DependencyInjection.dll
-/home/localuser/.nuget/packages/microsoft.extensions.logging.abstractions/8.0.2/lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll
-/home/localuser/.nuget/packages/microsoft.extensions.logging/8.0.1/lib/net8.0/Microsoft.Extensions.Logging.dll
-/home/localuser/.nuget/packages/microsoft.extensions.options/8.0.2/lib/net8.0/Microsoft.Extensions.Options.dll
-/home/localuser/.nuget/packages/microsoft.extensions.primitives/8.0.0/lib/net8.0/Microsoft.Extensions.Primitives.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/Microsoft.VisualBasic.Core.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/Microsoft.VisualBasic.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/Microsoft.Win32.Primitives.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/Microsoft.Win32.Registry.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/mscorlib.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/netstandard.dll
-/home/localuser/.nuget/packages/npgsql/8.0.5/lib/net8.0/Npgsql.dll
-/home/localuser/.nuget/packages/npgsql.entityframeworkcore.postgresql/8.0.10/lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll
-/home/localuser/.nuget/packages/skiasharp/2.88.8/lib/net6.0/SkiaSharp.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.AppContext.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Buffers.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Collections.Concurrent.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Collections.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Collections.Immutable.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Collections.NonGeneric.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Collections.Specialized.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.ComponentModel.Annotations.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.ComponentModel.DataAnnotations.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.ComponentModel.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.ComponentModel.EventBasedAsync.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.ComponentModel.Primitives.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.ComponentModel.TypeConverter.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Configuration.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Console.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Core.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Data.Common.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Data.DataSetExtensions.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Data.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Diagnostics.Contracts.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Diagnostics.Debug.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Diagnostics.DiagnosticSource.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Diagnostics.FileVersionInfo.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Diagnostics.Process.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Diagnostics.StackTrace.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Diagnostics.TextWriterTraceListener.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Diagnostics.Tools.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Diagnostics.TraceSource.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Diagnostics.Tracing.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Drawing.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Drawing.Primitives.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Dynamic.Runtime.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Formats.Asn1.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Formats.Tar.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Globalization.Calendars.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Globalization.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Globalization.Extensions.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.Compression.Brotli.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.Compression.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.Compression.FileSystem.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.Compression.ZipFile.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.FileSystem.AccessControl.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.FileSystem.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.FileSystem.DriveInfo.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.FileSystem.Primitives.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.FileSystem.Watcher.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.IsolatedStorage.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.MemoryMappedFiles.dll
-/home/localuser/.nuget/packages/system.io.pipelines/8.0.0/lib/net8.0/System.IO.Pipelines.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.Pipes.AccessControl.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.Pipes.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.IO.UnmanagedMemoryStream.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Linq.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Linq.Expressions.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Linq.Parallel.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Linq.Queryable.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Memory.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.Http.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.Http.Json.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.HttpListener.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.Mail.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.NameResolution.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.NetworkInformation.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.Ping.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.Primitives.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.Quic.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.Requests.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.Security.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.ServicePoint.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.Sockets.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.WebClient.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.WebHeaderCollection.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.WebProxy.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.WebSockets.Client.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.WebSockets.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Numerics.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Numerics.Vectors.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.ObjectModel.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Reflection.DispatchProxy.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Reflection.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Reflection.Emit.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Reflection.Emit.ILGeneration.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Reflection.Emit.Lightweight.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Reflection.Extensions.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Reflection.Metadata.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Reflection.Primitives.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Reflection.TypeExtensions.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Resources.Reader.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Resources.ResourceManager.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Resources.Writer.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Runtime.CompilerServices.Unsafe.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Runtime.CompilerServices.VisualC.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Runtime.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Runtime.Extensions.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Runtime.Handles.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Runtime.InteropServices.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Runtime.InteropServices.JavaScript.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Runtime.InteropServices.RuntimeInformation.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Runtime.Intrinsics.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Runtime.Loader.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Runtime.Numerics.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Runtime.Serialization.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Runtime.Serialization.Formatters.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Runtime.Serialization.Json.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Runtime.Serialization.Primitives.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Runtime.Serialization.Xml.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Security.AccessControl.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Security.Claims.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Security.Cryptography.Algorithms.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Security.Cryptography.Cng.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Security.Cryptography.Csp.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Security.Cryptography.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Security.Cryptography.Encoding.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Security.Cryptography.OpenSsl.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Security.Cryptography.Primitives.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Security.Cryptography.X509Certificates.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Security.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Security.Principal.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Security.Principal.Windows.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Security.SecureString.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.ServiceModel.Web.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.ServiceProcess.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Text.Encoding.CodePages.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Text.Encoding.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Text.Encoding.Extensions.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Text.Encodings.Web.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Text.Json.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Text.RegularExpressions.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Threading.Channels.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Threading.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Threading.Overlapped.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Threading.Tasks.Dataflow.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Threading.Tasks.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Threading.Tasks.Extensions.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Threading.Tasks.Parallel.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Threading.Thread.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Threading.ThreadPool.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Threading.Timer.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Transactions.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Transactions.Local.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.ValueTuple.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Web.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Web.HttpUtility.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Windows.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Xml.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Xml.Linq.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Xml.ReaderWriter.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Xml.Serialization.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Xml.XDocument.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Xml.XmlDocument.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Xml.XmlSerializer.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Xml.XPath.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Xml.XPath.XDocument.dll
-/home/localuser/.nuget/packages/tmds.dbus.protocol/0.20.0/lib/net8.0/Tmds.DBus.Protocol.dll
-/home/localuser/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/WindowsBase.dll
+/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
diff --git a/demo_2023/obj/Debug/net8.0/Avalonia/resources b/demo_2023/obj/Debug/net8.0/Avalonia/resources
index 2677c57..6f352eb 100644
Binary files a/demo_2023/obj/Debug/net8.0/Avalonia/resources and b/demo_2023/obj/Debug/net8.0/Avalonia/resources differ
diff --git a/demo_2023/obj/Debug/net8.0/demo_2023.AssemblyInfo.cs b/demo_2023/obj/Debug/net8.0/demo_2023.AssemblyInfo.cs
index 0a3ac83..45a37ad 100644
--- a/demo_2023/obj/Debug/net8.0/demo_2023.AssemblyInfo.cs
+++ b/demo_2023/obj/Debug/net8.0/demo_2023.AssemblyInfo.cs
@@ -13,7 +13,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("demo_2023")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+5aad98b68d2a1940b40b1fe61c1c3fb871c4d2da")]
[assembly: System.Reflection.AssemblyProductAttribute("demo_2023")]
[assembly: System.Reflection.AssemblyTitleAttribute("demo_2023")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
diff --git a/demo_2023/obj/Debug/net8.0/demo_2023.AssemblyInfoInputs.cache b/demo_2023/obj/Debug/net8.0/demo_2023.AssemblyInfoInputs.cache
index c181794..b0e9e2e 100644
--- a/demo_2023/obj/Debug/net8.0/demo_2023.AssemblyInfoInputs.cache
+++ b/demo_2023/obj/Debug/net8.0/demo_2023.AssemblyInfoInputs.cache
@@ -1 +1 @@
-478f5aef4a53058de54ec2ca88a2514967eb498295379fb694be392af5661cde
+2a13e053bdf7101e8c013064fab6e315e29b6132025d1be3e8d9cf659e9b4612
diff --git a/demo_2023/obj/Debug/net8.0/demo_2023.GeneratedMSBuildEditorConfig.editorconfig b/demo_2023/obj/Debug/net8.0/demo_2023.GeneratedMSBuildEditorConfig.editorconfig
index 5e1c704..dd7881f 100644
--- a/demo_2023/obj/Debug/net8.0/demo_2023.GeneratedMSBuildEditorConfig.editorconfig
+++ b/demo_2023/obj/Debug/net8.0/demo_2023.GeneratedMSBuildEditorConfig.editorconfig
@@ -15,15 +15,15 @@ build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = demo_2023
-build_property.ProjectDir = /home/localuser/RiderProjects/demo_2023/demo_2023/
+build_property.ProjectDir = /home/class_student/RiderProjects/demo2023/demo_2023/
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
-[/home/localuser/RiderProjects/demo_2023/demo_2023/Additem.axaml]
+[/home/class_student/RiderProjects/demo2023/demo_2023/Additem.axaml]
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
-[/home/localuser/RiderProjects/demo_2023/demo_2023/App.axaml]
+[/home/class_student/RiderProjects/demo2023/demo_2023/App.axaml]
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
-[/home/localuser/RiderProjects/demo_2023/demo_2023/MainWindow.axaml]
+[/home/class_student/RiderProjects/demo2023/demo_2023/MainWindow.axaml]
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
diff --git a/demo_2023/obj/Debug/net8.0/demo_2023.assets.cache b/demo_2023/obj/Debug/net8.0/demo_2023.assets.cache
index c40ea12..c41d938 100644
Binary files a/demo_2023/obj/Debug/net8.0/demo_2023.assets.cache and b/demo_2023/obj/Debug/net8.0/demo_2023.assets.cache differ
diff --git a/demo_2023/obj/Debug/net8.0/demo_2023.csproj.AssemblyReference.cache b/demo_2023/obj/Debug/net8.0/demo_2023.csproj.AssemblyReference.cache
index 5f0e139..a306013 100644
Binary files a/demo_2023/obj/Debug/net8.0/demo_2023.csproj.AssemblyReference.cache and b/demo_2023/obj/Debug/net8.0/demo_2023.csproj.AssemblyReference.cache differ
diff --git a/demo_2023/obj/Debug/net8.0/demo_2023.csproj.CoreCompileInputs.cache b/demo_2023/obj/Debug/net8.0/demo_2023.csproj.CoreCompileInputs.cache
index bb4524b..b9d629e 100644
--- a/demo_2023/obj/Debug/net8.0/demo_2023.csproj.CoreCompileInputs.cache
+++ b/demo_2023/obj/Debug/net8.0/demo_2023.csproj.CoreCompileInputs.cache
@@ -1 +1 @@
-a626b87b2588987b562e3308303e9416c3e3648e1862cb9989426e2acf087880
+e627e2c5db8d231378989fdc6674168f7a50ac90d16215e27e11c7c600b62da9
diff --git a/demo_2023/obj/Debug/net8.0/demo_2023.csproj.FileListAbsolute.txt b/demo_2023/obj/Debug/net8.0/demo_2023.csproj.FileListAbsolute.txt
index 51bf3da..4a9f29f 100644
--- a/demo_2023/obj/Debug/net8.0/demo_2023.csproj.FileListAbsolute.txt
+++ b/demo_2023/obj/Debug/net8.0/demo_2023.csproj.FileListAbsolute.txt
@@ -146,3 +146,154 @@
/home/localuser/RiderProjects/demo_2023/demo_2023/obj/Debug/net8.0/demo_2023.csproj.Up2Date
/home/localuser/RiderProjects/demo_2023/demo_2023/obj/Debug/net8.0/demo_2023.genruntimeconfig.cache
/home/localuser/RiderProjects/demo_2023/demo_2023/obj/Debug/net8.0/ref/demo_2023.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/demo_2023
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/demo_2023.deps.json
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/demo_2023.runtimeconfig.json
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/demo_2023.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/demo_2023.pdb
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Avalonia.Base.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Avalonia.Controls.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Avalonia.DesignerSupport.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Avalonia.Dialogs.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Avalonia.Markup.Xaml.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Avalonia.Markup.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Avalonia.Metal.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Avalonia.MicroCom.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Avalonia.OpenGL.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Avalonia.Vulkan.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Avalonia.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Avalonia.Controls.ColorPicker.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Avalonia.Controls.DataGrid.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Avalonia.Desktop.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Avalonia.Diagnostics.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Avalonia.Fonts.Inter.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Avalonia.FreeDesktop.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Avalonia.Native.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Avalonia.Remote.Protocol.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Avalonia.Skia.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Avalonia.Themes.Fluent.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Avalonia.Themes.Simple.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Avalonia.Win32.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Avalonia.X11.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/HarfBuzzSharp.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Humanizer.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/MicroCom.Runtime.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Microsoft.Extensions.Caching.Abstractions.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Microsoft.Extensions.Options.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Microsoft.Extensions.Primitives.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Mono.TextTemplating.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Npgsql.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/SkiaSharp.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/System.CodeDom.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/System.Composition.AttributedModel.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/System.Composition.Convention.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/System.Composition.Hosting.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/System.Composition.Runtime.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/System.Composition.TypedParts.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/System.IO.Pipelines.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/Tmds.DBus.Protocol.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/runtimes/win-arm64/native/av_libglesv2.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/runtimes/win-x64/native/av_libglesv2.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/runtimes/win-x86/native/av_libglesv2.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/runtimes/osx/native/libAvaloniaNative.dylib
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/runtimes/linux-arm/native/libHarfBuzzSharp.so
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/runtimes/linux-x64/native/libHarfBuzzSharp.so
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/runtimes/osx/native/libHarfBuzzSharp.dylib
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/runtimes/win-x64/native/libHarfBuzzSharp.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/runtimes/win-x86/native/libHarfBuzzSharp.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/runtimes/linux-arm/native/libSkiaSharp.so
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/runtimes/linux-arm64/native/libSkiaSharp.so
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libSkiaSharp.so
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/runtimes/linux-x64/native/libSkiaSharp.so
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/runtimes/osx/native/libSkiaSharp.dylib
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/runtimes/win-arm64/native/libSkiaSharp.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/runtimes/win-x64/native/libSkiaSharp.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/bin/Debug/net8.0/runtimes/win-x86/native/libSkiaSharp.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/obj/Debug/net8.0/demo_2023.csproj.AssemblyReference.cache
+/home/class_student/RiderProjects/demo2023/demo_2023/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache
+/home/class_student/RiderProjects/demo2023/demo_2023/obj/Debug/net8.0/Avalonia/resources
+/home/class_student/RiderProjects/demo2023/demo_2023/obj/Debug/net8.0/demo_2023.GeneratedMSBuildEditorConfig.editorconfig
+/home/class_student/RiderProjects/demo2023/demo_2023/obj/Debug/net8.0/demo_2023.AssemblyInfoInputs.cache
+/home/class_student/RiderProjects/demo2023/demo_2023/obj/Debug/net8.0/demo_2023.AssemblyInfo.cs
+/home/class_student/RiderProjects/demo2023/demo_2023/obj/Debug/net8.0/demo_2023.csproj.CoreCompileInputs.cache
+/home/class_student/RiderProjects/demo2023/demo_2023/obj/Debug/net8.0/Avalonia/demo_2023.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/obj/Debug/net8.0/Avalonia/demo_2023.pdb
+/home/class_student/RiderProjects/demo2023/demo_2023/obj/Debug/net8.0/refint/Avalonia/demo_2023.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/obj/Debug/net8.0/demo_2023.csproj.Up2Date
+/home/class_student/RiderProjects/demo2023/demo_2023/obj/Debug/net8.0/demo_2023.genruntimeconfig.cache
+/home/class_student/RiderProjects/demo2023/demo_2023/obj/Debug/net8.0/ref/demo_2023.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/obj/Debug/net8.0/demo_2023.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/obj/Debug/net8.0/refint/demo_2023.dll
+/home/class_student/RiderProjects/demo2023/demo_2023/obj/Debug/net8.0/demo_2023.pdb
diff --git a/demo_2023/obj/Debug/net8.0/demo_2023.dll b/demo_2023/obj/Debug/net8.0/demo_2023.dll
index b18e4dd..57c977f 100644
Binary files a/demo_2023/obj/Debug/net8.0/demo_2023.dll and b/demo_2023/obj/Debug/net8.0/demo_2023.dll differ
diff --git a/demo_2023/obj/Debug/net8.0/demo_2023.genruntimeconfig.cache b/demo_2023/obj/Debug/net8.0/demo_2023.genruntimeconfig.cache
index ca779b6..8d18632 100644
--- a/demo_2023/obj/Debug/net8.0/demo_2023.genruntimeconfig.cache
+++ b/demo_2023/obj/Debug/net8.0/demo_2023.genruntimeconfig.cache
@@ -1 +1 @@
-458bfb054fc573cfd2879ccfdfe0e1f88aa8fcf01b831ff4d37e8b52dce9bfec
+d982923f257cdc7cb5d96960ecf571a63f40bbf123d6446aa2b1a2dbf26c7525
diff --git a/demo_2023/obj/Debug/net8.0/demo_2023.pdb b/demo_2023/obj/Debug/net8.0/demo_2023.pdb
index 0d039ad..6551164 100644
Binary files a/demo_2023/obj/Debug/net8.0/demo_2023.pdb and b/demo_2023/obj/Debug/net8.0/demo_2023.pdb differ
diff --git a/demo_2023/obj/Debug/net8.0/ref/demo_2023.dll b/demo_2023/obj/Debug/net8.0/ref/demo_2023.dll
index 559081b..dff406c 100644
Binary files a/demo_2023/obj/Debug/net8.0/ref/demo_2023.dll and b/demo_2023/obj/Debug/net8.0/ref/demo_2023.dll differ
diff --git a/demo_2023/obj/Debug/net8.0/refint/Avalonia/demo_2023.dll b/demo_2023/obj/Debug/net8.0/refint/Avalonia/demo_2023.dll
index 559081b..dff406c 100644
Binary files a/demo_2023/obj/Debug/net8.0/refint/Avalonia/demo_2023.dll and b/demo_2023/obj/Debug/net8.0/refint/Avalonia/demo_2023.dll differ
diff --git a/demo_2023/obj/Debug/net8.0/refint/demo_2023.dll b/demo_2023/obj/Debug/net8.0/refint/demo_2023.dll
index f6f9d4e..8f13797 100644
Binary files a/demo_2023/obj/Debug/net8.0/refint/demo_2023.dll and b/demo_2023/obj/Debug/net8.0/refint/demo_2023.dll differ
diff --git a/demo_2023/obj/demo_2023.csproj.nuget.dgspec.json b/demo_2023/obj/demo_2023.csproj.nuget.dgspec.json
index 9ab5b19..b8cfa33 100644
--- a/demo_2023/obj/demo_2023.csproj.nuget.dgspec.json
+++ b/demo_2023/obj/demo_2023.csproj.nuget.dgspec.json
@@ -1,20 +1,20 @@
{
"format": 1,
"restore": {
- "/home/localuser/RiderProjects/demo_2023/demo_2023/demo_2023.csproj": {}
+ "/home/class_student/RiderProjects/demo2023/demo_2023/demo_2023.csproj": {}
},
"projects": {
- "/home/localuser/RiderProjects/demo_2023/demo_2023/demo_2023.csproj": {
+ "/home/class_student/RiderProjects/demo2023/demo_2023/demo_2023.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/home/localuser/RiderProjects/demo_2023/demo_2023/demo_2023.csproj",
+ "projectUniqueName": "/home/class_student/RiderProjects/demo2023/demo_2023/demo_2023.csproj",
"projectName": "demo_2023",
- "projectPath": "/home/localuser/RiderProjects/demo_2023/demo_2023/demo_2023.csproj",
- "packagesPath": "/home/localuser/.nuget/packages/",
- "outputPath": "/home/localuser/RiderProjects/demo_2023/demo_2023/obj/",
+ "projectPath": "/home/class_student/RiderProjects/demo2023/demo_2023/demo_2023.csproj",
+ "packagesPath": "/home/class_student/.nuget/packages/",
+ "outputPath": "/home/class_student/RiderProjects/demo2023/demo_2023/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
- "/home/localuser/.nuget/NuGet/NuGet.Config"
+ "/home/class_student/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net8.0"
@@ -94,7 +94,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "/home/localuser/.dotnet/sdk/8.0.405/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/home/class_student/.dotnet/sdk/8.0.405/PortableRuntimeIdentifierGraph.json"
}
}
}
diff --git a/demo_2023/obj/demo_2023.csproj.nuget.g.props b/demo_2023/obj/demo_2023.csproj.nuget.g.props
index 4d797b6..7b303bc 100644
--- a/demo_2023/obj/demo_2023.csproj.nuget.g.props
+++ b/demo_2023/obj/demo_2023.csproj.nuget.g.props
@@ -4,13 +4,13 @@
True
NuGet
$(MSBuildThisFileDirectory)project.assets.json
- /home/localuser/.nuget/packages/
- /home/localuser/.nuget/packages/
+ /home/class_student/.nuget/packages/
+ /home/class_student/.nuget/packages/
PackageReference
6.12.2
-
+
@@ -20,8 +20,8 @@
- /home/localuser/.nuget/packages/microsoft.codeanalysis.analyzers/3.3.3
- /home/localuser/.nuget/packages/avalonia.buildservices/0.0.29
- /home/localuser/.nuget/packages/avalonia/11.2.1
+ /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
\ No newline at end of file
diff --git a/demo_2023/obj/project.assets.json b/demo_2023/obj/project.assets.json
index 53c1134..3bbd2a0 100644
--- a/demo_2023/obj/project.assets.json
+++ b/demo_2023/obj/project.assets.json
@@ -3484,19 +3484,19 @@
]
},
"packageFolders": {
- "/home/localuser/.nuget/packages/": {}
+ "/home/class_student/.nuget/packages/": {}
},
"project": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "/home/localuser/RiderProjects/demo_2023/demo_2023/demo_2023.csproj",
+ "projectUniqueName": "/home/class_student/RiderProjects/demo2023/demo_2023/demo_2023.csproj",
"projectName": "demo_2023",
- "projectPath": "/home/localuser/RiderProjects/demo_2023/demo_2023/demo_2023.csproj",
- "packagesPath": "/home/localuser/.nuget/packages/",
- "outputPath": "/home/localuser/RiderProjects/demo_2023/demo_2023/obj/",
+ "projectPath": "/home/class_student/RiderProjects/demo2023/demo_2023/demo_2023.csproj",
+ "packagesPath": "/home/class_student/.nuget/packages/",
+ "outputPath": "/home/class_student/RiderProjects/demo2023/demo_2023/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
- "/home/localuser/.nuget/NuGet/NuGet.Config"
+ "/home/class_student/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net8.0"
@@ -3576,7 +3576,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "/home/localuser/.dotnet/sdk/8.0.405/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/home/class_student/.dotnet/sdk/8.0.405/PortableRuntimeIdentifierGraph.json"
}
}
}
diff --git a/demo_2023/obj/project.nuget.cache b/demo_2023/obj/project.nuget.cache
index 4103b69..bf76b10 100644
--- a/demo_2023/obj/project.nuget.cache
+++ b/demo_2023/obj/project.nuget.cache
@@ -1,75 +1,75 @@
{
"version": 2,
- "dgSpecHash": "qTXgPSNN87E=",
+ "dgSpecHash": "xDSJ++GwP/U=",
"success": true,
- "projectFilePath": "/home/localuser/RiderProjects/demo_2023/demo_2023/demo_2023.csproj",
+ "projectFilePath": "/home/class_student/RiderProjects/demo2023/demo_2023/demo_2023.csproj",
"expectedPackageFiles": [
- "/home/localuser/.nuget/packages/avalonia/11.2.1/avalonia.11.2.1.nupkg.sha512",
- "/home/localuser/.nuget/packages/avalonia.angle.windows.natives/2.1.22045.20230930/avalonia.angle.windows.natives.2.1.22045.20230930.nupkg.sha512",
- "/home/localuser/.nuget/packages/avalonia.buildservices/0.0.29/avalonia.buildservices.0.0.29.nupkg.sha512",
- "/home/localuser/.nuget/packages/avalonia.controls.colorpicker/11.2.1/avalonia.controls.colorpicker.11.2.1.nupkg.sha512",
- "/home/localuser/.nuget/packages/avalonia.controls.datagrid/11.2.1/avalonia.controls.datagrid.11.2.1.nupkg.sha512",
- "/home/localuser/.nuget/packages/avalonia.desktop/11.2.1/avalonia.desktop.11.2.1.nupkg.sha512",
- "/home/localuser/.nuget/packages/avalonia.diagnostics/11.2.1/avalonia.diagnostics.11.2.1.nupkg.sha512",
- "/home/localuser/.nuget/packages/avalonia.fonts.inter/11.2.1/avalonia.fonts.inter.11.2.1.nupkg.sha512",
- "/home/localuser/.nuget/packages/avalonia.freedesktop/11.2.1/avalonia.freedesktop.11.2.1.nupkg.sha512",
- "/home/localuser/.nuget/packages/avalonia.native/11.2.1/avalonia.native.11.2.1.nupkg.sha512",
- "/home/localuser/.nuget/packages/avalonia.remote.protocol/11.2.1/avalonia.remote.protocol.11.2.1.nupkg.sha512",
- "/home/localuser/.nuget/packages/avalonia.skia/11.2.1/avalonia.skia.11.2.1.nupkg.sha512",
- "/home/localuser/.nuget/packages/avalonia.themes.fluent/11.2.1/avalonia.themes.fluent.11.2.1.nupkg.sha512",
- "/home/localuser/.nuget/packages/avalonia.themes.simple/11.2.1/avalonia.themes.simple.11.2.1.nupkg.sha512",
- "/home/localuser/.nuget/packages/avalonia.win32/11.2.1/avalonia.win32.11.2.1.nupkg.sha512",
- "/home/localuser/.nuget/packages/avalonia.x11/11.2.1/avalonia.x11.11.2.1.nupkg.sha512",
- "/home/localuser/.nuget/packages/harfbuzzsharp/7.3.0.2/harfbuzzsharp.7.3.0.2.nupkg.sha512",
- "/home/localuser/.nuget/packages/harfbuzzsharp.nativeassets.linux/7.3.0.2/harfbuzzsharp.nativeassets.linux.7.3.0.2.nupkg.sha512",
- "/home/localuser/.nuget/packages/harfbuzzsharp.nativeassets.macos/7.3.0.2/harfbuzzsharp.nativeassets.macos.7.3.0.2.nupkg.sha512",
- "/home/localuser/.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/localuser/.nuget/packages/harfbuzzsharp.nativeassets.win32/7.3.0.2/harfbuzzsharp.nativeassets.win32.7.3.0.2.nupkg.sha512",
- "/home/localuser/.nuget/packages/humanizer.core/2.14.1/humanizer.core.2.14.1.nupkg.sha512",
- "/home/localuser/.nuget/packages/microcom.runtime/0.11.0/microcom.runtime.0.11.0.nupkg.sha512",
- "/home/localuser/.nuget/packages/microsoft.bcl.asyncinterfaces/6.0.0/microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512",
- "/home/localuser/.nuget/packages/microsoft.codeanalysis.analyzers/3.3.3/microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512",
- "/home/localuser/.nuget/packages/microsoft.codeanalysis.common/4.5.0/microsoft.codeanalysis.common.4.5.0.nupkg.sha512",
- "/home/localuser/.nuget/packages/microsoft.codeanalysis.csharp/4.5.0/microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512",
- "/home/localuser/.nuget/packages/microsoft.codeanalysis.csharp.workspaces/4.5.0/microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512",
- "/home/localuser/.nuget/packages/microsoft.codeanalysis.workspaces.common/4.5.0/microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512",
- "/home/localuser/.nuget/packages/microsoft.entityframeworkcore/8.0.10/microsoft.entityframeworkcore.8.0.10.nupkg.sha512",
- "/home/localuser/.nuget/packages/microsoft.entityframeworkcore.abstractions/8.0.10/microsoft.entityframeworkcore.abstractions.8.0.10.nupkg.sha512",
- "/home/localuser/.nuget/packages/microsoft.entityframeworkcore.analyzers/8.0.10/microsoft.entityframeworkcore.analyzers.8.0.10.nupkg.sha512",
- "/home/localuser/.nuget/packages/microsoft.entityframeworkcore.design/8.0.10/microsoft.entityframeworkcore.design.8.0.10.nupkg.sha512",
- "/home/localuser/.nuget/packages/microsoft.entityframeworkcore.relational/8.0.10/microsoft.entityframeworkcore.relational.8.0.10.nupkg.sha512",
- "/home/localuser/.nuget/packages/microsoft.extensions.caching.abstractions/8.0.0/microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512",
- "/home/localuser/.nuget/packages/microsoft.extensions.caching.memory/8.0.1/microsoft.extensions.caching.memory.8.0.1.nupkg.sha512",
- "/home/localuser/.nuget/packages/microsoft.extensions.configuration.abstractions/8.0.0/microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512",
- "/home/localuser/.nuget/packages/microsoft.extensions.dependencyinjection/8.0.1/microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512",
- "/home/localuser/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/8.0.2/microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512",
- "/home/localuser/.nuget/packages/microsoft.extensions.dependencymodel/8.0.2/microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512",
- "/home/localuser/.nuget/packages/microsoft.extensions.logging/8.0.1/microsoft.extensions.logging.8.0.1.nupkg.sha512",
- "/home/localuser/.nuget/packages/microsoft.extensions.logging.abstractions/8.0.2/microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512",
- "/home/localuser/.nuget/packages/microsoft.extensions.options/8.0.2/microsoft.extensions.options.8.0.2.nupkg.sha512",
- "/home/localuser/.nuget/packages/microsoft.extensions.primitives/8.0.0/microsoft.extensions.primitives.8.0.0.nupkg.sha512",
- "/home/localuser/.nuget/packages/mono.texttemplating/2.2.1/mono.texttemplating.2.2.1.nupkg.sha512",
- "/home/localuser/.nuget/packages/npgsql/8.0.5/npgsql.8.0.5.nupkg.sha512",
- "/home/localuser/.nuget/packages/npgsql.entityframeworkcore.postgresql/8.0.10/npgsql.entityframeworkcore.postgresql.8.0.10.nupkg.sha512",
- "/home/localuser/.nuget/packages/skiasharp/2.88.8/skiasharp.2.88.8.nupkg.sha512",
- "/home/localuser/.nuget/packages/skiasharp.nativeassets.linux/2.88.8/skiasharp.nativeassets.linux.2.88.8.nupkg.sha512",
- "/home/localuser/.nuget/packages/skiasharp.nativeassets.macos/2.88.8/skiasharp.nativeassets.macos.2.88.8.nupkg.sha512",
- "/home/localuser/.nuget/packages/skiasharp.nativeassets.webassembly/2.88.8/skiasharp.nativeassets.webassembly.2.88.8.nupkg.sha512",
- "/home/localuser/.nuget/packages/skiasharp.nativeassets.win32/2.88.8/skiasharp.nativeassets.win32.2.88.8.nupkg.sha512",
- "/home/localuser/.nuget/packages/system.codedom/4.4.0/system.codedom.4.4.0.nupkg.sha512",
- "/home/localuser/.nuget/packages/system.collections.immutable/6.0.0/system.collections.immutable.6.0.0.nupkg.sha512",
- "/home/localuser/.nuget/packages/system.composition/6.0.0/system.composition.6.0.0.nupkg.sha512",
- "/home/localuser/.nuget/packages/system.composition.attributedmodel/6.0.0/system.composition.attributedmodel.6.0.0.nupkg.sha512",
- "/home/localuser/.nuget/packages/system.composition.convention/6.0.0/system.composition.convention.6.0.0.nupkg.sha512",
- "/home/localuser/.nuget/packages/system.composition.hosting/6.0.0/system.composition.hosting.6.0.0.nupkg.sha512",
- "/home/localuser/.nuget/packages/system.composition.runtime/6.0.0/system.composition.runtime.6.0.0.nupkg.sha512",
- "/home/localuser/.nuget/packages/system.composition.typedparts/6.0.0/system.composition.typedparts.6.0.0.nupkg.sha512",
- "/home/localuser/.nuget/packages/system.io.pipelines/8.0.0/system.io.pipelines.8.0.0.nupkg.sha512",
- "/home/localuser/.nuget/packages/system.reflection.metadata/6.0.1/system.reflection.metadata.6.0.1.nupkg.sha512",
- "/home/localuser/.nuget/packages/system.runtime.compilerservices.unsafe/6.0.0/system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
- "/home/localuser/.nuget/packages/system.text.encoding.codepages/6.0.0/system.text.encoding.codepages.6.0.0.nupkg.sha512",
- "/home/localuser/.nuget/packages/system.threading.channels/6.0.0/system.threading.channels.6.0.0.nupkg.sha512",
- "/home/localuser/.nuget/packages/tmds.dbus.protocol/0.20.0/tmds.dbus.protocol.0.20.0.nupkg.sha512"
+ "/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"
],
"logs": []
}
\ No newline at end of file
diff --git a/demo_2023/obj/project.packagespec.json b/demo_2023/obj/project.packagespec.json
index 4ca7a70..690c1d3 100644
--- a/demo_2023/obj/project.packagespec.json
+++ b/demo_2023/obj/project.packagespec.json
@@ -1 +1 @@
-"restore":{"projectUniqueName":"/home/localuser/RiderProjects/demo_2023/demo_2023/demo_2023.csproj","projectName":"demo_2023","projectPath":"/home/localuser/RiderProjects/demo_2023/demo_2023/demo_2023.csproj","outputPath":"/home/localuser/RiderProjects/demo_2023/demo_2023/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/localuser/.dotnet/sdk/8.0.405/PortableRuntimeIdentifierGraph.json"}}
\ No newline at end of file
+"restore":{"projectUniqueName":"/home/class_student/RiderProjects/demo2023/demo_2023/demo_2023.csproj","projectName":"demo_2023","projectPath":"/home/class_student/RiderProjects/demo2023/demo_2023/demo_2023.csproj","outputPath":"/home/class_student/RiderProjects/demo2023/demo_2023/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
diff --git a/demo_2023/obj/rider.project.model.nuget.info b/demo_2023/obj/rider.project.model.nuget.info
index 70614f4..aea7d01 100644
--- a/demo_2023/obj/rider.project.model.nuget.info
+++ b/demo_2023/obj/rider.project.model.nuget.info
@@ -1 +1 @@
-17375317033807013
\ No newline at end of file
+17380564673993173
\ No newline at end of file
diff --git a/demo_2023/obj/rider.project.restore.info b/demo_2023/obj/rider.project.restore.info
index 70614f4..aea7d01 100644
--- a/demo_2023/obj/rider.project.restore.info
+++ b/demo_2023/obj/rider.project.restore.info
@@ -1 +1 @@
-17375317033807013
\ No newline at end of file
+17380564673993173
\ No newline at end of file