dead
This commit is contained in:
parent
5aad98b68d
commit
08742de811
@ -1,4 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings" defaultProject="true" />
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
@ -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">
|
||||
|
||||
<StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
|
||||
<TextBlock Text="Password"/>
|
||||
<TextBox Text="{Binding Password}"/>
|
||||
<TextBlock Text="Text"/>
|
||||
<TextBox Text="{Binding Fio}"/>
|
||||
</StackPanel>
|
||||
<DockPanel>
|
||||
|
||||
|
||||
<TextBlock Text="Регистрация жюри/ модератора" DockPanel.Dock="Top" HorizontalAlignment="Center" Margin="0,10,0,0"/>
|
||||
|
||||
|
||||
<Grid>
|
||||
|
||||
<StackPanel Orientation="Vertical" HorizontalAlignment="Left" Spacing="5" Margin="20,0,0,0">
|
||||
<TextBlock Text="Id Number:"/>
|
||||
<TextBox Width="200" HorizontalAlignment="Left"/>
|
||||
<TextBlock Text="ФИО:"/>
|
||||
<TextBox Width="200" HorizontalAlignment="Left"/>
|
||||
<TextBlock Text="Пол:"/>
|
||||
<ComboBox Width="200" HorizontalAlignment="Left"/>
|
||||
<TextBlock Text="Email:"/>
|
||||
<TextBox Width="200" HorizontalAlignment="Left"/>
|
||||
<TextBlock Text="Телефон:"/>
|
||||
<TextBox Width="200" HorizontalAlignment="Left"/>
|
||||
<TextBlock Text="Направление:"/>
|
||||
<TextBox Width="200" HorizontalAlignment="Left"/>
|
||||
<CheckBox Content="Прикрепить к мероприятию" HorizontalAlignment="Left"/>
|
||||
<TextBlock Text="Мероприятие:"/>
|
||||
<ComboBox Width="200" HorizontalAlignment="Left"/>
|
||||
</StackPanel>
|
||||
|
||||
|
||||
|
||||
<StackPanel Orientation="Vertical" HorizontalAlignment="Right" Spacing="5" >
|
||||
<TextBlock Text="Пароль:"/>
|
||||
<TextBox Width="200" Watermark="Password" Text="{Binding Password}"/>
|
||||
<TextBlock Text="Повтор пароля:"/>
|
||||
<TextBox Width="200" Text="{Binding ConfirmPassword}"/>
|
||||
<CheckBox Content="Видимый пароль" />
|
||||
<Button Content="Oк" Width="100" HorizontalAlignment="Center" />
|
||||
<Button Content="Отмена" Width="100" HorizontalAlignment="Center" />
|
||||
</StackPanel>
|
||||
</Grid>
|
||||
</DockPanel>
|
||||
</Window>
|
@ -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();
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
@ -1,6 +1,6 @@
|
||||
<Application xmlns="https://github.com/avaloniaui"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
x:Class="demo_2023.App"
|
||||
|
||||
RequestedThemeVariant="Default">
|
||||
<!-- "Default" ThemeVariant follows system theme variant. "Dark" or "Light" are other available options. -->
|
||||
|
||||
|
@ -11,43 +11,57 @@
|
||||
|
||||
<DockPanel>
|
||||
|
||||
<StackPanel Orientation="Horizontal" DockPanel.Dock="Top" HorizontalAlignment="Center">
|
||||
<Button Content="Add Item" Click="AddItem_OnClick"/>
|
||||
<StackPanel Orientation="Horizontal" DockPanel.Dock="Top" HorizontalAlignment="Center" Margin="5">
|
||||
<TextBlock Text = "Добро пожаловать!"/>
|
||||
</StackPanel>
|
||||
<StackPanel Orientation="Horizontal" DockPanel.Dock="Top" HorizontalAlignment="Right" Margin="5">
|
||||
<ComboBox Width="150" x:Name="Направление" Margin="5">
|
||||
<ComboBoxItem Content="IT"/>
|
||||
<ComboBoxItem Content="Чет еще"/>
|
||||
</ComboBox>
|
||||
<ComboBox Width="150" x:Name="Дата" Margin="5">
|
||||
<ComboBoxItem Content="Возрастание"/>
|
||||
<ComboBoxItem Content="Убывание"/>
|
||||
<ComboBoxItem Content="Все диапазоны"/>
|
||||
</ComboBox>
|
||||
<Button Content="Authorize" Click="Jury_reg"/>
|
||||
</StackPanel>
|
||||
|
||||
<StackPanel Orientation="Horizontal" DockPanel.Dock="Bottom" HorizontalAlignment="Center">
|
||||
<ListBox x:Name="EventListBox">
|
||||
<ListBox.ItemsPanel>
|
||||
<ItemsPanelTemplate>
|
||||
<UniformGrid Columns="1"></UniformGrid>
|
||||
</ItemsPanelTemplate>
|
||||
</ListBox.ItemsPanel>
|
||||
<ListBox.ItemTemplate>
|
||||
<DataTemplate>
|
||||
<Border BorderBrush="Gray" BorderThickness="1" Padding="10">
|
||||
<StackPanel Orientation="Horizontal" Spacing="10">
|
||||
<Image Width="100" Height="100" Source="{Binding Image}" VerticalAlignment="Center"/>
|
||||
<StackPanel>
|
||||
<TextBlock>
|
||||
<Run Text="Событие: "/>
|
||||
<Run Text="{Binding Sobitie}"/>
|
||||
</TextBlock>
|
||||
<TextBlock>
|
||||
<Run Text="Дата: "/>
|
||||
<Run Text="{Binding Date}"/>
|
||||
</TextBlock>
|
||||
<TextBlock>
|
||||
<Run Text="Город: "/>
|
||||
<Run Text="{Binding City}"/>
|
||||
</TextBlock>
|
||||
<TextBlock>
|
||||
<Run Text="Дни: "/>
|
||||
<Run Text="{Binding Days}"/>
|
||||
</TextBlock>
|
||||
</StackPanel>
|
||||
</StackPanel>
|
||||
</Border>
|
||||
</DataTemplate>
|
||||
</ListBox.ItemTemplate>
|
||||
</ListBox>
|
||||
</StackPanel>
|
||||
<TextBlock Text="Регистрация жюри/ модератора" DockPanel.Dock="Top" HorizontalAlignment="Center" Margin="0,10,0,0"/>
|
||||
|
||||
|
||||
<Grid>
|
||||
|
||||
<StackPanel Orientation="Vertical" HorizontalAlignment="Left" Spacing="5" Margin="20,0,0,0">
|
||||
<TextBlock Text="Id Number:"/>
|
||||
<TextBox Width="200" HorizontalAlignment="Left"/>
|
||||
<TextBlock Text="ФИО:"/>
|
||||
<TextBox Width="200" HorizontalAlignment="Left"/>
|
||||
<TextBlock Text="Пол:"/>
|
||||
<ComboBox Width="200" HorizontalAlignment="Left"/>
|
||||
<TextBlock Text="Email:"/>
|
||||
<TextBox Width="200" HorizontalAlignment="Left"/>
|
||||
<TextBlock Text="Телефон:"/>
|
||||
<TextBox Width="200" HorizontalAlignment="Left"/>
|
||||
<TextBlock Text="Направление:"/>
|
||||
<TextBox Width="200" HorizontalAlignment="Left"/>
|
||||
<CheckBox Content="Прикрепить к мероприятию" HorizontalAlignment="Left"/>
|
||||
<TextBlock Text="Мероприятие:"/>
|
||||
<ComboBox Width="200" HorizontalAlignment="Left"/>
|
||||
</StackPanel>
|
||||
|
||||
|
||||
|
||||
<StackPanel Orientation="Vertical" HorizontalAlignment="Right" Spacing="5" >
|
||||
<TextBlock Text="Пароль:"/>
|
||||
<TextBox Width="200" Watermark="Password" Text="{Binding Password}"/>
|
||||
<TextBlock Text="Повтор пароля:"/>
|
||||
<TextBox Width="200" Text="{Binding ConfirmPassword}"/>
|
||||
<CheckBox Content="Видимый пароль" />
|
||||
<Button Content="Oк" Width="100" HorizontalAlignment="Center" />
|
||||
<Button Content="Отмена" Width="100" HorizontalAlignment="Center" />
|
||||
</StackPanel>
|
||||
</Grid>
|
||||
</DockPanel>
|
||||
</Window>
|
@ -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<Event> events = new ObservableCollection<Event>();
|
||||
List<Event> 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);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
@ -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<Client> Moderators { get; set; } = new List<Client>();
|
||||
|
||||
public virtual ICollection<Client> Winners { get; set; } = new List<Client>();
|
||||
}
|
@ -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<Event> Events { get; set; } = new List<Event>();
|
||||
}
|
@ -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<Activity> Activities { get; set; } = new List<Activity>();
|
||||
|
||||
public virtual ICollection<Activity> ActivitiesNavigation { get; set; } = new List<Activity>();
|
||||
}
|
@ -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<Client> Clients { get; set; } = new List<Client>();
|
||||
}
|
@ -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!;
|
||||
}
|
@ -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!;
|
||||
}
|
@ -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; }
|
||||
}
|
@ -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; }
|
||||
}
|
@ -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; }
|
||||
}
|
@ -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<Client> Clients { get; set; } = new List<Client>();
|
||||
}
|
@ -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<User15Context> options)
|
||||
: base(options)
|
||||
{
|
||||
}
|
||||
|
||||
public virtual DbSet<Activity> Activities { get; set; }
|
||||
|
||||
public virtual DbSet<City> Cities { get; set; }
|
||||
|
||||
public virtual DbSet<Client> Clients { get; set; }
|
||||
|
||||
public virtual DbSet<Country> Countries { get; set; }
|
||||
|
||||
public virtual DbSet<Event> Events { get; set; }
|
||||
|
||||
public virtual DbSet<Eventactivity> Eventactivities { get; set; }
|
||||
|
||||
public virtual DbSet<Jhuriactivity> Jhuriactivities { get; set; }
|
||||
|
||||
public virtual DbSet<JuryEvent> JuryEvents { get; set; }
|
||||
|
||||
public virtual DbSet<ModerEvent> ModerEvents { get; set; }
|
||||
|
||||
public virtual DbSet<Role> Roles { get; set; }
|
||||
|
||||
public virtual DbSet<ValidActivityJhuri> ValidActivityJhuris { get; set; }
|
||||
|
||||
public virtual DbSet<ValidActivityModerator> ValidActivityModerators { get; set; }
|
||||
|
||||
public virtual DbSet<ValidActivityWinner> 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<Activity>(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<Dictionary<string, object>>(
|
||||
"Activitymoderator",
|
||||
r => r.HasOne<Client>().WithMany()
|
||||
.HasForeignKey("Moderatorid")
|
||||
.OnDelete(DeleteBehavior.ClientSetNull)
|
||||
.HasConstraintName("fk_moderator"),
|
||||
l => l.HasOne<Activity>().WithMany()
|
||||
.HasForeignKey("Activityid")
|
||||
.OnDelete(DeleteBehavior.ClientSetNull)
|
||||
.HasConstraintName("fk_activity"),
|
||||
j =>
|
||||
{
|
||||
j.HasKey("Activityid", "Moderatorid").HasName("activitymoderator_pkey");
|
||||
j.ToTable("activitymoderator");
|
||||
j.IndexerProperty<int>("Activityid").HasColumnName("activityid");
|
||||
j.IndexerProperty<int>("Moderatorid").HasColumnName("moderatorid");
|
||||
});
|
||||
|
||||
entity.HasMany(d => d.Winners).WithMany(p => p.ActivitiesNavigation)
|
||||
.UsingEntity<Dictionary<string, object>>(
|
||||
"Activitywinner",
|
||||
r => r.HasOne<Client>().WithMany()
|
||||
.HasForeignKey("Winnerid")
|
||||
.OnDelete(DeleteBehavior.ClientSetNull)
|
||||
.HasConstraintName("fk_moderator"),
|
||||
l => l.HasOne<Activity>().WithMany()
|
||||
.HasForeignKey("Activityid")
|
||||
.OnDelete(DeleteBehavior.ClientSetNull)
|
||||
.HasConstraintName("fk_activity"),
|
||||
j =>
|
||||
{
|
||||
j.HasKey("Activityid", "Winnerid").HasName("activitywinner_pkey");
|
||||
j.ToTable("activitywinner");
|
||||
j.IndexerProperty<int>("Activityid").HasColumnName("activityid");
|
||||
j.IndexerProperty<int>("Winnerid").HasColumnName("winnerid");
|
||||
});
|
||||
});
|
||||
|
||||
modelBuilder.Entity<City>(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<Client>(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<Country>(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<Event>(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<Eventactivity>(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<Jhuriactivity>(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<JuryEvent>(entity =>
|
||||
{
|
||||
entity
|
||||
.HasNoKey()
|
||||
.ToTable("jury_event");
|
||||
|
||||
entity.Property(e => e.EventId).HasColumnName("event_id");
|
||||
entity.Property(e => e.JuryId).HasColumnName("jury_id");
|
||||
});
|
||||
|
||||
modelBuilder.Entity<ModerEvent>(entity =>
|
||||
{
|
||||
entity
|
||||
.HasNoKey()
|
||||
.ToTable("moder_event");
|
||||
|
||||
entity.Property(e => e.EventId).HasColumnName("event_id");
|
||||
entity.Property(e => e.ModerId).HasColumnName("moder_id");
|
||||
});
|
||||
|
||||
modelBuilder.Entity<Role>(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<ValidActivityJhuri>(entity =>
|
||||
{
|
||||
entity
|
||||
.HasNoKey()
|
||||
.ToView("valid_activity_jhuri");
|
||||
|
||||
entity.Property(e => e.Activityid).HasColumnName("activityid");
|
||||
entity.Property(e => e.Jhuriid).HasColumnName("jhuriid");
|
||||
});
|
||||
|
||||
modelBuilder.Entity<ValidActivityModerator>(entity =>
|
||||
{
|
||||
entity
|
||||
.HasNoKey()
|
||||
.ToView("valid_activity_moderators");
|
||||
|
||||
entity.Property(e => e.Activityid).HasColumnName("activityid");
|
||||
entity.Property(e => e.Moderatorid).HasColumnName("moderatorid");
|
||||
});
|
||||
|
||||
modelBuilder.Entity<ValidActivityWinner>(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);
|
||||
}
|
@ -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; }
|
||||
}
|
@ -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; }
|
||||
}
|
@ -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; }
|
||||
}
|
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
||||
255e2bb05024b47bb75baa7f4ad8e9af6224215658c49e336aac6f08a3923708
|
||||
1c683b51456b3d77e40259b53be800033724d02baf9373901805160abf21a966
|
||||
|
Binary file not shown.
Binary file not shown.
@ -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
|
||||
|
Binary file not shown.
@ -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")]
|
||||
|
@ -1 +1 @@
|
||||
478f5aef4a53058de54ec2ca88a2514967eb498295379fb694be392af5661cde
|
||||
2a13e053bdf7101e8c013064fab6e315e29b6132025d1be3e8d9cf659e9b4612
|
||||
|
@ -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
|
||||
|
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
||||
a626b87b2588987b562e3308303e9416c3e3648e1862cb9989426e2acf087880
|
||||
e627e2c5db8d231378989fdc6674168f7a50ac90d16215e27e11c7c600b62da9
|
||||
|
@ -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
|
||||
|
Binary file not shown.
@ -1 +1 @@
|
||||
458bfb054fc573cfd2879ccfdfe0e1f88aa8fcf01b831ff4d37e8b52dce9bfec
|
||||
d982923f257cdc7cb5d96960ecf571a63f40bbf123d6446aa2b1a2dbf26c7525
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -4,13 +4,13 @@
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/localuser/.nuget/packages/</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/localuser/.nuget/packages/</NuGetPackageFolders>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/class_student/.nuget/packages/</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/class_student/.nuget/packages/</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.12.2</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="/home/localuser/.nuget/packages/" />
|
||||
<SourceRoot Include="/home/class_student/.nuget/packages/" />
|
||||
</ItemGroup>
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)skiasharp.nativeassets.webassembly/2.88.8/buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.props" Condition="Exists('$(NuGetPackageRoot)skiasharp.nativeassets.webassembly/2.88.8/buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.props')" />
|
||||
@ -20,8 +20,8 @@
|
||||
<Import Project="$(NuGetPackageRoot)avalonia/11.2.1/buildTransitive/Avalonia.props" Condition="Exists('$(NuGetPackageRoot)avalonia/11.2.1/buildTransitive/Avalonia.props')" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<PkgMicrosoft_CodeAnalysis_Analyzers Condition=" '$(PkgMicrosoft_CodeAnalysis_Analyzers)' == '' ">/home/localuser/.nuget/packages/microsoft.codeanalysis.analyzers/3.3.3</PkgMicrosoft_CodeAnalysis_Analyzers>
|
||||
<PkgAvalonia_BuildServices Condition=" '$(PkgAvalonia_BuildServices)' == '' ">/home/localuser/.nuget/packages/avalonia.buildservices/0.0.29</PkgAvalonia_BuildServices>
|
||||
<PkgAvalonia Condition=" '$(PkgAvalonia)' == '' ">/home/localuser/.nuget/packages/avalonia/11.2.1</PkgAvalonia>
|
||||
<PkgMicrosoft_CodeAnalysis_Analyzers Condition=" '$(PkgMicrosoft_CodeAnalysis_Analyzers)' == '' ">/home/class_student/.nuget/packages/microsoft.codeanalysis.analyzers/3.3.3</PkgMicrosoft_CodeAnalysis_Analyzers>
|
||||
<PkgAvalonia_BuildServices Condition=" '$(PkgAvalonia_BuildServices)' == '' ">/home/class_student/.nuget/packages/avalonia.buildservices/0.0.29</PkgAvalonia_BuildServices>
|
||||
<PkgAvalonia Condition=" '$(PkgAvalonia)' == '' ">/home/class_student/.nuget/packages/avalonia/11.2.1</PkgAvalonia>
|
||||
</PropertyGroup>
|
||||
</Project>
|
@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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": []
|
||||
}
|
@ -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"}}
|
||||
"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"}}
|
@ -1 +1 @@
|
||||
17375317033807013
|
||||
17380564673993173
|
@ -1 +1 @@
|
||||
17375317033807013
|
||||
17380564673993173
|
Loading…
Reference in New Issue
Block a user