Rhomaios 2 năm trước cách đây
mục cha
commit
a81e1ecb0f
32 tập tin đã thay đổi với 271 bổ sung70 xóa
  1. 3 0
      .vs/ProjectSettings.json
  2. 11 0
      .vs/Reconstruction/project-colors.json
  3. BIN
      .vs/Reconstruction/v17/.suo
  4. BIN
      .vs/slnx.sqlite
  5. 2 0
      Reconstruction/Functions/Authorization.cs
  6. 48 0
      Reconstruction/Functions/LoggedUser/Display.cs
  7. 4 3
      Reconstruction/Functions/Registration.cs
  8. 32 0
      Reconstruction/Program.cs
  9. BIN
      Reconstruction/bin/Debug/net6.0/Reconstruction.dll
  10. BIN
      Reconstruction/bin/Debug/net6.0/Reconstruction.exe
  11. BIN
      Reconstruction/bin/Debug/net6.0/Reconstruction.pdb
  12. BIN
      Reconstruction/bin/Debug/net6.0/ref/Reconstruction.dll
  13. 1 1
      Reconstruction/obj/Debug/net6.0/Reconstruction.GeneratedMSBuildEditorConfig.editorconfig
  14. BIN
      Reconstruction/obj/Debug/net6.0/Reconstruction.assets.cache
  15. BIN
      Reconstruction/obj/Debug/net6.0/Reconstruction.csproj.AssemblyReference.cache
  16. 1 1
      Reconstruction/obj/Debug/net6.0/Reconstruction.csproj.CoreCompileInputs.cache
  17. 58 0
      Reconstruction/obj/Debug/net6.0/Reconstruction.csproj.FileListAbsolute.txt
  18. BIN
      Reconstruction/obj/Debug/net6.0/Reconstruction.dll
  19. 1 1
      Reconstruction/obj/Debug/net6.0/Reconstruction.genruntimeconfig.cache
  20. BIN
      Reconstruction/obj/Debug/net6.0/Reconstruction.pdb
  21. BIN
      Reconstruction/obj/Debug/net6.0/apphost.exe
  22. BIN
      Reconstruction/obj/Debug/net6.0/ref/Reconstruction.dll
  23. 8 8
      Reconstruction/obj/Reconstruction.csproj.nuget.dgspec.json
  24. 4 4
      Reconstruction/obj/Reconstruction.csproj.nuget.g.props
  25. 4 0
      Reconstruction/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
  26. 23 0
      Reconstruction/obj/Release/net6.0/Reconstruction.AssemblyInfo.cs
  27. 1 0
      Reconstruction/obj/Release/net6.0/Reconstruction.AssemblyInfoInputs.cache
  28. 10 0
      Reconstruction/obj/Release/net6.0/Reconstruction.GeneratedMSBuildEditorConfig.editorconfig
  29. 8 0
      Reconstruction/obj/Release/net6.0/Reconstruction.GlobalUsings.g.cs
  30. BIN
      Reconstruction/obj/Release/net6.0/Reconstruction.assets.cache
  31. 7 7
      Reconstruction/obj/project.assets.json
  32. 45 45
      Reconstruction/obj/project.nuget.cache

+ 3 - 0
.vs/ProjectSettings.json

@@ -0,0 +1,3 @@
+{
+  "CurrentProjectSetting": null
+}

+ 11 - 0
.vs/Reconstruction/project-colors.json

@@ -0,0 +1,11 @@
+{
+  "Version": 1,
+  "ProjectMap": {
+    "a2fe74e1-b743-11d0-ae1a-00a0c90fffc3": {
+      "ProjectGuid": "a2fe74e1-b743-11d0-ae1a-00a0c90fffc3",
+      "DisplayName": "Прочие файлы",
+      "ColorIndex": -1
+    }
+  },
+  "NextColorIndex": 0
+}

BIN
.vs/Reconstruction/v17/.suo


BIN
.vs/slnx.sqlite


+ 2 - 0
Reconstruction/Functions/Authorization.cs

