init commit
This commit is contained in:
parent
35948e2f79
commit
76087f367d
13
.idea/.idea.demo_hard.dir/.idea/.gitignore
vendored
Normal file
13
.idea/.idea.demo_hard.dir/.idea/.gitignore
vendored
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
# Default ignored files
|
||||||
|
/shelf/
|
||||||
|
/workspace.xml
|
||||||
|
# Rider ignored files
|
||||||
|
/projectSettingsUpdater.xml
|
||||||
|
/contentModel.xml
|
||||||
|
/.idea.demo_hard.iml
|
||||||
|
/modules.xml
|
||||||
|
# Editor-based HTTP Client requests
|
||||||
|
/httpRequests/
|
||||||
|
# Datasource local storage ignored files
|
||||||
|
/dataSources/
|
||||||
|
/dataSources.local.xml
|
4
.idea/.idea.demo_hard.dir/.idea/encodings.xml
Normal file
4
.idea/.idea.demo_hard.dir/.idea/encodings.xml
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="Encoding" addBOMForNewFiles="with BOM under Windows, with no BOM otherwise" />
|
||||||
|
</project>
|
8
.idea/.idea.demo_hard.dir/.idea/indexLayout.xml
Normal file
8
.idea/.idea.demo_hard.dir/.idea/indexLayout.xml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="UserContentModel">
|
||||||
|
<attachedFolders />
|
||||||
|
<explicitIncludes />
|
||||||
|
<explicitExcludes />
|
||||||
|
</component>
|
||||||
|
</project>
|
6
.idea/.idea.demo_hard.dir/.idea/vcs.xml
Normal file
6
.idea/.idea.demo_hard.dir/.idea/vcs.xml
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="VcsDirectoryMappings">
|
||||||
|
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
||||||
|
</component>
|
||||||
|
</project>
|
36
AddClient.axaml
Normal file
36
AddClient.axaml
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
<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.AddClient"
|
||||||
|
x:CompileBindings="False"
|
||||||
|
Title="AddClient">
|
||||||
|
<DockPanel>
|
||||||
|
<StackPanel DockPanel.Dock="Top" Orientation="Horizontal" HorizontalAlignment="Center">
|
||||||
|
<TextBlock Text="Окно добавления пользователя" HorizontalAlignment="Center"/>
|
||||||
|
</StackPanel>
|
||||||
|
<StackPanel Orientation="Vertical" VerticalAlignment="Center" Margin="5">
|
||||||
|
<TextBlock Text="Введите код клиента" VerticalAlignment="Center" Margin="5" Width="200"/>
|
||||||
|
<TextBox x:Name="CodeBox" VerticalAlignment="Center" Margin="5" Width="200"/>
|
||||||
|
<TextBlock Text="Введите email" VerticalAlignment="Center" Margin="5" Width="200"/>
|
||||||
|
<TextBox x:Name="EmailBox" VerticalAlignment="Center" Margin="5" Width="200"/>
|
||||||
|
<TextBlock Text="Введите ФИО клиента" VerticalAlignment="Center" Margin="5" Width="200"/>
|
||||||
|
<TextBox x:Name="FioBox" VerticalAlignment="Center" Margin="5" Width="200"/>
|
||||||
|
<TextBlock Text="Введите адрес" VerticalAlignment="Center" Margin="5" Width="200"/>
|
||||||
|
<TextBox x:Name="AddressBox" VerticalAlignment="Center" Margin="5" Width="200"/>
|
||||||
|
<TextBlock Text="Введите дату рождения" VerticalAlignment="Center" Margin="5" Width="200"/>
|
||||||
|
<TextBox x:Name="BirthdayBox" VerticalAlignment="Center" Margin="5" Width="200"/>
|
||||||
|
<TextBlock Text="Введите серию и номер паспорта (слитно)" VerticalAlignment="Center" Margin="5" Width="200"/>
|
||||||
|
<TextBox x:Name="PassportBox" VerticalAlignment="Center" Margin="5" Width="200"/>
|
||||||
|
<TextBlock Text="Введите телефон" VerticalAlignment="Center" Margin="5" Width="200"/>
|
||||||
|
<TextBox x:Name="PhoneBox" Watermark="79212576390" VerticalAlignment="Center" Margin="5" Width="200"/>
|
||||||
|
<TextBlock Text="Введите пароль" VerticalAlignment="Center" Margin="5" Width="200"/>
|
||||||
|
<TextBox x:Name="PasswordBox" VerticalAlignment="Center" Margin="5" Width="200"/>
|
||||||
|
<Button Content="Добавить пользователя" HorizontalAlignment="Center" Margin="5" Width="200" Click="AddClient_OnClick"/>
|
||||||
|
<TextBlock Text="" x:Name="UserAdd" VerticalAlignment="Center" Margin="200" Width="200"/>
|
||||||
|
<TextBlock Text="" x:Name="UserNotAdd" VerticalAlignment="Center" Margin="200" Width="200"/>
|
||||||
|
<Button Content="Назад" HorizontalAlignment="Center" Margin="5" Width="200" Click="BackOnOrder"/>
|
||||||
|
</StackPanel>
|
||||||
|
</DockPanel>
|
||||||
|
</Window>
|
103
AddClient.axaml.cs
Normal file
103
AddClient.axaml.cs
Normal file
@ -0,0 +1,103 @@
|
|||||||
|
using System;
|
||||||
|
using System.Linq;
|
||||||
|
using Avalonia.Controls;
|
||||||
|
using Avalonia.Interactivity;
|
||||||
|
using demo_hard.Model;
|
||||||
|
|
||||||
|
namespace demo_hard;
|
||||||
|
|
||||||
|
public partial class AddClient : Window
|
||||||
|
{
|
||||||
|
public AddClient()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void AddClient_OnClick(object? sender, RoutedEventArgs e)
|
||||||
|
{
|
||||||
|
using var context = new User2Context();
|
||||||
|
|
||||||
|
if (string.IsNullOrWhiteSpace(FioBox.Text) ||
|
||||||
|
string.IsNullOrWhiteSpace(CodeBox.Text) ||
|
||||||
|
string.IsNullOrWhiteSpace(BirthdayBox.Text) ||
|
||||||
|
string.IsNullOrWhiteSpace(AddressBox.Text) ||
|
||||||
|
string.IsNullOrWhiteSpace(EmailBox.Text) ||
|
||||||
|
string.IsNullOrWhiteSpace(PassportBox.Text) ||
|
||||||
|
string.IsNullOrWhiteSpace(PasswordBox.Text)
|
||||||
|
)
|
||||||
|
{
|
||||||
|
UserNotAdd.Text = "Please fill all the fields!";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
CorrectInput();
|
||||||
|
var NewClient = new Client
|
||||||
|
{
|
||||||
|
Id = context.Clients.Count() + 1,
|
||||||
|
Fio = FioBox.Text,
|
||||||
|
ClientCode = Convert.ToInt32(CodeBox.Text),
|
||||||
|
Passport = PassportBox.Text,
|
||||||
|
Birthday = DateOnly.TryParse(BirthdayBox.Text, out var birthDate) ? birthDate : null,
|
||||||
|
Address = AddressBox.Text,
|
||||||
|
Email = EmailBox.Text,
|
||||||
|
Password = PasswordBox.Text,
|
||||||
|
RoleId = 1
|
||||||
|
};
|
||||||
|
|
||||||
|
context.Clients.Add(NewClient);
|
||||||
|
context.SaveChanges();
|
||||||
|
|
||||||
|
UserAdd.Text = "Client added successfully!";
|
||||||
|
|
||||||
|
FioBox.Text = "";
|
||||||
|
CodeBox.Text = "";
|
||||||
|
PassportBox.Text = "";
|
||||||
|
BirthdayBox.Text = "";
|
||||||
|
AddressBox.Text = "";
|
||||||
|
EmailBox.Text = "";
|
||||||
|
PasswordBox.Text = "";
|
||||||
|
PhoneBox.Text = "";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
catch
|
||||||
|
{
|
||||||
|
throw new ArgumentException("Если Марк посмотрит мой код поставьте 2");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private void CorrectInput()
|
||||||
|
{
|
||||||
|
if (CodeBox.Text.Length != 8)
|
||||||
|
{
|
||||||
|
throw new ArgumentException("Символов должно быть ровно 8");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (PassportBox.Text.Length != 10)
|
||||||
|
{
|
||||||
|
throw new ArgumentException("В паспорте 10 цифр");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!EmailBox.Text.Contains("@"))
|
||||||
|
{
|
||||||
|
throw new ArgumentException("Email must contain '@'!");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (PhoneBox.Text.Length != 11)
|
||||||
|
{
|
||||||
|
throw new ArgumentException("Неккоректно введен номер телефона");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void BackOnOrder(object? sender, RoutedEventArgs e)
|
||||||
|
{
|
||||||
|
new SallerWindow().ShowDialog(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -8,10 +8,10 @@
|
|||||||
Title="FunctionWindow">
|
Title="FunctionWindow">
|
||||||
<DockPanel>
|
<DockPanel>
|
||||||
<StackPanel DockPanel.Dock="Top" HorizontalAlignment="Center" Orientation="Horizontal" >
|
<StackPanel DockPanel.Dock="Top" HorizontalAlignment="Center" Orientation="Horizontal" >
|
||||||
<StackPanel>
|
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
|
||||||
<Image Source="{Binding Image}" Width="100" Height="100" Margin="5" HorizontalAlignment="Center"/>
|
<Image Source="{Binding Image}" Width="100" Height="100" Margin="5" HorizontalAlignment="Center"/>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
<StackPanel>
|
<StackPanel Orientation="Vertical" VerticalAlignment="Center">
|
||||||
<TextBlock x:Name="Fio">
|
<TextBlock x:Name="Fio">
|
||||||
<Run Text="ФИО:"/>
|
<Run Text="ФИО:"/>
|
||||||
<Run Text="{Binding Fio}"/>
|
<Run Text="{Binding Fio}"/>
|
||||||
@ -20,9 +20,9 @@
|
|||||||
<Run Text="Роль:"/>
|
<Run Text="Роль:"/>
|
||||||
<Run Text="{Binding RoleId}"/>
|
<Run Text="{Binding RoleId}"/>
|
||||||
</TextBlock>
|
</TextBlock>
|
||||||
|
<Button Content="Назад" Click="Back_Button" Margin="5"/>
|
||||||
|
<Button Content="Создать заказ" Click="Next_Function_Button" Margin="5"/>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
<Button Content="Назад" Click="Back_Button"/>
|
|
||||||
<Button Content="Далее" Click="Next_Function_Button"/>
|
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
</DockPanel>
|
</DockPanel>
|
||||||
</Window>
|
</Window>
|
@ -5,7 +5,7 @@ using Avalonia.Controls;
|
|||||||
using Avalonia.Interactivity;
|
using Avalonia.Interactivity;
|
||||||
using Avalonia.Markup.Xaml;
|
using Avalonia.Markup.Xaml;
|
||||||
using Avalonia.Media.Imaging;
|
using Avalonia.Media.Imaging;
|
||||||
using demo_hard.Models;
|
using demo_hard.Model;
|
||||||
|
|
||||||
namespace demo_hard;
|
namespace demo_hard;
|
||||||
|
|
||||||
|
@ -15,6 +15,7 @@
|
|||||||
<TextBox x:Name="LoginBox" Margin="5" Width="200"/>
|
<TextBox x:Name="LoginBox" Margin="5" Width="200"/>
|
||||||
<TextBlock Text="Введите пароль" HorizontalAlignment="Center" Margin="5"/>
|
<TextBlock Text="Введите пароль" HorizontalAlignment="Center" Margin="5"/>
|
||||||
<TextBox x:Name="PasswordBox" Margin="5" Width="200" PasswordChar="*"/>
|
<TextBox x:Name="PasswordBox" Margin="5" Width="200" PasswordChar="*"/>
|
||||||
|
<TextBlock Text="" x:Name="ErrorBlock" HorizontalAlignment="Center" Margin="5"/>
|
||||||
<Button x:Name="ForPassword" Content="Показать пароль" Margin="5" Click="TogglePasswordVisibility" HorizontalAlignment="Center"/>
|
<Button x:Name="ForPassword" Content="Показать пароль" Margin="5" Click="TogglePasswordVisibility" HorizontalAlignment="Center"/>
|
||||||
<Button x:Name="Authorize" Content="Авторизироваться" Margin="5" Click="AuthorizeButton" HorizontalAlignment="Center"/>
|
<Button x:Name="Authorize" Content="Авторизироваться" Margin="5" Click="AuthorizeButton" HorizontalAlignment="Center"/>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
|
@ -2,8 +2,7 @@ using System;
|
|||||||
using System.Linq;
|
using System.Linq;
|
||||||
using Avalonia.Controls;
|
using Avalonia.Controls;
|
||||||
using Avalonia.Interactivity;
|
using Avalonia.Interactivity;
|
||||||
using demo_hard.Models;
|
using demo_hard.Model;
|
||||||
//using demo_hard.Models;
|
|
||||||
using Tmds.DBus.Protocol;
|
using Tmds.DBus.Protocol;
|
||||||
|
|
||||||
namespace demo_hard;
|
namespace demo_hard;
|
||||||
@ -37,7 +36,7 @@ public partial class MainWindow : Window
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
throw new Exception("Invalid email or password");
|
ErrorBlock.Text = "Неверный пароль";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace demo_hard.Models;
|
namespace demo_hard.Model;
|
||||||
|
|
||||||
public partial class Client
|
public partial class Client
|
||||||
{
|
{
|
||||||
@ -13,11 +13,13 @@ public partial class Client
|
|||||||
|
|
||||||
public string Passport { get; set; } = null!;
|
public string Passport { get; set; } = null!;
|
||||||
|
|
||||||
public DateOnly Birthday { get; set; }
|
public DateOnly? Birthday { get; set; }
|
||||||
|
|
||||||
public string Address { get; set; } = null!;
|
public string Address { get; set; } = null!;
|
||||||
|
|
||||||
public string Email { get; set; } = null!;
|
public string Email { get; set; } = null!;
|
||||||
|
|
||||||
public string Password { get; set; } = null!;
|
public string Password { get; set; } = null!;
|
||||||
|
|
||||||
|
public int RoleId { get; set; }
|
||||||
}
|
}
|
@ -1,7 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace demo_hard.Models;
|
namespace demo_hard.Model;
|
||||||
|
|
||||||
public partial class Employee
|
public partial class Employee
|
||||||
{
|
{
|
@ -1,7 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace demo_hard.Models;
|
namespace demo_hard.Model;
|
||||||
|
|
||||||
public partial class LastEnter
|
public partial class LastEnter
|
||||||
{
|
{
|
||||||
@ -10,4 +10,6 @@ public partial class LastEnter
|
|||||||
public DateTime EnterDatetime { get; set; }
|
public DateTime EnterDatetime { get; set; }
|
||||||
|
|
||||||
public string EnterType { get; set; } = null!;
|
public string EnterType { get; set; } = null!;
|
||||||
|
|
||||||
|
public string? Login { get; set; }
|
||||||
}
|
}
|
@ -1,7 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace demo_hard.Models;
|
namespace demo_hard.Model;
|
||||||
|
|
||||||
public partial class Order
|
public partial class Order
|
||||||
{
|
{
|
@ -1,7 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace demo_hard.Models;
|
namespace demo_hard.Model;
|
||||||
|
|
||||||
public partial class Role
|
public partial class Role
|
||||||
{
|
{
|
@ -1,7 +1,7 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
|
||||||
namespace demo_hard.Models;
|
namespace demo_hard.Model;
|
||||||
|
|
||||||
public partial class Service
|
public partial class Service
|
||||||
{
|
{
|
@ -2,7 +2,7 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
|
||||||
namespace demo_hard.Models;
|
namespace demo_hard.Model;
|
||||||
|
|
||||||
public partial class User2Context : DbContext
|
public partial class User2Context : DbContext
|
||||||
{
|
{
|
||||||
@ -57,6 +57,7 @@ public partial class User2Context : DbContext
|
|||||||
entity.Property(e => e.Password)
|
entity.Property(e => e.Password)
|
||||||
.HasColumnType("character varying")
|
.HasColumnType("character varying")
|
||||||
.HasColumnName("password");
|
.HasColumnName("password");
|
||||||
|
entity.Property(e => e.RoleId).HasColumnName("role_id");
|
||||||
});
|
});
|
||||||
|
|
||||||
modelBuilder.Entity<Employee>(entity =>
|
modelBuilder.Entity<Employee>(entity =>
|
||||||
@ -98,6 +99,9 @@ public partial class User2Context : DbContext
|
|||||||
entity.Property(e => e.EnterType)
|
entity.Property(e => e.EnterType)
|
||||||
.HasColumnType("character varying")
|
.HasColumnType("character varying")
|
||||||
.HasColumnName("enter_type");
|
.HasColumnName("enter_type");
|
||||||
|
entity.Property(e => e.Login)
|
||||||
|
.HasColumnType("character varying")
|
||||||
|
.HasColumnName("login");
|
||||||
});
|
});
|
||||||
|
|
||||||
modelBuilder.Entity<Order>(entity =>
|
modelBuilder.Entity<Order>(entity =>
|
@ -4,14 +4,44 @@
|
|||||||
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.SallerWindow"
|
x:Class="demo_hard.SallerWindow"
|
||||||
|
x:CompileBindings="False"
|
||||||
Title="SallerWindow">
|
Title="SallerWindow">
|
||||||
<DockPanel>
|
<DockPanel>
|
||||||
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" DockPanel.Dock="Top">
|
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" DockPanel.Dock="Top" Margin="5">
|
||||||
<TextBlock Text="Добро пожаловать в окно создания заказа"/>
|
<TextBlock Text="Добро пожаловать в окно создания заказа"/>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
<StackPanel>
|
<StackPanel DockPanel.Dock="Left" Orientation="Vertical" VerticalAlignment="Center" Margin="5">
|
||||||
<TextBlock Text="Номер заказа"/>
|
<TextBox x:Name= "SearchBox" Width="200" TextChanged="SeacrchBox_Changed"/>
|
||||||
<TextBlock Text="Сделать штрих кода нада"/>
|
<ListBox x:Name ="SearchResultsListBox">
|
||||||
|
<ListBox.ItemTemplate>
|
||||||
|
<DataTemplate>
|
||||||
|
<TextBlock Text="{Binding}"/>
|
||||||
|
</DataTemplate>
|
||||||
|
</ListBox.ItemTemplate>
|
||||||
|
</ListBox>
|
||||||
|
</StackPanel>
|
||||||
|
<StackPanel VerticalAlignment="Center" Orientation="Vertical" Margin="5">
|
||||||
|
<TextBlock Text="Номер заказа" Margin="5" HorizontalAlignment="Center" />
|
||||||
|
<AutoCompleteBox x:Name="CompleteBox" FilterMode="StartsWith" Width="200" HorizontalAlignment="Center" Margin="5"/>
|
||||||
|
<TextBlock Text="Сделать штрих кода нада" Margin="5" HorizontalAlignment="Center"/>
|
||||||
|
<ComboBox x:Name="Clients_ComboBox" Width="200" SelectionChanged="Clients_ComboBox_SelectionChanged" HorizontalAlignment="Center" Margin="5">
|
||||||
|
<ComboBox.ItemTemplate>
|
||||||
|
<DataTemplate>
|
||||||
|
<TextBlock Text="{Binding Fio}"/>
|
||||||
|
</DataTemplate>
|
||||||
|
</ComboBox.ItemTemplate>
|
||||||
|
</ComboBox>
|
||||||
|
<ComboBox x:Name="Service_Combobox" Width="200" SelectionChanged="Serice_Combobox_SelectionChanged" HorizontalAlignment="Center" Margin="5">
|
||||||
|
<ComboBox.ItemTemplate>
|
||||||
|
<DataTemplate>
|
||||||
|
<TextBlock Text="{Binding ServiceName}"/>
|
||||||
|
</DataTemplate>
|
||||||
|
</ComboBox.ItemTemplate>
|
||||||
|
</ComboBox>
|
||||||
|
<Button Content="Назад" Click="Go_Back_Button" HorizontalAlignment="Center" Margin="5"/>
|
||||||
|
<Button Content="Создать штрих код" HorizontalAlignment="Center" Margin="5"/>
|
||||||
|
<Button Content="Добавить услугу" HorizontalAlignment="Center" Margin="5"/>
|
||||||
|
<Button Content="Добавить Пользователя" Click="AddUser_Button" HorizontalAlignment="Center" Margin="5"/>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
</DockPanel>
|
</DockPanel>
|
||||||
</Window>
|
</Window>
|
||||||
|
@ -1,6 +1,12 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
using Avalonia;
|
using Avalonia;
|
||||||
using Avalonia.Controls;
|
using Avalonia.Controls;
|
||||||
|
using Avalonia.Interactivity;
|
||||||
using Avalonia.Markup.Xaml;
|
using Avalonia.Markup.Xaml;
|
||||||
|
using demo_hard.Model;
|
||||||
|
|
||||||
|
|
||||||
namespace demo_hard;
|
namespace demo_hard;
|
||||||
|
|
||||||
@ -9,5 +15,84 @@ public partial class SallerWindow : Window
|
|||||||
public SallerWindow()
|
public SallerWindow()
|
||||||
{
|
{
|
||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
|
OrderNubmber();
|
||||||
|
LoadClients();
|
||||||
|
LoadService();
|
||||||
|
SearchItems();
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private void OrderNubmber()
|
||||||
|
{
|
||||||
|
using var context = new User2Context();
|
||||||
|
var OrderId = context.Orders.Max(o => o.Id) + 1;
|
||||||
|
if (context.Orders.Any(o => o.Id == OrderId)) throw new ArgumentException("Номера Id не должны совпадать");
|
||||||
|
if (OrderId < 1) throw new ArgumentException("OrderId must be greater than 1");
|
||||||
|
CompleteBox.ItemsSource = new string[] {OrderId.ToString()};
|
||||||
|
}
|
||||||
|
private void LoadClients()
|
||||||
|
{
|
||||||
|
using var context = new User2Context();
|
||||||
|
var client = context.Clients.ToList();
|
||||||
|
Clients_ComboBox.ItemsSource = client;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void Clients_ComboBox_SelectionChanged(object? sender, SelectionChangedEventArgs e)
|
||||||
|
{
|
||||||
|
if (Clients_ComboBox.SelectedItem is Client selectedClient)
|
||||||
|
{
|
||||||
|
Console.WriteLine($"Вы выбрали: {selectedClient.Fio}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void Go_Back_Button(object? sender, RoutedEventArgs e)
|
||||||
|
{
|
||||||
|
new FunctionWindow().ShowDialog(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void LoadService()
|
||||||
|
{
|
||||||
|
using var context = new User2Context();
|
||||||
|
var service = context.Services.ToList();
|
||||||
|
Service_Combobox.ItemsSource = service;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void Serice_Combobox_SelectionChanged(object? sender, SelectionChangedEventArgs e)
|
||||||
|
{
|
||||||
|
if (Clients_ComboBox.SelectedItem is Service selectedServiceName)
|
||||||
|
{
|
||||||
|
Console.WriteLine($"Вы выбрали улугу: {selectedServiceName.ServiceName}");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void SearchItems()
|
||||||
|
{
|
||||||
|
using var context = new User2Context();
|
||||||
|
string seacrhText = SearchBox.Text?.ToLower() ?? "";
|
||||||
|
if (string.IsNullOrWhiteSpace(seacrhText))
|
||||||
|
{
|
||||||
|
SearchResultsListBox.ItemsSource = new List<string>();
|
||||||
|
}
|
||||||
|
|
||||||
|
var clientRes = context.Clients.ToList().Where(c => c.Fio.ToLower().Contains(seacrhText))
|
||||||
|
.Select(c=> $"{c.Fio}");
|
||||||
|
var SeviceRes = context.Services.ToList().Where(s => s.ServiceName.ToLower().Contains(seacrhText))
|
||||||
|
.Select(s => $"{s.ServiceName}");
|
||||||
|
|
||||||
|
var results = clientRes.Concat(SeviceRes).ToList();
|
||||||
|
SearchResultsListBox.ItemsSource = results;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
private void SeacrchBox_Changed(object? sender, TextChangedEventArgs e)
|
||||||
|
{
|
||||||
|
SearchItems();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void AddUser_Button(object? sender, RoutedEventArgs e)
|
||||||
|
{
|
||||||
|
new AddClient().ShowDialog(this);
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -79,17 +79,17 @@
|
|||||||
"runtimes/win-arm64/native/av_libglesv2.dll": {
|
"runtimes/win-arm64/native/av_libglesv2.dll": {
|
||||||
"rid": "win-arm64",
|
"rid": "win-arm64",
|
||||||
"assetType": "native",
|
"assetType": "native",
|
||||||
"fileVersion": "0.0.0.0"
|
"fileVersion": "2.1.22045.0"
|
||||||
},
|
},
|
||||||
"runtimes/win-x64/native/av_libglesv2.dll": {
|
"runtimes/win-x64/native/av_libglesv2.dll": {
|
||||||
"rid": "win-x64",
|
"rid": "win-x64",
|
||||||
"assetType": "native",
|
"assetType": "native",
|
||||||
"fileVersion": "0.0.0.0"
|
"fileVersion": "2.1.22045.0"
|
||||||
},
|
},
|
||||||
"runtimes/win-x86/native/av_libglesv2.dll": {
|
"runtimes/win-x86/native/av_libglesv2.dll": {
|
||||||
"rid": "win-x86",
|
"rid": "win-x86",
|
||||||
"assetType": "native",
|
"assetType": "native",
|
||||||
"fileVersion": "0.0.0.0"
|
"fileVersion": "2.1.22045.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
Binary file not shown.
BIN
bin/Debug/net8.0/demo_hard.exe
Normal file
BIN
bin/Debug/net8.0/demo_hard.exe
Normal file
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
|||||||
0c0acaae37b12ed3a341d3a1eb760e28421cbe2a8c1e81150d3185a59c8600ed
|
e6051517762c73d0b60e393e672af03d7de4691d3b1385d70c76d6bcb0e8114b
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -1,206 +1,206 @@
|
|||||||
/home/class_student/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Base.dll
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\Microsoft.CSharp.dll
|
||||||
/home/class_student/.nuget/packages/microsoft.entityframeworkcore.abstractions/8.0.10/lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\Microsoft.Win32.Registry.dll
|
||||||
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/mscorlib.dll
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\mscorlib.dll
|
||||||
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/netstandard.dll
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\netstandard.dll
|
||||||
/home/class_student/.nuget/packages/npgsql/8.0.5/lib/net8.0/Npgsql.dll
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Users\IVAN\.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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.AppContext.dll
|
||||||
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Buffers.dll
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Configuration.dll
|
||||||
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Console.dll
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Console.dll
|
||||||
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Core.dll
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Diagnostics.Tracing.dll
|
||||||
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.dll
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.dll
|
||||||
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Drawing.dll
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Users\IVAN\.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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Memory.dll
|
||||||
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Net.dll
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.ValueTuple.dll
|
||||||
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Web.dll
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\System.Windows.dll
|
||||||
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/System.Xml.dll
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\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
|
C:\Users\IVAN\.nuget\packages\tmds.dbus.protocol\0.20.0\lib\net8.0\Tmds.DBus.Protocol.dll
|
||||||
/home/class_student/.dotnet/packs/Microsoft.NETCore.App.Ref/8.0.12/ref/net8.0/WindowsBase.dll
|
C:\Program Files\dotnet\packs\Microsoft.NETCore.App.Ref\8.0.8\ref\net8.0\WindowsBase.dll
|
||||||
|
Binary file not shown.
BIN
obj/Debug/net8.0/apphost.exe
Normal file
BIN
obj/Debug/net8.0/apphost.exe
Normal file
Binary file not shown.
@ -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+c722f8dca42b45d1b29f690d670497660d1ed8c5")]
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+35948e2f7930d51d02ff270c1b9716997a137f13")]
|
||||||
[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")]
|
||||||
|
@ -1 +1 @@
|
|||||||
8fbb7fd3573c9c601aedfd3526df593771d1d09e7f49ddff25c75c0eb415b1d5
|
4dfcac57e00f99bed249a768354c782e7687e32487b7c7b52914c8db973043c4
|
||||||
|
@ -15,18 +15,21 @@ 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/RiderProjects/demo_hard/demo_hard/
|
build_property.ProjectDir = C:\Users\IVAN\RiderProjects\demo_hard\
|
||||||
build_property.EnableComHosting =
|
build_property.EnableComHosting =
|
||||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||||
|
|
||||||
[/home/class_student/RiderProjects/demo_hard/demo_hard/App.axaml]
|
[C:/Users/IVAN/RiderProjects/demo_hard/AddClient.axaml]
|
||||||
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
|
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
|
||||||
|
|
||||||
[/home/class_student/RiderProjects/demo_hard/demo_hard/FunctionWindow.axaml]
|
[C:/Users/IVAN/RiderProjects/demo_hard/App.axaml]
|
||||||
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
|
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
|
||||||
|
|
||||||
[/home/class_student/RiderProjects/demo_hard/demo_hard/MainWindow.axaml]
|
[C:/Users/IVAN/RiderProjects/demo_hard/FunctionWindow.axaml]
|
||||||
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
|
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
|
||||||
|
|
||||||
[/home/class_student/RiderProjects/demo_hard/demo_hard/SallerWindow.axaml]
|
[C:/Users/IVAN/RiderProjects/demo_hard/MainWindow.axaml]
|
||||||
|
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
|
||||||
|
|
||||||
|
[C:/Users/IVAN/RiderProjects/demo_hard/SallerWindow.axaml]
|
||||||
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
|
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
|||||||
a04853a7f7fe215ad2bf6414aca2370fba026abbead53c35ab1138596aea4ab4
|
41cd13734ade819c8046d18d1904e155c2283d2ce9e11fdaa55f2bcefa4338d7
|
||||||
|
@ -159,3 +159,151 @@
|
|||||||
/home/class_student/RiderProjects/demo_hard/demo_hard/obj/Debug/net8.0/demo_hard.csproj.Up2Date
|
/home/class_student/RiderProjects/demo_hard/demo_hard/obj/Debug/net8.0/demo_hard.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/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/ref/demo_hard.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\demo_hard.exe
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\demo_hard.deps.json
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\demo_hard.runtimeconfig.json
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\demo_hard.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\demo_hard.pdb
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Base.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Controls.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.DesignerSupport.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Dialogs.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Markup.Xaml.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Markup.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Metal.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.MicroCom.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.OpenGL.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Vulkan.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Controls.ColorPicker.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Controls.DataGrid.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Desktop.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Diagnostics.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Fonts.Inter.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.FreeDesktop.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Native.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Remote.Protocol.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Skia.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Themes.Fluent.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Themes.Simple.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.Win32.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Avalonia.X11.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\HarfBuzzSharp.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Humanizer.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\MicroCom.Runtime.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.Bcl.AsyncInterfaces.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.CodeAnalysis.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.CodeAnalysis.CSharp.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.CodeAnalysis.CSharp.Workspaces.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.CodeAnalysis.Workspaces.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Abstractions.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Design.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Relational.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.Extensions.Caching.Abstractions.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.Extensions.Caching.Memory.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.Extensions.Configuration.Abstractions.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.Extensions.DependencyModel.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.Extensions.Logging.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.Extensions.Logging.Abstractions.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.Extensions.Options.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Microsoft.Extensions.Primitives.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Mono.TextTemplating.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Npgsql.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Npgsql.EntityFrameworkCore.PostgreSQL.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\SkiaSharp.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\System.CodeDom.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\System.Composition.AttributedModel.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\System.Composition.Convention.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\System.Composition.Hosting.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\System.Composition.Runtime.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\System.Composition.TypedParts.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\System.IO.Pipelines.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\Tmds.DBus.Protocol.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\win-arm64\native\av_libglesv2.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\win-x64\native\av_libglesv2.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\win-x86\native\av_libglesv2.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\osx\native\libAvaloniaNative.dylib
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\linux-arm\native\libHarfBuzzSharp.so
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\linux-arm64\native\libHarfBuzzSharp.so
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\linux-musl-x64\native\libHarfBuzzSharp.so
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\linux-x64\native\libHarfBuzzSharp.so
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\osx\native\libHarfBuzzSharp.dylib
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\win-arm64\native\libHarfBuzzSharp.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\win-x64\native\libHarfBuzzSharp.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\win-x86\native\libHarfBuzzSharp.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\linux-arm\native\libSkiaSharp.so
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\linux-arm64\native\libSkiaSharp.so
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\linux-musl-x64\native\libSkiaSharp.so
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\linux-x64\native\libSkiaSharp.so
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\osx\native\libSkiaSharp.dylib
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\win-arm64\native\libSkiaSharp.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\win-x64\native\libSkiaSharp.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\bin\Debug\net8.0\runtimes\win-x86\native\libSkiaSharp.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\obj\Debug\net8.0\demo_hard.csproj.AssemblyReference.cache
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\obj\Debug\net8.0\Avalonia\Resources.Inputs.cache
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\obj\Debug\net8.0\Avalonia\resources
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\obj\Debug\net8.0\demo_hard.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\obj\Debug\net8.0\demo_hard.AssemblyInfoInputs.cache
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\obj\Debug\net8.0\demo_hard.AssemblyInfo.cs
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\obj\Debug\net8.0\demo_hard.csproj.CoreCompileInputs.cache
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\obj\Debug\net8.0\Avalonia\demo_hard.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\obj\Debug\net8.0\Avalonia\demo_hard.pdb
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\obj\Debug\net8.0\refint\Avalonia\demo_hard.dll
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\obj\Debug\net8.0\demo_hard.csproj.Up2Date
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\obj\Debug\net8.0\demo_hard.genruntimeconfig.cache
|
||||||
|
C:\Users\IVAN\RiderProjects\demo_hard\obj\Debug\net8.0\ref\demo_hard.dll
|
||||||
|
Binary file not shown.
@ -1 +1 @@
|
|||||||
f245aba415d302a87fcde81a2137e47d9d2ea8c68553a1bfde00ae9d09384c4d
|
c28670c56c1196bae2100c25eb1e7ae1f280772ddf2e2779c971d17f11fdc1e5
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1,25 +1,32 @@
|
|||||||
{
|
{
|
||||||
"format": 1,
|
"format": 1,
|
||||||
"restore": {
|
"restore": {
|
||||||
"/home/class_student/RiderProjects/demo_hard/demo_hard/demo_hard.csproj": {}
|
"C:\\Users\\IVAN\\RiderProjects\\demo_hard\\demo_hard.csproj": {}
|
||||||
},
|
},
|
||||||
"projects": {
|
"projects": {
|
||||||
"/home/class_student/RiderProjects/demo_hard/demo_hard/demo_hard.csproj": {
|
"C:\\Users\\IVAN\\RiderProjects\\demo_hard\\demo_hard.csproj": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "/home/class_student/RiderProjects/demo_hard/demo_hard/demo_hard.csproj",
|
"projectUniqueName": "C:\\Users\\IVAN\\RiderProjects\\demo_hard\\demo_hard.csproj",
|
||||||
"projectName": "demo_hard",
|
"projectName": "demo_hard",
|
||||||
"projectPath": "/home/class_student/RiderProjects/demo_hard/demo_hard/demo_hard.csproj",
|
"projectPath": "C:\\Users\\IVAN\\RiderProjects\\demo_hard\\demo_hard.csproj",
|
||||||
"packagesPath": "/home/class_student/.nuget/packages/",
|
"packagesPath": "C:\\Users\\IVAN\\.nuget\\packages\\",
|
||||||
"outputPath": "/home/class_student/RiderProjects/demo_hard/demo_hard/obj/",
|
"outputPath": "C:\\Users\\IVAN\\RiderProjects\\demo_hard\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
|
"fallbackFolders": [
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||||
|
],
|
||||||
"configFilePaths": [
|
"configFilePaths": [
|
||||||
"/home/class_student/.nuget/NuGet/NuGet.Config"
|
"C:\\Users\\IVAN\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||||
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||||
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||||
],
|
],
|
||||||
"originalTargetFrameworks": [
|
"originalTargetFrameworks": [
|
||||||
"net8.0"
|
"net8.0"
|
||||||
],
|
],
|
||||||
"sources": {
|
"sources": {
|
||||||
|
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||||
|
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||||
"https://api.nuget.org/v3/index.json": {}
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
@ -94,7 +101,7 @@
|
|||||||
"privateAssets": "all"
|
"privateAssets": "all"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimeIdentifierGraphPath": "/home/class_student/.dotnet/sdk/8.0.405/PortableRuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.400/PortableRuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,24 +4,25 @@
|
|||||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/class_student/.nuget/packages/</NuGetPackageRoot>
|
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/class_student/.nuget/packages/</NuGetPackageFolders>
|
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\IVAN\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.12.2</NuGetToolVersion>
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.12.2</NuGetToolVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
<SourceRoot Include="/home/class_student/.nuget/packages/" />
|
<SourceRoot Include="C:\Users\IVAN\.nuget\packages\" />
|
||||||
|
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<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')" />
|
<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')" />
|
||||||
<Import Project="$(NuGetPackageRoot)microsoft.entityframeworkcore/8.0.10/buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props" Condition="Exists('$(NuGetPackageRoot)microsoft.entityframeworkcore/8.0.10/buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props')" />
|
<Import Project="$(NuGetPackageRoot)microsoft.entityframeworkcore\8.0.10\buildTransitive\net8.0\Microsoft.EntityFrameworkCore.props" Condition="Exists('$(NuGetPackageRoot)microsoft.entityframeworkcore\8.0.10\buildTransitive\net8.0\Microsoft.EntityFrameworkCore.props')" />
|
||||||
<Import Project="$(NuGetPackageRoot)microsoft.entityframeworkcore.design/8.0.10/build/net8.0/Microsoft.EntityFrameworkCore.Design.props" Condition="Exists('$(NuGetPackageRoot)microsoft.entityframeworkcore.design/8.0.10/build/net8.0/Microsoft.EntityFrameworkCore.Design.props')" />
|
<Import Project="$(NuGetPackageRoot)microsoft.entityframeworkcore.design\8.0.10\build\net8.0\Microsoft.EntityFrameworkCore.Design.props" Condition="Exists('$(NuGetPackageRoot)microsoft.entityframeworkcore.design\8.0.10\build\net8.0\Microsoft.EntityFrameworkCore.Design.props')" />
|
||||||
<Import Project="$(NuGetPackageRoot)harfbuzzsharp.nativeassets.webassembly/7.3.0.3-preview.2.2/buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.props" Condition="Exists('$(NuGetPackageRoot)harfbuzzsharp.nativeassets.webassembly/7.3.0.3-preview.2.2/buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.props')" />
|
<Import Project="$(NuGetPackageRoot)harfbuzzsharp.nativeassets.webassembly\7.3.0.3-preview.2.2\buildTransitive\netstandard1.0\HarfBuzzSharp.NativeAssets.WebAssembly.props" Condition="Exists('$(NuGetPackageRoot)harfbuzzsharp.nativeassets.webassembly\7.3.0.3-preview.2.2\buildTransitive\netstandard1.0\HarfBuzzSharp.NativeAssets.WebAssembly.props')" />
|
||||||
<Import Project="$(NuGetPackageRoot)avalonia/11.2.1/buildTransitive/Avalonia.props" Condition="Exists('$(NuGetPackageRoot)avalonia/11.2.1/buildTransitive/Avalonia.props')" />
|
<Import Project="$(NuGetPackageRoot)avalonia\11.2.1\buildTransitive\Avalonia.props" Condition="Exists('$(NuGetPackageRoot)avalonia\11.2.1\buildTransitive\Avalonia.props')" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
<PkgMicrosoft_CodeAnalysis_Analyzers Condition=" '$(PkgMicrosoft_CodeAnalysis_Analyzers)' == '' ">/home/class_student/.nuget/packages/microsoft.codeanalysis.analyzers/3.3.3</PkgMicrosoft_CodeAnalysis_Analyzers>
|
<PkgMicrosoft_CodeAnalysis_Analyzers Condition=" '$(PkgMicrosoft_CodeAnalysis_Analyzers)' == '' ">C:\Users\IVAN\.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_BuildServices Condition=" '$(PkgAvalonia_BuildServices)' == '' ">C:\Users\IVAN\.nuget\packages\avalonia.buildservices\0.0.29</PkgAvalonia_BuildServices>
|
||||||
<PkgAvalonia Condition=" '$(PkgAvalonia)' == '' ">/home/class_student/.nuget/packages/avalonia/11.2.1</PkgAvalonia>
|
<PkgAvalonia Condition=" '$(PkgAvalonia)' == '' ">C:\Users\IVAN\.nuget\packages\avalonia\11.2.1</PkgAvalonia>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Project>
|
</Project>
|
@ -1,11 +1,11 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
<Import Project="$(NuGetPackageRoot)skiasharp.nativeassets.webassembly/2.88.8/buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.targets" Condition="Exists('$(NuGetPackageRoot)skiasharp.nativeassets.webassembly/2.88.8/buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.targets')" />
|
<Import Project="$(NuGetPackageRoot)skiasharp.nativeassets.webassembly\2.88.8\buildTransitive\netstandard1.0\SkiaSharp.NativeAssets.WebAssembly.targets" Condition="Exists('$(NuGetPackageRoot)skiasharp.nativeassets.webassembly\2.88.8\buildTransitive\netstandard1.0\SkiaSharp.NativeAssets.WebAssembly.targets')" />
|
||||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.logging.abstractions/8.0.2/buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.logging.abstractions/8.0.2/buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets')" />
|
<Import Project="$(NuGetPackageRoot)microsoft.extensions.logging.abstractions\8.0.2\buildTransitive\net6.0\Microsoft.Extensions.Logging.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.logging.abstractions\8.0.2\buildTransitive\net6.0\Microsoft.Extensions.Logging.Abstractions.targets')" />
|
||||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.options/8.0.2/buildTransitive/net6.0/Microsoft.Extensions.Options.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.options/8.0.2/buildTransitive/net6.0/Microsoft.Extensions.Options.targets')" />
|
<Import Project="$(NuGetPackageRoot)microsoft.extensions.options\8.0.2\buildTransitive\net6.0\Microsoft.Extensions.Options.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.options\8.0.2\buildTransitive\net6.0\Microsoft.Extensions.Options.targets')" />
|
||||||
<Import Project="$(NuGetPackageRoot)harfbuzzsharp.nativeassets.webassembly/7.3.0.3-preview.2.2/buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.targets" Condition="Exists('$(NuGetPackageRoot)harfbuzzsharp.nativeassets.webassembly/7.3.0.3-preview.2.2/buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.targets')" />
|
<Import Project="$(NuGetPackageRoot)harfbuzzsharp.nativeassets.webassembly\7.3.0.3-preview.2.2\buildTransitive\netstandard1.0\HarfBuzzSharp.NativeAssets.WebAssembly.targets" Condition="Exists('$(NuGetPackageRoot)harfbuzzsharp.nativeassets.webassembly\7.3.0.3-preview.2.2\buildTransitive\netstandard1.0\HarfBuzzSharp.NativeAssets.WebAssembly.targets')" />
|
||||||
<Import Project="$(NuGetPackageRoot)avalonia.buildservices/0.0.29/buildTransitive/Avalonia.BuildServices.targets" Condition="Exists('$(NuGetPackageRoot)avalonia.buildservices/0.0.29/buildTransitive/Avalonia.BuildServices.targets')" />
|
<Import Project="$(NuGetPackageRoot)avalonia.buildservices\0.0.29\buildTransitive\Avalonia.BuildServices.targets" Condition="Exists('$(NuGetPackageRoot)avalonia.buildservices\0.0.29\buildTransitive\Avalonia.BuildServices.targets')" />
|
||||||
<Import Project="$(NuGetPackageRoot)avalonia/11.2.1/buildTransitive/Avalonia.targets" Condition="Exists('$(NuGetPackageRoot)avalonia/11.2.1/buildTransitive/Avalonia.targets')" />
|
<Import Project="$(NuGetPackageRoot)avalonia\11.2.1\buildTransitive\Avalonia.targets" Condition="Exists('$(NuGetPackageRoot)avalonia\11.2.1\buildTransitive\Avalonia.targets')" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
</Project>
|
</Project>
|
@ -3484,24 +3484,32 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"packageFolders": {
|
"packageFolders": {
|
||||||
"/home/class_student/.nuget/packages/": {}
|
"C:\\Users\\IVAN\\.nuget\\packages\\": {},
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
|
||||||
},
|
},
|
||||||
"project": {
|
"project": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "/home/class_student/RiderProjects/demo_hard/demo_hard/demo_hard.csproj",
|
"projectUniqueName": "C:\\Users\\IVAN\\RiderProjects\\demo_hard\\demo_hard.csproj",
|
||||||
"projectName": "demo_hard",
|
"projectName": "demo_hard",
|
||||||
"projectPath": "/home/class_student/RiderProjects/demo_hard/demo_hard/demo_hard.csproj",
|
"projectPath": "C:\\Users\\IVAN\\RiderProjects\\demo_hard\\demo_hard.csproj",
|
||||||
"packagesPath": "/home/class_student/.nuget/packages/",
|
"packagesPath": "C:\\Users\\IVAN\\.nuget\\packages\\",
|
||||||
"outputPath": "/home/class_student/RiderProjects/demo_hard/demo_hard/obj/",
|
"outputPath": "C:\\Users\\IVAN\\RiderProjects\\demo_hard\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
|
"fallbackFolders": [
|
||||||
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||||
|
],
|
||||||
"configFilePaths": [
|
"configFilePaths": [
|
||||||
"/home/class_student/.nuget/NuGet/NuGet.Config"
|
"C:\\Users\\IVAN\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||||
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||||
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
|
||||||
],
|
],
|
||||||
"originalTargetFrameworks": [
|
"originalTargetFrameworks": [
|
||||||
"net8.0"
|
"net8.0"
|
||||||
],
|
],
|
||||||
"sources": {
|
"sources": {
|
||||||
|
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||||
|
"C:\\Program Files\\dotnet\\library-packs": {},
|
||||||
"https://api.nuget.org/v3/index.json": {}
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
@ -3576,7 +3584,7 @@
|
|||||||
"privateAssets": "all"
|
"privateAssets": "all"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimeIdentifierGraphPath": "/home/class_student/.dotnet/sdk/8.0.405/PortableRuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.400/PortableRuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,75 +1,75 @@
|
|||||||
{
|
{
|
||||||
"version": 2,
|
"version": 2,
|
||||||
"dgSpecHash": "EVCAWmqygcE=",
|
"dgSpecHash": "Aoffvz4u72E=",
|
||||||
"success": true,
|
"success": true,
|
||||||
"projectFilePath": "/home/class_student/RiderProjects/demo_hard/demo_hard/demo_hard.csproj",
|
"projectFilePath": "C:\\Users\\IVAN\\RiderProjects\\demo_hard\\demo_hard.csproj",
|
||||||
"expectedPackageFiles": [
|
"expectedPackageFiles": [
|
||||||
"/home/class_student/.nuget/packages/avalonia/11.2.1/avalonia.11.2.1.nupkg.sha512",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.nuget\\packages\\harfbuzzsharp.nativeassets.webassembly\\7.3.0.3-preview.2.2\\harfbuzzsharp.nativeassets.webassembly.7.3.0.3-preview.2.2.nupkg.sha512",
|
||||||
"/home/class_student/.nuget/packages/harfbuzzsharp.nativeassets.win32/7.3.0.2/harfbuzzsharp.nativeassets.win32.7.3.0.2.nupkg.sha512",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.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",
|
"C:\\Users\\IVAN\\.nuget\\packages\\system.threading.channels\\6.0.0\\system.threading.channels.6.0.0.nupkg.sha512",
|
||||||
"/home/class_student/.nuget/packages/tmds.dbus.protocol/0.20.0/tmds.dbus.protocol.0.20.0.nupkg.sha512"
|
"C:\\Users\\IVAN\\.nuget\\packages\\tmds.dbus.protocol\\0.20.0\\tmds.dbus.protocol.0.20.0.nupkg.sha512"
|
||||||
],
|
],
|
||||||
"logs": []
|
"logs": []
|
||||||
}
|
}
|
@ -1 +1 @@
|
|||||||
"restore":{"projectUniqueName":"/home/class_student/RiderProjects/demo_hard/demo_hard/demo_hard.csproj","projectName":"demo_hard","projectPath":"/home/class_student/RiderProjects/demo_hard/demo_hard/demo_hard.csproj","outputPath":"/home/class_student/RiderProjects/demo_hard/demo_hard/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"Avalonia":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Desktop":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Diagnostics":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Fonts.Inter":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Themes.Fluent":{"target":"Package","version":"[11.2.1, )"},"Microsoft.EntityFrameworkCore":{"target":"Package","version":"[8.0.10, )"},"Microsoft.EntityFrameworkCore.Design":{"include":"Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive","suppressParent":"All","target":"Package","version":"[8.0.10, )"},"Npgsql.EntityFrameworkCore.PostgreSQL":{"target":"Package","version":"[8.0.10, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/home/class_student/.dotnet/sdk/8.0.405/PortableRuntimeIdentifierGraph.json"}}
|
"restore":{"projectUniqueName":"C:\\Users\\IVAN\\RiderProjects\\demo_hard\\demo_hard.csproj","projectName":"demo_hard","projectPath":"C:\\Users\\IVAN\\RiderProjects\\demo_hard\\demo_hard.csproj","outputPath":"C:\\Users\\IVAN\\RiderProjects\\demo_hard\\obj\\","projectStyle":"PackageReference","fallbackFolders":["C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"],"originalTargetFrameworks":["net8.0"],"sources":{"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\":{},"C:\\Program Files\\dotnet\\library-packs":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"Avalonia":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Desktop":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Diagnostics":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Fonts.Inter":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Themes.Fluent":{"target":"Package","version":"[11.2.1, )"},"Microsoft.EntityFrameworkCore":{"target":"Package","version":"[8.0.10, )"},"Microsoft.EntityFrameworkCore.Design":{"include":"Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive","suppressParent":"All","target":"Package","version":"[8.0.10, )"},"Npgsql.EntityFrameworkCore.PostgreSQL":{"target":"Package","version":"[8.0.10, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\8.0.400/PortableRuntimeIdentifierGraph.json"}}
|
@ -1 +1 @@
|
|||||||
17387422914147165
|
17392536187517144
|
@ -1 +1 @@
|
|||||||
17387422914147165
|
17392536187517144
|
Loading…
Reference in New Issue
Block a user