init commit

This commit is contained in:
End3r 2025-02-05 13:07:55 +03:00
parent e8319cee61
commit c91804fd96
59 changed files with 279 additions and 292 deletions

0
App.axaml Normal file → Executable file
View File

0
App.axaml.cs Normal file → Executable file
View File

12
FunctionWindow.axaml Normal file → Executable file
View File

@ -9,18 +9,20 @@
<DockPanel> <DockPanel>
<StackPanel DockPanel.Dock="Top" HorizontalAlignment="Center" Orientation="Horizontal" > <StackPanel DockPanel.Dock="Top" HorizontalAlignment="Center" Orientation="Horizontal" >
<StackPanel> <StackPanel>
<Image></Image> <Image Source="{Binding Image}" Width="100" Height="100" Margin="5" HorizontalAlignment="Center"/>
</StackPanel> </StackPanel>
<StackPanel> <StackPanel>
<TextBlock> <TextBlock x:Name="Fio">
<Run Text="ФИО:"/> <Run Text="ФИО:"/>
<Run Text="{}"/> <Run Text="{Binding Fio}"/>
</TextBlock> </TextBlock>
<TextBlock> <TextBlock>
<Run Text="Роль"/> <Run Text="Роль:"/>
<Run Text="{}"/> <Run Text="{Binding RoleId}"/>
</TextBlock> </TextBlock>
</StackPanel> </StackPanel>
<Button Content="Назад" Click="Back_Button"/>
<Button Content="Далее" Click="Next_Function_Button"/>
</StackPanel> </StackPanel>
</DockPanel> </DockPanel>
</Window> </Window>

53
FunctionWindow.axaml.cs Normal file → Executable file
View File

@ -1,15 +1,66 @@
using System;
using System.IO;
using Avalonia; using Avalonia;
using Avalonia.Controls; using Avalonia.Controls;
using Avalonia.Interactivity;
using Avalonia.Markup.Xaml; using Avalonia.Markup.Xaml;
using Avalonia.Media.Imaging;
using demo_hard.Models; using demo_hard.Models;
namespace demo_hard; namespace demo_hard;
public partial class FunctionWindow : Window public partial class FunctionWindow : Window
{ {
public FunctionWindow(Employee user)
{
InitializeComponent();
DataContext = new ImageEmployee()
{
EmployeId = user.EmployeId,
Fio = user.Fio,
EmployeLogin = user.EmployeLogin,
EmployePassword = user.EmployePassword,
RoleId = user.RoleId,
EmployePhoto = user.EmployePhoto
};
}
public FunctionWindow() public FunctionWindow()
{ {
InitializeComponent(); InitializeComponent();
DataContext = new Employee(); }
private void Back_Button(object? sender, RoutedEventArgs e)
{
new MainWindow().ShowDialog(this);
}
private void Next_Function_Button(object? sender, RoutedEventArgs e)
{
new SallerWindow().ShowDialog(this);
}
public class ImageEmployee: Employee
{
Bitmap? Image
{
get
{
try
{
string absolutePath = Path.Combine(AppContext.BaseDirectory, EmployePhoto);
return new Bitmap(absolutePath);
}
catch(Exception e)
{
Console.WriteLine(e.Message);
return null;
}
}
}
} }
} }

1
MainWindow.axaml Normal file → Executable file
View File

@ -4,6 +4,7 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450" mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="demo_hard.MainWindow" x:Class="demo_hard.MainWindow"
x:CompileBindings="True"
Title="demo_hard"> Title="demo_hard">
<DockPanel> <DockPanel>
<StackPanel HorizontalAlignment="Center" Orientation="Horizontal" DockPanel.Dock="Top"> <StackPanel HorizontalAlignment="Center" Orientation="Horizontal" DockPanel.Dock="Top">

24
MainWindow.axaml.cs Normal file → Executable file
View File