@@ -6,6 +6,7 @@
         static string Password;
         public static void LogIn()
         {
+            Console.Clear();
             Console.Write("Enter your login name: ");
             Login = Convert.ToString(Console.ReadLine());
             Console.Write("Enter your password: ");
@@ -22,6 +23,7 @@
                 Console.Write("A wrong login or password was entered or error happened... ");
             }
 
+            Console.Clear();
 
         }
     }

+ 48 - 0
Reconstruction/Functions/LoggedUser/Display.cs

@@ -0,0 +1,48 @@
+using Reconstruction;
+
+namespace Reconstruction.Functions
+{ 
+    public static class Display
+    {
+        public static void ShowUserList()
+        {
+            Console.WriteLine("Login  |" + "  Lastname  |" + "  Firstname  |" + "  Middlename ");
+            foreach (User s in Service.UserCollection)
+            {
+                Console.WriteLine(s.Login + ' ' + s.Lastname + ' ' + s.Firstname + ' ' + s.Middlename);
+            }
+
+            Console.ReadKey();  
+
+        }
+
+
+
+        public static void ShowProfileData()
+        {
+            Console.WriteLine("User Name: "     + Service.LoggedUser.Login 
+                          + "\nFirst name: "    + Service.LoggedUser.Firstname 
+                          + "\nSurname: "       + Service.LoggedUser.Lastname 
+                          + "\nPatronimic: "    + Service.LoggedUser.Middlename 
+                          + "\nPhone: "         + Service.LoggedUser.Phone 
+                          + "\nTasks: ");
+            Service.db.Tasks.Where(t => t.AccUserId == Service.LoggedUser.Id).ToList().ForEach(t => global::System.Console.Write(t.Title + " "));
+        
+            Console.ReadKey();
+        }
+
+
+        public static void ShowAvailableTask()
+        {
+
+            Console.WriteLine("Title:");
+            Service.db.Tasks.Where  (t => t.StatusId == 1).ToList()
+                            .ForEach(t => global::System.Console.Write("\nTitle: "       + t.Title       + 
+                                                                       "\nDescription: " + t.Description + 
+                                                                       "\nCreated by " + Service.db.Users.Where(u => t.CreatorUserId == u.Id).DefaultIfEmpty());
+
+            Console.ReadKey();
+        }
+
+    }
+}

+ 4 - 3
Reconstruction/Functions/Registration.cs

@@ -12,7 +12,8 @@ namespace Reconstruction.Functions
             string Password;
             string Phone;
 
-            
+            Console.Clear();
+
             User user = new User();
             Console.Write("Enter your first name: ");
             {
@@ -51,10 +52,10 @@ namespace Reconstruction.Functions
             }
 
 
-
             Service.db.Users.Add(user);
             Service.db.SaveChanges();
-            
+
+            Console.Clear();
 
         }
     }

+ 32 - 0
Reconstruction/Program.cs

@@ -24,10 +24,42 @@ while(true)
     {
         break;
     }
+    Console.Clear();
 }
 
 while(Service.IsLoggedIn == true)
 {
+    Console.WriteLine("Choose: !\n1 - Profile\n2 - Userlist\n3 - Available tasks\n4 - Completed tasks history\n5 - Tasks in progress\n0 - Exit");
+
+    switch (Functions.Choose())
+    {
+        case 1:
+            {
+                Display.ShowProfileData();
+                break;
+            }
+        case 2:
+            {
+                Display.ShowUserList();
+                break;
+            }
+        case 3:
+            {
+                break;
+            }
+        case 4:
+            {
+                break;
+            }
+        case 5:
+            {
+                break;
+            }
+    }
+
+
+    Console.Clear();
+
 
 }
 

BIN
Reconstruction/bin/Debug/net6.0/Reconstruction.dll


BIN
Reconstruction/bin/Debug/net6.0/Reconstruction.exe


BIN
Reconstruction/bin/Debug/net6.0/Reconstruction.pdb


BIN
Reconstruction/bin/Debug/net6.0/ref/Reconstruction.dll


+ 1 - 1
Reconstruction/obj/Debug/net6.0/Reconstruction.GeneratedMSBuildEditorConfig.editorconfig

