From fda7ac88ee8d19d154fc7f37a18a04233a7021e4 Mon Sep 17 00:00:00 2001 From: aaugust Date: Thu, 7 May 2026 11:02:05 +1000 Subject: [PATCH] Test --- Appsettings.json | 2 +- BathHouseManagmet.csproj | 2 +- Database/ClientRepository.cs | 48 +++++++ Database/EmployeeRepository.cs | 118 +++++++++++++++++- Models/Client.cs | 4 +- Models/Discount.cs | 5 +- Models/Employee.cs | 6 +- Models/Order.cs | 11 +- Models/Position.cs | 3 +- Models/Zone.cs | 3 +- ViewModels/MainWindowViewModel.cs | 2 +- Views/MainWindow.axaml | 11 +- ...BathHouseManagmet.csproj.nuget.dgspec.json | 4 + obj/Debug/net10.0/Avalonia/resources | Bin 178021 -> 177743 bytes .../net10.0/BathHouseManagmet.AssemblyInfo.cs | 2 +- ...BathHouseManagmet.AssemblyInfoInputs.cache | 2 +- .../net10.0/BathHouseManagmet.assets.cache | Bin 50507 -> 51215 bytes ...useManagmet.csproj.AssemblyReference.cache | Bin 31591 -> 32078 bytes obj/project.assets.json | 40 ++++++ obj/project.nuget.cache | 3 +- obj/project.packagespec.json | 2 +- obj/rider.project.model.nuget.info | 2 +- obj/rider.project.restore.info | 2 +- 23 files changed, 246 insertions(+), 26 deletions(-) create mode 100644 Database/ClientRepository.cs diff --git a/Appsettings.json b/Appsettings.json index 331bdaf..e616c3a 100644 --- a/Appsettings.json +++ b/Appsettings.json @@ -1,5 +1,5 @@ { "DatabseConnection": { - "ConnectionString" : "server=192.168.200.13;userid=student;password=student;database=localhost" + "ConnectionString" : "server=localhost;userid=root;password=root;database=bathhousemanagment" } } \ No newline at end of file diff --git a/BathHouseManagmet.csproj b/BathHouseManagmet.csproj index 27a424c..0caa1f8 100644 --- a/BathHouseManagmet.csproj +++ b/BathHouseManagmet.csproj @@ -8,12 +8,12 @@ - + diff --git a/Database/ClientRepository.cs b/Database/ClientRepository.cs new file mode 100644 index 0000000..d5deeec --- /dev/null +++ b/Database/ClientRepository.cs @@ -0,0 +1,48 @@ +using System; +using System.Collections.Generic; +using BathHouseManagmet.Models; +using Microsoft.Extensions.Options; +using MySqlConnector; + +namespace BathHouseManagmet.Database; + +public class ClientRepository +{ + MySqlConnection connection; + + public ClientRepository(IOptions connect) + { + connection = new MySqlConnection(connect.Value.ConnectionString); + } + + public List GetClients() + { + List result = new(); + string sql = "select * from `client`"; + try + { + connection.Open(); + using(var command = new MySqlCommand(sql, connection)) + using (var reader = command.ExecuteReader()) + { + while (reader.Read()) + { + result.Add(new Client + { + Id = reader.GetInt32("id"), + Name = reader.GetString("name"), + Surname = reader.GetString("surname"), + }); + } + } + connection.Close(); + } + catch (Exception e) + { + Console.WriteLine(e); + } + return result; + } + + +} \ No newline at end of file diff --git a/Database/EmployeeRepository.cs b/Database/EmployeeRepository.cs index ca4ef5a..28af27b 100644 --- a/Database/EmployeeRepository.cs +++ b/Database/EmployeeRepository.cs @@ -1,6 +1,120 @@ +using System; +using System.Collections.Generic; +using BathHouseManagmet.Models; +using Microsoft.Extensions.Options; +using MySqlConnector; + namespace BathHouseManagmet.Database; -public class employee +public class EmployeeRepository { - + MySqlConnection connection; + + public EmployeeRepository(IOptions connect) + { + connection = new MySqlConnection(connect.Value.ConnectionString); + } + + public List GetEmployees(Position position) + { + List result = new(); + string sql = "select * from `employee` where position_id = " + position.Id; + try + { + connection.Open(); + using (var command = new MySqlCommand(sql, connection)) + using (var reader = command.ExecuteReader()) + { + while (reader.Read()) + { + result.Add(new Employee + { + Id = reader.GetInt32("id"), + Name = reader.GetString("name"), + Surname = reader.GetString("surname"), + OnWork = reader.GetBoolean("on_work"), + PositionId = reader.GetInt32("position_id"), + }); + } + } + connection.Close(); + } + catch (Exception e) + { + Console.WriteLine(e); + } + return result; + } + + public bool InsertEmployee(Employee employee) + { + string sql = + "insert into `employee` (`id`, `name`, `surname`, `on_work`, `position_id`) values (0, @name, @surname, @on_work, @position_id)"; + try + { + connection.Open(); + using (var command = new MySqlCommand(sql, connection)) + { + command.Parameters.AddWithValue("@name", employee.Name); + command.Parameters.AddWithValue("@surname", employee.Surname); + command.Parameters.AddWithValue("@on_work", employee.OnWork); + command.Parameters.AddWithValue("@position_id", employee.PositionId); + command.ExecuteNonQuery(); + } + connection.Close(); + } + catch (Exception e) + { + connection.Close(); + return false; + } + connection.Close(); + return true; + } + + public bool UpdateEmployee(Employee employee) + { + string sql = "update `employee` set name = @name, surname = @surname, on_work = @on_work, position_id = @position_id"; + try + { + connection.Open(); + using (var command = new MySqlCommand(sql, connection)) + { + command.Parameters.AddWithValue("@name", employee.Name); + command.Parameters.AddWithValue("@surname", employee.Surname); + command.Parameters.AddWithValue("@on_work", employee.OnWork); + command.Parameters.AddWithValue("@position_id", employee.PositionId); + command.ExecuteNonQuery(); + } + connection.Close(); + } + catch (Exception e) + { + connection.Close(); + return false; + } + connection.Close(); + return true; + } + + public bool DeleteEmployee(Employee employee) + { + string sql = "delete from `employee` where `id` = " + employee.Id; + try + { + connection.Open(); + using (var command = new MySqlCommand(sql, connection)) + { + command.ExecuteNonQuery(); + } + connection.Close(); + } + catch (Exception e) + { + connection.Close(); + return false; + } + connection.Close(); + return true; + } } \ No newline at end of file diff --git a/Models/Client.cs b/Models/Client.cs index 5dab89e..56b3245 100644 --- a/Models/Client.cs +++ b/Models/Client.cs @@ -2,5 +2,7 @@ namespace BathHouseManagmet.Models; public class Client { - + public int Id { get; set; } + public string Name { get; set; } + public string Surname { get; set; } } \ No newline at end of file diff --git a/Models/Discount.cs b/Models/Discount.cs index 5badaa9..0a0dc32 100644 --- a/Models/Discount.cs +++ b/Models/Discount.cs @@ -2,5 +2,8 @@ namespace BathHouseManagmet.Models; public class Discount { - + public int Id { get; set; } + public string Name { get; set; } + public string Description { get; set; } + public int DescountPercent { get; set; } } \ No newline at end of file diff --git a/Models/Employee.cs b/Models/Employee.cs index 8055059..6c2e982 100644 --- a/Models/Employee.cs +++ b/Models/Employee.cs @@ -2,5 +2,9 @@ namespace BathHouseManagmet.Models; public class Employee { - + public int Id { get; set; } + public string Name { get; set; } + public string Surname { get; set; } + public bool OnWork { get; set; } + public int PositionId { get; set; } } \ No newline at end of file diff --git a/Models/Order.cs b/Models/Order.cs index c21b25f..6c96f17 100644 --- a/Models/Order.cs +++ b/Models/Order.cs @@ -1,6 +1,15 @@ +using System; + namespace BathHouseManagmet.Models; public class Order { - + public int Id { get; set; } + public int ClientId { get; set; } + public int ZoneId { get; set; } + public DateTime OrderDate { get; set; } + public int WorkPrice { get; set; } + public int EmployeeId { get; set; } + public int DiscountId { get; set; } + public int FinalPrice { get; set; } } \ No newline at end of file diff --git a/Models/Position.cs b/Models/Position.cs index 78a2bb4..a0fcb58 100644 --- a/Models/Position.cs +++ b/Models/Position.cs @@ -2,5 +2,6 @@ namespace BathHouseManagmet.Models; public class Position { - + public int Id { get; set; } + public string Name { get; set; } } \ No newline at end of file diff --git a/Models/Zone.cs b/Models/Zone.cs index 0dbeeac..57f801c 100644 --- a/Models/Zone.cs +++ b/Models/Zone.cs @@ -2,5 +2,6 @@ namespace BathHouseManagmet.Models; public class Zone { - + public int Id { get; set; } + public string Name { get; set; } } \ No newline at end of file diff --git a/ViewModels/MainWindowViewModel.cs b/ViewModels/MainWindowViewModel.cs index c02b005..1c57edc 100644 --- a/ViewModels/MainWindowViewModel.cs +++ b/ViewModels/MainWindowViewModel.cs @@ -2,5 +2,5 @@ public partial class MainWindowViewModel : ViewModelBase { - public string Greeting { get; } = "Welcome to Avalonia!"; + } \ No newline at end of file diff --git a/Views/MainWindow.axaml b/Views/MainWindow.axaml index 3e3177b..bfaca2a 100644 --- a/Views/MainWindow.axaml +++ b/Views/MainWindow.axaml @@ -7,13 +7,6 @@ x:Class="BathHouseManagmet.Views.MainWindow" x:DataType="vm:MainWindowViewModel" Icon="/Assets/avalonia-logo.ico" - Title="BathHouseManagmet"> - - - - - - - + Title="BathHouseManagment"> + diff --git a/obj/BathHouseManagmet.csproj.nuget.dgspec.json b/obj/BathHouseManagmet.csproj.nuget.dgspec.json index a1e922a..d9f5772 100644 --- a/obj/BathHouseManagmet.csproj.nuget.dgspec.json +++ b/obj/BathHouseManagmet.csproj.nuget.dgspec.json @@ -50,6 +50,10 @@ "target": "Package", "version": "[11.3.10, )" }, + "Avalonia.Controls.DataGrid": { + "target": "Package", + "version": "[11.3.10, )" + }, "Avalonia.Desktop": { "target": "Package", "version": "[11.3.10, )" diff --git a/obj/Debug/net10.0/Avalonia/resources b/obj/Debug/net10.0/Avalonia/resources index a06f2d9584f82114400cb0f6da8a96958c670464..0dfd102dd5d8dec509f0f4b5b2482a024aff87b4 100644 GIT binary patch delta 48 zcmaF*j_dpzt_iVBZcG#7Wtk>!ZmesqW87NDRI`~cuSCg?mrDT(w##j0a%Tbn%6|{g delta 328 zcmX^AhU@7&t_iVBG0YR=Wto<5X{>9lW87NDRI|ChM9GeqiVFIfN~%i5U^3y)l~?|$ShXK&&#P)C{8UYRw&6xRX|d$kd|Kr7Aq)9Ez3+T zPc2f&%u`6rQ}A?g)j^m9Hm)QeWQ0OJ$cV(`lG4N+43mmV^GY&vQ+2=!(XA>d$}dPQ zDyan7ker{As-TgRpP#LeSfb!qP@tDsk(isKmt3r=psS1Qhq7EN-^9$k@XWlF{PHlM a6V-fydUN!lYHake1_3YEc8)Df?o0rkHE3Y~ diff --git a/obj/Debug/net10.0/BathHouseManagmet.AssemblyInfo.cs b/obj/Debug/net10.0/BathHouseManagmet.AssemblyInfo.cs index 8ca6f64..a311175 100644 --- a/obj/Debug/net10.0/BathHouseManagmet.AssemblyInfo.cs +++ b/obj/Debug/net10.0/BathHouseManagmet.AssemblyInfo.cs @@ -13,7 +13,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("BathHouseManagmet")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+9c2351b863396c43a39f9449f08dc29f85df9763")] [assembly: System.Reflection.AssemblyProductAttribute("BathHouseManagmet")] [assembly: System.Reflection.AssemblyTitleAttribute("BathHouseManagmet")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/obj/Debug/net10.0/BathHouseManagmet.AssemblyInfoInputs.cache b/obj/Debug/net10.0/BathHouseManagmet.AssemblyInfoInputs.cache index ca98972..03d5ef9 100644 --- a/obj/Debug/net10.0/BathHouseManagmet.AssemblyInfoInputs.cache +++ b/obj/Debug/net10.0/BathHouseManagmet.AssemblyInfoInputs.cache @@ -1 +1 @@ -17822dc97d6951100cace6bedba90a41c6699f5f35c4dab0ea6de5260ae3b301 +4757971917ac4d5bc9219094abbbd12816220e52e18e259e295afe360fad1005 diff --git a/obj/Debug/net10.0/BathHouseManagmet.assets.cache b/obj/Debug/net10.0/BathHouseManagmet.assets.cache index fcae96f65854fa3caf42ac4d1633518ee76ccca2..9671e83ca29b4e04402fe1b1f5e18df9d3bab0b0 100644 GIT binary patch delta 6888 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 SxWY{rB>&y=;MgN!e*Xi9fYxsS delta 6562 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 E0XY?n%m4rY diff --git a/obj/Debug/net10.0/BathHouseManagmet.csproj.AssemblyReference.cache b/obj/Debug/net10.0/BathHouseManagmet.csproj.AssemblyReference.cache index 64853738ced1f7bc3564a4904cd36accd87f7310..fdfd2cb18b2fb81a85af92755991647a0cca7da1 100644 GIT binary patch delta 162 zcmaF@M!(60;fj;v1ywitHHu8mXV%*MKrAl}0N}C=C;$Ke diff --git a/obj/project.assets.json b/obj/project.assets.json index caae9f7..12eb2f7 100644 --- a/obj/project.assets.json +++ b/obj/project.assets.json @@ -124,6 +124,22 @@ } } }, + "Avalonia.Controls.DataGrid/11.3.10": { + "type": "package", + "dependencies": { + "Avalonia": "11.3.10" + }, + "compile": { + "lib/net8.0/Avalonia.Controls.DataGrid.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Avalonia.Controls.DataGrid.dll": { + "related": ".xml" + } + } + }, "Avalonia.Desktop/11.3.10": { "type": "package", "dependencies": { @@ -1505,6 +1521,25 @@ "lib/netstandard2.0/Avalonia.Controls.ColorPicker.xml" ] }, + "Avalonia.Controls.DataGrid/11.3.10": { + "sha512": "KSwme0XOL8594fFvoQ37s5rnSo9vCKutCpufCEmd0R7x/fRWOjK3g3su1Z3nukgbobryPVjQvZxi/E92DPPYpw==", + "type": "package", + "path": "avalonia.controls.datagrid/11.3.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "avalonia.controls.datagrid.11.3.10.nupkg.sha512", + "avalonia.controls.datagrid.nuspec", + "lib/net6.0/Avalonia.Controls.DataGrid.dll", + "lib/net6.0/Avalonia.Controls.DataGrid.xml", + "lib/net8.0/Avalonia.Controls.DataGrid.dll", + "lib/net8.0/Avalonia.Controls.DataGrid.xml", + "lib/netstandard2.0/Avalonia.Controls.DataGrid.dll", + "lib/netstandard2.0/Avalonia.Controls.DataGrid.xml", + "readme.md" + ] + }, "Avalonia.Desktop/11.3.10": { "sha512": "Enb/6GTCO3+GlSxyhyxYuMjiyBT1EGdFkOLdAPKXYTxgCcnWvqdC6lwBslD0y18P8B8pOnlYryTEmBRsBSvHjQ==", "type": "package", @@ -3140,6 +3175,7 @@ "projectFileDependencyGroups": { "net10.0": [ "Avalonia >= 11.3.10", + "Avalonia.Controls.DataGrid >= 11.3.10", "Avalonia.Desktop >= 11.3.10", "Avalonia.Diagnostics >= 11.3.10", "Avalonia.Fonts.Inter >= 11.3.10", @@ -3198,6 +3234,10 @@ "target": "Package", "version": "[11.3.10, )" }, + "Avalonia.Controls.DataGrid": { + "target": "Package", + "version": "[11.3.10, )" + }, "Avalonia.Desktop": { "target": "Package", "version": "[11.3.10, )" diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache index 67809d2..ae78134 100644 --- a/obj/project.nuget.cache +++ b/obj/project.nuget.cache @@ -1,6 +1,6 @@ { "version": 2, - "dgSpecHash": "q5oPTWmJay4=", + "dgSpecHash": "WewDm+VE+hc=", "success": true, "projectFilePath": "C:\\Users\\Mikhail\\RiderProjects\\BathHouseManagmet\\BathHouseManagmet.csproj", "expectedPackageFiles": [ @@ -8,6 +8,7 @@ "C:\\Users\\Mikhail\\.nuget\\packages\\avalonia.angle.windows.natives\\2.1.25547.20250602\\avalonia.angle.windows.natives.2.1.25547.20250602.nupkg.sha512", "C:\\Users\\Mikhail\\.nuget\\packages\\avalonia.buildservices\\11.3.2\\avalonia.buildservices.11.3.2.nupkg.sha512", "C:\\Users\\Mikhail\\.nuget\\packages\\avalonia.controls.colorpicker\\11.3.10\\avalonia.controls.colorpicker.11.3.10.nupkg.sha512", + "C:\\Users\\Mikhail\\.nuget\\packages\\avalonia.controls.datagrid\\11.3.10\\avalonia.controls.datagrid.11.3.10.nupkg.sha512", "C:\\Users\\Mikhail\\.nuget\\packages\\avalonia.desktop\\11.3.10\\avalonia.desktop.11.3.10.nupkg.sha512", "C:\\Users\\Mikhail\\.nuget\\packages\\avalonia.diagnostics\\11.3.10\\avalonia.diagnostics.11.3.10.nupkg.sha512", "C:\\Users\\Mikhail\\.nuget\\packages\\avalonia.fonts.inter\\11.3.10\\avalonia.fonts.inter.11.3.10.nupkg.sha512", diff --git a/obj/project.packagespec.json b/obj/project.packagespec.json index 0d267f0..b7ac906 100644 --- a/obj/project.packagespec.json +++ b/obj/project.packagespec.json @@ -1 +1 @@ -"restore":{"projectUniqueName":"C:\\Users\\Mikhail\\RiderProjects\\BathHouseManagmet\\BathHouseManagmet.csproj","projectName":"BathHouseManagmet","projectPath":"C:\\Users\\Mikhail\\RiderProjects\\BathHouseManagmet\\BathHouseManagmet.csproj","outputPath":"C:\\Users\\Mikhail\\RiderProjects\\BathHouseManagmet\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net10.0"],"sources":{"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net10.0":{"targetAlias":"net10.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"all"},"SdkAnalysisLevel":"10.0.100"}"frameworks":{"net10.0":{"targetAlias":"net10.0","dependencies":{"Avalonia":{"target":"Package","version":"[11.3.10, )"},"Avalonia.Desktop":{"target":"Package","version":"[11.3.10, )"},"Avalonia.Diagnostics":{"target":"Package","version":"[11.3.10, )"},"Avalonia.Fonts.Inter":{"target":"Package","version":"[11.3.10, )"},"Avalonia.Themes.Fluent":{"target":"Package","version":"[11.3.10, )"},"CommunityToolkit.Mvvm":{"target":"Package","version":"[8.2.1, )"},"Microsoft.Extensions.Hosting":{"target":"Package","version":"[11.0.0-preview.3.26207.106, )"},"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":"C:\\Users\\Mikhail\\.dotnet\\sdk\\10.0.101/PortableRuntimeIdentifierGraph.json","packagesToPrune":{"Microsoft.CSharp":"(,4.7.32767]","Microsoft.VisualBasic":"(,10.4.32767]","Microsoft.Win32.Primitives":"(,4.3.32767]","Microsoft.Win32.Registry":"(,5.0.32767]","runtime.any.System.Collections":"(,4.3.32767]","runtime.any.System.Diagnostics.Tools":"(,4.3.32767]","runtime.any.System.Diagnostics.Tracing":"(,4.3.32767]","runtime.any.System.Globalization":"(,4.3.32767]","runtime.any.System.Globalization.Calendars":"(,4.3.32767]","runtime.any.System.IO":"(,4.3.32767]","runtime.any.System.Reflection":"(,4.3.32767]","runtime.any.System.Reflection.Extensions":"(,4.3.32767]","runtime.any.System.Reflection.Primitives":"(,4.3.32767]","runtime.any.System.Resources.ResourceManager":"(,4.3.32767]","runtime.any.System.Runtime":"(,4.3.32767]","runtime.any.System.Runtime.Handles":"(,4.3.32767]","runtime.any.System.Runtime.InteropServices":"(,4.3.32767]","runtime.any.System.Text.Encoding":"(,4.3.32767]","runtime.any.System.Text.Encoding.Extensions":"(,4.3.32767]","runtime.any.System.Threading.Tasks":"(,4.3.32767]","runtime.any.System.Threading.Timer":"(,4.3.32767]","runtime.aot.System.Collections":"(,4.3.32767]","runtime.aot.System.Diagnostics.Tools":"(,4.3.32767]","runtime.aot.System.Diagnostics.Tracing":"(,4.3.32767]","runtime.aot.System.Globalization":"(,4.3.32767]","runtime.aot.System.Globalization.Calendars":"(,4.3.32767]","runtime.aot.System.IO":"(,4.3.32767]","runtime.aot.System.Reflection":"(,4.3.32767]","runtime.aot.System.Reflection.Extensions":"(,4.3.32767]","runtime.aot.System.Reflection.Primitives":"(,4.3.32767]","runtime.aot.System.Resources.ResourceManager":"(,4.3.32767]","runtime.aot.System.Runtime":"(,4.3.32767]","runtime.aot.System.Runtime.Handles":"(,4.3.32767]","runtime.aot.System.Runtime.InteropServices":"(,4.3.32767]","runtime.aot.System.Text.Encoding":"(,4.3.32767]","runtime.aot.System.Text.Encoding.Extensions":"(,4.3.32767]","runtime.aot.System.Threading.Tasks":"(,4.3.32767]","runtime.aot.System.Threading.Timer":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.debian.9-x64.runtime.native.System":"(,4.3.32767]","runtime.debian.9-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.debian.9-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.debian.9-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.fedora.27-x64.runtime.native.System":"(,4.3.32767]","runtime.fedora.27-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.fedora.27-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.fedora.27-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.fedora.28-x64.runtime.native.System":"(,4.3.32767]","runtime.fedora.28-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.fedora.28-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.fedora.28-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.opensuse.42.3-x64.runtime.native.System":"(,4.3.32767]","runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.opensuse.42.3-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.opensuse.42.3-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.ubuntu.18.04-x64.runtime.native.System":"(,4.3.32767]","runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.unix.Microsoft.Win32.Primitives":"(,4.3.32767]","runtime.unix.System.Console":"(,4.3.32767]","runtime.unix.System.Diagnostics.Debug":"(,4.3.32767]","runtime.unix.System.IO.FileSystem":"(,4.3.32767]","runtime.unix.System.Net.Primitives":"(,4.3.32767]","runtime.unix.System.Net.Sockets":"(,4.3.32767]","runtime.unix.System.Private.Uri":"(,4.3.32767]","runtime.unix.System.Runtime.Extensions":"(,4.3.32767]","runtime.win.Microsoft.Win32.Primitives":"(,4.3.32767]","runtime.win.System.Console":"(,4.3.32767]","runtime.win.System.Diagnostics.Debug":"(,4.3.32767]","runtime.win.System.IO.FileSystem":"(,4.3.32767]","runtime.win.System.Net.Primitives":"(,4.3.32767]","runtime.win.System.Net.Sockets":"(,4.3.32767]","runtime.win.System.Runtime.Extensions":"(,4.3.32767]","runtime.win10-arm-aot.runtime.native.System.IO.Compression":"(,4.0.32767]","runtime.win10-arm64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.win10-x64-aot.runtime.native.System.IO.Compression":"(,4.0.32767]","runtime.win10-x86-aot.runtime.native.System.IO.Compression":"(,4.0.32767]","runtime.win7-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.win7-x86.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.win7.System.Private.Uri":"(,4.3.32767]","runtime.win8-arm.runtime.native.System.IO.Compression":"(,4.3.32767]","System.AppContext":"(,4.3.32767]","System.Buffers":"(,5.0.32767]","System.Collections":"(,4.3.32767]","System.Collections.Concurrent":"(,4.3.32767]","System.Collections.Immutable":"(,10.0.32767]","System.Collections.NonGeneric":"(,4.3.32767]","System.Collections.Specialized":"(,4.3.32767]","System.ComponentModel":"(,4.3.32767]","System.ComponentModel.Annotations":"(,4.3.32767]","System.ComponentModel.EventBasedAsync":"(,4.3.32767]","System.ComponentModel.Primitives":"(,4.3.32767]","System.ComponentModel.TypeConverter":"(,4.3.32767]","System.Console":"(,4.3.32767]","System.Data.Common":"(,4.3.32767]","System.Data.DataSetExtensions":"(,4.4.32767]","System.Diagnostics.Contracts":"(,4.3.32767]","System.Diagnostics.Debug":"(,4.3.32767]","System.Diagnostics.DiagnosticSource":"(,10.0.32767]","System.Diagnostics.FileVersionInfo":"(,4.3.32767]","System.Diagnostics.Process":"(,4.3.32767]","System.Diagnostics.StackTrace":"(,4.3.32767]","System.Diagnostics.TextWriterTraceListener":"(,4.3.32767]","System.Diagnostics.Tools":"(,4.3.32767]","System.Diagnostics.TraceSource":"(,4.3.32767]","System.Diagnostics.Tracing":"(,4.3.32767]","System.Drawing.Primitives":"(,4.3.32767]","System.Dynamic.Runtime":"(,4.3.32767]","System.Formats.Asn1":"(,10.0.32767]","System.Formats.Tar":"(,10.0.32767]","System.Globalization":"(,4.3.32767]","System.Globalization.Calendars":"(,4.3.32767]","System.Globalization.Extensions":"(,4.3.32767]","System.IO":"(,4.3.32767]","System.IO.Compression":"(,4.3.32767]","System.IO.Compression.ZipFile":"(,4.3.32767]","System.IO.FileSystem":"(,4.3.32767]","System.IO.FileSystem.AccessControl":"(,4.4.32767]","System.IO.FileSystem.DriveInfo":"(,4.3.32767]","System.IO.FileSystem.Primitives":"(,4.3.32767]","System.IO.FileSystem.Watcher":"(,4.3.32767]","System.IO.IsolatedStorage":"(,4.3.32767]","System.IO.MemoryMappedFiles":"(,4.3.32767]","System.IO.Pipelines":"(,10.0.32767]","System.IO.Pipes":"(,4.3.32767]","System.IO.Pipes.AccessControl":"(,5.0.32767]","System.IO.UnmanagedMemoryStream":"(,4.3.32767]","System.Linq":"(,4.3.32767]","System.Linq.AsyncEnumerable":"(,10.0.32767]","System.Linq.Expressions":"(,4.3.32767]","System.Linq.Parallel":"(,4.3.32767]","System.Linq.Queryable":"(,4.3.32767]","System.Memory":"(,5.0.32767]","System.Net.Http":"(,4.3.32767]","System.Net.Http.Json":"(,10.0.32767]","System.Net.NameResolution":"(,4.3.32767]","System.Net.NetworkInformation":"(,4.3.32767]","System.Net.Ping":"(,4.3.32767]","System.Net.Primitives":"(,4.3.32767]","System.Net.Requests":"(,4.3.32767]","System.Net.Security":"(,4.3.32767]","System.Net.ServerSentEvents":"(,10.0.32767]","System.Net.Sockets":"(,4.3.32767]","System.Net.WebHeaderCollection":"(,4.3.32767]","System.Net.WebSockets":"(,4.3.32767]","System.Net.WebSockets.Client":"(,4.3.32767]","System.Numerics.Vectors":"(,5.0.32767]","System.ObjectModel":"(,4.3.32767]","System.Private.DataContractSerialization":"(,4.3.32767]","System.Private.Uri":"(,4.3.32767]","System.Reflection":"(,4.3.32767]","System.Reflection.DispatchProxy":"(,6.0.32767]","System.Reflection.Emit":"(,4.7.32767]","System.Reflection.Emit.ILGeneration":"(,4.7.32767]","System.Reflection.Emit.Lightweight":"(,4.7.32767]","System.Reflection.Extensions":"(,4.3.32767]","System.Reflection.Metadata":"(,10.0.32767]","System.Reflection.Primitives":"(,4.3.32767]","System.Reflection.TypeExtensions":"(,4.3.32767]","System.Resources.Reader":"(,4.3.32767]","System.Resources.ResourceManager":"(,4.3.32767]","System.Resources.Writer":"(,4.3.32767]","System.Runtime":"(,4.3.32767]","System.Runtime.CompilerServices.Unsafe":"(,7.0.32767]","System.Runtime.CompilerServices.VisualC":"(,4.3.32767]","System.Runtime.Extensions":"(,4.3.32767]","System.Runtime.Handles":"(,4.3.32767]","System.Runtime.InteropServices":"(,4.3.32767]","System.Runtime.InteropServices.RuntimeInformation":"(,4.3.32767]","System.Runtime.Loader":"(,4.3.32767]","System.Runtime.Numerics":"(,4.3.32767]","System.Runtime.Serialization.Formatters":"(,4.3.32767]","System.Runtime.Serialization.Json":"(,4.3.32767]","System.Runtime.Serialization.Primitives":"(,4.3.32767]","System.Runtime.Serialization.Xml":"(,4.3.32767]","System.Security.AccessControl":"(,6.0.32767]","System.Security.Claims":"(,4.3.32767]","System.Security.Cryptography.Algorithms":"(,4.3.32767]","System.Security.Cryptography.Cng":"(,5.0.32767]","System.Security.Cryptography.Csp":"(,4.3.32767]","System.Security.Cryptography.Encoding":"(,4.3.32767]","System.Security.Cryptography.OpenSsl":"(,5.0.32767]","System.Security.Cryptography.Primitives":"(,4.3.32767]","System.Security.Cryptography.X509Certificates":"(,4.3.32767]","System.Security.Principal":"(,4.3.32767]","System.Security.Principal.Windows":"(,5.0.32767]","System.Security.SecureString":"(,4.3.32767]","System.Text.Encoding":"(,4.3.32767]","System.Text.Encoding.CodePages":"(,10.0.32767]","System.Text.Encoding.Extensions":"(,4.3.32767]","System.Text.Encodings.Web":"(,10.0.32767]","System.Text.Json":"(,10.0.32767]","System.Text.RegularExpressions":"(,4.3.32767]","System.Threading":"(,4.3.32767]","System.Threading.AccessControl":"(,10.0.32767]","System.Threading.Channels":"(,10.0.32767]","System.Threading.Overlapped":"(,4.3.32767]","System.Threading.Tasks":"(,4.3.32767]","System.Threading.Tasks.Dataflow":"(,10.0.32767]","System.Threading.Tasks.Extensions":"(,5.0.32767]","System.Threading.Tasks.Parallel":"(,4.3.32767]","System.Threading.Thread":"(,4.3.32767]","System.Threading.ThreadPool":"(,4.3.32767]","System.Threading.Timer":"(,4.3.32767]","System.ValueTuple":"(,4.5.32767]","System.Xml.ReaderWriter":"(,4.3.32767]","System.Xml.XDocument":"(,4.3.32767]","System.Xml.XmlDocument":"(,4.3.32767]","System.Xml.XmlSerializer":"(,4.3.32767]","System.Xml.XPath":"(,4.3.32767]","System.Xml.XPath.XDocument":"(,5.0.32767]"}}} \ No newline at end of file +"restore":{"projectUniqueName":"C:\\Users\\Mikhail\\RiderProjects\\BathHouseManagmet\\BathHouseManagmet.csproj","projectName":"BathHouseManagmet","projectPath":"C:\\Users\\Mikhail\\RiderProjects\\BathHouseManagmet\\BathHouseManagmet.csproj","outputPath":"C:\\Users\\Mikhail\\RiderProjects\\BathHouseManagmet\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net10.0"],"sources":{"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net10.0":{"targetAlias":"net10.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"all"},"SdkAnalysisLevel":"10.0.100"}"frameworks":{"net10.0":{"targetAlias":"net10.0","dependencies":{"Avalonia":{"target":"Package","version":"[11.3.10, )"},"Avalonia.Controls.DataGrid":{"target":"Package","version":"[11.3.10, )"},"Avalonia.Desktop":{"target":"Package","version":"[11.3.10, )"},"Avalonia.Diagnostics":{"target":"Package","version":"[11.3.10, )"},"Avalonia.Fonts.Inter":{"target":"Package","version":"[11.3.10, )"},"Avalonia.Themes.Fluent":{"target":"Package","version":"[11.3.10, )"},"CommunityToolkit.Mvvm":{"target":"Package","version":"[8.2.1, )"},"Microsoft.Extensions.Hosting":{"target":"Package","version":"[11.0.0-preview.3.26207.106, )"},"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":"C:\\Users\\Mikhail\\.dotnet\\sdk\\10.0.101/PortableRuntimeIdentifierGraph.json","packagesToPrune":{"Microsoft.CSharp":"(,4.7.32767]","Microsoft.VisualBasic":"(,10.4.32767]","Microsoft.Win32.Primitives":"(,4.3.32767]","Microsoft.Win32.Registry":"(,5.0.32767]","runtime.any.System.Collections":"(,4.3.32767]","runtime.any.System.Diagnostics.Tools":"(,4.3.32767]","runtime.any.System.Diagnostics.Tracing":"(,4.3.32767]","runtime.any.System.Globalization":"(,4.3.32767]","runtime.any.System.Globalization.Calendars":"(,4.3.32767]","runtime.any.System.IO":"(,4.3.32767]","runtime.any.System.Reflection":"(,4.3.32767]","runtime.any.System.Reflection.Extensions":"(,4.3.32767]","runtime.any.System.Reflection.Primitives":"(,4.3.32767]","runtime.any.System.Resources.ResourceManager":"(,4.3.32767]","runtime.any.System.Runtime":"(,4.3.32767]","runtime.any.System.Runtime.Handles":"(,4.3.32767]","runtime.any.System.Runtime.InteropServices":"(,4.3.32767]","runtime.any.System.Text.Encoding":"(,4.3.32767]","runtime.any.System.Text.Encoding.Extensions":"(,4.3.32767]","runtime.any.System.Threading.Tasks":"(,4.3.32767]","runtime.any.System.Threading.Timer":"(,4.3.32767]","runtime.aot.System.Collections":"(,4.3.32767]","runtime.aot.System.Diagnostics.Tools":"(,4.3.32767]","runtime.aot.System.Diagnostics.Tracing":"(,4.3.32767]","runtime.aot.System.Globalization":"(,4.3.32767]","runtime.aot.System.Globalization.Calendars":"(,4.3.32767]","runtime.aot.System.IO":"(,4.3.32767]","runtime.aot.System.Reflection":"(,4.3.32767]","runtime.aot.System.Reflection.Extensions":"(,4.3.32767]","runtime.aot.System.Reflection.Primitives":"(,4.3.32767]","runtime.aot.System.Resources.ResourceManager":"(,4.3.32767]","runtime.aot.System.Runtime":"(,4.3.32767]","runtime.aot.System.Runtime.Handles":"(,4.3.32767]","runtime.aot.System.Runtime.InteropServices":"(,4.3.32767]","runtime.aot.System.Text.Encoding":"(,4.3.32767]","runtime.aot.System.Text.Encoding.Extensions":"(,4.3.32767]","runtime.aot.System.Threading.Tasks":"(,4.3.32767]","runtime.aot.System.Threading.Timer":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.debian.9-x64.runtime.native.System":"(,4.3.32767]","runtime.debian.9-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.debian.9-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.debian.9-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.fedora.27-x64.runtime.native.System":"(,4.3.32767]","runtime.fedora.27-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.fedora.27-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.fedora.27-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.fedora.28-x64.runtime.native.System":"(,4.3.32767]","runtime.fedora.28-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.fedora.28-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.fedora.28-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.opensuse.42.3-x64.runtime.native.System":"(,4.3.32767]","runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.opensuse.42.3-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.opensuse.42.3-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple":"(,4.3.32767]","runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography":"(,4.3.32767]","runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl":"(,4.3.32767]","runtime.ubuntu.18.04-x64.runtime.native.System":"(,4.3.32767]","runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http":"(,4.3.32767]","runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security":"(,4.3.32767]","runtime.unix.Microsoft.Win32.Primitives":"(,4.3.32767]","runtime.unix.System.Console":"(,4.3.32767]","runtime.unix.System.Diagnostics.Debug":"(,4.3.32767]","runtime.unix.System.IO.FileSystem":"(,4.3.32767]","runtime.unix.System.Net.Primitives":"(,4.3.32767]","runtime.unix.System.Net.Sockets":"(,4.3.32767]","runtime.unix.System.Private.Uri":"(,4.3.32767]","runtime.unix.System.Runtime.Extensions":"(,4.3.32767]","runtime.win.Microsoft.Win32.Primitives":"(,4.3.32767]","runtime.win.System.Console":"(,4.3.32767]","runtime.win.System.Diagnostics.Debug":"(,4.3.32767]","runtime.win.System.IO.FileSystem":"(,4.3.32767]","runtime.win.System.Net.Primitives":"(,4.3.32767]","runtime.win.System.Net.Sockets":"(,4.3.32767]","runtime.win.System.Runtime.Extensions":"(,4.3.32767]","runtime.win10-arm-aot.runtime.native.System.IO.Compression":"(,4.0.32767]","runtime.win10-arm64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.win10-x64-aot.runtime.native.System.IO.Compression":"(,4.0.32767]","runtime.win10-x86-aot.runtime.native.System.IO.Compression":"(,4.0.32767]","runtime.win7-x64.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.win7-x86.runtime.native.System.IO.Compression":"(,4.3.32767]","runtime.win7.System.Private.Uri":"(,4.3.32767]","runtime.win8-arm.runtime.native.System.IO.Compression":"(,4.3.32767]","System.AppContext":"(,4.3.32767]","System.Buffers":"(,5.0.32767]","System.Collections":"(,4.3.32767]","System.Collections.Concurrent":"(,4.3.32767]","System.Collections.Immutable":"(,10.0.32767]","System.Collections.NonGeneric":"(,4.3.32767]","System.Collections.Specialized":"(,4.3.32767]","System.ComponentModel":"(,4.3.32767]","System.ComponentModel.Annotations":"(,4.3.32767]","System.ComponentModel.EventBasedAsync":"(,4.3.32767]","System.ComponentModel.Primitives":"(,4.3.32767]","System.ComponentModel.TypeConverter":"(,4.3.32767]","System.Console":"(,4.3.32767]","System.Data.Common":"(,4.3.32767]","System.Data.DataSetExtensions":"(,4.4.32767]","System.Diagnostics.Contracts":"(,4.3.32767]","System.Diagnostics.Debug":"(,4.3.32767]","System.Diagnostics.DiagnosticSource":"(,10.0.32767]","System.Diagnostics.FileVersionInfo":"(,4.3.32767]","System.Diagnostics.Process":"(,4.3.32767]","System.Diagnostics.StackTrace":"(,4.3.32767]","System.Diagnostics.TextWriterTraceListener":"(,4.3.32767]","System.Diagnostics.Tools":"(,4.3.32767]","System.Diagnostics.TraceSource":"(,4.3.32767]","System.Diagnostics.Tracing":"(,4.3.32767]","System.Drawing.Primitives":"(,4.3.32767]","System.Dynamic.Runtime":"(,4.3.32767]","System.Formats.Asn1":"(,10.0.32767]","System.Formats.Tar":"(,10.0.32767]","System.Globalization":"(,4.3.32767]","System.Globalization.Calendars":"(,4.3.32767]","System.Globalization.Extensions":"(,4.3.32767]","System.IO":"(,4.3.32767]","System.IO.Compression":"(,4.3.32767]","System.IO.Compression.ZipFile":"(,4.3.32767]","System.IO.FileSystem":"(,4.3.32767]","System.IO.FileSystem.AccessControl":"(,4.4.32767]","System.IO.FileSystem.DriveInfo":"(,4.3.32767]","System.IO.FileSystem.Primitives":"(,4.3.32767]","System.IO.FileSystem.Watcher":"(,4.3.32767]","System.IO.IsolatedStorage":"(,4.3.32767]","System.IO.MemoryMappedFiles":"(,4.3.32767]","System.IO.Pipelines":"(,10.0.32767]","System.IO.Pipes":"(,4.3.32767]","System.IO.Pipes.AccessControl":"(,5.0.32767]","System.IO.UnmanagedMemoryStream":"(,4.3.32767]","System.Linq":"(,4.3.32767]","System.Linq.AsyncEnumerable":"(,10.0.32767]","System.Linq.Expressions":"(,4.3.32767]","System.Linq.Parallel":"(,4.3.32767]","System.Linq.Queryable":"(,4.3.32767]","System.Memory":"(,5.0.32767]","System.Net.Http":"(,4.3.32767]","System.Net.Http.Json":"(,10.0.32767]","System.Net.NameResolution":"(,4.3.32767]","System.Net.NetworkInformation":"(,4.3.32767]","System.Net.Ping":"(,4.3.32767]","System.Net.Primitives":"(,4.3.32767]","System.Net.Requests":"(,4.3.32767]","System.Net.Security":"(,4.3.32767]","System.Net.ServerSentEvents":"(,10.0.32767]","System.Net.Sockets":"(,4.3.32767]","System.Net.WebHeaderCollection":"(,4.3.32767]","System.Net.WebSockets":"(,4.3.32767]","System.Net.WebSockets.Client":"(,4.3.32767]","System.Numerics.Vectors":"(,5.0.32767]","System.ObjectModel":"(,4.3.32767]","System.Private.DataContractSerialization":"(,4.3.32767]","System.Private.Uri":"(,4.3.32767]","System.Reflection":"(,4.3.32767]","System.Reflection.DispatchProxy":"(,6.0.32767]","System.Reflection.Emit":"(,4.7.32767]","System.Reflection.Emit.ILGeneration":"(,4.7.32767]","System.Reflection.Emit.Lightweight":"(,4.7.32767]","System.Reflection.Extensions":"(,4.3.32767]","System.Reflection.Metadata":"(,10.0.32767]","System.Reflection.Primitives":"(,4.3.32767]","System.Reflection.TypeExtensions":"(,4.3.32767]","System.Resources.Reader":"(,4.3.32767]","System.Resources.ResourceManager":"(,4.3.32767]","System.Resources.Writer":"(,4.3.32767]","System.Runtime":"(,4.3.32767]","System.Runtime.CompilerServices.Unsafe":"(,7.0.32767]","System.Runtime.CompilerServices.VisualC":"(,4.3.32767]","System.Runtime.Extensions":"(,4.3.32767]","System.Runtime.Handles":"(,4.3.32767]","System.Runtime.InteropServices":"(,4.3.32767]","System.Runtime.InteropServices.RuntimeInformation":"(,4.3.32767]","System.Runtime.Loader":"(,4.3.32767]","System.Runtime.Numerics":"(,4.3.32767]","System.Runtime.Serialization.Formatters":"(,4.3.32767]","System.Runtime.Serialization.Json":"(,4.3.32767]","System.Runtime.Serialization.Primitives":"(,4.3.32767]","System.Runtime.Serialization.Xml":"(,4.3.32767]","System.Security.AccessControl":"(,6.0.32767]","System.Security.Claims":"(,4.3.32767]","System.Security.Cryptography.Algorithms":"(,4.3.32767]","System.Security.Cryptography.Cng":"(,5.0.32767]","System.Security.Cryptography.Csp":"(,4.3.32767]","System.Security.Cryptography.Encoding":"(,4.3.32767]","System.Security.Cryptography.OpenSsl":"(,5.0.32767]","System.Security.Cryptography.Primitives":"(,4.3.32767]","System.Security.Cryptography.X509Certificates":"(,4.3.32767]","System.Security.Principal":"(,4.3.32767]","System.Security.Principal.Windows":"(,5.0.32767]","System.Security.SecureString":"(,4.3.32767]","System.Text.Encoding":"(,4.3.32767]","System.Text.Encoding.CodePages":"(,10.0.32767]","System.Text.Encoding.Extensions":"(,4.3.32767]","System.Text.Encodings.Web":"(,10.0.32767]","System.Text.Json":"(,10.0.32767]","System.Text.RegularExpressions":"(,4.3.32767]","System.Threading":"(,4.3.32767]","System.Threading.AccessControl":"(,10.0.32767]","System.Threading.Channels":"(,10.0.32767]","System.Threading.Overlapped":"(,4.3.32767]","System.Threading.Tasks":"(,4.3.32767]","System.Threading.Tasks.Dataflow":"(,10.0.32767]","System.Threading.Tasks.Extensions":"(,5.0.32767]","System.Threading.Tasks.Parallel":"(,4.3.32767]","System.Threading.Thread":"(,4.3.32767]","System.Threading.ThreadPool":"(,4.3.32767]","System.Threading.Timer":"(,4.3.32767]","System.ValueTuple":"(,4.5.32767]","System.Xml.ReaderWriter":"(,4.3.32767]","System.Xml.XDocument":"(,4.3.32767]","System.Xml.XmlDocument":"(,4.3.32767]","System.Xml.XmlSerializer":"(,4.3.32767]","System.Xml.XPath":"(,4.3.32767]","System.Xml.XPath.XDocument":"(,5.0.32767]"}}} \ No newline at end of file diff --git a/obj/rider.project.model.nuget.info b/obj/rider.project.model.nuget.info index 675412c..c12278f 100644 --- a/obj/rider.project.model.nuget.info +++ b/obj/rider.project.model.nuget.info @@ -1 +1 @@ -17775150734683214 \ No newline at end of file +17780383974089094 \ No newline at end of file diff --git a/obj/rider.project.restore.info b/obj/rider.project.restore.info index 675412c..c12278f 100644 --- a/obj/rider.project.restore.info +++ b/obj/rider.project.restore.info @@ -1 +1 @@ -17775150734683214 \ No newline at end of file +17780383974089094 \ No newline at end of file