@ -1,5 +1,9 @@
using System;
using System.Linq;
using Avalonia.Controls; using Avalonia.Controls;
using Avalonia.Interactivity; using Avalonia.Interactivity;
using demo_hard.Models;
using Tmds.DBus.Protocol;
namespace demo_hard; namespace demo_hard;
@ -10,6 +14,8 @@ public partial class MainWindow : Window
InitializeComponent(); InitializeComponent();
} }
private void TogglePasswordVisibility(object? sender, RoutedEventArgs e) private void TogglePasswordVisibility(object? sender, RoutedEventArgs e)
{ {
PasswordBox.PasswordChar = PasswordBox.PasswordChar == '*' ? '\0' : '*'; PasswordBox.PasswordChar = PasswordBox.PasswordChar == '*' ? '\0' : '*';
@ -17,6 +23,20 @@ public partial class MainWindow : Window
private void AuthorizeButton(object? sender, RoutedEventArgs e) private void AuthorizeButton(object? sender, RoutedEventArgs e)
{ {
new FunctionWindow().ShowDialog(this); using var context = new User2Context();
var user = context.Employees.FirstOrDefault(it => it.EmployeLogin == LoginBox.Text && it.EmployePassword == PasswordBox.Text);
if (user != null)
{
var functionWindow = new FunctionWindow(user);
{
DataContext = user;
};
functionWindow.ShowDialog(this);
}
else
{
throw new Exception("Invalid email or password");
}
} }
} }

View File

@ -1,25 +0,0 @@
using System;
using System.Collections.Generic;
namespace demo_hard.Models;
public partial class Client
{
public int Id { get; set; }
public string Fio { get; set; } = null!;
public int CodeClient { get; set; }
public string Passport { get; set; } = null!;
public DateOnly Birthday { get; set; }
public string Address { get; set; } = null!;
public string Email { get; set; } = null!;
public string Password { get; set; } = null!;
public int? RoleId { get; set; }
}

View File

@ -1,25 +0,0 @@
using System;
using System.Collections.Generic;
namespace demo_hard.Models;
public partial class Employee
{
public int Id { get; set; }
public int EmployeeId { get; set; }
public string Role { get; set; } = null!;
public string Fio { get; set; } = null!;
public string Login { get; set; } = null!;
public string Password { get; set; } = null!;
public DateTime? LastEnter { get; set; }
public string? TypeEnter { get; set; }
public string? Photo { get; set; }
}

View File

@ -1,25 +0,0 @@
using System;
using System.Collections.Generic;
namespace demo_hard.Models;
public partial class Order
{
public int OrderId { get; set; }
public string? OrderCode { get; set; }
public DateOnly? Date { get; set; }
public TimeOnly? Time { get; set; }
public int? CodeClient { get; set; }
public string? ServiceId { get; set; }
public string? Status { get; set; }
public DateOnly? DateClose { get; set; }
public int? RentalTime { get; set; }
}

View File

@ -1,11 +0,0 @@
using System;
using System.Collections.Generic;
namespace demo_hard.Models;
public partial class Role
{
public int RoleId { get; set; }
public string RoleName { get; set; } = null!;
}

View File

@ -1,17 +0,0 @@
using System;
using System.Collections.Generic;
namespace demo_hard.Models;
public partial class Service
{
public int Id { get; set; }
public int ServiceId { get; set; }
public string ServiceName { get; set; } = null!;
public string ServiceCode { get; set; } = null!;
public int ServiceCost { get; set; }
}

View File