@@ -7,4 +7,4 @@ build_property.InvariantGlobalization =
 build_property.PlatformNeutralAssembly = 
 build_property._SupportedPlatformList = Linux,macOS,Windows
 build_property.RootNamespace = Reconstruction
-build_property.ProjectDir = C:\Users\Rhomaios\source\repos\Reconstruction\Reconstruction\
+build_property.ProjectDir = C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\

BIN
Reconstruction/obj/Debug/net6.0/Reconstruction.assets.cache


BIN
Reconstruction/obj/Debug/net6.0/Reconstruction.csproj.AssemblyReference.cache


+ 1 - 1
Reconstruction/obj/Debug/net6.0/Reconstruction.csproj.CoreCompileInputs.cache

@@ -1 +1 @@
-2bee7648f9f2529efd39c468a44a281928fd6d79
+0ac09ca5d3edaaaadc057101f58d171c7de18498

+ 58 - 0
Reconstruction/obj/Debug/net6.0/Reconstruction.csproj.FileListAbsolute.txt

@@ -114,3 +114,61 @@ C:\Users\Rhomaios\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\ru
 C:\Users\Rhomaios\Source\Repos\Reconstruction\Reconstruction\obj\Debug\net6.0\Reconstruction.csproj.CopyComplete
 C:\Users\Rhomaios\Source\Repos\Reconstruction\Reconstruction\obj\Debug\net6.0\Reconstruction.genruntimeconfig.cache
 C:\Users\Rhomaios\Source\Repos\Reconstruction\Reconstruction\obj\Debug\net6.0\ref\Reconstruction.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\Reconstruction.exe
+C:\Users\gr602_horse\source\repos\Reconstruction\Reconstruction\bin\Debug\net6.0\Reconstruction.deps.json
+C:\Users\gr602_horse\source\repos\Reconstruction\Reconstruction\bin\Debug\net6.0\Reconstruction.runtimeconfig.json
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\Reconstruction.dll
+C:\Users\gr602_horse\source\repos\Reconstruction\Reconstruction\bin\Debug\net6.0\ref\Reconstruction.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\Reconstruction.pdb
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\Humanizer.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\Microsoft.Data.SqlClient.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\Microsoft.EntityFrameworkCore.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\Microsoft.EntityFrameworkCore.Abstractions.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\Microsoft.EntityFrameworkCore.Design.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\Microsoft.EntityFrameworkCore.Relational.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\Microsoft.EntityFrameworkCore.SqlServer.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\Microsoft.Extensions.Caching.Abstractions.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\Microsoft.Extensions.Caching.Memory.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\Microsoft.Extensions.Configuration.Abstractions.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\Microsoft.Extensions.DependencyInjection.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\Microsoft.Extensions.Logging.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\Microsoft.Extensions.Logging.Abstractions.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\Microsoft.Extensions.Options.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\Microsoft.Extensions.Primitives.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\Microsoft.Identity.Client.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\Microsoft.IdentityModel.JsonWebTokens.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\Microsoft.IdentityModel.Logging.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\Microsoft.IdentityModel.Protocols.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\Microsoft.IdentityModel.Tokens.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\Microsoft.Win32.SystemEvents.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\System.Configuration.ConfigurationManager.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\System.Drawing.Common.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\System.IdentityModel.Tokens.Jwt.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\System.Runtime.Caching.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\System.Security.Cryptography.ProtectedData.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\System.Security.Permissions.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\System.Windows.Extensions.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\Microsoft.Win32.SystemEvents.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp3.0\System.Drawing.Common.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\System.Drawing.Common.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\System.Windows.Extensions.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\obj\Debug\net6.0\Reconstruction.csproj.AssemblyReference.cache
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\obj\Debug\net6.0\Reconstruction.GeneratedMSBuildEditorConfig.editorconfig
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\obj\Debug\net6.0\Reconstruction.AssemblyInfoInputs.cache
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\obj\Debug\net6.0\Reconstruction.AssemblyInfo.cs
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\obj\Debug\net6.0\Reconstruction.csproj.CoreCompileInputs.cache
+C:\Users\gr602_horse\source\repos\Reconstruction\Reconstruction\obj\Debug\net6.0\Reconstruction.csproj.CopyComplete
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\obj\Debug\net6.0\Reconstruction.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\obj\Debug\net6.0\ref\Reconstruction.dll
+C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\obj\Debug\net6.0\Reconstruction.pdb
+C:\Users\gr602_horse\source\repos\Reconstruction\Reconstruction\obj\Debug\net6.0\Reconstruction.genruntimeconfig.cache

