Записи
parent
3b994a58d5
commit
e89906e6e8
|
|
@ -1 +0,0 @@
|
||||||
Policlinica
|
|
||||||
|
|
@ -4,12 +4,14 @@
|
||||||
<option name="projectPerEditor">
|
<option name="projectPerEditor">
|
||||||
<map>
|
<map>
|
||||||
<entry key="Policlinica/App.axaml" value="Policlinica/Policlinica.csproj" />
|
<entry key="Policlinica/App.axaml" value="Policlinica/Policlinica.csproj" />
|
||||||
|
<entry key="Policlinica/Views/AdminView.axaml" value="Policlinica/Policlinica.csproj" />
|
||||||
<entry key="Policlinica/Views/AdminWindow.axaml" value="Policlinica/Policlinica.csproj" />
|
<entry key="Policlinica/Views/AdminWindow.axaml" value="Policlinica/Policlinica.csproj" />
|
||||||
<entry key="Policlinica/Views/AdminWindowView.axaml" value="Policlinica/Policlinica.csproj" />
|
<entry key="Policlinica/Views/AdminWindowView.axaml" value="Policlinica/Policlinica.csproj" />
|
||||||
<entry key="Policlinica/Views/AutorizationView.axaml" value="Policlinica/Policlinica.csproj" />
|
<entry key="Policlinica/Views/AutorizationView.axaml" value="Policlinica/Policlinica.csproj" />
|
||||||
<entry key="Policlinica/Views/DoctoraWindow.axaml" value="Policlinica/Policlinica.csproj" />
|
<entry key="Policlinica/Views/DoctoraWindow.axaml" value="Policlinica/Policlinica.csproj" />
|
||||||
<entry key="Policlinica/Views/InfoWindow.axaml" value="Policlinica/Policlinica.csproj" />
|
<entry key="Policlinica/Views/InfoWindow.axaml" value="Policlinica/Policlinica.csproj" />
|
||||||
<entry key="Policlinica/Views/PasswordWindow.axaml" value="Policlinica/Policlinica.csproj" />
|
<entry key="Policlinica/Views/PasswordWindow.axaml" value="Policlinica/Policlinica.csproj" />
|
||||||
|
<entry key="Policlinica/Views/RecordItemsView.axaml" value="Policlinica/Policlinica.csproj" />
|
||||||
<entry key="Policlinica/Views/Records.axaml" value="Policlinica/Policlinica.csproj" />
|
<entry key="Policlinica/Views/Records.axaml" value="Policlinica/Policlinica.csproj" />
|
||||||
<entry key="Policlinica/Views/RegistrationView.axaml" value="Policlinica/Policlinica.csproj" />
|
<entry key="Policlinica/Views/RegistrationView.axaml" value="Policlinica/Policlinica.csproj" />
|
||||||
<entry key="Policlinica/Views/RegistrationWindow.axaml" value="Policlinica/Policlinica.csproj" />
|
<entry key="Policlinica/Views/RegistrationWindow.axaml" value="Policlinica/Policlinica.csproj" />
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,52 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using Microsoft.Extensions.Options;
|
||||||
|
using MySqlConnector;
|
||||||
|
using Policlinica.ViewModels;
|
||||||
|
|
||||||
|
namespace Policlinica.DB;
|
||||||
|
|
||||||
|
public class RecordItemsRepository : BaseRep
|
||||||
|
{
|
||||||
|
|
||||||
|
public RecordItemsRepository(IOptions<DatabaseConnection> dataBaseConnection) : base(dataBaseConnection)
|
||||||
|
{
|
||||||
|
OpenConnection();
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<RecordItem> GetRecordItemsByTest()
|
||||||
|
{
|
||||||
|
List<RecordItem> result = new List<RecordItem>();
|
||||||
|
string sql = "select * from record_items";
|
||||||
|
try
|
||||||
|
{
|
||||||
|
|
||||||
|
using (var mc = new MySqlCommand(sql, connection))
|
||||||
|
using (var dr = mc.ExecuteReader())
|
||||||
|
{
|
||||||
|
while (dr.Read())
|
||||||
|
{
|
||||||
|
result.Add(new RecordItem
|
||||||
|
{
|
||||||
|
Id = dr.GetInt32("id"),
|
||||||
|
RecordId = dr.GetInt32("record_id"),
|
||||||
|
ServiceId = dr.GetInt32("service_id"),
|
||||||
|
ServicePrice = dr.GetInt32("service_price"),
|
||||||
|
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
catch (MySqlException ex)
|
||||||
|
{
|
||||||
|
Console.WriteLine(ex);
|
||||||
|
}
|
||||||
|
catch (Exception e)
|
||||||
|
{
|
||||||
|
Console.WriteLine(e);
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -12,7 +12,7 @@ public class RecordRep:BaseRep
|
||||||
OpenConnection();
|
OpenConnection();
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<Record> GetRecord()
|
public List<Record> GetRecord(int id)
|
||||||
{
|
{
|
||||||
List<Record> recordsList = new();
|
List<Record> recordsList = new();
|
||||||
|
|
||||||
|
|
@ -20,11 +20,13 @@ public class RecordRep:BaseRep
|
||||||
from records r
|
from records r
|
||||||
join doctors d on r.doctor_id = d.id
|
join doctors d on r.doctor_id = d.id
|
||||||
join users u on r.user_id = u.id
|
join users u on r.user_id = u.id
|
||||||
join services s on r.service_id = s.id";
|
join services s on r.service_id = s.id
|
||||||
|
where r.user_id = @id ";
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
using (var mc = new MySqlCommand(sql, connection))
|
using (var mc = new MySqlCommand(sql, connection))
|
||||||
{
|
{
|
||||||
|
mc.Parameters.AddWithValue("id", id);
|
||||||
using (var reader = mc.ExecuteReader())
|
using (var reader = mc.ExecuteReader())
|
||||||
{
|
{
|
||||||
while (reader.Read())
|
while (reader.Read())
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Runtime.CompilerServices;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Microsoft.Extensions.Options;
|
using Microsoft.Extensions.Options;
|
||||||
using MySqlConnector;
|
using MySqlConnector;
|
||||||
|
|
@ -136,4 +137,39 @@ public class UserRepository:BaseRep
|
||||||
|
|
||||||
return us;
|
return us;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public List<User> GetUserId(string name,string password)
|
||||||
|
{
|
||||||
|
List<User> userIdList = new();
|
||||||
|
string sql = @"select * from `users` where `name` = @name and `password` = @password";
|
||||||
|
try
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
using (var cm = new MySqlCommand(sql, connection))
|
||||||
|
{
|
||||||
|
cm.Parameters.AddWithValue("@name", name);
|
||||||
|
cm.Parameters.AddWithValue("@password", password);
|
||||||
|
using (var reader = cm.ExecuteReader())
|
||||||
|
{
|
||||||
|
while (reader.Read())
|
||||||
|
{
|
||||||
|
userIdList.Add(new User()
|
||||||
|
{
|
||||||
|
Id = reader.GetInt32("id"),
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception e)
|
||||||
|
{
|
||||||
|
Console.WriteLine(e);
|
||||||
|
|
||||||
|
}
|
||||||
|
return userIdList;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -7,4 +7,6 @@ public class User
|
||||||
public string Name { get; set; }
|
public string Name { get; set; }
|
||||||
|
|
||||||
public string Password {get; set;}
|
public string Password {get; set;}
|
||||||
|
|
||||||
|
public string Login { get; set; }
|
||||||
}
|
}
|
||||||
|
|
@ -50,6 +50,8 @@ sealed class Program
|
||||||
s.AddTransient<DoctorView>();
|
s.AddTransient<DoctorView>();
|
||||||
s.AddTransient<DoctorViewModel>();
|
s.AddTransient<DoctorViewModel>();
|
||||||
|
|
||||||
|
s.AddTransient<RecordItemsView>();
|
||||||
|
// s.AddTransient<RecordItemsViewModel>();
|
||||||
//Репозитории
|
//Репозитории
|
||||||
s.AddTransient<DoctorRepository>();
|
s.AddTransient<DoctorRepository>();
|
||||||
|
|
||||||
|
|
@ -61,6 +63,8 @@ sealed class Program
|
||||||
|
|
||||||
s.AddSingleton<Navigation>();
|
s.AddSingleton<Navigation>();
|
||||||
|
|
||||||
|
s.AddSingleton<RecordItemsRepository>();
|
||||||
|
s.AddSingleton<User>();
|
||||||
|
|
||||||
|
|
||||||
s.AddTransient<Doctor>();
|
s.AddTransient<Doctor>();
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Collections.ObjectModel;
|
using System.Collections.ObjectModel;
|
||||||
|
using System.Linq;
|
||||||
using CommunityToolkit.Mvvm.ComponentModel;
|
using CommunityToolkit.Mvvm.ComponentModel;
|
||||||
using CommunityToolkit.Mvvm.Input;
|
using CommunityToolkit.Mvvm.Input;
|
||||||
using Microsoft.Extensions.DependencyInjection;
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
|
|
@ -15,26 +16,40 @@ public partial class AdminViewModel : ViewModelBase
|
||||||
private readonly Navigation _navigation;
|
private readonly Navigation _navigation;
|
||||||
private readonly IServiceProvider _provider;
|
private readonly IServiceProvider _provider;
|
||||||
private readonly RecordRep _recordRep;
|
private readonly RecordRep _recordRep;
|
||||||
|
private readonly User _user;
|
||||||
|
private readonly UserRepository _userRepository;
|
||||||
[ObservableProperty] string _login;
|
[ObservableProperty] string _login;
|
||||||
|
[ObservableProperty] int _id;
|
||||||
[ObservableProperty] ObservableCollection<Record> _recordsList = new();
|
[ObservableProperty] ObservableCollection<Record> _recordsList = new();
|
||||||
[ObservableProperty] private Record _selectedRecord;
|
[ObservableProperty] private Record _selectedRecord;
|
||||||
|
[ObservableProperty] private ObservableCollection<User> userList = new ObservableCollection<User>();
|
||||||
|
|
||||||
|
public AdminViewModel(Navigation navigation, IServiceProvider provider, RecordRep recordRep,User user,UserRepository userRepository)
|
||||||
public AdminViewModel( Navigation navigation, IServiceProvider provider, RecordRep recordRep)
|
|
||||||
{
|
{
|
||||||
|
|
||||||
_navigation = navigation;
|
_navigation = navigation;
|
||||||
_provider = provider;
|
_provider = provider;
|
||||||
_recordRep = recordRep;
|
_recordRep = recordRep;
|
||||||
|
_user = user;
|
||||||
|
_userRepository = userRepository;
|
||||||
|
|
||||||
RecordsList = new ObservableCollection<Record>(recordRep.GetRecord());
|
UserList = new ObservableCollection<User>(userRepository.GetUserId(user.Login,user.Password));
|
||||||
|
|
||||||
|
foreach (var obj in UserList)
|
||||||
|
{
|
||||||
|
Id = obj.Id;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
RecordsList = new ObservableCollection<Record>(recordRep.GetRecord(Id));
|
||||||
}
|
}
|
||||||
|
|
||||||
[RelayCommand]
|
[RelayCommand]
|
||||||
void DeleteRecord()
|
void DeleteRecord()
|
||||||
{
|
{
|
||||||
_recordRep.Delete(SelectedRecord.Id);
|
_recordRep.Delete(SelectedRecord.Id);
|
||||||
RecordsList = new ObservableCollection<Record>(_recordRep.GetRecord());
|
RecordsList = new ObservableCollection<Record>(_recordRep.GetRecord(Id));
|
||||||
}
|
}
|
||||||
|
|
||||||
[RelayCommand]
|
[RelayCommand]
|
||||||
|
|
@ -43,4 +58,5 @@ public partial class AdminViewModel : ViewModelBase
|
||||||
var vm = ActivatorUtilities.CreateInstance<DoctorViewModel>(_provider);
|
var vm = ActivatorUtilities.CreateInstance<DoctorViewModel>(_provider);
|
||||||
_navigation.Navigate(vm);
|
_navigation.Navigate(vm);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
@ -12,15 +12,17 @@ public partial class AutorizationViewModel : ViewModelBase
|
||||||
{
|
{
|
||||||
private readonly IServiceProvider _provider;
|
private readonly IServiceProvider _provider;
|
||||||
private readonly Navigation _navigation;
|
private readonly Navigation _navigation;
|
||||||
|
private readonly User _user;
|
||||||
|
|
||||||
[ObservableProperty] string _login;
|
[ObservableProperty] string _login;
|
||||||
[ObservableProperty] string _password;
|
[ObservableProperty] string _password;
|
||||||
[ObservableProperty] public string _eror;
|
[ObservableProperty] public string _eror;
|
||||||
|
|
||||||
public AutorizationViewModel(IServiceProvider provider, Navigation navigation)
|
public AutorizationViewModel(IServiceProvider provider, Navigation navigation,User user)
|
||||||
{
|
{
|
||||||
_provider = provider;
|
_provider = provider;
|
||||||
_navigation = navigation;
|
_navigation = navigation;
|
||||||
|
_user = user;
|
||||||
}
|
}
|
||||||
|
|
||||||
[RelayCommand]
|
[RelayCommand]
|
||||||
|
|
@ -33,6 +35,9 @@ public partial class AutorizationViewModel : ViewModelBase
|
||||||
SpUser = repository.CheckLoginAndPassword(Login, Password);
|
SpUser = repository.CheckLoginAndPassword(Login, Password);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_user.Password = Password;
|
||||||
|
_user.Login = Login;
|
||||||
|
|
||||||
if (SpUser.Count == 0)
|
if (SpUser.Count == 0)
|
||||||
{
|
{
|
||||||
Eror = "Неверный логин или пароль";
|
Eror = "Неверный логин или пароль";
|
||||||
|
|
|
||||||
|
|
@ -26,8 +26,6 @@ public partial class DoctorViewModel : ViewModelBase
|
||||||
_navigation = navigation;
|
_navigation = navigation;
|
||||||
|
|
||||||
|
|
||||||
Chuvak.name = Name;
|
|
||||||
Chuvak.surname = Surname;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
[RelayCommand]
|
[RelayCommand]
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,68 @@
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using CommunityToolkit.Mvvm.ComponentModel;
|
||||||
|
using CommunityToolkit.Mvvm.Input;
|
||||||
|
using Microsoft.Extensions.DependencyInjection;
|
||||||
|
using Policlinica.DB;
|
||||||
|
/*
|
||||||
|
namespace Policlinica.ViewModels;
|
||||||
|
|
||||||
|
public partial class RecordItemsViewModel : ViewModelBase
|
||||||
|
{
|
||||||
|
|
||||||
|
private readonly IServiceProvider _provider;
|
||||||
|
private readonly Navigation _navigation;
|
||||||
|
|
||||||
|
[ObservableProperty] List<Service> _services;
|
||||||
|
[ObservableProperty] Service _selectedService;
|
||||||
|
private RecordItemsRepository _repository;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
public RecordItemsViewModel(IServiceProvider provider, Service selectedService, List<Service> services, RecordItemsRepository repository)
|
||||||
|
{
|
||||||
|
_provider = provider;
|
||||||
|
_services = services;
|
||||||
|
_selectedService = selectedService;
|
||||||
|
_repository = repository;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[RelayCommand]
|
||||||
|
public void SaveDB()
|
||||||
|
{
|
||||||
|
|
||||||
|
_repository.GetRecordItemsByTest(Records, Services);
|
||||||
|
if (SelectedDoctor == null)
|
||||||
|
return;
|
||||||
|
var vm = ActivatorUtilities.CreateInstance<AdminViewModel>(_provider);
|
||||||
|
_navigation.Navigate(vm);
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
[RelayCommand]
|
||||||
|
public void Start()
|
||||||
|
{
|
||||||
|
if (SelectedService == null)
|
||||||
|
return;
|
||||||
|
var vm = _serviceProvider.GetRequiredService<MainWindowViewModel>();
|
||||||
|
var win = _serviceProvider.GetRequiredService<MainWindow>();
|
||||||
|
|
||||||
|
vm.SetClose(win.Close);
|
||||||
|
win.DataContext = vm;
|
||||||
|
win.Show();
|
||||||
|
close();
|
||||||
|
}
|
||||||
|
private Action close;
|
||||||
|
|
||||||
|
public void SetClose(Action close)
|
||||||
|
{
|
||||||
|
this.close = close;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
@ -0,0 +1,8 @@
|
||||||
|
<UserControl 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="Policlinica.Views.RecordItemsView">
|
||||||
|
|
||||||
|
</UserControl>
|
||||||
|
|
@ -0,0 +1,13 @@
|
||||||
|
using Avalonia;
|
||||||
|
using Avalonia.Controls;
|
||||||
|
using Avalonia.Markup.Xaml;
|
||||||
|
|
||||||
|
namespace Policlinica.Views;
|
||||||
|
|
||||||
|
public partial class RecordItemsView : UserControl
|
||||||
|
{
|
||||||
|
public RecordItemsView()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -24,7 +24,6 @@
|
||||||
},
|
},
|
||||||
"Avalonia/11.3.11": {
|
"Avalonia/11.3.11": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Avalonia.BuildServices": "11.3.2",
|
|
||||||
"Avalonia.Remote.Protocol": "11.3.11",
|
"Avalonia.Remote.Protocol": "11.3.11",
|
||||||
"MicroCom.Runtime": "0.11.0"
|
"MicroCom.Runtime": "0.11.0"
|
||||||
},
|
},
|
||||||
|
|
@ -80,21 +79,20 @@
|
||||||
"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.25606.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.25606.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.25606.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"Avalonia.BuildServices/11.3.2": {},
|
|
||||||
"Avalonia.Controls.ColorPicker/11.3.11": {
|
"Avalonia.Controls.ColorPicker/11.3.11": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Avalonia": "11.3.11",
|
"Avalonia": "11.3.11",
|
||||||
|
|
@ -200,10 +198,8 @@
|
||||||
"Avalonia": "11.3.11",
|
"Avalonia": "11.3.11",
|
||||||
"HarfBuzzSharp": "8.3.1.1",
|
"HarfBuzzSharp": "8.3.1.1",
|
||||||
"HarfBuzzSharp.NativeAssets.Linux": "8.3.1.1",
|
"HarfBuzzSharp.NativeAssets.Linux": "8.3.1.1",
|
||||||
"HarfBuzzSharp.NativeAssets.WebAssembly": "8.3.1.1",
|
|
||||||
"SkiaSharp": "2.88.9",
|
"SkiaSharp": "2.88.9",
|
||||||
"SkiaSharp.NativeAssets.Linux": "2.88.9",
|
"SkiaSharp.NativeAssets.Linux": "2.88.9"
|
||||||
"SkiaSharp.NativeAssets.WebAssembly": "2.88.9"
|
|
||||||
},
|
},
|
||||||
"runtime": {
|
"runtime": {
|
||||||
"lib/net8.0/Avalonia.Skia.dll": {
|
"lib/net8.0/Avalonia.Skia.dll": {
|
||||||
|
|
@ -351,7 +347,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"HarfBuzzSharp.NativeAssets.WebAssembly/8.3.1.1": {},
|
|
||||||
"HarfBuzzSharp.NativeAssets.Win32/8.3.1.1": {
|
"HarfBuzzSharp.NativeAssets.Win32/8.3.1.1": {
|
||||||
"runtimeTargets": {
|
"runtimeTargets": {
|
||||||
"runtimes/win-arm64/native/libHarfBuzzSharp.dll": {
|
"runtimes/win-arm64/native/libHarfBuzzSharp.dll": {
|
||||||
|
|
@ -804,7 +799,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"SkiaSharp.NativeAssets.WebAssembly/2.88.9": {},
|
|
||||||
"SkiaSharp.NativeAssets.Win32/2.88.9": {
|
"SkiaSharp.NativeAssets.Win32/2.88.9": {
|
||||||
"runtimeTargets": {
|
"runtimeTargets": {
|
||||||
"runtimes/win-arm64/native/libSkiaSharp.dll": {
|
"runtimes/win-arm64/native/libSkiaSharp.dll": {
|
||||||
|
|
@ -844,7 +838,7 @@
|
||||||
"rid": "win",
|
"rid": "win",
|
||||||
"assetType": "runtime",
|
"assetType": "runtime",
|
||||||
"assemblyVersion": "10.0.0.0",
|
"assemblyVersion": "10.0.0.0",
|
||||||
"fileVersion": "10.0.25.52411"
|
"fileVersion": "0.0.0.0"
|
||||||
},
|
},
|
||||||
"runtimes/win/lib/net9.0/System.Diagnostics.EventLog.dll": {
|
"runtimes/win/lib/net9.0/System.Diagnostics.EventLog.dll": {
|
||||||
"rid": "win",
|
"rid": "win",
|
||||||
|
|
@ -929,13 +923,6 @@
|
||||||
"path": "avalonia.angle.windows.natives/2.1.25547.20250602",
|
"path": "avalonia.angle.windows.natives/2.1.25547.20250602",
|
||||||
"hashPath": "avalonia.angle.windows.natives.2.1.25547.20250602.nupkg.sha512"
|
"hashPath": "avalonia.angle.windows.natives.2.1.25547.20250602.nupkg.sha512"
|
||||||
},
|
},
|
||||||
"Avalonia.BuildServices/11.3.2": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-qHDToxto1e3hci5YqbG9n0Ty8mlp3zBUN5wT66wKqaDVzXyQ0do3EnRILd4Ke9jpvsktaPpgE0YjEk7hornryQ==",
|
|
||||||
"path": "avalonia.buildservices/11.3.2",
|
|
||||||
"hashPath": "avalonia.buildservices.11.3.2.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"Avalonia.Controls.ColorPicker/11.3.11": {
|
"Avalonia.Controls.ColorPicker/11.3.11": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
|
|
@ -1055,13 +1042,6 @@
|
||||||
"path": "harfbuzzsharp.nativeassets.macos/8.3.1.1",
|
"path": "harfbuzzsharp.nativeassets.macos/8.3.1.1",
|
||||||
"hashPath": "harfbuzzsharp.nativeassets.macos.8.3.1.1.nupkg.sha512"
|
"hashPath": "harfbuzzsharp.nativeassets.macos.8.3.1.1.nupkg.sha512"
|
||||||
},
|
},
|
||||||
"HarfBuzzSharp.NativeAssets.WebAssembly/8.3.1.1": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-loJweK2u/mH/3C2zBa0ggJlITIszOkK64HLAZB7FUT670dTg965whLFYHDQo69NmC4+d9UN0icLC9VHidXaVCA==",
|
|
||||||
"path": "harfbuzzsharp.nativeassets.webassembly/8.3.1.1",
|
|
||||||
"hashPath": "harfbuzzsharp.nativeassets.webassembly.8.3.1.1.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"HarfBuzzSharp.NativeAssets.Win32/8.3.1.1": {
|
"HarfBuzzSharp.NativeAssets.Win32/8.3.1.1": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
|
|
@ -1293,13 +1273,6 @@
|
||||||
"path": "skiasharp.nativeassets.macos/2.88.9",
|
"path": "skiasharp.nativeassets.macos/2.88.9",
|
||||||
"hashPath": "skiasharp.nativeassets.macos.2.88.9.nupkg.sha512"
|
"hashPath": "skiasharp.nativeassets.macos.2.88.9.nupkg.sha512"
|
||||||
},
|
},
|
||||||
"SkiaSharp.NativeAssets.WebAssembly/2.88.9": {
|
|
||||||
"type": "package",
|
|
||||||
"serviceable": true,
|
|
||||||
"sha512": "sha512-kt06RccBHSnAs2wDYdBSfsjIDbY3EpsOVqnlDgKdgvyuRA8ZFDaHRdWNx1VHjGgYzmnFCGiTJBnXFl5BqGwGnA==",
|
|
||||||
"path": "skiasharp.nativeassets.webassembly/2.88.9",
|
|
||||||
"hashPath": "skiasharp.nativeassets.webassembly.2.88.9.nupkg.sha512"
|
|
||||||
},
|
|
||||||
"SkiaSharp.NativeAssets.Win32/2.88.9": {
|
"SkiaSharp.NativeAssets.Win32/2.88.9": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
|
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -1 +1 @@
|
||||||
b65194b2a595df2dfeb5c63c3c1ac6a1f31705d4e0053644b94192dd9a038f18
|
4ac1bf132aedcda300225e50b4c9443fde5482ca34a7554ba5f5e32b293ab61f
|
||||||
|
|
|
||||||
|
|
@ -1,223 +1,223 @@
|
||||||
/home/student/.nuget/packages/avalonia/11.3.11/ref/net8.0/Avalonia.Base.dll
|
C:\Users\artem\.nuget\packages\avalonia\11.3.11\ref\net8.0\Avalonia.Base.dll
|
||||||
/home/student/.nuget/packages/avalonia.controls.colorpicker/11.3.11/lib/net8.0/Avalonia.Controls.ColorPicker.dll
|
C:\Users\artem\.nuget\packages\avalonia.controls.colorpicker\11.3.11\lib\net8.0\Avalonia.Controls.ColorPicker.dll
|
||||||
/home/student/.nuget/packages/avalonia.controls.datagrid/11.3.9/lib/net8.0/Avalonia.Controls.DataGrid.dll
|
C:\Users\artem\.nuget\packages\avalonia.controls.datagrid\11.3.9\lib\net8.0\Avalonia.Controls.DataGrid.dll
|
||||||
/home/student/.nuget/packages/avalonia/11.3.11/ref/net8.0/Avalonia.Controls.dll
|
C:\Users\artem\.nuget\packages\avalonia\11.3.11\ref\net8.0\Avalonia.Controls.dll
|
||||||
/home/student/.nuget/packages/avalonia/11.3.11/ref/net8.0/Avalonia.DesignerSupport.dll
|
C:\Users\artem\.nuget\packages\avalonia\11.3.11\ref\net8.0\Avalonia.DesignerSupport.dll
|
||||||
/home/student/.nuget/packages/avalonia.desktop/11.3.11/lib/net8.0/Avalonia.Desktop.dll
|
C:\Users\artem\.nuget\packages\avalonia.desktop\11.3.11\lib\net8.0\Avalonia.Desktop.dll
|
||||||
/home/student/.nuget/packages/avalonia.diagnostics/11.3.11/lib/net8.0/Avalonia.Diagnostics.dll
|
C:\Users\artem\.nuget\packages\avalonia.diagnostics\11.3.11\lib\net8.0\Avalonia.Diagnostics.dll
|
||||||
/home/student/.nuget/packages/avalonia/11.3.11/ref/net8.0/Avalonia.Dialogs.dll
|
C:\Users\artem\.nuget\packages\avalonia\11.3.11\ref\net8.0\Avalonia.Dialogs.dll
|
||||||
/home/student/.nuget/packages/avalonia/11.3.11/ref/net8.0/Avalonia.dll
|
C:\Users\artem\.nuget\packages\avalonia\11.3.11\ref\net8.0\Avalonia.dll
|
||||||
/home/student/.nuget/packages/avalonia.fonts.inter/11.3.11/lib/net8.0/Avalonia.Fonts.Inter.dll
|
C:\Users\artem\.nuget\packages\avalonia.fonts.inter\11.3.11\lib\net8.0\Avalonia.Fonts.Inter.dll
|
||||||
/home/student/.nuget/packages/avalonia.freedesktop/11.3.11/lib/net8.0/Avalonia.FreeDesktop.dll
|
C:\Users\artem\.nuget\packages\avalonia.freedesktop\11.3.11\lib\net8.0\Avalonia.FreeDesktop.dll
|
||||||
/home/student/.nuget/packages/avalonia/11.3.11/ref/net8.0/Avalonia.Markup.dll
|
C:\Users\artem\.nuget\packages\avalonia\11.3.11\ref\net8.0\Avalonia.Markup.dll
|
||||||
/home/student/.nuget/packages/avalonia/11.3.11/ref/net8.0/Avalonia.Markup.Xaml.dll
|
C:\Users\artem\.nuget\packages\avalonia\11.3.11\ref\net8.0\Avalonia.Markup.Xaml.dll
|
||||||
/home/student/.nuget/packages/avalonia/11.3.11/ref/net8.0/Avalonia.Metal.dll
|
C:\Users\artem\.nuget\packages\avalonia\11.3.11\ref\net8.0\Avalonia.Metal.dll
|
||||||
/home/student/.nuget/packages/avalonia/11.3.11/ref/net8.0/Avalonia.MicroCom.dll
|
C:\Users\artem\.nuget\packages\avalonia\11.3.11\ref\net8.0\Avalonia.MicroCom.dll
|
||||||
/home/student/.nuget/packages/avalonia.native/11.3.11/lib/net8.0/Avalonia.Native.dll
|
C:\Users\artem\.nuget\packages\avalonia.native\11.3.11\lib\net8.0\Avalonia.Native.dll
|
||||||
/home/student/.nuget/packages/avalonia/11.3.11/ref/net8.0/Avalonia.OpenGL.dll
|
C:\Users\artem\.nuget\packages\avalonia\11.3.11\ref\net8.0\Avalonia.OpenGL.dll
|
||||||
/home/student/.nuget/packages/avalonia.remote.protocol/11.3.11/lib/net8.0/Avalonia.Remote.Protocol.dll
|
C:\Users\artem\.nuget\packages\avalonia.remote.protocol\11.3.11\lib\net8.0\Avalonia.Remote.Protocol.dll
|
||||||
/home/student/.nuget/packages/avalonia.skia/11.3.11/lib/net8.0/Avalonia.Skia.dll
|
C:\Users\artem\.nuget\packages\avalonia.skia\11.3.11\lib\net8.0\Avalonia.Skia.dll
|
||||||
/home/student/.nuget/packages/avalonia.themes.fluent/11.3.11/lib/net8.0/Avalonia.Themes.Fluent.dll
|
C:\Users\artem\.nuget\packages\avalonia.themes.fluent\11.3.11\lib\net8.0\Avalonia.Themes.Fluent.dll
|
||||||
/home/student/.nuget/packages/avalonia.themes.simple/11.3.11/lib/net8.0/Avalonia.Themes.Simple.dll
|
C:\Users\artem\.nuget\packages\avalonia.themes.simple\11.3.11\lib\net8.0\Avalonia.Themes.Simple.dll
|
||||||
/home/student/.nuget/packages/avalonia/11.3.11/ref/net8.0/Avalonia.Vulkan.dll
|
C:\Users\artem\.nuget\packages\avalonia\11.3.11\ref\net8.0\Avalonia.Vulkan.dll
|
||||||
/home/student/.nuget/packages/avalonia.win32/11.3.11/lib/net8.0/Avalonia.Win32.Automation.dll
|
C:\Users\artem\.nuget\packages\avalonia.win32\11.3.11\lib\net8.0\Avalonia.Win32.Automation.dll
|
||||||
/home/student/.nuget/packages/avalonia.win32/11.3.11/lib/net8.0/Avalonia.Win32.dll
|
C:\Users\artem\.nuget\packages\avalonia.win32\11.3.11\lib\net8.0\Avalonia.Win32.dll
|
||||||
/home/student/.nuget/packages/avalonia.x11/11.3.11/lib/net8.0/Avalonia.X11.dll
|
C:\Users\artem\.nuget\packages\avalonia.x11\11.3.11\lib\net8.0\Avalonia.X11.dll
|
||||||
/home/student/.nuget/packages/communitytoolkit.mvvm/8.4.2/lib/net8.0/CommunityToolkit.Mvvm.dll
|
C:\Users\artem\.nuget\packages\communitytoolkit.mvvm\8.4.2\lib\net8.0\CommunityToolkit.Mvvm.dll
|
||||||
/home/student/.nuget/packages/harfbuzzsharp/8.3.1.1/lib/net8.0/HarfBuzzSharp.dll
|
C:\Users\artem\.nuget\packages\harfbuzzsharp\8.3.1.1\lib\net8.0\HarfBuzzSharp.dll
|
||||||
/home/student/.nuget/packages/microcom.runtime/0.11.0/lib/net5.0/MicroCom.Runtime.dll
|
C:\Users\artem\.nuget\packages\microcom.runtime\0.11.0\lib\net5.0\MicroCom.Runtime.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/Microsoft.CSharp.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\Microsoft.CSharp.dll
|
||||||
/home/student/.nuget/packages/microsoft.extensions.configuration.abstractions/10.0.0/lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll
|
C:\Users\artem\.nuget\packages\microsoft.extensions.configuration.abstractions\10.0.0\lib\net9.0\Microsoft.Extensions.Configuration.Abstractions.dll
|
||||||
/home/student/.nuget/packages/microsoft.extensions.configuration.binder/10.0.0/lib/net9.0/Microsoft.Extensions.Configuration.Binder.dll
|
C:\Users\artem\.nuget\packages\microsoft.extensions.configuration.binder\10.0.0\lib\net9.0\Microsoft.Extensions.Configuration.Binder.dll
|
||||||
/home/student/.nuget/packages/microsoft.extensions.configuration.commandline/10.0.0/lib/net9.0/Microsoft.Extensions.Configuration.CommandLine.dll
|
C:\Users\artem\.nuget\packages\microsoft.extensions.configuration.commandline\10.0.0\lib\net9.0\Microsoft.Extensions.Configuration.CommandLine.dll
|
||||||
/home/student/.nuget/packages/microsoft.extensions.configuration/10.0.0/lib/net9.0/Microsoft.Extensions.Configuration.dll
|
C:\Users\artem\.nuget\packages\microsoft.extensions.configuration\10.0.0\lib\net9.0\Microsoft.Extensions.Configuration.dll
|
||||||
/home/student/.nuget/packages/microsoft.extensions.configuration.environmentvariables/10.0.0/lib/net9.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll
|
C:\Users\artem\.nuget\packages\microsoft.extensions.configuration.environmentvariables\10.0.0\lib\net9.0\Microsoft.Extensions.Configuration.EnvironmentVariables.dll
|
||||||
/home/student/.nuget/packages/microsoft.extensions.configuration.fileextensions/10.0.0/lib/net9.0/Microsoft.Extensions.Configuration.FileExtensions.dll
|
C:\Users\artem\.nuget\packages\microsoft.extensions.configuration.fileextensions\10.0.0\lib\net9.0\Microsoft.Extensions.Configuration.FileExtensions.dll
|
||||||
/home/student/.nuget/packages/microsoft.extensions.configuration.json/10.0.0/lib/net9.0/Microsoft.Extensions.Configuration.Json.dll
|
C:\Users\artem\.nuget\packages\microsoft.extensions.configuration.json\10.0.0\lib\net9.0\Microsoft.Extensions.Configuration.Json.dll
|
||||||
/home/student/.nuget/packages/microsoft.extensions.configuration.usersecrets/10.0.0/lib/net9.0/Microsoft.Extensions.Configuration.UserSecrets.dll
|
C:\Users\artem\.nuget\packages\microsoft.extensions.configuration.usersecrets\10.0.0\lib\net9.0\Microsoft.Extensions.Configuration.UserSecrets.dll
|
||||||
/home/student/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/10.0.0/lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll
|
C:\Users\artem\.nuget\packages\microsoft.extensions.dependencyinjection.abstractions\10.0.0\lib\net9.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll
|
||||||
/home/student/.nuget/packages/microsoft.extensions.dependencyinjection/10.0.0/lib/net9.0/Microsoft.Extensions.DependencyInjection.dll
|
C:\Users\artem\.nuget\packages\microsoft.extensions.dependencyinjection\10.0.0\lib\net9.0\Microsoft.Extensions.DependencyInjection.dll
|
||||||
/home/student/.nuget/packages/microsoft.extensions.diagnostics.abstractions/10.0.0/lib/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll
|
C:\Users\artem\.nuget\packages\microsoft.extensions.diagnostics.abstractions\10.0.0\lib\net9.0\Microsoft.Extensions.Diagnostics.Abstractions.dll
|
||||||
/home/student/.nuget/packages/microsoft.extensions.diagnostics/10.0.0/lib/net9.0/Microsoft.Extensions.Diagnostics.dll
|
C:\Users\artem\.nuget\packages\microsoft.extensions.diagnostics\10.0.0\lib\net9.0\Microsoft.Extensions.Diagnostics.dll
|
||||||
/home/student/.nuget/packages/microsoft.extensions.fileproviders.abstractions/10.0.0/lib/net9.0/Microsoft.Extensions.FileProviders.Abstractions.dll
|
C:\Users\artem\.nuget\packages\microsoft.extensions.fileproviders.abstractions\10.0.0\lib\net9.0\Microsoft.Extensions.FileProviders.Abstractions.dll
|
||||||
/home/student/.nuget/packages/microsoft.extensions.fileproviders.physical/10.0.0/lib/net9.0/Microsoft.Extensions.FileProviders.Physical.dll
|
C:\Users\artem\.nuget\packages\microsoft.extensions.fileproviders.physical\10.0.0\lib\net9.0\Microsoft.Extensions.FileProviders.Physical.dll
|
||||||
/home/student/.nuget/packages/microsoft.extensions.filesystemglobbing/10.0.0/lib/net9.0/Microsoft.Extensions.FileSystemGlobbing.dll
|
C:\Users\artem\.nuget\packages\microsoft.extensions.filesystemglobbing\10.0.0\lib\net9.0\Microsoft.Extensions.FileSystemGlobbing.dll
|
||||||
/home/student/.nuget/packages/microsoft.extensions.hosting.abstractions/10.0.0/lib/net9.0/Microsoft.Extensions.Hosting.Abstractions.dll
|
C:\Users\artem\.nuget\packages\microsoft.extensions.hosting.abstractions\10.0.0\lib\net9.0\Microsoft.Extensions.Hosting.Abstractions.dll
|
||||||
/home/student/.nuget/packages/microsoft.extensions.hosting/10.0.0/lib/net9.0/Microsoft.Extensions.Hosting.dll
|
C:\Users\artem\.nuget\packages\microsoft.extensions.hosting\10.0.0\lib\net9.0\Microsoft.Extensions.Hosting.dll
|
||||||
/home/student/.nuget/packages/microsoft.extensions.logging.abstractions/10.0.0/lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll
|
C:\Users\artem\.nuget\packages\microsoft.extensions.logging.abstractions\10.0.0\lib\net9.0\Microsoft.Extensions.Logging.Abstractions.dll
|
||||||
/home/student/.nuget/packages/microsoft.extensions.logging.configuration/10.0.0/lib/net9.0/Microsoft.Extensions.Logging.Configuration.dll
|
C:\Users\artem\.nuget\packages\microsoft.extensions.logging.configuration\10.0.0\lib\net9.0\Microsoft.Extensions.Logging.Configuration.dll
|
||||||
/home/student/.nuget/packages/microsoft.extensions.logging.console/10.0.0/lib/net9.0/Microsoft.Extensions.Logging.Console.dll
|
C:\Users\artem\.nuget\packages\microsoft.extensions.logging.console\10.0.0\lib\net9.0\Microsoft.Extensions.Logging.Console.dll
|
||||||
/home/student/.nuget/packages/microsoft.extensions.logging.debug/10.0.0/lib/net9.0/Microsoft.Extensions.Logging.Debug.dll
|
C:\Users\artem\.nuget\packages\microsoft.extensions.logging.debug\10.0.0\lib\net9.0\Microsoft.Extensions.Logging.Debug.dll
|
||||||
/home/student/.nuget/packages/microsoft.extensions.logging/10.0.0/lib/net9.0/Microsoft.Extensions.Logging.dll
|
C:\Users\artem\.nuget\packages\microsoft.extensions.logging\10.0.0\lib\net9.0\Microsoft.Extensions.Logging.dll
|
||||||
/home/student/.nuget/packages/microsoft.extensions.logging.eventlog/10.0.0/lib/net9.0/Microsoft.Extensions.Logging.EventLog.dll
|
C:\Users\artem\.nuget\packages\microsoft.extensions.logging.eventlog\10.0.0\lib\net9.0\Microsoft.Extensions.Logging.EventLog.dll
|
||||||
/home/student/.nuget/packages/microsoft.extensions.logging.eventsource/10.0.0/lib/net9.0/Microsoft.Extensions.Logging.EventSource.dll
|
C:\Users\artem\.nuget\packages\microsoft.extensions.logging.eventsource\10.0.0\lib\net9.0\Microsoft.Extensions.Logging.EventSource.dll
|
||||||
/home/student/.nuget/packages/microsoft.extensions.options.configurationextensions/10.0.0/lib/net9.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll
|
C:\Users\artem\.nuget\packages\microsoft.extensions.options.configurationextensions\10.0.0\lib\net9.0\Microsoft.Extensions.Options.ConfigurationExtensions.dll
|
||||||
/home/student/.nuget/packages/microsoft.extensions.options/10.0.0/lib/net9.0/Microsoft.Extensions.Options.dll
|
C:\Users\artem\.nuget\packages\microsoft.extensions.options\10.0.0\lib\net9.0\Microsoft.Extensions.Options.dll
|
||||||
/home/student/.nuget/packages/microsoft.extensions.primitives/10.0.0/lib/net9.0/Microsoft.Extensions.Primitives.dll
|
C:\Users\artem\.nuget\packages\microsoft.extensions.primitives\10.0.0\lib\net9.0\Microsoft.Extensions.Primitives.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/Microsoft.VisualBasic.Core.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\Microsoft.VisualBasic.Core.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/Microsoft.VisualBasic.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\Microsoft.VisualBasic.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/Microsoft.Win32.Primitives.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\Microsoft.Win32.Primitives.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/Microsoft.Win32.Registry.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\Microsoft.Win32.Registry.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/mscorlib.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\mscorlib.dll
|
||||||
/home/student/.nuget/packages/mysqlconnector/2.5.0/lib/net9.0/MySqlConnector.dll
|
C:\Users\artem\.nuget\packages\mysqlconnector\2.5.0\lib\net9.0\MySqlConnector.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/netstandard.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\netstandard.dll
|
||||||
/home/student/.nuget/packages/skiasharp/2.88.9/lib/net6.0/SkiaSharp.dll
|
C:\Users\artem\.nuget\packages\skiasharp\2.88.9\lib\net6.0\SkiaSharp.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.AppContext.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.AppContext.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Buffers.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Buffers.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Collections.Concurrent.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Collections.Concurrent.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Collections.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Collections.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Collections.Immutable.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Collections.Immutable.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Collections.NonGeneric.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Collections.NonGeneric.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Collections.Specialized.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Collections.Specialized.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.ComponentModel.Annotations.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.ComponentModel.Annotations.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.ComponentModel.DataAnnotations.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.ComponentModel.DataAnnotations.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.ComponentModel.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.ComponentModel.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.ComponentModel.EventBasedAsync.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.ComponentModel.EventBasedAsync.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.ComponentModel.Primitives.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.ComponentModel.Primitives.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.ComponentModel.TypeConverter.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.ComponentModel.TypeConverter.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Configuration.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Configuration.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Console.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Console.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Core.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Core.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Data.Common.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Data.Common.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Data.DataSetExtensions.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Data.DataSetExtensions.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Data.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Data.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Diagnostics.Contracts.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Diagnostics.Contracts.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Diagnostics.Debug.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Diagnostics.Debug.dll
|
||||||
/home/student/.nuget/packages/system.diagnostics.diagnosticsource/10.0.0/lib/net9.0/System.Diagnostics.DiagnosticSource.dll
|
C:\Users\artem\.nuget\packages\system.diagnostics.diagnosticsource\10.0.0\lib\net9.0\System.Diagnostics.DiagnosticSource.dll
|
||||||
/home/student/.nuget/packages/system.diagnostics.eventlog/10.0.0/lib/net9.0/System.Diagnostics.EventLog.dll
|
C:\Users\artem\.nuget\packages\system.diagnostics.eventlog\10.0.0\lib\net9.0\System.Diagnostics.EventLog.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Diagnostics.FileVersionInfo.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Diagnostics.FileVersionInfo.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Diagnostics.Process.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Diagnostics.Process.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Diagnostics.StackTrace.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Diagnostics.StackTrace.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Diagnostics.TextWriterTraceListener.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Diagnostics.TextWriterTraceListener.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Diagnostics.Tools.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Diagnostics.Tools.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Diagnostics.TraceSource.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Diagnostics.TraceSource.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Diagnostics.Tracing.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Diagnostics.Tracing.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Drawing.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Drawing.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Drawing.Primitives.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Drawing.Primitives.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Dynamic.Runtime.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Dynamic.Runtime.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Formats.Asn1.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Formats.Asn1.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Formats.Tar.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Formats.Tar.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Globalization.Calendars.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Globalization.Calendars.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Globalization.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Globalization.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Globalization.Extensions.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Globalization.Extensions.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.IO.Compression.Brotli.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.IO.Compression.Brotli.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.IO.Compression.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.IO.Compression.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.IO.Compression.FileSystem.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.IO.Compression.FileSystem.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.IO.Compression.ZipFile.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.IO.Compression.ZipFile.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.IO.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.IO.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.IO.FileSystem.AccessControl.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.IO.FileSystem.AccessControl.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.IO.FileSystem.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.IO.FileSystem.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.IO.FileSystem.DriveInfo.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.IO.FileSystem.DriveInfo.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.IO.FileSystem.Primitives.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.IO.FileSystem.Primitives.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.IO.FileSystem.Watcher.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.IO.FileSystem.Watcher.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.IO.IsolatedStorage.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.IO.IsolatedStorage.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.IO.MemoryMappedFiles.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.IO.MemoryMappedFiles.dll
|
||||||
/home/student/.nuget/packages/system.io.pipelines/10.0.0/lib/net9.0/System.IO.Pipelines.dll
|
C:\Users\artem\.nuget\packages\system.io.pipelines\10.0.0\lib\net9.0\System.IO.Pipelines.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.IO.Pipes.AccessControl.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.IO.Pipes.AccessControl.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.IO.Pipes.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.IO.Pipes.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.IO.UnmanagedMemoryStream.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.IO.UnmanagedMemoryStream.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Linq.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Linq.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Linq.Expressions.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Linq.Expressions.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Linq.Parallel.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Linq.Parallel.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Linq.Queryable.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Linq.Queryable.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Memory.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Memory.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Net.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Net.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Net.Http.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Net.Http.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Net.Http.Json.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Net.Http.Json.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Net.HttpListener.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Net.HttpListener.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Net.Mail.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Net.Mail.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Net.NameResolution.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Net.NameResolution.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Net.NetworkInformation.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Net.NetworkInformation.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Net.Ping.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Net.Ping.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Net.Primitives.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Net.Primitives.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Net.Quic.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Net.Quic.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Net.Requests.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Net.Requests.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Net.Security.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Net.Security.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Net.ServicePoint.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Net.ServicePoint.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Net.Sockets.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Net.Sockets.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Net.WebClient.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Net.WebClient.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Net.WebHeaderCollection.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Net.WebHeaderCollection.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Net.WebProxy.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Net.WebProxy.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Net.WebSockets.Client.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Net.WebSockets.Client.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Net.WebSockets.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Net.WebSockets.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Numerics.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Numerics.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Numerics.Vectors.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Numerics.Vectors.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.ObjectModel.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.ObjectModel.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Reflection.DispatchProxy.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Reflection.DispatchProxy.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Reflection.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Reflection.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Reflection.Emit.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Reflection.Emit.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Reflection.Emit.ILGeneration.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Reflection.Emit.ILGeneration.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Reflection.Emit.Lightweight.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Reflection.Emit.Lightweight.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Reflection.Extensions.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Reflection.Extensions.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Reflection.Metadata.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Reflection.Metadata.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Reflection.Primitives.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Reflection.Primitives.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Reflection.TypeExtensions.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Reflection.TypeExtensions.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Resources.Reader.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Resources.Reader.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Resources.ResourceManager.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Resources.ResourceManager.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Resources.Writer.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Resources.Writer.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Runtime.CompilerServices.Unsafe.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Runtime.CompilerServices.Unsafe.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Runtime.CompilerServices.VisualC.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Runtime.CompilerServices.VisualC.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Runtime.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Runtime.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Runtime.Extensions.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Runtime.Extensions.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Runtime.Handles.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Runtime.Handles.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Runtime.InteropServices.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Runtime.InteropServices.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Runtime.InteropServices.JavaScript.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Runtime.InteropServices.JavaScript.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Runtime.InteropServices.RuntimeInformation.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Runtime.InteropServices.RuntimeInformation.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Runtime.Intrinsics.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Runtime.Intrinsics.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Runtime.Loader.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Runtime.Loader.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Runtime.Numerics.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Runtime.Numerics.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Runtime.Serialization.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Runtime.Serialization.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Runtime.Serialization.Formatters.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Runtime.Serialization.Formatters.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Runtime.Serialization.Json.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Runtime.Serialization.Json.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Runtime.Serialization.Primitives.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Runtime.Serialization.Primitives.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Runtime.Serialization.Xml.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Runtime.Serialization.Xml.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Security.AccessControl.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Security.AccessControl.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Security.Claims.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Security.Claims.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Security.Cryptography.Algorithms.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Security.Cryptography.Algorithms.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Security.Cryptography.Cng.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Security.Cryptography.Cng.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Security.Cryptography.Csp.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Security.Cryptography.Csp.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Security.Cryptography.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Security.Cryptography.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Security.Cryptography.Encoding.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Security.Cryptography.Encoding.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Security.Cryptography.OpenSsl.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Security.Cryptography.OpenSsl.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Security.Cryptography.Primitives.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Security.Cryptography.Primitives.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Security.Cryptography.X509Certificates.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Security.Cryptography.X509Certificates.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Security.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Security.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Security.Principal.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Security.Principal.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Security.Principal.Windows.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Security.Principal.Windows.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Security.SecureString.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Security.SecureString.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.ServiceModel.Web.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.ServiceModel.Web.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.ServiceProcess.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.ServiceProcess.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Text.Encoding.CodePages.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Text.Encoding.CodePages.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Text.Encoding.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Text.Encoding.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Text.Encoding.Extensions.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Text.Encoding.Extensions.dll
|
||||||
/home/student/.nuget/packages/system.text.encodings.web/10.0.0/lib/net9.0/System.Text.Encodings.Web.dll
|
C:\Users\artem\.nuget\packages\system.text.encodings.web\10.0.0\lib\net9.0\System.Text.Encodings.Web.dll
|
||||||
/home/student/.nuget/packages/system.text.json/10.0.0/lib/net9.0/System.Text.Json.dll
|
C:\Users\artem\.nuget\packages\system.text.json\10.0.0\lib\net9.0\System.Text.Json.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Text.RegularExpressions.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Text.RegularExpressions.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Threading.Channels.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Threading.Channels.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Threading.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Threading.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Threading.Overlapped.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Threading.Overlapped.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Threading.Tasks.Dataflow.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Threading.Tasks.Dataflow.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Threading.Tasks.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Threading.Tasks.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Threading.Tasks.Extensions.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Threading.Tasks.Extensions.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Threading.Tasks.Parallel.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Threading.Tasks.Parallel.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Threading.Thread.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Threading.Thread.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Threading.ThreadPool.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Threading.ThreadPool.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Threading.Timer.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Threading.Timer.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Transactions.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Transactions.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Transactions.Local.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Transactions.Local.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.ValueTuple.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.ValueTuple.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Web.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Web.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Web.HttpUtility.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Web.HttpUtility.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Windows.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Windows.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Xml.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Xml.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Xml.Linq.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Xml.Linq.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Xml.ReaderWriter.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Xml.ReaderWriter.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Xml.Serialization.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Xml.Serialization.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Xml.XDocument.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Xml.XDocument.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Xml.XmlDocument.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Xml.XmlDocument.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Xml.XmlSerializer.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Xml.XmlSerializer.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Xml.XPath.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Xml.XPath.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/System.Xml.XPath.XDocument.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\System.Xml.XPath.XDocument.dll
|
||||||
/home/student/.nuget/packages/tmds.dbus.protocol/0.21.2/lib/net8.0/Tmds.DBus.Protocol.dll
|
C:\Users\artem\.nuget\packages\tmds.dbus.protocol\0.21.2\lib\net8.0\Tmds.DBus.Protocol.dll
|
||||||
/home/student/.dotnet/packs/Microsoft.NETCore.App.Ref/9.0.8/ref/net9.0/WindowsBase.dll
|
C:\Users\artem\.nuget\packages\microsoft.netcore.app.ref\9.0.15\ref\net9.0\WindowsBase.dll
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -13,7 +13,7 @@ using System.Reflection;
|
||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Policlinica")]
|
[assembly: System.Reflection.AssemblyCompanyAttribute("Policlinica")]
|
||||||
[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+26694989ee52d8351828db50239a6bc35c5e26a0")]
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+3b994a58d517d71e199fc918e08cdc8cef5ad3e0")]
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("Policlinica")]
|
[assembly: System.Reflection.AssemblyProductAttribute("Policlinica")]
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("Policlinica")]
|
[assembly: System.Reflection.AssemblyTitleAttribute("Policlinica")]
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
de407fa6a1478de9b80d88220ab0dfef1e8f12540ac0d175cff5987ca09ac445
|
e25c39c4c4f31cb395fc83953fc99d8967d6f24028048db5f234c1809f4d6b13
|
||||||
|
|
|
||||||
|
|
@ -12,6 +12,8 @@ build_property.CsWinRTComponent =
|
||||||
build_property.CsWinRTAotOptimizerEnabled =
|
build_property.CsWinRTAotOptimizerEnabled =
|
||||||
build_property.CsWinRTAotWarningLevel =
|
build_property.CsWinRTAotWarningLevel =
|
||||||
build_property.TargetFramework = net9.0
|
build_property.TargetFramework = net9.0
|
||||||
|
build_property.TargetFrameworkIdentifier = .NETCoreApp
|
||||||
|
build_property.TargetFrameworkVersion = v9.0
|
||||||
build_property.TargetPlatformMinVersion =
|
build_property.TargetPlatformMinVersion =
|
||||||
build_property.UsingMicrosoftNETSdkWeb =
|
build_property.UsingMicrosoftNETSdkWeb =
|
||||||
build_property.ProjectTypeGuids =
|
build_property.ProjectTypeGuids =
|
||||||
|
|
@ -20,32 +22,35 @@ build_property.PlatformNeutralAssembly =
|
||||||
build_property.EnforceExtendedAnalyzerRules =
|
build_property.EnforceExtendedAnalyzerRules =
|
||||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||||
build_property.RootNamespace = Policlinica
|
build_property.RootNamespace = Policlinica
|
||||||
build_property.ProjectDir = /home/student/RiderProjects/Policlinica2/Policlinica/
|
build_property.ProjectDir = C:\Users\artem\RiderProjects\Policlinica\Policlinica\
|
||||||
build_property.EnableComHosting =
|
build_property.EnableComHosting =
|
||||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||||
build_property.EffectiveAnalysisLevelStyle = 9.0
|
build_property.EffectiveAnalysisLevelStyle = 9.0
|
||||||
build_property.EnableCodeStyleSeverity =
|
build_property.EnableCodeStyleSeverity =
|
||||||
|
|
||||||
[/home/student/RiderProjects/Policlinica2/Policlinica/App.axaml]
|
[C:/Users/artem/RiderProjects/Policlinica/Policlinica/App.axaml]
|
||||||
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
|
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
|
||||||
|
|
||||||
[/home/student/RiderProjects/Policlinica2/Policlinica/Views/AdminView.axaml]
|
[C:/Users/artem/RiderProjects/Policlinica/Policlinica/Views/AdminView.axaml]
|
||||||
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
|
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
|
||||||
|
|
||||||
[/home/student/RiderProjects/Policlinica2/Policlinica/Views/AutorizationView.axaml]
|
[C:/Users/artem/RiderProjects/Policlinica/Policlinica/Views/AutorizationView.axaml]
|
||||||
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
|
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
|
||||||
|
|
||||||
[/home/student/RiderProjects/Policlinica2/Policlinica/Views/DoctorView.axaml]
|
[C:/Users/artem/RiderProjects/Policlinica/Policlinica/Views/DoctorView.axaml]
|
||||||
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
|
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
|
||||||
|
|
||||||
[/home/student/RiderProjects/Policlinica2/Policlinica/Views/Records.axaml]
|
[C:/Users/artem/RiderProjects/Policlinica/Policlinica/Views/RecordItemsView.axaml]
|
||||||
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
|
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
|
||||||
|
|
||||||
[/home/student/RiderProjects/Policlinica2/Policlinica/Views/RegistrationView.axaml]
|
[C:/Users/artem/RiderProjects/Policlinica/Policlinica/Views/Records.axaml]
|
||||||
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
|
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
|
||||||
|
|
||||||
[/home/student/RiderProjects/Policlinica2/Policlinica/Views/ServiceView.axaml]
|
[C:/Users/artem/RiderProjects/Policlinica/Policlinica/Views/RegistrationView.axaml]
|
||||||
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
|
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
|
||||||
|
|
||||||
[/home/student/RiderProjects/Policlinica2/Policlinica/Views/StartView.axaml]
|
[C:/Users/artem/RiderProjects/Policlinica/Policlinica/Views/ServiceView.axaml]
|
||||||
|
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
|
||||||
|
|
||||||
|
[C:/Users/artem/RiderProjects/Policlinica/Policlinica/Views/StartView.axaml]
|
||||||
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
|
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
|
||||||
|
|
|
||||||
Binary file not shown.
Binary file not shown.
|
|
@ -1 +1 @@
|
||||||
1e04f594daed82dc62ac775ec7a4ce24886d3291e150c21a6a8cc8d4dcbdda7a
|
4fe11876a622fb83ce8d068a1e1e4340039cd324de4bc4a6794577db99767607
|
||||||
|
|
|
||||||
|
|
@ -679,3 +679,117 @@ C:/Users/artem/RiderProjects/Policlinica1/Policlinica/bin/Debug/net9.0/Avalonia.
|
||||||
/home/student/RiderProjects/Policlinica2/Policlinica/obj/Debug/net9.0/Policlinica.pdb
|
/home/student/RiderProjects/Policlinica2/Policlinica/obj/Debug/net9.0/Policlinica.pdb
|
||||||
/home/student/RiderProjects/Policlinica2/Policlinica/obj/Debug/net9.0/Policlinica.genruntimeconfig.cache
|
/home/student/RiderProjects/Policlinica2/Policlinica/obj/Debug/net9.0/Policlinica.genruntimeconfig.cache
|
||||||
/home/student/RiderProjects/Policlinica2/Policlinica/obj/Debug/net9.0/ref/Policlinica.dll
|
/home/student/RiderProjects/Policlinica2/Policlinica/obj/Debug/net9.0/ref/Policlinica.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\appsetting.json
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Policlinica.exe
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Policlinica.deps.json
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Policlinica.runtimeconfig.json
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Policlinica.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Policlinica.pdb
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Avalonia.Base.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Avalonia.Controls.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Avalonia.DesignerSupport.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Avalonia.Dialogs.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Avalonia.Markup.Xaml.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Avalonia.Markup.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Avalonia.Metal.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Avalonia.MicroCom.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Avalonia.OpenGL.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Avalonia.Vulkan.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Avalonia.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Avalonia.Controls.ColorPicker.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Avalonia.Controls.DataGrid.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Avalonia.Desktop.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Avalonia.Diagnostics.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Avalonia.Fonts.Inter.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Avalonia.FreeDesktop.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Avalonia.Native.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Avalonia.Remote.Protocol.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Avalonia.Skia.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Avalonia.Themes.Fluent.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Avalonia.Themes.Simple.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Avalonia.Win32.Automation.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Avalonia.Win32.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Avalonia.X11.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\CommunityToolkit.Mvvm.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\HarfBuzzSharp.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\MicroCom.Runtime.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Microsoft.Extensions.Configuration.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Microsoft.Extensions.Configuration.Abstractions.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Microsoft.Extensions.Configuration.Binder.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Microsoft.Extensions.Configuration.CommandLine.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Microsoft.Extensions.Configuration.EnvironmentVariables.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Microsoft.Extensions.Configuration.FileExtensions.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Microsoft.Extensions.Configuration.Json.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Microsoft.Extensions.Configuration.UserSecrets.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Microsoft.Extensions.DependencyInjection.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Microsoft.Extensions.Diagnostics.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Microsoft.Extensions.Diagnostics.Abstractions.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Microsoft.Extensions.FileProviders.Abstractions.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Microsoft.Extensions.FileProviders.Physical.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Microsoft.Extensions.FileSystemGlobbing.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Microsoft.Extensions.Hosting.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Microsoft.Extensions.Hosting.Abstractions.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Microsoft.Extensions.Logging.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Microsoft.Extensions.Logging.Abstractions.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Microsoft.Extensions.Logging.Configuration.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Microsoft.Extensions.Logging.Console.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Microsoft.Extensions.Logging.Debug.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Microsoft.Extensions.Logging.EventLog.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Microsoft.Extensions.Logging.EventSource.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Microsoft.Extensions.Options.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Microsoft.Extensions.Options.ConfigurationExtensions.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Microsoft.Extensions.Primitives.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\MySqlConnector.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\SkiaSharp.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\System.Diagnostics.DiagnosticSource.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\System.Diagnostics.EventLog.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\System.IO.Pipelines.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\System.Text.Encodings.Web.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\System.Text.Json.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\Tmds.DBus.Protocol.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\runtimes\win-arm64\native\av_libglesv2.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\runtimes\win-x64\native\av_libglesv2.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\runtimes\win-x86\native\av_libglesv2.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\runtimes\osx\native\libAvaloniaNative.dylib
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\runtimes\linux-arm\native\libHarfBuzzSharp.so
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\runtimes\linux-arm64\native\libHarfBuzzSharp.so
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\runtimes\linux-loongarch64\native\libHarfBuzzSharp.so
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\runtimes\linux-musl-arm\native\libHarfBuzzSharp.so
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\runtimes\linux-musl-arm64\native\libHarfBuzzSharp.so
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\runtimes\linux-musl-loongarch64\native\libHarfBuzzSharp.so
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\runtimes\linux-musl-riscv64\native\libHarfBuzzSharp.so
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\runtimes\linux-musl-x64\native\libHarfBuzzSharp.so
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\runtimes\linux-riscv64\native\libHarfBuzzSharp.so
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\runtimes\linux-x64\native\libHarfBuzzSharp.so
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\runtimes\linux-x86\native\libHarfBuzzSharp.so
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\runtimes\osx\native\libHarfBuzzSharp.dylib
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\runtimes\win-arm64\native\libHarfBuzzSharp.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\runtimes\win-x64\native\libHarfBuzzSharp.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\runtimes\win-x86\native\libHarfBuzzSharp.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\runtimes\linux-arm\native\libSkiaSharp.so
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\runtimes\linux-arm64\native\libSkiaSharp.so
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\runtimes\linux-musl-x64\native\libSkiaSharp.so
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\runtimes\linux-x64\native\libSkiaSharp.so
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\runtimes\osx\native\libSkiaSharp.dylib
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\runtimes\win-arm64\native\libSkiaSharp.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\runtimes\win-x64\native\libSkiaSharp.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\runtimes\win-x86\native\libSkiaSharp.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\runtimes\win\lib\net9.0\System.Diagnostics.EventLog.Messages.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\runtimes\win\lib\net9.0\System.Diagnostics.EventLog.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\runtimes\browser\lib\net8.0\System.Text.Encodings.Web.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\bin\Debug\net9.0\runtimes\win\lib\net9.0\System.Text.Encodings.Web.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\obj\Debug\net9.0\Policlinica.csproj.AssemblyReference.cache
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\obj\Debug\net9.0\Avalonia\Resources.Inputs.cache
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\obj\Debug\net9.0\Avalonia\resources
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\obj\Debug\net9.0\Policlinica.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\obj\Debug\net9.0\Policlinica.AssemblyInfoInputs.cache
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\obj\Debug\net9.0\Policlinica.AssemblyInfo.cs
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\obj\Debug\net9.0\Policlinica.csproj.CoreCompileInputs.cache
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\obj\Debug\net9.0\Policlinica.sourcelink.json
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\obj\Debug\net9.0\Policlin.D4E84A0E.Up2Date
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\obj\Debug\net9.0\Policlinica.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\obj\Debug\net9.0\refint\Policlinica.dll
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\obj\Debug\net9.0\Policlinica.pdb
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\obj\Debug\net9.0\Policlinica.genruntimeconfig.cache
|
||||||
|
C:\Users\artem\RiderProjects\Policlinica\Policlinica\obj\Debug\net9.0\ref\Policlinica.dll
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -1 +1 @@
|
||||||
215d392594946de0a613c1156cbc9874d2d3fae7a2c1ef0e72377294ff832338
|
66d44c4191ed74e586524e189cfd37823538e83b0781c5d3e85e5709662e6f10
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -1 +1 @@
|
||||||
{"documents":{"/home/student/RiderProjects/Policlinica2/*":"https://raw.githubusercontent.com/Dezkriminant/Policlinica/26694989ee52d8351828db50239a6bc35c5e26a0/*"}}
|
{"documents":{"C:\\Users\\artem\\RiderProjects\\Policlinica\\*":"https://raw.githubusercontent.com/Dezkriminant/Policlinica/3b994a58d517d71e199fc918e08cdc8cef5ad3e0/*"}}
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -1,26 +1,25 @@
|
||||||
{
|
{
|
||||||
"format": 1,
|
"format": 1,
|
||||||
"restore": {
|
"restore": {
|
||||||
"/home/student/RiderProjects/Policlinica2/Policlinica/Policlinica.csproj": {}
|
"C:\\Users\\artem\\RiderProjects\\Policlinica\\Policlinica\\Policlinica.csproj": {}
|
||||||
},
|
},
|
||||||
"projects": {
|
"projects": {
|
||||||
"/home/student/RiderProjects/Policlinica2/Policlinica/Policlinica.csproj": {
|
"C:\\Users\\artem\\RiderProjects\\Policlinica\\Policlinica\\Policlinica.csproj": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "/home/student/RiderProjects/Policlinica2/Policlinica/Policlinica.csproj",
|
"projectUniqueName": "C:\\Users\\artem\\RiderProjects\\Policlinica\\Policlinica\\Policlinica.csproj",
|
||||||
"projectName": "Policlinica",
|
"projectName": "Policlinica",
|
||||||
"projectPath": "/home/student/RiderProjects/Policlinica2/Policlinica/Policlinica.csproj",
|
"projectPath": "C:\\Users\\artem\\RiderProjects\\Policlinica\\Policlinica\\Policlinica.csproj",
|
||||||
"packagesPath": "/home/student/.nuget/packages/",
|
"packagesPath": "C:\\Users\\artem\\.nuget\\packages\\",
|
||||||
"outputPath": "/home/student/RiderProjects/Policlinica2/Policlinica/obj/",
|
"outputPath": "C:\\Users\\artem\\RiderProjects\\Policlinica\\Policlinica\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"configFilePaths": [
|
"configFilePaths": [
|
||||||
"/home/student/.nuget/NuGet/NuGet.Config"
|
"C:\\Users\\artem\\AppData\\Roaming\\NuGet\\NuGet.Config"
|
||||||
],
|
],
|
||||||
"originalTargetFrameworks": [
|
"originalTargetFrameworks": [
|
||||||
"net9.0"
|
"net9.0"
|
||||||
],
|
],
|
||||||
"sources": {
|
"sources": {
|
||||||
"/home/student/.dotnet/library-packs": {},
|
|
||||||
"https://api.nuget.org/v3/index.json": {}
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
|
|
@ -39,7 +38,7 @@
|
||||||
"auditLevel": "low",
|
"auditLevel": "low",
|
||||||
"auditMode": "direct"
|
"auditMode": "direct"
|
||||||
},
|
},
|
||||||
"SdkAnalysisLevel": "9.0.300"
|
"SdkAnalysisLevel": "10.0.200"
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"net9.0": {
|
"net9.0": {
|
||||||
|
|
@ -93,12 +92,30 @@
|
||||||
],
|
],
|
||||||
"assetTargetFallback": true,
|
"assetTargetFallback": true,
|
||||||
"warn": true,
|
"warn": true,
|
||||||
|
"downloadDependencies": [
|
||||||
|
{
|
||||||
|
"name": "Microsoft.AspNetCore.App.Ref",
|
||||||
|
"version": "[9.0.15, 9.0.15]"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Microsoft.NETCore.App.Host.win-x64",
|
||||||
|
"version": "[9.0.15, 9.0.15]"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Microsoft.NETCore.App.Ref",
|
||||||
|
"version": "[9.0.15, 9.0.15]"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Microsoft.WindowsDesktop.App.Ref",
|
||||||
|
"version": "[9.0.15, 9.0.15]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"frameworkReferences": {
|
"frameworkReferences": {
|
||||||
"Microsoft.NETCore.App": {
|
"Microsoft.NETCore.App": {
|
||||||
"privateAssets": "all"
|
"privateAssets": "all"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimeIdentifierGraphPath": "/home/student/.dotnet/sdk/9.0.304/PortableRuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.202/PortableRuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -4,22 +4,22 @@
|
||||||
<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/student/.nuget/packages/</NuGetPackageRoot>
|
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/student/.nuget/packages/</NuGetPackageFolders>
|
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\artem\.nuget\packages\</NuGetPackageFolders>
|
||||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.14.0</NuGetToolVersion>
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">7.0.0</NuGetToolVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
<SourceRoot Include="/home/student/.nuget/packages/" />
|
<SourceRoot Include="C:\Users\artem\.nuget\packages\" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
<Import Project="$(NuGetPackageRoot)skiasharp.nativeassets.webassembly/2.88.9/buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.props" Condition="Exists('$(NuGetPackageRoot)skiasharp.nativeassets.webassembly/2.88.9/buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.props')" />
|
<Import Project="$(NuGetPackageRoot)skiasharp.nativeassets.webassembly\2.88.9\buildTransitive\netstandard1.0\SkiaSharp.NativeAssets.WebAssembly.props" Condition="Exists('$(NuGetPackageRoot)skiasharp.nativeassets.webassembly\2.88.9\buildTransitive\netstandard1.0\SkiaSharp.NativeAssets.WebAssembly.props')" />
|
||||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.configuration.usersecrets/10.0.0/buildTransitive/net8.0/Microsoft.Extensions.Configuration.UserSecrets.props" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.configuration.usersecrets/10.0.0/buildTransitive/net8.0/Microsoft.Extensions.Configuration.UserSecrets.props')" />
|
<Import Project="$(NuGetPackageRoot)microsoft.extensions.configuration.usersecrets\10.0.0\buildTransitive\net8.0\Microsoft.Extensions.Configuration.UserSecrets.props" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.configuration.usersecrets\10.0.0\buildTransitive\net8.0\Microsoft.Extensions.Configuration.UserSecrets.props')" />
|
||||||
<Import Project="$(NuGetPackageRoot)harfbuzzsharp.nativeassets.webassembly/8.3.1.1/buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.props" Condition="Exists('$(NuGetPackageRoot)harfbuzzsharp.nativeassets.webassembly/8.3.1.1/buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.props')" />
|
<Import Project="$(NuGetPackageRoot)harfbuzzsharp.nativeassets.webassembly\8.3.1.1\buildTransitive\netstandard1.0\HarfBuzzSharp.NativeAssets.WebAssembly.props" Condition="Exists('$(NuGetPackageRoot)harfbuzzsharp.nativeassets.webassembly\8.3.1.1\buildTransitive\netstandard1.0\HarfBuzzSharp.NativeAssets.WebAssembly.props')" />
|
||||||
<Import Project="$(NuGetPackageRoot)avalonia/11.3.11/buildTransitive/Avalonia.props" Condition="Exists('$(NuGetPackageRoot)avalonia/11.3.11/buildTransitive/Avalonia.props')" />
|
<Import Project="$(NuGetPackageRoot)avalonia\11.3.11\buildTransitive\Avalonia.props" Condition="Exists('$(NuGetPackageRoot)avalonia\11.3.11\buildTransitive\Avalonia.props')" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
<PkgAvalonia_BuildServices Condition=" '$(PkgAvalonia_BuildServices)' == '' ">/home/student/.nuget/packages/avalonia.buildservices/11.3.2</PkgAvalonia_BuildServices>
|
<PkgAvalonia_BuildServices Condition=" '$(PkgAvalonia_BuildServices)' == '' ">C:\Users\artem\.nuget\packages\avalonia.buildservices\11.3.2</PkgAvalonia_BuildServices>
|
||||||
<PkgAvalonia Condition=" '$(PkgAvalonia)' == '' ">/home/student/.nuget/packages/avalonia/11.3.11</PkgAvalonia>
|
<PkgAvalonia Condition=" '$(PkgAvalonia)' == '' ">C:\Users\artem\.nuget\packages\avalonia\11.3.11</PkgAvalonia>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
@ -1,15 +1,15 @@
|
||||||
<?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)system.text.json/10.0.0/buildTransitive/net8.0/System.Text.Json.targets" Condition="Exists('$(NuGetPackageRoot)system.text.json/10.0.0/buildTransitive/net8.0/System.Text.Json.targets')" />
|
<Import Project="$(NuGetPackageRoot)system.text.json\10.0.0\buildTransitive\net8.0\System.Text.Json.targets" Condition="Exists('$(NuGetPackageRoot)system.text.json\10.0.0\buildTransitive\net8.0\System.Text.Json.targets')" />
|
||||||
<Import Project="$(NuGetPackageRoot)skiasharp.nativeassets.webassembly/2.88.9/buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.targets" Condition="Exists('$(NuGetPackageRoot)skiasharp.nativeassets.webassembly/2.88.9/buildTransitive/netstandard1.0/SkiaSharp.NativeAssets.WebAssembly.targets')" />
|
<Import Project="$(NuGetPackageRoot)skiasharp.nativeassets.webassembly\2.88.9\buildTransitive\netstandard1.0\SkiaSharp.NativeAssets.WebAssembly.targets" Condition="Exists('$(NuGetPackageRoot)skiasharp.nativeassets.webassembly\2.88.9\buildTransitive\netstandard1.0\SkiaSharp.NativeAssets.WebAssembly.targets')" />
|
||||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.logging.abstractions/10.0.0/buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.logging.abstractions/10.0.0/buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets')" />
|
<Import Project="$(NuGetPackageRoot)microsoft.extensions.logging.abstractions\10.0.0\buildTransitive\net8.0\Microsoft.Extensions.Logging.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.logging.abstractions\10.0.0\buildTransitive\net8.0\Microsoft.Extensions.Logging.Abstractions.targets')" />
|
||||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.options/10.0.0/buildTransitive/net8.0/Microsoft.Extensions.Options.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.options/10.0.0/buildTransitive/net8.0/Microsoft.Extensions.Options.targets')" />
|
<Import Project="$(NuGetPackageRoot)microsoft.extensions.options\10.0.0\buildTransitive\net8.0\Microsoft.Extensions.Options.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.options\10.0.0\buildTransitive\net8.0\Microsoft.Extensions.Options.targets')" />
|
||||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.configuration.binder/10.0.0/buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.configuration.binder/10.0.0/buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets')" />
|
<Import Project="$(NuGetPackageRoot)microsoft.extensions.configuration.binder\10.0.0\buildTransitive\netstandard2.0\Microsoft.Extensions.Configuration.Binder.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.configuration.binder\10.0.0\buildTransitive\netstandard2.0\Microsoft.Extensions.Configuration.Binder.targets')" />
|
||||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.configuration.usersecrets/10.0.0/buildTransitive/net8.0/Microsoft.Extensions.Configuration.UserSecrets.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.configuration.usersecrets/10.0.0/buildTransitive/net8.0/Microsoft.Extensions.Configuration.UserSecrets.targets')" />
|
<Import Project="$(NuGetPackageRoot)microsoft.extensions.configuration.usersecrets\10.0.0\buildTransitive\net8.0\Microsoft.Extensions.Configuration.UserSecrets.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.configuration.usersecrets\10.0.0\buildTransitive\net8.0\Microsoft.Extensions.Configuration.UserSecrets.targets')" />
|
||||||
<Import Project="$(NuGetPackageRoot)harfbuzzsharp.nativeassets.webassembly/8.3.1.1/buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.targets" Condition="Exists('$(NuGetPackageRoot)harfbuzzsharp.nativeassets.webassembly/8.3.1.1/buildTransitive/netstandard1.0/HarfBuzzSharp.NativeAssets.WebAssembly.targets')" />
|
<Import Project="$(NuGetPackageRoot)harfbuzzsharp.nativeassets.webassembly\8.3.1.1\buildTransitive\netstandard1.0\HarfBuzzSharp.NativeAssets.WebAssembly.targets" Condition="Exists('$(NuGetPackageRoot)harfbuzzsharp.nativeassets.webassembly\8.3.1.1\buildTransitive\netstandard1.0\HarfBuzzSharp.NativeAssets.WebAssembly.targets')" />
|
||||||
<Import Project="$(NuGetPackageRoot)communitytoolkit.mvvm/8.4.2/buildTransitive/CommunityToolkit.Mvvm.targets" Condition="Exists('$(NuGetPackageRoot)communitytoolkit.mvvm/8.4.2/buildTransitive/CommunityToolkit.Mvvm.targets')" />
|
<Import Project="$(NuGetPackageRoot)communitytoolkit.mvvm\8.4.2\buildTransitive\CommunityToolkit.Mvvm.targets" Condition="Exists('$(NuGetPackageRoot)communitytoolkit.mvvm\8.4.2\buildTransitive\CommunityToolkit.Mvvm.targets')" />
|
||||||
<Import Project="$(NuGetPackageRoot)avalonia.buildservices/11.3.2/buildTransitive/Avalonia.BuildServices.targets" Condition="Exists('$(NuGetPackageRoot)avalonia.buildservices/11.3.2/buildTransitive/Avalonia.BuildServices.targets')" />
|
<Import Project="$(NuGetPackageRoot)avalonia.buildservices\11.3.2\buildTransitive\Avalonia.BuildServices.targets" Condition="Exists('$(NuGetPackageRoot)avalonia.buildservices\11.3.2\buildTransitive\Avalonia.BuildServices.targets')" />
|
||||||
<Import Project="$(NuGetPackageRoot)avalonia/11.3.11/buildTransitive/Avalonia.targets" Condition="Exists('$(NuGetPackageRoot)avalonia/11.3.11/buildTransitive/Avalonia.targets')" />
|
<Import Project="$(NuGetPackageRoot)avalonia\11.3.11\buildTransitive\Avalonia.targets" Condition="Exists('$(NuGetPackageRoot)avalonia\11.3.11\buildTransitive\Avalonia.targets')" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
|
@ -3270,25 +3270,24 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"packageFolders": {
|
"packageFolders": {
|
||||||
"/home/student/.nuget/packages/": {}
|
"C:\\Users\\artem\\.nuget\\packages\\": {}
|
||||||
},
|
},
|
||||||
"project": {
|
"project": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "/home/student/RiderProjects/Policlinica2/Policlinica/Policlinica.csproj",
|
"projectUniqueName": "C:\\Users\\artem\\RiderProjects\\Policlinica\\Policlinica\\Policlinica.csproj",
|
||||||
"projectName": "Policlinica",
|
"projectName": "Policlinica",
|
||||||
"projectPath": "/home/student/RiderProjects/Policlinica2/Policlinica/Policlinica.csproj",
|
"projectPath": "C:\\Users\\artem\\RiderProjects\\Policlinica\\Policlinica\\Policlinica.csproj",
|
||||||
"packagesPath": "/home/student/.nuget/packages/",
|
"packagesPath": "C:\\Users\\artem\\.nuget\\packages\\",
|
||||||
"outputPath": "/home/student/RiderProjects/Policlinica2/Policlinica/obj/",
|
"outputPath": "C:\\Users\\artem\\RiderProjects\\Policlinica\\Policlinica\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"configFilePaths": [
|
"configFilePaths": [
|
||||||
"/home/student/.nuget/NuGet/NuGet.Config"
|
"C:\\Users\\artem\\AppData\\Roaming\\NuGet\\NuGet.Config"
|
||||||
],
|
],
|
||||||
"originalTargetFrameworks": [
|
"originalTargetFrameworks": [
|
||||||
"net9.0"
|
"net9.0"
|
||||||
],
|
],
|
||||||
"sources": {
|
"sources": {
|
||||||
"/home/student/.dotnet/library-packs": {},
|
|
||||||
"https://api.nuget.org/v3/index.json": {}
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
|
|
@ -3307,7 +3306,7 @@
|
||||||
"auditLevel": "low",
|
"auditLevel": "low",
|
||||||
"auditMode": "direct"
|
"auditMode": "direct"
|
||||||
},
|
},
|
||||||
"SdkAnalysisLevel": "9.0.300"
|
"SdkAnalysisLevel": "10.0.200"
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
"net9.0": {
|
"net9.0": {
|
||||||
|
|
@ -3361,12 +3360,30 @@
|
||||||
],
|
],
|
||||||
"assetTargetFallback": true,
|
"assetTargetFallback": true,
|
||||||
"warn": true,
|
"warn": true,
|
||||||
|
"downloadDependencies": [
|
||||||
|
{
|
||||||
|
"name": "Microsoft.AspNetCore.App.Ref",
|
||||||
|
"version": "[9.0.15, 9.0.15]"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Microsoft.NETCore.App.Host.win-x64",
|
||||||
|
"version": "[9.0.15, 9.0.15]"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Microsoft.NETCore.App.Ref",
|
||||||
|
"version": "[9.0.15, 9.0.15]"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Microsoft.WindowsDesktop.App.Ref",
|
||||||
|
"version": "[9.0.15, 9.0.15]"
|
||||||
|
}
|
||||||
|
],
|
||||||
"frameworkReferences": {
|
"frameworkReferences": {
|
||||||
"Microsoft.NETCore.App": {
|
"Microsoft.NETCore.App": {
|
||||||
"privateAssets": "all"
|
"privateAssets": "all"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimeIdentifierGraphPath": "/home/student/.dotnet/sdk/9.0.304/PortableRuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\10.0.202/PortableRuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,71 +1,75 @@
|
||||||
{
|
{
|
||||||
"version": 2,
|
"version": 2,
|
||||||
"dgSpecHash": "nGtIEigdngM=",
|
"dgSpecHash": "QWPQbNefegA=",
|
||||||
"success": true,
|
"success": true,
|
||||||
"projectFilePath": "/home/student/RiderProjects/Policlinica2/Policlinica/Policlinica.csproj",
|
"projectFilePath": "C:\\Users\\artem\\RiderProjects\\Policlinica\\Policlinica\\Policlinica.csproj",
|
||||||
"expectedPackageFiles": [
|
"expectedPackageFiles": [
|
||||||
"/home/student/.nuget/packages/avalonia/11.3.11/avalonia.11.3.11.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\avalonia\\11.3.11\\avalonia.11.3.11.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/avalonia.angle.windows.natives/2.1.25547.20250602/avalonia.angle.windows.natives.2.1.25547.20250602.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\avalonia.angle.windows.natives\\2.1.25547.20250602\\avalonia.angle.windows.natives.2.1.25547.20250602.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/avalonia.buildservices/11.3.2/avalonia.buildservices.11.3.2.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\avalonia.buildservices\\11.3.2\\avalonia.buildservices.11.3.2.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/avalonia.controls.colorpicker/11.3.11/avalonia.controls.colorpicker.11.3.11.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\avalonia.controls.colorpicker\\11.3.11\\avalonia.controls.colorpicker.11.3.11.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/avalonia.controls.datagrid/11.3.9/avalonia.controls.datagrid.11.3.9.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\avalonia.controls.datagrid\\11.3.9\\avalonia.controls.datagrid.11.3.9.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/avalonia.desktop/11.3.11/avalonia.desktop.11.3.11.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\avalonia.desktop\\11.3.11\\avalonia.desktop.11.3.11.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/avalonia.diagnostics/11.3.11/avalonia.diagnostics.11.3.11.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\avalonia.diagnostics\\11.3.11\\avalonia.diagnostics.11.3.11.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/avalonia.fonts.inter/11.3.11/avalonia.fonts.inter.11.3.11.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\avalonia.fonts.inter\\11.3.11\\avalonia.fonts.inter.11.3.11.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/avalonia.freedesktop/11.3.11/avalonia.freedesktop.11.3.11.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\avalonia.freedesktop\\11.3.11\\avalonia.freedesktop.11.3.11.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/avalonia.native/11.3.11/avalonia.native.11.3.11.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\avalonia.native\\11.3.11\\avalonia.native.11.3.11.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/avalonia.remote.protocol/11.3.11/avalonia.remote.protocol.11.3.11.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\avalonia.remote.protocol\\11.3.11\\avalonia.remote.protocol.11.3.11.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/avalonia.skia/11.3.11/avalonia.skia.11.3.11.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\avalonia.skia\\11.3.11\\avalonia.skia.11.3.11.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/avalonia.themes.fluent/11.3.11/avalonia.themes.fluent.11.3.11.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\avalonia.themes.fluent\\11.3.11\\avalonia.themes.fluent.11.3.11.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/avalonia.themes.simple/11.3.11/avalonia.themes.simple.11.3.11.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\avalonia.themes.simple\\11.3.11\\avalonia.themes.simple.11.3.11.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/avalonia.win32/11.3.11/avalonia.win32.11.3.11.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\avalonia.win32\\11.3.11\\avalonia.win32.11.3.11.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/avalonia.x11/11.3.11/avalonia.x11.11.3.11.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\avalonia.x11\\11.3.11\\avalonia.x11.11.3.11.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/communitytoolkit.mvvm/8.4.2/communitytoolkit.mvvm.8.4.2.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\communitytoolkit.mvvm\\8.4.2\\communitytoolkit.mvvm.8.4.2.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/harfbuzzsharp/8.3.1.1/harfbuzzsharp.8.3.1.1.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\harfbuzzsharp\\8.3.1.1\\harfbuzzsharp.8.3.1.1.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/harfbuzzsharp.nativeassets.linux/8.3.1.1/harfbuzzsharp.nativeassets.linux.8.3.1.1.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\harfbuzzsharp.nativeassets.linux\\8.3.1.1\\harfbuzzsharp.nativeassets.linux.8.3.1.1.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/harfbuzzsharp.nativeassets.macos/8.3.1.1/harfbuzzsharp.nativeassets.macos.8.3.1.1.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\harfbuzzsharp.nativeassets.macos\\8.3.1.1\\harfbuzzsharp.nativeassets.macos.8.3.1.1.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/harfbuzzsharp.nativeassets.webassembly/8.3.1.1/harfbuzzsharp.nativeassets.webassembly.8.3.1.1.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\harfbuzzsharp.nativeassets.webassembly\\8.3.1.1\\harfbuzzsharp.nativeassets.webassembly.8.3.1.1.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/harfbuzzsharp.nativeassets.win32/8.3.1.1/harfbuzzsharp.nativeassets.win32.8.3.1.1.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\harfbuzzsharp.nativeassets.win32\\8.3.1.1\\harfbuzzsharp.nativeassets.win32.8.3.1.1.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/microcom.runtime/0.11.0/microcom.runtime.0.11.0.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\microcom.runtime\\0.11.0\\microcom.runtime.0.11.0.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/microsoft.extensions.configuration/10.0.0/microsoft.extensions.configuration.10.0.0.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\microsoft.extensions.configuration\\10.0.0\\microsoft.extensions.configuration.10.0.0.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/microsoft.extensions.configuration.abstractions/10.0.0/microsoft.extensions.configuration.abstractions.10.0.0.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\10.0.0\\microsoft.extensions.configuration.abstractions.10.0.0.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/microsoft.extensions.configuration.binder/10.0.0/microsoft.extensions.configuration.binder.10.0.0.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\microsoft.extensions.configuration.binder\\10.0.0\\microsoft.extensions.configuration.binder.10.0.0.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/microsoft.extensions.configuration.commandline/10.0.0/microsoft.extensions.configuration.commandline.10.0.0.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\microsoft.extensions.configuration.commandline\\10.0.0\\microsoft.extensions.configuration.commandline.10.0.0.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/microsoft.extensions.configuration.environmentvariables/10.0.0/microsoft.extensions.configuration.environmentvariables.10.0.0.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\microsoft.extensions.configuration.environmentvariables\\10.0.0\\microsoft.extensions.configuration.environmentvariables.10.0.0.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/microsoft.extensions.configuration.fileextensions/10.0.0/microsoft.extensions.configuration.fileextensions.10.0.0.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\10.0.0\\microsoft.extensions.configuration.fileextensions.10.0.0.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/microsoft.extensions.configuration.json/10.0.0/microsoft.extensions.configuration.json.10.0.0.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\microsoft.extensions.configuration.json\\10.0.0\\microsoft.extensions.configuration.json.10.0.0.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/microsoft.extensions.configuration.usersecrets/10.0.0/microsoft.extensions.configuration.usersecrets.10.0.0.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\microsoft.extensions.configuration.usersecrets\\10.0.0\\microsoft.extensions.configuration.usersecrets.10.0.0.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/microsoft.extensions.dependencyinjection/10.0.0/microsoft.extensions.dependencyinjection.10.0.0.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\10.0.0\\microsoft.extensions.dependencyinjection.10.0.0.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/10.0.0/microsoft.extensions.dependencyinjection.abstractions.10.0.0.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\10.0.0\\microsoft.extensions.dependencyinjection.abstractions.10.0.0.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/microsoft.extensions.diagnostics/10.0.0/microsoft.extensions.diagnostics.10.0.0.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\microsoft.extensions.diagnostics\\10.0.0\\microsoft.extensions.diagnostics.10.0.0.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/microsoft.extensions.diagnostics.abstractions/10.0.0/microsoft.extensions.diagnostics.abstractions.10.0.0.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\microsoft.extensions.diagnostics.abstractions\\10.0.0\\microsoft.extensions.diagnostics.abstractions.10.0.0.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/microsoft.extensions.fileproviders.abstractions/10.0.0/microsoft.extensions.fileproviders.abstractions.10.0.0.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\10.0.0\\microsoft.extensions.fileproviders.abstractions.10.0.0.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/microsoft.extensions.fileproviders.physical/10.0.0/microsoft.extensions.fileproviders.physical.10.0.0.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\10.0.0\\microsoft.extensions.fileproviders.physical.10.0.0.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/microsoft.extensions.filesystemglobbing/10.0.0/microsoft.extensions.filesystemglobbing.10.0.0.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\10.0.0\\microsoft.extensions.filesystemglobbing.10.0.0.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/microsoft.extensions.hosting/10.0.0/microsoft.extensions.hosting.10.0.0.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\microsoft.extensions.hosting\\10.0.0\\microsoft.extensions.hosting.10.0.0.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/microsoft.extensions.hosting.abstractions/10.0.0/microsoft.extensions.hosting.abstractions.10.0.0.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\10.0.0\\microsoft.extensions.hosting.abstractions.10.0.0.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/microsoft.extensions.logging/10.0.0/microsoft.extensions.logging.10.0.0.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\microsoft.extensions.logging\\10.0.0\\microsoft.extensions.logging.10.0.0.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/microsoft.extensions.logging.abstractions/10.0.0/microsoft.extensions.logging.abstractions.10.0.0.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\10.0.0\\microsoft.extensions.logging.abstractions.10.0.0.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/microsoft.extensions.logging.configuration/10.0.0/microsoft.extensions.logging.configuration.10.0.0.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\microsoft.extensions.logging.configuration\\10.0.0\\microsoft.extensions.logging.configuration.10.0.0.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/microsoft.extensions.logging.console/10.0.0/microsoft.extensions.logging.console.10.0.0.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\microsoft.extensions.logging.console\\10.0.0\\microsoft.extensions.logging.console.10.0.0.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/microsoft.extensions.logging.debug/10.0.0/microsoft.extensions.logging.debug.10.0.0.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\microsoft.extensions.logging.debug\\10.0.0\\microsoft.extensions.logging.debug.10.0.0.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/microsoft.extensions.logging.eventlog/10.0.0/microsoft.extensions.logging.eventlog.10.0.0.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\microsoft.extensions.logging.eventlog\\10.0.0\\microsoft.extensions.logging.eventlog.10.0.0.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/microsoft.extensions.logging.eventsource/10.0.0/microsoft.extensions.logging.eventsource.10.0.0.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\microsoft.extensions.logging.eventsource\\10.0.0\\microsoft.extensions.logging.eventsource.10.0.0.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/microsoft.extensions.options/10.0.0/microsoft.extensions.options.10.0.0.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\microsoft.extensions.options\\10.0.0\\microsoft.extensions.options.10.0.0.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/microsoft.extensions.options.configurationextensions/10.0.0/microsoft.extensions.options.configurationextensions.10.0.0.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\10.0.0\\microsoft.extensions.options.configurationextensions.10.0.0.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/microsoft.extensions.primitives/10.0.0/microsoft.extensions.primitives.10.0.0.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\microsoft.extensions.primitives\\10.0.0\\microsoft.extensions.primitives.10.0.0.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/mysqlconnector/2.5.0/mysqlconnector.2.5.0.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\mysqlconnector\\2.5.0\\mysqlconnector.2.5.0.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/skiasharp/2.88.9/skiasharp.2.88.9.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\skiasharp\\2.88.9\\skiasharp.2.88.9.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/skiasharp.nativeassets.linux/2.88.9/skiasharp.nativeassets.linux.2.88.9.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\skiasharp.nativeassets.linux\\2.88.9\\skiasharp.nativeassets.linux.2.88.9.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/skiasharp.nativeassets.macos/2.88.9/skiasharp.nativeassets.macos.2.88.9.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\skiasharp.nativeassets.macos\\2.88.9\\skiasharp.nativeassets.macos.2.88.9.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/skiasharp.nativeassets.webassembly/2.88.9/skiasharp.nativeassets.webassembly.2.88.9.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\skiasharp.nativeassets.webassembly\\2.88.9\\skiasharp.nativeassets.webassembly.2.88.9.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/skiasharp.nativeassets.win32/2.88.9/skiasharp.nativeassets.win32.2.88.9.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\skiasharp.nativeassets.win32\\2.88.9\\skiasharp.nativeassets.win32.2.88.9.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/system.diagnostics.diagnosticsource/10.0.0/system.diagnostics.diagnosticsource.10.0.0.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\system.diagnostics.diagnosticsource\\10.0.0\\system.diagnostics.diagnosticsource.10.0.0.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/system.diagnostics.eventlog/10.0.0/system.diagnostics.eventlog.10.0.0.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\system.diagnostics.eventlog\\10.0.0\\system.diagnostics.eventlog.10.0.0.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/system.io.pipelines/10.0.0/system.io.pipelines.10.0.0.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\system.io.pipelines\\10.0.0\\system.io.pipelines.10.0.0.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/system.text.encodings.web/10.0.0/system.text.encodings.web.10.0.0.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\system.text.encodings.web\\10.0.0\\system.text.encodings.web.10.0.0.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/system.text.json/10.0.0/system.text.json.10.0.0.nupkg.sha512",
|
"C:\\Users\\artem\\.nuget\\packages\\system.text.json\\10.0.0\\system.text.json.10.0.0.nupkg.sha512",
|
||||||
"/home/student/.nuget/packages/tmds.dbus.protocol/0.21.2/tmds.dbus.protocol.0.21.2.nupkg.sha512"
|
"C:\\Users\\artem\\.nuget\\packages\\tmds.dbus.protocol\\0.21.2\\tmds.dbus.protocol.0.21.2.nupkg.sha512",
|
||||||
|
"C:\\Users\\artem\\.nuget\\packages\\microsoft.netcore.app.ref\\9.0.15\\microsoft.netcore.app.ref.9.0.15.nupkg.sha512",
|
||||||
|
"C:\\Users\\artem\\.nuget\\packages\\microsoft.windowsdesktop.app.ref\\9.0.15\\microsoft.windowsdesktop.app.ref.9.0.15.nupkg.sha512",
|
||||||
|
"C:\\Users\\artem\\.nuget\\packages\\microsoft.aspnetcore.app.ref\\9.0.15\\microsoft.aspnetcore.app.ref.9.0.15.nupkg.sha512",
|
||||||
|
"C:\\Users\\artem\\.nuget\\packages\\microsoft.netcore.app.host.win-x64\\9.0.15\\microsoft.netcore.app.host.win-x64.9.0.15.nupkg.sha512"
|
||||||
],
|
],
|
||||||
"logs": []
|
"logs": []
|
||||||
}
|
}
|
||||||
|
|
@ -1 +1 @@
|
||||||
"restore":{"projectUniqueName":"/home/student/RiderProjects/Policlinica2/Policlinica/Policlinica.csproj","projectName":"Policlinica","projectPath":"/home/student/RiderProjects/Policlinica2/Policlinica/Policlinica.csproj","outputPath":"/home/student/RiderProjects/Policlinica2/Policlinica/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net9.0"],"sources":{"/home/student/.dotnet/library-packs":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net9.0":{"targetAlias":"net9.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"},"SdkAnalysisLevel":"9.0.300"}"frameworks":{"net9.0":{"targetAlias":"net9.0","dependencies":{"Avalonia":{"target":"Package","version":"[11.3.11, )"},"Avalonia.Controls.DataGrid":{"target":"Package","version":"[11.3.9, )"},"Avalonia.Desktop":{"target":"Package","version":"[11.3.11, )"},"Avalonia.Diagnostics":{"target":"Package","version":"[11.3.11, )"},"Avalonia.Fonts.Inter":{"target":"Package","version":"[11.3.11, )"},"Avalonia.Themes.Fluent":{"target":"Package","version":"[11.3.11, )"},"CommunityToolkit.Mvvm":{"target":"Package","version":"[8.4.2, )"},"Microsoft.Extensions.Hosting":{"target":"Package","version":"[10.0.0, )"},"MySqlConnector":{"target":"Package","version":"[2.5.0, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/home/student/.dotnet/sdk/9.0.304/PortableRuntimeIdentifierGraph.json"}}
|
"restore":{"projectUniqueName":"C:\\Users\\artem\\RiderProjects\\Policlinica\\Policlinica\\Policlinica.csproj","projectName":"Policlinica","projectPath":"C:\\Users\\artem\\RiderProjects\\Policlinica\\Policlinica\\Policlinica.csproj","outputPath":"C:\\Users\\artem\\RiderProjects\\Policlinica\\Policlinica\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net9.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net9.0":{"targetAlias":"net9.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"},"SdkAnalysisLevel":"10.0.200"}"frameworks":{"net9.0":{"targetAlias":"net9.0","dependencies":{"Avalonia":{"target":"Package","version":"[11.3.11, )"},"Avalonia.Controls.DataGrid":{"target":"Package","version":"[11.3.9, )"},"Avalonia.Desktop":{"target":"Package","version":"[11.3.11, )"},"Avalonia.Diagnostics":{"target":"Package","version":"[11.3.11, )"},"Avalonia.Fonts.Inter":{"target":"Package","version":"[11.3.11, )"},"Avalonia.Themes.Fluent":{"target":"Package","version":"[11.3.11, )"},"CommunityToolkit.Mvvm":{"target":"Package","version":"[8.4.2, )"},"Microsoft.Extensions.Hosting":{"target":"Package","version":"[10.0.0, )"},"MySqlConnector":{"target":"Package","version":"[2.5.0, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"downloadDependencies":[{"name":"Microsoft.AspNetCore.App.Ref","version":"[9.0.15, 9.0.15]"},{"name":"Microsoft.NETCore.App.Host.win-x64","version":"[9.0.15, 9.0.15]"},{"name":"Microsoft.NETCore.App.Ref","version":"[9.0.15, 9.0.15]"},{"name":"Microsoft.WindowsDesktop.App.Ref","version":"[9.0.15, 9.0.15]"}],"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"C:\\Program Files\\dotnet\\sdk\\10.0.202/PortableRuntimeIdentifierGraph.json"}}
|
||||||
|
|
@ -1 +1 @@
|
||||||
17787232430621612
|
17787400294321310
|
||||||
|
|
@ -1 +1 @@
|
||||||
17787232511301559
|
17787400294321310
|
||||||
Loading…
Reference in New Issue