Rhomaios před 2 roky
rodič
revize
72961186d8
26 změnil soubory, kde provedl 148 přidání a 81 odebrání
  1. binární
      .vs/Reconstruction/FileContentIndex/4e0a8360-a643-43e7-af46-1463d5bbb30c.vsidx
  2. binární
      .vs/Reconstruction/FileContentIndex/e2d4e1ba-aa53-4253-9ad5-16e82c6bbfad.vsidx
  3. 0 0
      .vs/Reconstruction/FileContentIndex/read.lock
  4. binární
      .vs/Reconstruction/v17/.suo
  5. 9 10
      Reconstruction/Functions/Registration.cs
  6. 2 0
      Reconstruction/Models/ReconstructionContext.cs
  7. 4 4
      Reconstruction/Program.cs
  8. 8 0
      Reconstruction/Settings/Service.cs
  9. binární
      Reconstruction/bin/Debug/net6.0/Reconstruction.dll
  10. binární
      Reconstruction/bin/Debug/net6.0/Reconstruction.exe
  11. binární
      Reconstruction/bin/Debug/net6.0/Reconstruction.pdb
  12. 1 1
      Reconstruction/obj/Debug/net6.0/Reconstruction.GeneratedMSBuildEditorConfig.editorconfig
  13. binární
      Reconstruction/obj/Debug/net6.0/Reconstruction.assets.cache
  14. binární
      Reconstruction/obj/Debug/net6.0/Reconstruction.csproj.AssemblyReference.cache
  15. 1 1
      Reconstruction/obj/Debug/net6.0/Reconstruction.csproj.CoreCompileInputs.cache
  16. 58 0
      Reconstruction/obj/Debug/net6.0/Reconstruction.csproj.FileListAbsolute.txt
  17. binární
      Reconstruction/obj/Debug/net6.0/Reconstruction.dll
  18. 1 1
      Reconstruction/obj/Debug/net6.0/Reconstruction.genruntimeconfig.cache
  19. binární
      Reconstruction/obj/Debug/net6.0/Reconstruction.pdb
  20. binární
      Reconstruction/obj/Debug/net6.0/apphost.exe
  21. binární
      Reconstruction/obj/Debug/net6.0/ref/Reconstruction.dll
  22. binární
      Reconstruction/obj/Debug/net6.0/refint/Reconstruction.dll
  23. 8 8
      Reconstruction/obj/Reconstruction.csproj.nuget.dgspec.json
  24. 4 4
      Reconstruction/obj/Reconstruction.csproj.nuget.g.props
  25. 7 7
      Reconstruction/obj/project.assets.json
  26. 45 45
      Reconstruction/obj/project.nuget.cache

binární
.vs/Reconstruction/FileContentIndex/4e0a8360-a643-43e7-af46-1463d5bbb30c.vsidx


binární
.vs/Reconstruction/FileContentIndex/e2d4e1ba-aa53-4253-9ad5-16e82c6bbfad.vsidx


+ 0 - 0
.vs/Reconstruction/FileContentIndex/read.lock


binární
.vs/Reconstruction/v17/.suo


+ 9 - 10
Reconstruction/Functions/Registration.cs