@ -1,160 +0,0 @@
using System;
using System.Collections.Generic;
using Microsoft.EntityFrameworkCore;
namespace demo_hard.Models;
public partial class User2Context : DbContext
{
public User2Context()
{
}
public User2Context(DbContextOptions<User2Context> options)
: base(options)
{
}
public virtual DbSet<Client> Clients { get; set; }
public virtual DbSet<Employee> Employees { get; set; }
public virtual DbSet<Order> Orders { get; set; }
public virtual DbSet<Role> Roles { get; set; }
public virtual DbSet<Service> Services { 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=5454;USERNAME=user2;DATABASE=user2;Password=hGcLvi0i");
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.Entity<Client>(entity =>
{
entity.HasKey(e => e.Id).HasName("clients_pk");
entity.ToTable("clients");
entity.HasIndex(e => e.CodeClient, "clients_unique").IsUnique();
entity.HasIndex(e => e.Passport, "clients_unique_1").IsUnique();
entity.Property(e => e.Id).HasColumnName("id");
entity.Property(e => e.Address)
.HasColumnType("character varying")
.HasColumnName("address");
entity.Property(e => e.Birthday).HasColumnName("birthday");
entity.Property(e => e.CodeClient).HasColumnName("code_client");
entity.Property(e => e.Email)
.HasColumnType("character varying")
.HasColumnName("email");
entity.Property(e => e.Fio)
.HasColumnType("character varying")
.HasColumnName("fio");
entity.Property(e => e.Passport)
.HasColumnType("character varying")
.HasColumnName("passport");
entity.Property(e => e.Password)
.HasColumnType("character varying")
.HasColumnName("password");
entity.Property(e => e.RoleId).HasColumnName("role_id");
});
modelBuilder.Entity<Employee>(entity =>
{
entity.HasKey(e => e.Id).HasName("employees_pk");
entity.ToTable("employees");
entity.HasIndex(e => e.EmployeeId, "employees_unique").IsUnique();
entity.Property(e => e.Id).HasColumnName("id");
entity.Property(e => e.EmployeeId).HasColumnName("employee_id");
entity.Property(e => e.Fio)
.HasColumnType("character varying")
.HasColumnName("fio");
entity.Property(e => e.LastEnter)
.HasColumnType("timestamp without time zone")
.HasColumnName("last_enter");
entity.Property(e => e.Login)
.HasColumnType("character varying")
.HasColumnName("login");
entity.Property(e => e.Password)
.HasColumnType("character varying")
.HasColumnName("password");
entity.Property(e => e.Photo)
.HasColumnType("character varying")
.HasColumnName("photo");
entity.Property(e => e.Role)
.HasColumnType("character varying")
.HasColumnName("role");
entity.Property(e => e.TypeEnter)
.HasColumnType("character varying")
.HasColumnName("type_enter");
});
modelBuilder.Entity<Order>(entity =>
{
entity.HasKey(e => e.OrderId).HasName("orders_pk");
entity.ToTable("orders");
entity.Property(e => e.OrderId)
.UseIdentityAlwaysColumn()
.HasColumnName("order_id");
entity.Property(e => e.CodeClient).HasColumnName("code_client");
entity.Property(e => e.Date).HasColumnName("date");
entity.Property(e => e.DateClose).HasColumnName("date_close");
entity.Property(e => e.OrderCode)
.HasColumnType("character varying")
.HasColumnName("order_code");
entity.Property(e => e.RentalTime).HasColumnName("rental_time");
entity.Property(e => e.ServiceId)
.HasColumnType("character varying")
.HasColumnName("service_id");
entity.Property(e => e.Status)
.HasColumnType("character varying")
.HasColumnName("status");
entity.Property(e => e.Time).HasColumnName("time");
});
modelBuilder.Entity<Role>(entity =>
{
entity.HasKey(e => e.RoleId).HasName("roles_pk");
entity.ToTable("roles");
entity.Property(e => e.RoleId).HasColumnName("role_id");
entity.Property(e => e.RoleName)
.HasColumnType("character varying")
.HasColumnName("role_name");
});
modelBuilder.Entity<Service>(entity =>
{
entity.HasKey(e => e.Id).HasName("services_pk");
entity.ToTable("services");
entity.HasIndex(e => e.ServiceId, "services_unique").IsUnique();
entity.HasIndex(e => e.ServiceCode, "services_unique_1").IsUnique();
entity.Property(e => e.Id).HasColumnName("id");
entity.Property(e => e.ServiceCode)
.HasColumnType("character varying")
.HasColumnName("service_code");
entity.Property(e => e.ServiceCost).HasColumnName("service_cost");
entity.Property(e => e.ServiceId).HasColumnName("service_id");
entity.Property(e => e.ServiceName)
.HasColumnType("character varying")
.HasColumnName("service_name");
});
OnModelCreatingPartial(modelBuilder);
}
partial void OnModelCreatingPartial(ModelBuilder modelBuilder);
}