BIN
Reconstruction/obj/Debug/net6.0/Reconstruction.dll


+ 1 - 1
Reconstruction/obj/Debug/net6.0/Reconstruction.genruntimeconfig.cache

@@ -1 +1 @@
-614e8f556d108306d66e6670ea22a676a44dfa2a
+50bc6798a4a1339af14f0a27485d0395f1190958

BIN
Reconstruction/obj/Debug/net6.0/Reconstruction.pdb


BIN
Reconstruction/obj/Debug/net6.0/apphost.exe


BIN
Reconstruction/obj/Debug/net6.0/ref/Reconstruction.dll


+ 8 - 8
Reconstruction/obj/Reconstruction.csproj.nuget.dgspec.json

@@ -1,23 +1,23 @@
 {
   "format": 1,
   "restore": {
-    "C:\\Users\\Rhomaios\\source\\repos\\Reconstruction\\Reconstruction\\Reconstruction.csproj": {}
+    "C:\\Users\\gr602_horse\\Source\\Repos\\Reconstruction\\Reconstruction\\Reconstruction.csproj": {}
   },
   "projects": {
-    "C:\\Users\\Rhomaios\\source\\repos\\Reconstruction\\Reconstruction\\Reconstruction.csproj": {
+    "C:\\Users\\gr602_horse\\Source\\Repos\\Reconstruction\\Reconstruction\\Reconstruction.csproj": {
       "version": "1.0.0",
       "restore": {
-        "projectUniqueName": "C:\\Users\\Rhomaios\\source\\repos\\Reconstruction\\Reconstruction\\Reconstruction.csproj",
+        "projectUniqueName": "C:\\Users\\gr602_horse\\Source\\Repos\\Reconstruction\\Reconstruction\\Reconstruction.csproj",
         "projectName": "Reconstruction",
-        "projectPath": "C:\\Users\\Rhomaios\\source\\repos\\Reconstruction\\Reconstruction\\Reconstruction.csproj",
-        "packagesPath": "C:\\Users\\Rhomaios\\.nuget\\packages\\",
-        "outputPath": "C:\\Users\\Rhomaios\\source\\repos\\Reconstruction\\Reconstruction\\obj\\",
+        "projectPath": "C:\\Users\\gr602_horse\\Source\\Repos\\Reconstruction\\Reconstruction\\Reconstruction.csproj",
+        "packagesPath": "C:\\Users\\gr602_horse\\.nuget\\packages\\",
+        "outputPath": "C:\\Users\\gr602_horse\\Source\\Repos\\Reconstruction\\Reconstruction\\obj\\",
         "projectStyle": "PackageReference",
         "fallbackFolders": [
           "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
         ],
         "configFilePaths": [
-          "C:\\Users\\Rhomaios\\AppData\\Roaming\\NuGet\\NuGet.Config",
+          "C:\\Users\\gr602_horse\\AppData\\Roaming\\NuGet\\NuGet.Config",
           "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
           "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
         ],
@@ -80,7 +80,7 @@
               "privateAssets": "all"
             }
           },
-          "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.201\\RuntimeIdentifierGraph.json"
+          "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.102\\RuntimeIdentifierGraph.json"
         }
       }
     }

+ 4 - 4
Reconstruction/obj/Reconstruction.csproj.nuget.g.props

@@ -5,18 +5,18 @@
     <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
     <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
     <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
-    <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Rhomaios\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
+    <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\gr602_horse\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
     <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
-    <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.1.0</NuGetToolVersion>
+    <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.0.1</NuGetToolVersion>
   </PropertyGroup>
   <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