@@ -1,5 +1,4 @@
-using Reconstruction.Settings;
-
+
 namespace Reconstruction.Functions
 {
     public static class Registration
@@ -15,37 +14,37 @@ namespace Reconstruction.Functions
 
             
             User user = new User();
-            Console.WriteLine("Enter your first name");
+            Console.Write("Enter your first name: ");
             {
                 FirstName = Convert.ToString(Console.ReadLine());
                 user.Firstname = FirstName;
             }
 
-            Console.WriteLine("Enter your last name");
+            Console.Write("\nEnter your last name: ");
             {
                 LastName = Convert.ToString(Console.ReadLine());
                 user.Lastname = LastName;
             }
 
-            Console.WriteLine("Enter your middle names if you have this");
+            Console.Write("\nEnter your middle names if you have this: ");
             {
                 MiddleName = Convert.ToString(Console.ReadLine());
                 user.Middlename = MiddleName;
             }
 
-            Console.WriteLine("Enter your login");
+            Console.Write("\nEnter your login: ");
             {
                 Login = Convert.ToString(Console.ReadLine());
                 user.Login = Login;
             }
 
-            Console.WriteLine("Enter your password");
+            Console.Write("\nEnter your password: ");
             {
                 Password = Convert.ToString(Console.ReadLine());
                 user.Password = Password;
             }
 
-            Console.WriteLine("Enter your phone number if you wish");
+            Console.Write("\nEnter your phone number if you wish: ");
             {
                 Phone = Convert.ToString(Console.ReadLine());
                 user.Phone = Phone;
@@ -53,8 +52,8 @@ namespace Reconstruction.Functions
 
 
 
-            Service.Db.Users.Add(user);
-            Service.Db.SaveChanges();
+            Service.db.Users.Add(user);
+            Service.db.SaveChanges();
             
 
         }

+ 2 - 0
Reconstruction/Models/ReconstructionContext.cs

@@ -9,11 +9,13 @@ namespace Reconstruction
     {
         public ReconstructionContext()
         {
+            Database.EnsureCreated();
         }
 
         public ReconstructionContext(DbContextOptions<ReconstructionContext> options)
             : base(options)
         {
+            Database.EnsureCreated();
         }
 
         public virtual DbSet<Status> Statuses { get; set; } = null!;

+ 4 - 4
Reconstruction/Program.cs

@@ -9,13 +9,13 @@ switch (Functions.Choose())
 {
     case 1:
     {
-        Console.WriteLine("1");
-        break;
+            //Authorization.;
+            break;
     }
     case 2:
     {
-        Console.WriteLine("2");
-        break;
+            Registration.Register();
+            break;
     }
 }
 

+ 8 - 0
Reconstruction/Settings/Service.cs

@@ -0,0 +1,8 @@
+
+namespace Reconstruction;
+
+public static class Service
+{
+    public static ReconstructionContext db = new ReconstructionContext();
+
+}

binární
Reconstruction/bin/Debug/net6.0/Reconstruction.dll


binární
Reconstruction/bin/Debug/net6.0/Reconstruction.exe


binární
Reconstruction/bin/Debug/net6.0/Reconstruction.pdb


+ 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 = Z:\РКИС\Reconstruction\Reconstruction\
+build_property.ProjectDir = C:\Users\Rhomaios\Source\Repos\Reconstruction\Reconstruction\

binární
Reconstruction/obj/Debug/net6.0/Reconstruction.assets.cache


binární
Reconstruction/obj/Debug/net6.0/Reconstruction.csproj.AssemblyReference.cache


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

@@ -1 +1 @@
-13fa1c47962dd7a364fd729c9ce28dc97bd20138
+4016cffa54e62ea8cfce0df46f4f3e24ca5ca61c

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

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

binární
Reconstruction/obj/Debug/net6.0/Reconstruction.dll


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

@@ -1 +1 @@
-fc3127434094357790d43cecc9f4c4239b1a774b
+614e8f556d108306d66e6670ea22a676a44dfa2a

binární
Reconstruction/obj/Debug/net6.0/Reconstruction.pdb


binární
Reconstruction/obj/Debug/net6.0/apphost.exe


binární
Reconstruction/obj/Debug/net6.0/ref/Reconstruction.dll


binární
Reconstruction/obj/Debug/net6.0/refint/Reconstruction.dll


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

@@ -1,23 +1,23 @@
 {
   "format": 1,
   "restore": {
-    "Z:\\РКИС\\Reconstruction\\Reconstruction\\Reconstruction.csproj": {}
+    "C:\\Users\\Rhomaios\\Source\\Repos\\Reconstruction\\Reconstruction\\Reconstruction.csproj": {}
   },
   "projects": {
-    "Z:\\РКИС\\Reconstruction\\Reconstruction\\Reconstruction.csproj": {
+    "C:\\Users\\Rhomaios\\Source\\Repos\\Reconstruction\\Reconstruction\\Reconstruction.csproj": {
       "version": "1.0.0",
       "restore": {
-        "projectUniqueName": "Z:\\РКИС\\Reconstruction\\Reconstruction\\Reconstruction.csproj",
+        "projectUniqueName": "C:\\Users\\Rhomaios\\Source\\Repos\\Reconstruction\\Reconstruction\\Reconstruction.csproj",
         "projectName": "Reconstruction",
-        "projectPath": "Z:\\РКИС\\Reconstruction\\Reconstruction\\Reconstruction.csproj",
-        "packagesPath": "C:\\Users\\gr602_horse\\.nuget\\packages\\",
-        "outputPath": "Z:\\РКИС\\Reconstruction\\Reconstruction\\obj\\",
+        "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\\",
         "projectStyle": "PackageReference",
         "fallbackFolders": [
           "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
         ],
         "configFilePaths": [
-          "C:\\Users\\gr602_horse\\AppData\\Roaming\\NuGet\\NuGet.Config",
+          "C:\\Users\\Rhomaios\\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.200\\RuntimeIdentifierGraph.json"
+          "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.300\\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\gr602_horse\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
+    <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Rhomaios\.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.2.0</NuGetToolVersion>
   </PropertyGroup>
   <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
-    <SourceRoot Include="C:\Users\gr602_horse\.nuget\packages\" />
+    <SourceRoot Include="C:\Users\Rhomaios\.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\gr602_horse\.nuget\packages\microsoft.entityframeworkcore.tools\6.0.5</PkgMicrosoft_EntityFrameworkCore_Tools>
+    <PkgMicrosoft_EntityFrameworkCore_Tools Condition=" '$(PkgMicrosoft_EntityFrameworkCore_Tools)' == '' ">C:\Users\Rhomaios\.nuget\packages\microsoft.entityframeworkcore.tools\6.0.5</PkgMicrosoft_EntityFrameworkCore_Tools>
   </PropertyGroup>
 </Project>

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

@@ -1861,23 +1861,23 @@
     ]
   },
   "packageFolders": {
-    "C:\\Users\\gr602_horse\\.nuget\\packages\\": {},
+    "C:\\Users\\Rhomaios\\.nuget\\packages\\": {},
     "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
   },
   "project": {
     "version": "1.0.0",
     "restore": {
-      "projectUniqueName": "Z:\\РКИС\\Reconstruction\\Reconstruction\\Reconstruction.csproj",
+      "projectUniqueName": "C:\\Users\\Rhomaios\\Source\\Repos\\Reconstruction\\Reconstruction\\Reconstruction.csproj",
       "projectName": "Reconstruction",
-      "projectPath": "Z:\\РКИС\\Reconstruction\\Reconstruction\\Reconstruction.csproj",
-      "packagesPath": "C:\\Users\\gr602_horse\\.nuget\\packages\\",
-      "outputPath": "Z:\\РКИС\\Reconstruction\\Reconstruction\\obj\\",
+      "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\\",
       "projectStyle": "PackageReference",
       "fallbackFolders": [
         "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
       ],
       "configFilePaths": [
-        "C:\\Users\\gr602_horse\\AppData\\Roaming\\NuGet\\NuGet.Config",
+        "C:\\Users\\Rhomaios\\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.200\\RuntimeIdentifierGraph.json"
+        "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.300\\RuntimeIdentifierGraph.json"
       }
     }
   }

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

@@ -1,52 +1,52 @@
 {
   "version": 2,
-  "dgSpecHash": "xiqAE6/c4+zfjGHbL96sSerMuiB0hY+sKHVS2WoV94wK7SlfL6crWpDD6Afgfs2fRw/DV3PSnR//Y3VDRvAHfA==",
+  "dgSpecHash": "SFHzpWWCNg4StmycKkupr993QjweGzJzjIch1K/6fs7O9i/fwDO/4GrE3r98N9cu0KjceHEwhWG8UpkEbxNj8A==",
   "success": true,
-  "projectFilePath": "Z:\\РКИС\\Reconstruction\\Reconstruction\\Reconstruction.csproj",
+  "projectFilePath": "C:\\Users\\Rhomaios\\Source\\Repos\\Reconstruction\\Reconstruction\\Reconstruction.csproj",
   "expectedPackageFiles": [
-    "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"
+    "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"
   ],
   "logs": []
 }