0
Program.cs Normal file → Executable file
View File

9
SallerWindow.axaml Normal file
View File

@ -0,0 +1,9 @@
<Window xmlns="https://github.com/avaloniaui"
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"
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
x:Class="demo_hard.SallerWindow"
Title="SallerWindow">
</Window>

13
SallerWindow.axaml.cs Normal file
View File

@ -0,0 +1,13 @@
using Avalonia;
using Avalonia.Controls;
using Avalonia.Markup.Xaml;
namespace demo_hard;
public partial class SallerWindow : Window
{
public SallerWindow()
{
InitializeComponent();
}
}

0
app.manifest Normal file → Executable file
View File

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.1 KiB

0
bin/Debug/net8.0/demo_hard.deps.json Normal file → Executable file
View File

Binary file not shown.

Binary file not shown.

0
bin/Debug/net8.0/demo_hard.runtimeconfig.json Normal file → Executable file
View File

0
demo_hard.csproj Normal file → Executable file
View File

View File

View File

@ -1 +1 @@
926b50ea2f36516f325a5a0c6f3ce82c0d95b25d7e50629b0d08dc939ecc99f8 0c0acaae37b12ed3a341d3a1eb760e28421cbe2a8c1e81150d3185a59c8600ed

0
obj/Debug/net8.0/Avalonia/references Normal file → Executable file
View File

Binary file not shown.

View File