-    <SourceRoot Include="C:\Users\Rhomaios\.nuget\packages\" />
+    <SourceRoot Include="C:\Users\gr602_horse\.nuget\packages\" />
     <SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
   </ItemGroup>
   <ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
     <Import Project="$(NuGetPackageRoot)microsoft.entityframeworkcore.design\6.0.5\build\net6.0\Microsoft.EntityFrameworkCore.Design.props" Condition="Exists('$(NuGetPackageRoot)microsoft.entityframeworkcore.design\6.0.5\build\net6.0\Microsoft.EntityFrameworkCore.Design.props')" />
   </ImportGroup>
   <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
-    <PkgMicrosoft_EntityFrameworkCore_Tools Condition=" '$(PkgMicrosoft_EntityFrameworkCore_Tools)' == '' ">C:\Users\Rhomaios\.nuget\packages\microsoft.entityframeworkcore.tools\6.0.5</PkgMicrosoft_EntityFrameworkCore_Tools>
+    <PkgMicrosoft_EntityFrameworkCore_Tools Condition=" '$(PkgMicrosoft_EntityFrameworkCore_Tools)' == '' ">C:\Users\gr602_horse\.nuget\packages\microsoft.entityframeworkcore.tools\6.0.5</PkgMicrosoft_EntityFrameworkCore_Tools>
   </PropertyGroup>
 </Project>

+ 4 - 0
Reconstruction/obj/Release/net6.0/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs

@@ -0,0 +1,4 @@
+// <autogenerated />
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = "")]

+ 23 - 0
Reconstruction/obj/Release/net6.0/Reconstruction.AssemblyInfo.cs

@@ -0,0 +1,23 @@
+//------------------------------------------------------------------------------
+// <auto-generated>
+//     Этот код создан программой.
+//     Исполняемая версия:4.0.30319.42000
+//
+//     Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
+//     повторной генерации кода.
+// </auto-generated>
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("Reconstruction")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("Reconstruction")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Reconstruction")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Создано классом WriteCodeFragment MSBuild.
+

+ 1 - 0
Reconstruction/obj/Release/net6.0/Reconstruction.AssemblyInfoInputs.cache

@@ -0,0 +1 @@
+479c7af27c96df678a562864a7d2c3dfeb3995d1

+ 10 - 0
Reconstruction/obj/Release/net6.0/Reconstruction.GeneratedMSBuildEditorConfig.editorconfig

@@ -0,0 +1,10 @@
+is_global = true
+build_property.TargetFramework = net6.0
+build_property.TargetPlatformMinVersion = 
+build_property.UsingMicrosoftNETSdkWeb = 
+build_property.ProjectTypeGuids = 
+build_property.InvariantGlobalization = 
+build_property.PlatformNeutralAssembly = 
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property.RootNamespace = Reconstruction
+build_property.ProjectDir = C:\Users\gr602_horse\Source\Repos\Reconstruction\Reconstruction\

+ 8 - 0
Reconstruction/obj/Release/net6.0/Reconstruction.GlobalUsings.g.cs

@@ -0,0 +1,8 @@
+// <auto-generated/>
+global using global::System;
+global using global::System.Collections.Generic;
+global using global::System.IO;
+global using global::System.Linq;
+global using global::System.Net.Http;
+global using global::System.Threading;
+global using global::System.Threading.Tasks;

BIN
Reconstruction/obj/Release/net6.0/Reconstruction.assets.cache


+ 7 - 7
Reconstruction/obj/project.assets.json