@ -13,7 +13,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("demo_hard")] [assembly: System.Reflection.AssemblyCompanyAttribute("demo_hard")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+e8319cee614431d1a9b9d1c9878b71cec61259a0")]
[assembly: System.Reflection.AssemblyProductAttribute("demo_hard")] [assembly: System.Reflection.AssemblyProductAttribute("demo_hard")]
[assembly: System.Reflection.AssemblyTitleAttribute("demo_hard")] [assembly: System.Reflection.AssemblyTitleAttribute("demo_hard")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]

View File

@ -1 +1 @@
6944ce0bf6a6379eaa02d9f44bb766cd42501474baa86fca59a0c924bbb57622 946f5a24939ef6e23b67d0109d55ffc53297d201f2384d6e1f3038aa1754ec52

View File

@ -15,15 +15,18 @@ build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules = build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = demo_hard build_property.RootNamespace = demo_hard
build_property.ProjectDir = /home/class_student/Desktop/project/demo_hard/demo_hard/ build_property.ProjectDir = /home/class_student/RiderProjects/demo_hard/demo_hard/
build_property.EnableComHosting = build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop = build_property.EnableGeneratedComInterfaceComImportInterop =
[/home/class_student/Desktops/Desktop1/project/demo_hard/demo_hard/App.axaml] [/home/class_student/RiderProjects/demo_hard/demo_hard/App.axaml]
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
[/home/class_student/Desktops/Desktop1/project/demo_hard/demo_hard/FunctionWindow.axaml] [/home/class_student/RiderProjects/demo_hard/demo_hard/FunctionWindow.axaml]
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
[/home/class_student/Desktops/Desktop1/project/demo_hard/demo_hard/MainWindow.axaml] [/home/class_student/RiderProjects/demo_hard/demo_hard/MainWindow.axaml]
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
[/home/class_student/RiderProjects/demo_hard/demo_hard/SallerWindow.axaml]
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml

BIN
obj/Debug/net8.0/demo_hard.assets.cache Normal file → Executable file

Binary file not shown.

View File

@ -1 +1 @@
e00656f9cf65f3fcf559b48bf1c61979ff6aaec9efd997b3a94490a29206c65d ce241f4d95563f593c3fa12dec7919781dc53e55b898ac2536acd7743b2edee4

151
obj/Debug/net8.0/demo_hard.csproj.FileListAbsolute.txt Normal file → Executable file
View File

@ -11,3 +11,154 @@
/home/class_student/Desktops/Desktop1/project/demo_hard/demo_hard/obj/Debug/net8.0/Avalonia/demo_hard.dll /home/class_student/Desktops/Desktop1/project/demo_hard/demo_hard/obj/Debug/net8.0/Avalonia/demo_hard.dll
/home/class_student/Desktops/Desktop1/project/demo_hard/demo_hard/obj/Debug/net8.0/Avalonia/demo_hard.pdb /home/class_student/Desktops/Desktop1/project/demo_hard/demo_hard/obj/Debug/net8.0/Avalonia/demo_hard.pdb
/home/class_student/Desktops/Desktop1/project/demo_hard/demo_hard/obj/Debug/net8.0/refint/Avalonia/demo_hard.dll /home/class_student/Desktops/Desktop1/project/demo_hard/demo_hard/obj/Debug/net8.0/refint/Avalonia/demo_hard.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/demo_hard
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/demo_hard.deps.json
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/demo_hard.runtimeconfig.json
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/demo_hard.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/demo_hard.pdb
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.Base.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.Controls.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.DesignerSupport.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.Dialogs.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.Markup.Xaml.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.Markup.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.Metal.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.MicroCom.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.OpenGL.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.Vulkan.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.Controls.ColorPicker.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.Controls.DataGrid.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.Desktop.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.Diagnostics.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.Fonts.Inter.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.FreeDesktop.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.Native.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.Remote.Protocol.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.Skia.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.Themes.Fluent.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.Themes.Simple.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.Win32.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Avalonia.X11.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/HarfBuzzSharp.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Humanizer.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/MicroCom.Runtime.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.Extensions.Caching.Abstractions.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.Extensions.Options.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Microsoft.Extensions.Primitives.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Mono.TextTemplating.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Npgsql.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/SkiaSharp.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/System.CodeDom.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/System.Composition.AttributedModel.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/System.Composition.Convention.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/System.Composition.Hosting.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/System.Composition.Runtime.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/System.Composition.TypedParts.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/System.IO.Pipelines.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/Tmds.DBus.Protocol.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/win-arm64/native/av_libglesv2.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/win-x64/native/av_libglesv2.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/win-x86/native/av_libglesv2.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/osx/native/libAvaloniaNative.dylib
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/linux-arm/native/libHarfBuzzSharp.so
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/linux-x64/native/libHarfBuzzSharp.so
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/osx/native/libHarfBuzzSharp.dylib
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/win-x64/native/libHarfBuzzSharp.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/win-x86/native/libHarfBuzzSharp.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/linux-arm/native/libSkiaSharp.so
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/linux-arm64/native/libSkiaSharp.so
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libSkiaSharp.so
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/linux-x64/native/libSkiaSharp.so
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/osx/native/libSkiaSharp.dylib
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/win-arm64/native/libSkiaSharp.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/win-x64/native/libSkiaSharp.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/bin/Debug/net8.0/runtimes/win-x86/native/libSkiaSharp.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/obj/Debug/net8.0/demo_hard.csproj.AssemblyReference.cache
/home/class_student/RiderProjects/demo_hard/demo_hard/obj/Debug/net8.0/Avalonia/Resources.Inputs.cache
/home/class_student/RiderProjects/demo_hard/demo_hard/obj/Debug/net8.0/Avalonia/resources
/home/class_student/RiderProjects/demo_hard/demo_hard/obj/Debug/net8.0/demo_hard.GeneratedMSBuildEditorConfig.editorconfig
/home/class_student/RiderProjects/demo_hard/demo_hard/obj/Debug/net8.0/demo_hard.AssemblyInfoInputs.cache
/home/class_student/RiderProjects/demo_hard/demo_hard/obj/Debug/net8.0/demo_hard.AssemblyInfo.cs
/home/class_student/RiderProjects/demo_hard/demo_hard/obj/Debug/net8.0/demo_hard.csproj.CoreCompileInputs.cache
/home/class_student/RiderProjects/demo_hard/demo_hard/obj/Debug/net8.0/Avalonia/demo_hard.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/obj/Debug/net8.0/Avalonia/demo_hard.pdb
/home/class_student/RiderProjects/demo_hard/demo_hard/obj/Debug/net8.0/refint/Avalonia/demo_hard.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/obj/Debug/net8.0/demo_hard.csproj.Up2Date
/home/class_student/RiderProjects/demo_hard/demo_hard/obj/Debug/net8.0/demo_hard.genruntimeconfig.cache
/home/class_student/RiderProjects/demo_hard/demo_hard/obj/Debug/net8.0/ref/demo_hard.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/obj/Debug/net8.0/demo_hard.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/obj/Debug/net8.0/refint/demo_hard.dll
/home/class_student/RiderProjects/demo_hard/demo_hard/obj/Debug/net8.0/demo_hard.pdb

0
obj/Debug/net8.0/demo_hard.csproj.Up2Date Normal file → Executable file
View File

Binary file not shown.

2
obj/Debug/net8.0/demo_hard.genruntimeconfig.cache Normal file → Executable file
View File

@ -1 +1 @@
7ee5c2ff943d33aca1274f08ebfc1bb735ad78eab6b68d926912cd50ad4b0f3a f245aba415d302a87fcde81a2137e47d9d2ea8c68553a1bfde00ae9d09384c4d

Binary file not shown.

Binary file not shown.

0
obj/demo_hard.csproj.EntityFrameworkCore.targets Normal file → Executable file
View File

View File

@ -1,17 +1,17 @@
{ {
"format": 1, "format": 1,
"restore": { "restore": {
"/home/class_student/Desktops/Desktop1/project/demo_hard/demo_hard/demo_hard.csproj": {} "/home/class_student/RiderProjects/demo_hard/demo_hard/demo_hard.csproj": {}
}, },
"projects": { "projects": {
"/home/class_student/Desktops/Desktop1/project/demo_hard/demo_hard/demo_hard.csproj": { "/home/class_student/RiderProjects/demo_hard/demo_hard/demo_hard.csproj": {
"version": "1.0.0", "version": "1.0.0",
"restore": { "restore": {
"projectUniqueName": "/home/class_student/Desktops/Desktop1/project/demo_hard/demo_hard/demo_hard.csproj", "projectUniqueName": "/home/class_student/RiderProjects/demo_hard/demo_hard/demo_hard.csproj",
"projectName": "demo_hard", "projectName": "demo_hard",
"projectPath": "/home/class_student/Desktops/Desktop1/project/demo_hard/demo_hard/demo_hard.csproj", "projectPath": "/home/class_student/RiderProjects/demo_hard/demo_hard/demo_hard.csproj",
"packagesPath": "/home/class_student/.nuget/packages/", "packagesPath": "/home/class_student/.nuget/packages/",
"outputPath": "/home/class_student/Desktops/Desktop1/project/demo_hard/demo_hard/obj/", "outputPath": "/home/class_student/RiderProjects/demo_hard/demo_hard/obj/",
"projectStyle": "PackageReference", "projectStyle": "PackageReference",
"configFilePaths": [ "configFilePaths": [
"/home/class_student/.nuget/NuGet/NuGet.Config" "/home/class_student/.nuget/NuGet/NuGet.Config"

0
obj/demo_hard.csproj.nuget.g.props Normal file → Executable file
View File

0
obj/demo_hard.csproj.nuget.g.targets Normal file → Executable file
View File

View File

@ -3489,11 +3489,11 @@
"project": { "project": {
"version": "1.0.0", "version": "1.0.0",
"restore": { "restore": {
"projectUniqueName": "/home/class_student/Desktops/Desktop1/project/demo_hard/demo_hard/demo_hard.csproj", "projectUniqueName": "/home/class_student/RiderProjects/demo_hard/demo_hard/demo_hard.csproj",
"projectName": "demo_hard", "projectName": "demo_hard",
"projectPath": "/home/class_student/Desktops/Desktop1/project/demo_hard/demo_hard/demo_hard.csproj", "projectPath": "/home/class_student/RiderProjects/demo_hard/demo_hard/demo_hard.csproj",
"packagesPath": "/home/class_student/.nuget/packages/", "packagesPath": "/home/class_student/.nuget/packages/",
"outputPath": "/home/class_student/Desktops/Desktop1/project/demo_hard/demo_hard/obj/", "outputPath": "/home/class_student/RiderProjects/demo_hard/demo_hard/obj/",
"projectStyle": "PackageReference", "projectStyle": "PackageReference",
"configFilePaths": [ "configFilePaths": [
"/home/class_student/.nuget/NuGet/NuGet.Config" "/home/class_student/.nuget/NuGet/NuGet.Config"

View File

@ -1,8 +1,8 @@
{ {
"version": 2, "version": 2,
"dgSpecHash": "QgsSJG1z5rc=", "dgSpecHash": "EVCAWmqygcE=",
"success": true, "success": true,
"projectFilePath": "/home/class_student/Desktop/project/demo_hard/demo_hard/demo_hard.csproj", "projectFilePath": "/home/class_student/RiderProjects/demo_hard/demo_hard/demo_hard.csproj",
"expectedPackageFiles": [ "expectedPackageFiles": [
"/home/class_student/.nuget/packages/avalonia/11.2.1/avalonia.11.2.1.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.angle.windows.natives/2.1.22045.20230930/avalonia.angle.windows.natives.2.1.22045.20230930.nupkg.sha512",

2
obj/project.packagespec.json Normal file → Executable file
View File

@ -1 +1 @@
"restore":{"projectUniqueName":"/home/class_student/Desktops/Desktop1/project/demo_hard/demo_hard/demo_hard.csproj","projectName":"demo_hard","projectPath":"/home/class_student/Desktops/Desktop1/project/demo_hard/demo_hard/demo_hard.csproj","outputPath":"/home/class_student/Desktops/Desktop1/project/demo_hard/demo_hard/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"Avalonia":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Desktop":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Diagnostics":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Fonts.Inter":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Themes.Fluent":{"target":"Package","version":"[11.2.1, )"},"Microsoft.EntityFrameworkCore":{"target":"Package","version":"[8.0.10, )"},"Microsoft.EntityFrameworkCore.Design":{"include":"Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive","suppressParent":"All","target":"Package","version":"[8.0.10, )"},"Npgsql.EntityFrameworkCore.PostgreSQL":{"target":"Package","version":"[8.0.10, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/home/class_student/.dotnet/sdk/8.0.405/PortableRuntimeIdentifierGraph.json"}} "restore":{"projectUniqueName":"/home/class_student/RiderProjects/demo_hard/demo_hard/demo_hard.csproj","projectName":"demo_hard","projectPath":"/home/class_student/RiderProjects/demo_hard/demo_hard/demo_hard.csproj","outputPath":"/home/class_student/RiderProjects/demo_hard/demo_hard/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"Avalonia":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Desktop":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Diagnostics":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Fonts.Inter":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Themes.Fluent":{"target":"Package","version":"[11.2.1, )"},"Microsoft.EntityFrameworkCore":{"target":"Package","version":"[8.0.10, )"},"Microsoft.EntityFrameworkCore.Design":{"include":"Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive","suppressParent":"All","target":"Package","version":"[8.0.10, )"},"Npgsql.EntityFrameworkCore.PostgreSQL":{"target":"Package","version":"[8.0.10, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/home/class_student/.dotnet/sdk/8.0.405/PortableRuntimeIdentifierGraph.json"}}

0
obj/rider.project.model.nuget.info Normal file → Executable file
View File

2
obj/rider.project.restore.info Normal file → Executable file
View File

@ -1 +1 @@
17386669662844324 17387422914147165