@@ -1861,23 +1861,23 @@
     ]
   },
   "packageFolders": {
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\": {},
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\": {},
     "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
   },
   "project": {
     "version": "1.0.0",
     "restore": {
-      "projectUniqueName": "C:\\Users\\Rhomaios\\Source\\Repos\\Reconstruction\\Reconstruction\\Reconstruction.csproj",
+      "projectUniqueName": "C:\\Users\\gr602_horse\\Source\\Repos\\Reconstruction\\Reconstruction\\Reconstruction.csproj",
       "projectName": "Reconstruction",
-      "projectPath": "C:\\Users\\Rhomaios\\Source\\Repos\\Reconstruction\\Reconstruction\\Reconstruction.csproj",
-      "packagesPath": "C:\\Users\\Rhomaios\\.nuget\\packages\\",
-      "outputPath": "C:\\Users\\Rhomaios\\Source\\Repos\\Reconstruction\\Reconstruction\\obj\\",
+      "projectPath": "C:\\Users\\gr602_horse\\Source\\Repos\\Reconstruction\\Reconstruction\\Reconstruction.csproj",
+      "packagesPath": "C:\\Users\\gr602_horse\\.nuget\\packages\\",
+      "outputPath": "C:\\Users\\gr602_horse\\Source\\Repos\\Reconstruction\\Reconstruction\\obj\\",
       "projectStyle": "PackageReference",
       "fallbackFolders": [
         "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
       ],
       "configFilePaths": [
-        "C:\\Users\\Rhomaios\\AppData\\Roaming\\NuGet\\NuGet.Config",
+        "C:\\Users\\gr602_horse\\AppData\\Roaming\\NuGet\\NuGet.Config",
         "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
         "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
       ],
@@ -1940,7 +1940,7 @@
             "privateAssets": "all"
           }
         },
-        "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.201\\RuntimeIdentifierGraph.json"
+        "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.102\\RuntimeIdentifierGraph.json"
       }
     }
   }

+ 45 - 45
Reconstruction/obj/project.nuget.cache

@@ -1,52 +1,52 @@
 {
   "version": 2,
-  "dgSpecHash": "9i8FauI1B4EXXeqU/yQQzkp9t/8Zrk3Z0fP5dYuJ0cdhiTplFEQfnINA2biJSQe1LyHO2APiuVR7ugXpHIvRkA==",
+  "dgSpecHash": "PxcvDcb2Hxf384JlJ57QLb3qjGJsnLybFAJWhqHFKe6IYPv69hSgp2vlSRb3pPN0tUoiAqN7Ok1izmL5gsayIA==",
   "success": true,
-  "projectFilePath": "C:\\Users\\Rhomaios\\source\\repos\\Reconstruction\\Reconstruction\\Reconstruction.csproj",
+  "projectFilePath": "C:\\Users\\gr602_horse\\Source\\Repos\\Reconstruction\\Reconstruction\\Reconstruction.csproj",
   "expectedPackageFiles": [
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\humanizer.core\\2.8.26\\humanizer.core.2.8.26.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\microsoft.data.sqlclient\\2.1.4\\microsoft.data.sqlclient.2.1.4.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\2.1.1\\microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\microsoft.entityframeworkcore\\6.0.5\\microsoft.entityframeworkcore.6.0.5.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\6.0.5\\microsoft.entityframeworkcore.abstractions.6.0.5.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\6.0.5\\microsoft.entityframeworkcore.analyzers.6.0.5.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\microsoft.entityframeworkcore.design\\6.0.5\\microsoft.entityframeworkcore.design.6.0.5.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\6.0.5\\microsoft.entityframeworkcore.relational.6.0.5.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\microsoft.entityframeworkcore.sqlserver\\6.0.5\\microsoft.entityframeworkcore.sqlserver.6.0.5.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\microsoft.entityframeworkcore.tools\\6.0.5\\microsoft.entityframeworkcore.tools.6.0.5.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\6.0.0\\microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\microsoft.extensions.caching.memory\\6.0.1\\microsoft.extensions.caching.memory.6.0.1.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\6.0.0\\microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\6.0.0\\microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0\\microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\microsoft.extensions.logging\\6.0.0\\microsoft.extensions.logging.6.0.0.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\6.0.0\\microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\microsoft.extensions.options\\6.0.0\\microsoft.extensions.options.6.0.0.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0\\microsoft.extensions.primitives.6.0.0.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\microsoft.identity.client\\4.21.1\\microsoft.identity.client.4.21.1.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.8.0\\microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\microsoft.identitymodel.logging\\6.8.0\\microsoft.identitymodel.logging.6.8.0.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.8.0\\microsoft.identitymodel.protocols.6.8.0.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.8.0\\microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.8.0\\microsoft.identitymodel.tokens.6.8.0.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.0\\microsoft.netcore.platforms.3.1.0.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\microsoft.win32.systemevents\\4.7.0\\microsoft.win32.systemevents.4.7.0.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\system.collections.immutable\\6.0.0\\system.collections.immutable.6.0.0.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\system.configuration.configurationmanager\\4.7.0\\system.configuration.configurationmanager.4.7.0.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.0\\system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\system.drawing.common\\4.7.0\\system.drawing.common.4.7.0.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.8.0\\system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\system.runtime.caching\\4.7.0\\system.runtime.caching.4.7.0.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\system.security.accesscontrol\\4.7.0\\system.security.accesscontrol.4.7.0.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.7.0\\system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\system.security.permissions\\4.7.0\\system.security.permissions.4.7.0.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\system.text.encoding.codepages\\4.7.0\\system.text.encoding.codepages.4.7.0.nupkg.sha512",
-    "C:\\Users\\Rhomaios\\.nuget\\packages\\system.windows.extensions\\4.7.0\\system.windows.extensions.4.7.0.nupkg.sha512"
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\humanizer.core\\2.8.26\\humanizer.core.2.8.26.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\microsoft.data.sqlclient\\2.1.4\\microsoft.data.sqlclient.2.1.4.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\2.1.1\\microsoft.data.sqlclient.sni.runtime.2.1.1.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\microsoft.entityframeworkcore\\6.0.5\\microsoft.entityframeworkcore.6.0.5.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\6.0.5\\microsoft.entityframeworkcore.abstractions.6.0.5.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\6.0.5\\microsoft.entityframeworkcore.analyzers.6.0.5.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\microsoft.entityframeworkcore.design\\6.0.5\\microsoft.entityframeworkcore.design.6.0.5.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\6.0.5\\microsoft.entityframeworkcore.relational.6.0.5.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\microsoft.entityframeworkcore.sqlserver\\6.0.5\\microsoft.entityframeworkcore.sqlserver.6.0.5.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\microsoft.entityframeworkcore.tools\\6.0.5\\microsoft.entityframeworkcore.tools.6.0.5.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\6.0.0\\microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\microsoft.extensions.caching.memory\\6.0.1\\microsoft.extensions.caching.memory.6.0.1.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\6.0.0\\microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\6.0.0\\microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0\\microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\microsoft.extensions.logging\\6.0.0\\microsoft.extensions.logging.6.0.0.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\6.0.0\\microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\microsoft.extensions.options\\6.0.0\\microsoft.extensions.options.6.0.0.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0\\microsoft.extensions.primitives.6.0.0.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\microsoft.identity.client\\4.21.1\\microsoft.identity.client.4.21.1.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.8.0\\microsoft.identitymodel.jsonwebtokens.6.8.0.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\microsoft.identitymodel.logging\\6.8.0\\microsoft.identitymodel.logging.6.8.0.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.8.0\\microsoft.identitymodel.protocols.6.8.0.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.8.0\\microsoft.identitymodel.protocols.openidconnect.6.8.0.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.8.0\\microsoft.identitymodel.tokens.6.8.0.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.0\\microsoft.netcore.platforms.3.1.0.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\microsoft.win32.registry\\4.7.0\\microsoft.win32.registry.4.7.0.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\microsoft.win32.systemevents\\4.7.0\\microsoft.win32.systemevents.4.7.0.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\system.collections.immutable\\6.0.0\\system.collections.immutable.6.0.0.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\system.configuration.configurationmanager\\4.7.0\\system.configuration.configurationmanager.4.7.0.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.0\\system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\system.drawing.common\\4.7.0\\system.drawing.common.4.7.0.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.8.0\\system.identitymodel.tokens.jwt.6.8.0.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\system.runtime.caching\\4.7.0\\system.runtime.caching.4.7.0.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\system.security.accesscontrol\\4.7.0\\system.security.accesscontrol.4.7.0.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.7.0\\system.security.cryptography.protecteddata.4.7.0.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\system.security.permissions\\4.7.0\\system.security.permissions.4.7.0.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\system.text.encoding.codepages\\4.7.0\\system.text.encoding.codepages.4.7.0.nupkg.sha512",
+    "C:\\Users\\gr602_horse\\.nuget\\packages\\system.windows.extensions\\4.7.0\\system.windows.extensions.4.7.0.nupkg.sha512"
   ],
   "logs": []
 }