diff --git a/AAIntegration.SimmonsBank.API/AAIntegration.SimmonsBank.API.csproj b/AAIntegration.SimmonsBank.API/AAIntegration.SimmonsBank.API.csproj
index 4c1b5b4..ffe0227 100644
--- a/AAIntegration.SimmonsBank.API/AAIntegration.SimmonsBank.API.csproj
+++ b/AAIntegration.SimmonsBank.API/AAIntegration.SimmonsBank.API.csproj
@@ -7,7 +7,15 @@
+
+
+
+ runtime; build; native; contentfiles; analyzers; buildtransitive
+ all
+
+
+
diff --git a/AAIntegration.SimmonsBank.API/Configs/AppSettings.cs b/AAIntegration.SimmonsBank.API/Configs/AppSettings.cs
new file mode 100644
index 0000000..ad5138d
--- /dev/null
+++ b/AAIntegration.SimmonsBank.API/Configs/AppSettings.cs
@@ -0,0 +1,7 @@
+namespace AAIntegration.SimmonsBank.API.Configs;
+
+public class AppSettings
+{
+ public required string Secret { get; set; }
+ public required string APIUrl { get; set; }
+}
\ No newline at end of file
diff --git a/AAIntegration.SimmonsBank.API/Configs/DatabaseConfig.cs b/AAIntegration.SimmonsBank.API/Configs/DatabaseConfig.cs
new file mode 100644
index 0000000..d44828d
--- /dev/null
+++ b/AAIntegration.SimmonsBank.API/Configs/DatabaseConfig.cs
@@ -0,0 +1,15 @@
+namespace AAIntegration.SimmonsBank.API.Configs;
+
+public class DatabaseConfig
+{
+ public string Host { get; set; }
+ public string Name { get; set; }
+ public string User { get; set; }
+ public string Password { get; set; }
+ public uint Port { get; set; }
+
+ public string GetConnectionString()
+ {
+ return $"Server={Host};Port={Port};Database={Name};User Id={User};Password={Password}";
+ }
+}
diff --git a/AAIntegration.SimmonsBank.API/Entities/User.cs b/AAIntegration.SimmonsBank.API/Entities/User.cs
new file mode 100644
index 0000000..3cfeb9a
--- /dev/null
+++ b/AAIntegration.SimmonsBank.API/Entities/User.cs
@@ -0,0 +1,10 @@
+namespace AAIntegration.SimmonsBank.API.Entities;
+
+public class User
+{
+ public int Id { get; set; }
+ public string ApiKey { get; set; }
+ public string SimmonsBankUsername { get; set; }
+ public string SimmonsBankPassword { get; set; }
+ public string MFAKey { get; set; }
+}
\ No newline at end of file
diff --git a/AAIntegration.SimmonsBank.API/Handlers/ApiKeyAuthenticationHandler.cs b/AAIntegration.SimmonsBank.API/Handlers/ApiKeyAuthenticationHandler.cs
index 2b476c6..05fa8a9 100644
--- a/AAIntegration.SimmonsBank.API/Handlers/ApiKeyAuthenticationHandler.cs
+++ b/AAIntegration.SimmonsBank.API/Handlers/ApiKeyAuthenticationHandler.cs
@@ -2,10 +2,10 @@ namespace AAIntegration.SimmonsBank.API.Handlers;
using System.Security.Claims;
using System.Text.Encodings.Web;
-using ActiveAllocator.API.Configs;
-using ActiveAllocator.API.Services;
using Microsoft.AspNetCore.Authentication;
using Microsoft.Extensions.Options;
+using AAIntegration.SimmonsBank.API.Services;
+using AAIntegration.SimmonsBank.API.Configs;
public class ApiKeyAuthenticationHandler : AuthenticationHandler
{
diff --git a/AAIntegration.SimmonsBank.API/Helpers/DataContext.cs b/AAIntegration.SimmonsBank.API/Helpers/DataContext.cs
new file mode 100644
index 0000000..06248dd
--- /dev/null
+++ b/AAIntegration.SimmonsBank.API/Helpers/DataContext.cs
@@ -0,0 +1,33 @@
+namespace AAIntegration.SimmonsBank.API.Helpers;
+
+using Microsoft.EntityFrameworkCore;
+using AAIntegration.SimmonsBank.API.Entities;
+using System.Diagnostics;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Runtime.CompilerServices;
+using System.Diagnostics.CodeAnalysis;
+
+public class DataContext : DbContext
+{
+ //protected readonly IConfiguration Configuration;
+ readonly ILogger _logger;
+
+ public DataContext(
+ DbContextOptions options,
+ ILogger logger)
+ : base(options)
+ {
+ _logger = logger;
+ //Configuration = configuration;
+ }
+
+ /*protected override void OnConfiguring(DbContextOptionsBuilder options)
+ {
+ // in memory database used for simplicity, change to a real db for production applications
+ options.UseInMemoryDatabase("TestDb");
+ }*/
+
+ public DbSet Users { get; set; }
+}
\ No newline at end of file
diff --git a/AAIntegration.SimmonsBank.API/Models/Users/UserCreateRequest.cs b/AAIntegration.SimmonsBank.API/Models/Users/UserCreateRequest.cs
new file mode 100644
index 0000000..24e1d63
--- /dev/null
+++ b/AAIntegration.SimmonsBank.API/Models/Users/UserCreateRequest.cs
@@ -0,0 +1,8 @@
+namespace AAIntegration.SimmonsBank.API.Models.Users;
+
+public class UserCreateRequest
+{
+ public string Username { get; set; }
+ public string Password { get; set; }
+ public string MFAKey { get; set; }
+}
\ No newline at end of file
diff --git a/AAIntegration.SimmonsBank.API/Models/Users/UserUpdateRequest.cs b/AAIntegration.SimmonsBank.API/Models/Users/UserUpdateRequest.cs
new file mode 100644
index 0000000..3a09e34
--- /dev/null
+++ b/AAIntegration.SimmonsBank.API/Models/Users/UserUpdateRequest.cs
@@ -0,0 +1,8 @@
+namespace AAIntegration.SimmonsBank.API.Models.Users;
+
+public class UserUpdateRequest
+{
+ public string? Username { get; set; } = null;
+ public string? Password { get; set; } = null;
+ public string? MFAKey { get; set; } = null;
+}
\ No newline at end of file
diff --git a/AAIntegration.SimmonsBank.API/Program.cs b/AAIntegration.SimmonsBank.API/Program.cs
index cf6e510..2e3446f 100644
--- a/AAIntegration.SimmonsBank.API/Program.cs
+++ b/AAIntegration.SimmonsBank.API/Program.cs
@@ -1,4 +1,9 @@
using AAIntegration.SimmonsBank.API.Configs;
+using AAIntegration.SimmonsBank.API.Handlers;
+using AAIntegration.SimmonsBank.API.Helpers;
+using AAIntegration.SimmonsBank.API.Services;
+using Microsoft.AspNetCore.Authorization;
+using Microsoft.EntityFrameworkCore;
internal class Program
{
@@ -12,12 +17,34 @@ internal class Program
builder.Services.AddAuthentication()
.AddScheme(ApiKeyAuthenticationOptions.DefaultScheme, null);
+ // Authorization
+ builder.Services.AddAuthorization(options => {
+ AuthorizationPolicyBuilder defaultAuthorizationPolicyBuilder = new AuthorizationPolicyBuilder(
+ ApiKeyAuthenticationOptions.DefaultScheme
+ );
+
+ defaultAuthorizationPolicyBuilder = defaultAuthorizationPolicyBuilder.RequireAuthenticatedUser();
+ options.DefaultPolicy = defaultAuthorizationPolicyBuilder.Build();
+ });
+
builder.Services.AddControllers();
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
builder.Services.AddEndpointsApiExplorer();
builder.Services.AddSwaggerGen();
+ builder.Services.Configure(builder.Configuration.GetSection("AppSettings"));
+
+ DatabaseConfig dbConfig = builder.Configuration.GetSection("Database").Get();
+
+ builder.Services.AddDbContext(opt =>
+ opt.UseNpgsql(dbConfig.GetConnectionString()));
+
+ builder.Services.AddScoped();
+ builder.Services.AddScoped();
+
+ builder.Services.AddScoped();
+
var app = builder.Build();
// Configure the HTTP request pipeline.
diff --git a/AAIntegration.SimmonsBank.API/Services/CacheService.cs b/AAIntegration.SimmonsBank.API/Services/CacheService.cs
new file mode 100644
index 0000000..e2ab0fd
--- /dev/null
+++ b/AAIntegration.SimmonsBank.API/Services/CacheService.cs
@@ -0,0 +1,51 @@
+namespace AAIntegration.SimmonsBank.API.Services;
+
+using Microsoft.Extensions.Caching.Memory;
+
+public interface ICacheService
+{
+ int GetClientIdFromApiKey(string apiKey);
+}
+
+public class CacheService : ICacheService
+{
+ private readonly IMemoryCache _memoryCache;
+ private readonly IUserService _userService;
+
+ public CacheService(IMemoryCache memoryCache, IUserService userService)
+ {
+ _memoryCache = memoryCache;
+ _userService = userService;
+ }
+
+ public int GetClientIdFromApiKey(string apiKey)
+ {
+ if (!_memoryCache.TryGetValue>($"Authentication_ApiKeys", out var internalKeys))
+ {
+ internalKeys = _userService.GetAllApiKeys();
+
+ _memoryCache.Set($"Authentication_ApiKeys", internalKeys);
+ }
+
+ if (!internalKeys.TryGetValue(apiKey, out var clientId))
+ {
+ return -1;
+ }
+
+ return clientId;
+ }
+
+ /*public void InvalidateApiKey(string apiKey)
+ {
+ if (_memoryCache.TryGetValue>("Authentication_ApiKeys", out var internalKeys))
+ {
+ if (internalKeys.ContainsKey(apiKey))
+ {
+ internalKeys.Remove(apiKey);
+ _memoryCache.Set("Authentication_ApiKeys", internalKeys);
+ }
+ }
+
+ _userService.InvalidateApiKey(apiKey);
+ }*/
+}
diff --git a/AAIntegration.SimmonsBank.API/Services/UserService.cs b/AAIntegration.SimmonsBank.API/Services/UserService.cs
new file mode 100644
index 0000000..7e18ae1
--- /dev/null
+++ b/AAIntegration.SimmonsBank.API/Services/UserService.cs
@@ -0,0 +1,153 @@
+namespace AAIntegration.SimmonsBank.API.Services;
+
+using System;
+using System.Collections;
+using System.Collections.Generic;
+using Microsoft.EntityFrameworkCore.Internal;
+using Microsoft.IdentityModel.Tokens;
+using System.Text;
+using System.Security.Claims;
+using Microsoft.Extensions.Options;
+using AAIntegration.SimmonsBank.API.Entities;
+using AAIntegration.SimmonsBank.API.Models.Users;
+using AAIntegration.SimmonsBank.API.Helpers;
+using AAIntegration.SimmonsBank.API.Configs;
+using System.Security.Cryptography;
+
+public interface IUserService
+{
+ string Create(UserCreateRequest model);
+ //IEnumerable GetAll();
+ //User GetById(int id);
+ void Update(string apiKey, UserUpdateRequest model);
+ void Delete(string apiKey);
+ Dictionary GetAllApiKeys();
+ //string GetUserApiKey(int id);
+ //void InvalidateApiKey(string apiKey);
+ //string CreateUserApiKey(int id);
+}
+
+public class UserService : IUserService
+{
+ private DataContext _context;
+ private readonly AppSettings _appSettings;
+
+ public UserService(
+ DataContext context,
+ IOptions appSettings)
+ {
+ _context = context;
+ _appSettings = appSettings.Value;
+ }
+
+ public string Create(UserCreateRequest model)
+ {
+ User user = new User();
+ user.SimmonsBankUsername = model.Username;
+ user.SimmonsBankPassword = model.Password;
+ user.MFAKey = model.MFAKey;
+
+ // Generate API Key
+ user.ApiKey = generateApiKey();
+
+ // save user
+ _context.Users.Add(user);
+ _context.SaveChanges();
+
+ // Return API Key
+ return user.ApiKey;
+ }
+
+ /*public IEnumerable GetAll()
+ {
+ return _context.Users;
+ }*/
+
+ /*public User GetById(int id)
+ {
+ return getUser(id);
+ }*/
+
+ public void Update(string apiKey, UserUpdateRequest model)
+ {
+ var user = getUser(apiKey);
+
+ // User.Username
+ if (model.Username != null)
+ user.SimmonsBankUsername = model.Username;
+
+ // User.Password
+ if (model.Password != null)
+ user.SimmonsBankPassword = model.Password;
+
+ // User.MFAKey
+ if (model.MFAKey != null)
+ user.MFAKey = model.MFAKey;
+
+ _context.Users.Update(user);
+ _context.SaveChanges();
+ }
+
+ public void Delete(string apiKey)
+ {
+ var user = getUser(apiKey);
+ _context.Users.Remove(user);
+ _context.SaveChanges();
+ }
+
+ public Dictionary GetAllApiKeys()
+ {
+ return _context.Users
+ .Where(u => u.ApiKey != null)
+ .ToDictionary(u => u.ApiKey, u => u.Id);
+ }
+
+ /*public string GetUserApiKey(int id)
+ {
+ return this.getUser(id).ApiKey;
+ }*/
+
+ /*public void InvalidateApiKey(string apiKey)
+ {
+ User? user = _context.Users.FirstOrDefault(u => u.ApiKey == apiKey);
+
+ if (user is not null)
+ user.ApiKey = null;
+ }*/
+
+ // helper methods
+
+ private User getUser(int id)
+ {
+ var user = _context.Users.Find(id);
+ if (user == null) throw new KeyNotFoundException("User not found");
+ return user;
+ }
+
+ private User getUser(string ApiKey)
+ {
+ var user = _context.Users
+ .Where(u => u.ApiKey == ApiKey)
+ .FirstOrDefault();
+
+ if (user == null) throw new KeyNotFoundException("User not found");
+ return user;
+ }
+
+ private const string _prefix = "CT-";
+ private const int _numberOfSecureBytesToGenerate = 32;
+ private const int _lengthOfKey = 32;
+
+ private string generateApiKey()
+ {
+ var bytes = RandomNumberGenerator.GetBytes(_numberOfSecureBytesToGenerate);
+
+ string base64String = Convert.ToBase64String(bytes)
+ .Replace("+", "-")
+ .Replace("/", "_");
+
+ var keyLength = _lengthOfKey - _prefix.Length;
+
+ return _prefix + base64String[..keyLength];
+ }
+}
\ No newline at end of file
diff --git a/AAIntegration.SimmonsBank.API/appsettings.json b/AAIntegration.SimmonsBank.API/appsettings.json
index 10f68b8..fe27cc7 100644
--- a/AAIntegration.SimmonsBank.API/appsettings.json
+++ b/AAIntegration.SimmonsBank.API/appsettings.json
@@ -5,5 +5,16 @@
"Microsoft.AspNetCore": "Warning"
}
},
- "AllowedHosts": "*"
+ "AllowedHosts": "*",
+ "AppSettings": {
+ "Secret": "5de80277015f9fd564c4d1cc2cf827dbb1774cd66e7d79aa258d9c35a9f67f32fc6cf0dc24244242bd9501288e0fd69e315b",
+ "APIUrl": "https://localhost:5279"
+ },
+ "Database": {
+ "Host": "localhost",
+ "Name": "AAISB_DB",
+ "User": "postgres",
+ "Password": "nqA3UV3CliLLHpLL",
+ "Port": "15432"
+ }
}
diff --git a/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/AAIntegration.SimmonsBank.API.deps.json b/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/AAIntegration.SimmonsBank.API.deps.json
index f9ff170..2fb49f4 100644
--- a/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/AAIntegration.SimmonsBank.API.deps.json
+++ b/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/AAIntegration.SimmonsBank.API.deps.json
@@ -8,13 +8,34 @@
".NETCoreApp,Version=v7.0": {
"AAIntegration.SimmonsBank.API/1.0.0": {
"dependencies": {
+ "Microsoft.AspNetCore.Authorization": "7.0.0",
"Microsoft.AspNetCore.OpenApi": "7.0.15",
+ "Microsoft.EntityFrameworkCore": "7.0.0",
+ "Microsoft.EntityFrameworkCore.Design": "7.0.0",
+ "Microsoft.IdentityModel.Tokens": "7.0.0",
+ "Npgsql.EntityFrameworkCore.PostgreSQL": "7.0.0",
"Swashbuckle.AspNetCore": "6.5.0"
},
"runtime": {
"AAIntegration.SimmonsBank.API.dll": {}
}
},
+ "Humanizer.Core/2.14.1": {
+ "runtime": {
+ "lib/net6.0/Humanizer.dll": {
+ "assemblyVersion": "2.14.0.0",
+ "fileVersion": "2.14.1.48190"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Authorization/7.0.0": {
+ "dependencies": {
+ "Microsoft.AspNetCore.Metadata": "7.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "7.0.0",
+ "Microsoft.Extensions.Options": "7.0.0"
+ }
+ },
+ "Microsoft.AspNetCore.Metadata/7.0.0": {},
"Microsoft.AspNetCore.OpenApi/7.0.15": {
"dependencies": {
"Microsoft.OpenApi": "1.4.3"
@@ -26,7 +47,140 @@
}
}
},
+ "Microsoft.EntityFrameworkCore/7.0.0": {
+ "dependencies": {
+ "Microsoft.EntityFrameworkCore.Abstractions": "7.0.0",
+ "Microsoft.EntityFrameworkCore.Analyzers": "7.0.0",
+ "Microsoft.Extensions.Caching.Memory": "7.0.0",
+ "Microsoft.Extensions.DependencyInjection": "7.0.0",
+ "Microsoft.Extensions.Logging": "7.0.0"
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {
+ "assemblyVersion": "7.0.0.0",
+ "fileVersion": "7.0.22.51807"
+ }
+ }
+ },
+ "Microsoft.EntityFrameworkCore.Abstractions/7.0.0": {
+ "runtime": {
+ "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
+ "assemblyVersion": "7.0.0.0",
+ "fileVersion": "7.0.22.51807"
+ }
+ }
+ },
+ "Microsoft.EntityFrameworkCore.Analyzers/7.0.0": {},
+ "Microsoft.EntityFrameworkCore.Design/7.0.0": {
+ "dependencies": {
+ "Humanizer.Core": "2.14.1",
+ "Microsoft.EntityFrameworkCore.Relational": "7.0.0",
+ "Microsoft.Extensions.DependencyModel": "7.0.0",
+ "Mono.TextTemplating": "2.2.1"
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll": {
+ "assemblyVersion": "7.0.0.0",
+ "fileVersion": "7.0.22.51807"
+ }
+ }
+ },
+ "Microsoft.EntityFrameworkCore.Relational/7.0.0": {
+ "dependencies": {
+ "Microsoft.EntityFrameworkCore": "7.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "7.0.0"
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {
+ "assemblyVersion": "7.0.0.0",
+ "fileVersion": "7.0.22.51807"
+ }
+ }
+ },
"Microsoft.Extensions.ApiDescription.Server/6.0.5": {},
+ "Microsoft.Extensions.Caching.Abstractions/7.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "7.0.0"
+ }
+ },
+ "Microsoft.Extensions.Caching.Memory/7.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Caching.Abstractions": "7.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "7.0.0",
+ "Microsoft.Extensions.Options": "7.0.0",
+ "Microsoft.Extensions.Primitives": "7.0.0"
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/7.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "7.0.0"
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/7.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0"
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {},
+ "Microsoft.Extensions.DependencyModel/7.0.0": {
+ "dependencies": {
+ "System.Text.Encodings.Web": "7.0.0",
+ "System.Text.Json": "7.0.0"
+ },
+ "runtime": {
+ "lib/net7.0/Microsoft.Extensions.DependencyModel.dll": {
+ "assemblyVersion": "7.0.0.0",
+ "fileVersion": "7.0.22.51805"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging/7.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection": "7.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "7.0.0",
+ "Microsoft.Extensions.Options": "7.0.0"
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/7.0.0": {},
+ "Microsoft.Extensions.Options/7.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
+ "Microsoft.Extensions.Primitives": "7.0.0"
+ }
+ },
+ "Microsoft.Extensions.Primitives/7.0.0": {},
+ "Microsoft.IdentityModel.Abstractions/7.0.0": {
+ "runtime": {
+ "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": {
+ "assemblyVersion": "7.0.0.0",
+ "fileVersion": "7.0.0.40911"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.Logging/7.0.0": {
+ "dependencies": {
+ "Microsoft.IdentityModel.Abstractions": "7.0.0"
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.IdentityModel.Logging.dll": {
+ "assemblyVersion": "7.0.0.0",
+ "fileVersion": "7.0.0.40911"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.Tokens/7.0.0": {
+ "dependencies": {
+ "Microsoft.IdentityModel.Logging": "7.0.0"
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": {
+ "assemblyVersion": "7.0.0.0",
+ "fileVersion": "7.0.0.40911"
+ }
+ }
+ },
"Microsoft.OpenApi/1.4.3": {
"runtime": {
"lib/netstandard2.0/Microsoft.OpenApi.dll": {
@@ -35,6 +189,43 @@
}
}
},
+ "Mono.TextTemplating/2.2.1": {
+ "dependencies": {
+ "System.CodeDom": "4.4.0"
+ },
+ "runtime": {
+ "lib/netstandard2.0/Mono.TextTemplating.dll": {
+ "assemblyVersion": "2.2.0.0",
+ "fileVersion": "2.2.1.1"
+ }
+ }
+ },
+ "Npgsql/7.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Logging.Abstractions": "7.0.0",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ },
+ "runtime": {
+ "lib/net7.0/Npgsql.dll": {
+ "assemblyVersion": "7.0.0.0",
+ "fileVersion": "7.0.0.0"
+ }
+ }
+ },
+ "Npgsql.EntityFrameworkCore.PostgreSQL/7.0.0": {
+ "dependencies": {
+ "Microsoft.EntityFrameworkCore": "7.0.0",
+ "Microsoft.EntityFrameworkCore.Abstractions": "7.0.0",
+ "Microsoft.EntityFrameworkCore.Relational": "7.0.0",
+ "Npgsql": "7.0.0"
+ },
+ "runtime": {
+ "lib/net7.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {
+ "assemblyVersion": "7.0.0.0",
+ "fileVersion": "7.0.0.0"
+ }
+ }
+ },
"Swashbuckle.AspNetCore/6.5.0": {
"dependencies": {
"Microsoft.Extensions.ApiDescription.Server": "6.0.5",
@@ -72,6 +263,21 @@
"fileVersion": "6.5.0.0"
}
}
+ },
+ "System.CodeDom/4.4.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.CodeDom.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.25519.3"
+ }
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe/6.0.0": {},
+ "System.Text.Encodings.Web/7.0.0": {},
+ "System.Text.Json/7.0.0": {
+ "dependencies": {
+ "System.Text.Encodings.Web": "7.0.0"
+ }
}
}
},
@@ -81,6 +287,27 @@
"serviceable": false,
"sha512": ""
},
+ "Humanizer.Core/2.14.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==",
+ "path": "humanizer.core/2.14.1",
+ "hashPath": "humanizer.core.2.14.1.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Authorization/7.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-0O7C7XHj+17Q0geMpnpRC0fnnALH2Yhaa2SAzX00OkeF2NZ/+zWoDymbSnepg1qhueufUivihZiVGtMeq5Zywg==",
+ "path": "microsoft.aspnetcore.authorization/7.0.0",
+ "hashPath": "microsoft.aspnetcore.authorization.7.0.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Metadata/7.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ut2azlKz7BQpCKu6AiwKEjMHpRWoD4qu2Ff/n6KagjFsyDAfZY7lgYJ158vr4O0jXet6pV1uF1q3jmXvki0OlA==",
+ "path": "microsoft.aspnetcore.metadata/7.0.0",
+ "hashPath": "microsoft.aspnetcore.metadata.7.0.0.nupkg.sha512"
+ },
"Microsoft.AspNetCore.OpenApi/7.0.15": {
"type": "package",
"serviceable": true,
@@ -88,6 +315,41 @@
"path": "microsoft.aspnetcore.openapi/7.0.15",
"hashPath": "microsoft.aspnetcore.openapi.7.0.15.nupkg.sha512"
},
+ "Microsoft.EntityFrameworkCore/7.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-9W+IfmAzMrp2ZpKZLhgTlWljSBM9Erldis1us61DAGi+L7Q6vilTbe1G2zDxtYO8F2H0I0Qnupdx5Cp4s2xoZw==",
+ "path": "microsoft.entityframeworkcore/7.0.0",
+ "hashPath": "microsoft.entityframeworkcore.7.0.0.nupkg.sha512"
+ },
+ "Microsoft.EntityFrameworkCore.Abstractions/7.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Pfu3Zjj5+d2Gt27oE9dpGiF/VobBB+s5ogrfI9sBsXQE1SG49RqVz5+IyeNnzhyejFrPIQsPDRMchhcojy4Hbw==",
+ "path": "microsoft.entityframeworkcore.abstractions/7.0.0",
+ "hashPath": "microsoft.entityframeworkcore.abstractions.7.0.0.nupkg.sha512"
+ },
+ "Microsoft.EntityFrameworkCore.Analyzers/7.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Qkd2H+jLe37o5ku+LjT6qf7kAHY75Yfn2bBDQgqr13DTOLYpEy1Mt93KPFjaZvIu/srEcbfGGMRL7urKm5zN8Q==",
+ "path": "microsoft.entityframeworkcore.analyzers/7.0.0",
+ "hashPath": "microsoft.entityframeworkcore.analyzers.7.0.0.nupkg.sha512"
+ },
+ "Microsoft.EntityFrameworkCore.Design/7.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-fEEU/zZ/VblZRQxHNZxgGKVtEtOGqEAmuHkACV1i0H031bM8PQKTS7PlKPVOgg0C1v+6yeHoIAGGgbAvG9f7kw==",
+ "path": "microsoft.entityframeworkcore.design/7.0.0",
+ "hashPath": "microsoft.entityframeworkcore.design.7.0.0.nupkg.sha512"
+ },
+ "Microsoft.EntityFrameworkCore.Relational/7.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-eQiYygtR2xZ0Uy7KtiFRHpoEx/U8xNwbNRgu1pEJgSxbJLtg6tDL1y2YcIbSuIRSNEljXIIHq/apEhGm1QL70g==",
+ "path": "microsoft.entityframeworkcore.relational/7.0.0",
+ "hashPath": "microsoft.entityframeworkcore.relational.7.0.0.nupkg.sha512"
+ },
"Microsoft.Extensions.ApiDescription.Server/6.0.5": {
"type": "package",
"serviceable": true,
@@ -95,6 +357,97 @@
"path": "microsoft.extensions.apidescription.server/6.0.5",
"hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512"
},
+ "Microsoft.Extensions.Caching.Abstractions/7.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IeimUd0TNbhB4ded3AbgBLQv2SnsiVugDyGV1MvspQFVlA07nDC7Zul7kcwH5jWN3JiTcp/ySE83AIJo8yfKjg==",
+ "path": "microsoft.extensions.caching.abstractions/7.0.0",
+ "hashPath": "microsoft.extensions.caching.abstractions.7.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Caching.Memory/7.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-xpidBs2KCE2gw1JrD0quHE72kvCaI3xFql5/Peb2GRtUuZX+dYPoK/NTdVMiM67Svym0M0Df9A3xyU0FbMQhHw==",
+ "path": "microsoft.extensions.caching.memory/7.0.0",
+ "hashPath": "microsoft.extensions.caching.memory.7.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/7.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-f34u2eaqIjNO9YLHBz8rozVZ+TcFiFs0F3r7nUJd7FRkVSxk8u4OpoK226mi49MwexHOR2ibP9MFvRUaLilcQQ==",
+ "path": "microsoft.extensions.configuration.abstractions/7.0.0",
+ "hashPath": "microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection/7.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-elNeOmkeX3eDVG6pYVeV82p29hr+UKDaBhrZyWvWLw/EVZSYEkZlQdkp0V39k/Xehs2Qa0mvoCvkVj3eQxNQ1Q==",
+ "path": "microsoft.extensions.dependencyinjection/7.0.0",
+ "hashPath": "microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0",
+ "hashPath": "microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyModel/7.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-oONNYd71J3LzkWc4fUHl3SvMfiQMYUCo/mDHDEu76hYYxdhdrPYv6fvGv9nnKVyhE9P0h20AU8RZB5OOWQcAXg==",
+ "path": "microsoft.extensions.dependencymodel/7.0.0",
+ "hashPath": "microsoft.extensions.dependencymodel.7.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging/7.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Nw2muoNrOG5U5qa2ZekXwudUn2BJcD41e65zwmDHb1fQegTX66UokLWZkJRpqSSHXDOWZ5V0iqhbxOEky91atA==",
+ "path": "microsoft.extensions.logging/7.0.0",
+ "hashPath": "microsoft.extensions.logging.7.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Abstractions/7.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==",
+ "path": "microsoft.extensions.logging.abstractions/7.0.0",
+ "hashPath": "microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options/7.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-lP1yBnTTU42cKpMozuafbvNtQ7QcBjr/CcK3bYOGEMH55Fjt+iecXjT6chR7vbgCMqy3PG3aNQSZgo/EuY/9qQ==",
+ "path": "microsoft.extensions.options/7.0.0",
+ "hashPath": "microsoft.extensions.options.7.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Primitives/7.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==",
+ "path": "microsoft.extensions.primitives/7.0.0",
+ "hashPath": "microsoft.extensions.primitives.7.0.0.nupkg.sha512"
+ },
+ "Microsoft.IdentityModel.Abstractions/7.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-7iSWSRR72VKeonFdfDi43Lvkca98Y0F3TmmWhRSuHbkjk/IKUSO0Qd272LQFZpi5eDNQNbUXy3o4THXhOAU6cw==",
+ "path": "microsoft.identitymodel.abstractions/7.0.0",
+ "hashPath": "microsoft.identitymodel.abstractions.7.0.0.nupkg.sha512"
+ },
+ "Microsoft.IdentityModel.Logging/7.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6I35Kt2/PQZAyUYLo3+QgT/LubZ5/4Ojelkbyo8KKdDgjMbVocAx2B3P5V7iMCz+rsAe/RLr6ql87QKnHtI+aw==",
+ "path": "microsoft.identitymodel.logging/7.0.0",
+ "hashPath": "microsoft.identitymodel.logging.7.0.0.nupkg.sha512"
+ },
+ "Microsoft.IdentityModel.Tokens/7.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dxYqmmFLsjBQZ6F6a4XDzrZ1CTxBRFVigJvWiNtXiIsT6UlYMxs9ONMaGx9XKzcxmcgEQ2ADuCqKZduz0LR9Hw==",
+ "path": "microsoft.identitymodel.tokens/7.0.0",
+ "hashPath": "microsoft.identitymodel.tokens.7.0.0.nupkg.sha512"
+ },
"Microsoft.OpenApi/1.4.3": {
"type": "package",
"serviceable": true,
@@ -102,6 +455,27 @@
"path": "microsoft.openapi/1.4.3",
"hashPath": "microsoft.openapi.1.4.3.nupkg.sha512"
},
+ "Mono.TextTemplating/2.2.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==",
+ "path": "mono.texttemplating/2.2.1",
+ "hashPath": "mono.texttemplating.2.2.1.nupkg.sha512"
+ },
+ "Npgsql/7.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-tOBFksJZ2MiEz8xtDUgS5IG19jVO3nSP15QDYWiiGpXHe0PsLoQBts2Sg3hHKrrLTuw+AjsJz9iKvvGNHyKDIg==",
+ "path": "npgsql/7.0.0",
+ "hashPath": "npgsql.7.0.0.nupkg.sha512"
+ },
+ "Npgsql.EntityFrameworkCore.PostgreSQL/7.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-CyUNlFZmtX2Kmw8XK5Tlx5eVUCzWJ+zJHErxZiMo2Y8zCRuH9+/OMGwG+9Mmp5zD5p3Ifbi5Pp3btsqoDDkSZQ==",
+ "path": "npgsql.entityframeworkcore.postgresql/7.0.0",
+ "hashPath": "npgsql.entityframeworkcore.postgresql.7.0.0.nupkg.sha512"
+ },
"Swashbuckle.AspNetCore/6.5.0": {
"type": "package",
"serviceable": true,
@@ -129,6 +503,34 @@
"sha512": "sha512-OvbvxX+wL8skxTBttcBsVxdh73Fag4xwqEU2edh4JMn7Ws/xJHnY/JB1e9RoCb6XpDxUF3hD9A0Z1lEUx40Pfw==",
"path": "swashbuckle.aspnetcore.swaggerui/6.5.0",
"hashPath": "swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512"
+ },
+ "System.CodeDom/4.4.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==",
+ "path": "system.codedom/4.4.0",
+ "hashPath": "system.codedom.4.4.0.nupkg.sha512"
+ },
+ "System.Runtime.CompilerServices.Unsafe/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
+ "path": "system.runtime.compilerservices.unsafe/6.0.0",
+ "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
+ },
+ "System.Text.Encodings.Web/7.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==",
+ "path": "system.text.encodings.web/7.0.0",
+ "hashPath": "system.text.encodings.web.7.0.0.nupkg.sha512"
+ },
+ "System.Text.Json/7.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-DaGSsVqKsn/ia6RG8frjwmJonfos0srquhw09TlT8KRw5I43E+4gs+/bZj4K0vShJ5H9imCuXupb4RmS+dBy3w==",
+ "path": "system.text.json/7.0.0",
+ "hashPath": "system.text.json.7.0.0.nupkg.sha512"
}
}
}
\ No newline at end of file
diff --git a/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/AAIntegration.SimmonsBank.API.dll b/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/AAIntegration.SimmonsBank.API.dll
index 4508bbb..d327046 100644
Binary files a/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/AAIntegration.SimmonsBank.API.dll and b/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/AAIntegration.SimmonsBank.API.dll differ
diff --git a/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/AAIntegration.SimmonsBank.API.pdb b/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/AAIntegration.SimmonsBank.API.pdb
index 5bb806e..e452446 100644
Binary files a/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/AAIntegration.SimmonsBank.API.pdb and b/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/AAIntegration.SimmonsBank.API.pdb differ
diff --git a/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/AAIntegration.SimmonsBank.API.runtimeconfig.json b/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/AAIntegration.SimmonsBank.API.runtimeconfig.json
index f784548..d486bb2 100644
--- a/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/AAIntegration.SimmonsBank.API.runtimeconfig.json
+++ b/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/AAIntegration.SimmonsBank.API.runtimeconfig.json
@@ -13,6 +13,7 @@
],
"configProperties": {
"System.GC.Server": true,
+ "System.Reflection.NullabilityInfoContext.IsSupported": true,
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
}
}
diff --git a/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Humanizer.dll b/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Humanizer.dll
new file mode 100755
index 0000000..c9a7ef8
Binary files /dev/null and b/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Humanizer.dll differ
diff --git a/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Abstractions.dll
new file mode 100755
index 0000000..a89f247
Binary files /dev/null and b/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Abstractions.dll differ
diff --git a/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Design.dll b/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Design.dll
new file mode 100755
index 0000000..8adf225
Binary files /dev/null and b/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Design.dll differ
diff --git a/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Relational.dll b/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Relational.dll
new file mode 100755
index 0000000..44538e5
Binary files /dev/null and b/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Relational.dll differ
diff --git a/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.dll b/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.dll
new file mode 100755
index 0000000..94a49a4
Binary files /dev/null and b/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.dll differ
diff --git a/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Microsoft.Extensions.DependencyModel.dll b/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Microsoft.Extensions.DependencyModel.dll
new file mode 100755
index 0000000..c4fe0b9
Binary files /dev/null and b/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Microsoft.Extensions.DependencyModel.dll differ
diff --git a/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Microsoft.IdentityModel.Abstractions.dll b/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Microsoft.IdentityModel.Abstractions.dll
new file mode 100755
index 0000000..b1e3e4c
Binary files /dev/null and b/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Microsoft.IdentityModel.Abstractions.dll differ
diff --git a/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Microsoft.IdentityModel.Logging.dll b/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Microsoft.IdentityModel.Logging.dll
new file mode 100755
index 0000000..3447d4f
Binary files /dev/null and b/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Microsoft.IdentityModel.Logging.dll differ
diff --git a/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Microsoft.IdentityModel.Tokens.dll b/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Microsoft.IdentityModel.Tokens.dll
new file mode 100755
index 0000000..a0d6d60
Binary files /dev/null and b/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Microsoft.IdentityModel.Tokens.dll differ
diff --git a/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Mono.TextTemplating.dll b/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Mono.TextTemplating.dll
new file mode 100755
index 0000000..d5a4b3c
Binary files /dev/null and b/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Mono.TextTemplating.dll differ
diff --git a/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll b/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll
new file mode 100755
index 0000000..493fbdc
Binary files /dev/null and b/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll differ
diff --git a/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Npgsql.dll b/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Npgsql.dll
new file mode 100755
index 0000000..c3bd706
Binary files /dev/null and b/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Npgsql.dll differ
diff --git a/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/System.CodeDom.dll b/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/System.CodeDom.dll
new file mode 100755
index 0000000..3128b6a
Binary files /dev/null and b/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/System.CodeDom.dll differ
diff --git a/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/appsettings.json b/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/appsettings.json
index 10f68b8..fe27cc7 100644
--- a/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/appsettings.json
+++ b/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/appsettings.json
@@ -5,5 +5,16 @@
"Microsoft.AspNetCore": "Warning"
}
},
- "AllowedHosts": "*"
+ "AllowedHosts": "*",
+ "AppSettings": {
+ "Secret": "5de80277015f9fd564c4d1cc2cf827dbb1774cd66e7d79aa258d9c35a9f67f32fc6cf0dc24244242bd9501288e0fd69e315b",
+ "APIUrl": "https://localhost:5279"
+ },
+ "Database": {
+ "Host": "localhost",
+ "Name": "AAISB_DB",
+ "User": "postgres",
+ "Password": "nqA3UV3CliLLHpLL",
+ "Port": "15432"
+ }
}
diff --git a/AAIntegration.SimmonsBank.API/obj/AAIntegration.SimmonsBank.API.csproj.nuget.dgspec.json b/AAIntegration.SimmonsBank.API/obj/AAIntegration.SimmonsBank.API.csproj.nuget.dgspec.json
index c0d434a..5097b63 100644
--- a/AAIntegration.SimmonsBank.API/obj/AAIntegration.SimmonsBank.API.csproj.nuget.dgspec.json
+++ b/AAIntegration.SimmonsBank.API/obj/AAIntegration.SimmonsBank.API.csproj.nuget.dgspec.json
@@ -38,10 +38,32 @@
"net7.0": {
"targetAlias": "net7.0",
"dependencies": {
+ "Microsoft.AspNetCore.Authorization": {
+ "target": "Package",
+ "version": "[7.0.0, )"
+ },
"Microsoft.AspNetCore.OpenApi": {
"target": "Package",
"version": "[7.0.15, )"
},
+ "Microsoft.EntityFrameworkCore": {
+ "target": "Package",
+ "version": "[7.0.0, )"
+ },
+ "Microsoft.EntityFrameworkCore.Design": {
+ "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
+ "suppressParent": "All",
+ "target": "Package",
+ "version": "[7.0.0, )"
+ },
+ "Microsoft.IdentityModel.Tokens": {
+ "target": "Package",
+ "version": "[7.0.0, )"
+ },
+ "Npgsql.EntityFrameworkCore.PostgreSQL": {
+ "target": "Package",
+ "version": "[7.0.0, )"
+ },
"Swashbuckle.AspNetCore": {
"target": "Package",
"version": "[6.5.0, )"
diff --git a/AAIntegration.SimmonsBank.API/obj/AAIntegration.SimmonsBank.API.csproj.nuget.g.props b/AAIntegration.SimmonsBank.API/obj/AAIntegration.SimmonsBank.API.csproj.nuget.g.props
index 6042e4f..f1e3a40 100644
--- a/AAIntegration.SimmonsBank.API/obj/AAIntegration.SimmonsBank.API.csproj.nuget.g.props
+++ b/AAIntegration.SimmonsBank.API/obj/AAIntegration.SimmonsBank.API.csproj.nuget.g.props
@@ -15,6 +15,8 @@
+
+
/home/william/.nuget/packages/microsoft.extensions.apidescription.server/6.0.5
diff --git a/AAIntegration.SimmonsBank.API/obj/AAIntegration.SimmonsBank.API.csproj.nuget.g.targets b/AAIntegration.SimmonsBank.API/obj/AAIntegration.SimmonsBank.API.csproj.nuget.g.targets
index 04427d8..6fd9d39 100644
--- a/AAIntegration.SimmonsBank.API/obj/AAIntegration.SimmonsBank.API.csproj.nuget.g.targets
+++ b/AAIntegration.SimmonsBank.API/obj/AAIntegration.SimmonsBank.API.csproj.nuget.g.targets
@@ -1,6 +1,8 @@
+
+
\ No newline at end of file
diff --git a/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/AAIntegration.SimmonsBank.API.assets.cache b/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/AAIntegration.SimmonsBank.API.assets.cache
index e7aa9ee..f6a4143 100644
Binary files a/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/AAIntegration.SimmonsBank.API.assets.cache and b/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/AAIntegration.SimmonsBank.API.assets.cache differ
diff --git a/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/AAIntegration.SimmonsBank.API.csproj.AssemblyReference.cache b/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/AAIntegration.SimmonsBank.API.csproj.AssemblyReference.cache
index d68ebd2..76a709a 100644
Binary files a/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/AAIntegration.SimmonsBank.API.csproj.AssemblyReference.cache and b/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/AAIntegration.SimmonsBank.API.csproj.AssemblyReference.cache differ
diff --git a/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/AAIntegration.SimmonsBank.API.csproj.CoreCompileInputs.cache b/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/AAIntegration.SimmonsBank.API.csproj.CoreCompileInputs.cache
index a283658..d9c1ce3 100644
--- a/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/AAIntegration.SimmonsBank.API.csproj.CoreCompileInputs.cache
+++ b/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/AAIntegration.SimmonsBank.API.csproj.CoreCompileInputs.cache
@@ -1 +1 @@
-eb9b1d086ec886252a72e514a1cf10cc4b5bd587
+bd7d70d00f668e0d8bf64847deff236ad4b0c3cc
diff --git a/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/AAIntegration.SimmonsBank.API.csproj.FileListAbsolute.txt b/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/AAIntegration.SimmonsBank.API.csproj.FileListAbsolute.txt
index 17e3bcf..b460a41 100644
--- a/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/AAIntegration.SimmonsBank.API.csproj.FileListAbsolute.txt
+++ b/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/AAIntegration.SimmonsBank.API.csproj.FileListAbsolute.txt
@@ -5,11 +5,24 @@
/home/william/Git/Integration-TransactionImporter-SimmonsBank/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/AAIntegration.SimmonsBank.API.runtimeconfig.json
/home/william/Git/Integration-TransactionImporter-SimmonsBank/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/AAIntegration.SimmonsBank.API.dll
/home/william/Git/Integration-TransactionImporter-SimmonsBank/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/AAIntegration.SimmonsBank.API.pdb
+/home/william/Git/Integration-TransactionImporter-SimmonsBank/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Humanizer.dll
/home/william/Git/Integration-TransactionImporter-SimmonsBank/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Microsoft.AspNetCore.OpenApi.dll
+/home/william/Git/Integration-TransactionImporter-SimmonsBank/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.dll
+/home/william/Git/Integration-TransactionImporter-SimmonsBank/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Abstractions.dll
+/home/william/Git/Integration-TransactionImporter-SimmonsBank/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Design.dll
+/home/william/Git/Integration-TransactionImporter-SimmonsBank/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Relational.dll
+/home/william/Git/Integration-TransactionImporter-SimmonsBank/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Microsoft.Extensions.DependencyModel.dll
+/home/william/Git/Integration-TransactionImporter-SimmonsBank/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Microsoft.IdentityModel.Abstractions.dll
+/home/william/Git/Integration-TransactionImporter-SimmonsBank/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Microsoft.IdentityModel.Logging.dll
+/home/william/Git/Integration-TransactionImporter-SimmonsBank/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Microsoft.IdentityModel.Tokens.dll
/home/william/Git/Integration-TransactionImporter-SimmonsBank/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Microsoft.OpenApi.dll
+/home/william/Git/Integration-TransactionImporter-SimmonsBank/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Mono.TextTemplating.dll
+/home/william/Git/Integration-TransactionImporter-SimmonsBank/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Npgsql.dll
+/home/william/Git/Integration-TransactionImporter-SimmonsBank/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll
/home/william/Git/Integration-TransactionImporter-SimmonsBank/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Swashbuckle.AspNetCore.Swagger.dll
/home/william/Git/Integration-TransactionImporter-SimmonsBank/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll
/home/william/Git/Integration-TransactionImporter-SimmonsBank/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll
+/home/william/Git/Integration-TransactionImporter-SimmonsBank/AAIntegration.SimmonsBank.API/bin/Debug/net7.0/System.CodeDom.dll
/home/william/Git/Integration-TransactionImporter-SimmonsBank/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/AAIntegration.SimmonsBank.API.csproj.AssemblyReference.cache
/home/william/Git/Integration-TransactionImporter-SimmonsBank/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/AAIntegration.SimmonsBank.API.GeneratedMSBuildEditorConfig.editorconfig
/home/william/Git/Integration-TransactionImporter-SimmonsBank/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/AAIntegration.SimmonsBank.API.AssemblyInfoInputs.cache
diff --git a/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/AAIntegration.SimmonsBank.API.dll b/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/AAIntegration.SimmonsBank.API.dll
index 4508bbb..d327046 100644
Binary files a/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/AAIntegration.SimmonsBank.API.dll and b/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/AAIntegration.SimmonsBank.API.dll differ
diff --git a/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/AAIntegration.SimmonsBank.API.genruntimeconfig.cache b/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/AAIntegration.SimmonsBank.API.genruntimeconfig.cache
index 1f11612..5f870de 100644
--- a/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/AAIntegration.SimmonsBank.API.genruntimeconfig.cache
+++ b/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/AAIntegration.SimmonsBank.API.genruntimeconfig.cache
@@ -1 +1 @@
-702df8d1d86e128e342486c48a85116b6fdc96e1
+73736abff76b35e69e45e19ba4a468a4281d3a6a
diff --git a/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/AAIntegration.SimmonsBank.API.pdb b/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/AAIntegration.SimmonsBank.API.pdb
index 5bb806e..e452446 100644
Binary files a/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/AAIntegration.SimmonsBank.API.pdb and b/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/AAIntegration.SimmonsBank.API.pdb differ
diff --git a/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/project.razor.json b/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/project.razor.json
index 5ba7089..45e6d67 100644
--- a/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/project.razor.json
+++ b/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/project.razor.json
@@ -13,7 +13,7 @@
"ProjectWorkspaceState": {
"TagHelpers": [
{
- "HashCode": 736661513,
+ "HashCode": 1609458209,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -97,7 +97,7 @@
}
},
{
- "HashCode": 807072793,
+ "HashCode": -491557804,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -182,7 +182,7 @@
}
},
{
- "HashCode": -120227475,
+ "HashCode": -2115874921,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -215,7 +215,7 @@
}
},
{
- "HashCode": 1016541017,
+ "HashCode": -1172263241,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -249,7 +249,7 @@
}
},
{
- "HashCode": 537598401,
+ "HashCode": -251515451,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -270,7 +270,7 @@
}
},
{
- "HashCode": -1527359431,
+ "HashCode": 231285252,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -292,7 +292,7 @@
}
},
{
- "HashCode": 1866108155,
+ "HashCode": 742776728,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -397,7 +397,7 @@
}
},
{
- "HashCode": 1443526961,
+ "HashCode": -410110985,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -503,7 +503,7 @@
}
},
{
- "HashCode": 1206050738,
+ "HashCode": 1496365382,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -536,7 +536,7 @@
}
},
{
- "HashCode": 290237633,
+ "HashCode": -1294825650,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -570,7 +570,7 @@
}
},
{
- "HashCode": -333776822,
+ "HashCode": -1147376349,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -603,7 +603,7 @@
}
},
{
- "HashCode": 584459571,
+ "HashCode": -509220185,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -637,7 +637,7 @@
}
},
{
- "HashCode": 509481390,
+ "HashCode": 319584605,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -670,7 +670,7 @@
}
},
{
- "HashCode": 952924411,
+ "HashCode": -932051387,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -704,7 +704,7 @@
}
},
{
- "HashCode": 1369026592,
+ "HashCode": 746176739,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -725,7 +725,7 @@
}
},
{
- "HashCode": -895316386,
+ "HashCode": -1480175170,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -747,7 +747,7 @@
}
},
{
- "HashCode": 789769223,
+ "HashCode": 1390955865,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -778,7 +778,7 @@
}
},
{
- "HashCode": 1019642379,
+ "HashCode": -1089941022,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -810,7 +810,7 @@
}
},
{
- "HashCode": 1027895321,
+ "HashCode": -942630891,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -831,7 +831,7 @@
}
},
{
- "HashCode": 144789598,
+ "HashCode": 331311379,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Authorization",
@@ -853,7 +853,7 @@
}
},
{
- "HashCode": 334457571,
+ "HashCode": -662212303,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.CascadingValue",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -928,7 +928,7 @@
}
},
{
- "HashCode": 524282440,
+ "HashCode": -1943968937,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.CascadingValue",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1004,7 +1004,7 @@
}
},
{
- "HashCode": 87647822,
+ "HashCode": -1347370380,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1025,7 +1025,7 @@
}
},
{
- "HashCode": 1699137381,
+ "HashCode": 1346182096,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1047,7 +1047,7 @@
}
},
{
- "HashCode": -897585521,
+ "HashCode": 545682312,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.DynamicComponent",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1089,7 +1089,7 @@
}
},
{
- "HashCode": 1297146756,
+ "HashCode": 1796349880,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.DynamicComponent",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1132,7 +1132,7 @@
}
},
{
- "HashCode": 362227814,
+ "HashCode": -100983486,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.LayoutView",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1174,7 +1174,7 @@
}
},
{
- "HashCode": -1985679076,
+ "HashCode": -681069779,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.LayoutView",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1217,7 +1217,7 @@
}
},
{
- "HashCode": 1229311092,
+ "HashCode": -552512924,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.LayoutView.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1238,7 +1238,7 @@
}
},
{
- "HashCode": 355117441,
+ "HashCode": -1450042199,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.LayoutView.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1260,7 +1260,7 @@
}
},
{
- "HashCode": -177280254,
+ "HashCode": -377053912,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.RouteView",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1302,7 +1302,7 @@
}
},
{
- "HashCode": -134455978,
+ "HashCode": 1544200839,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.RouteView",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1345,7 +1345,7 @@
}
},
{
- "HashCode": 984359347,
+ "HashCode": -1168727710,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Routing.Router",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1453,7 +1453,7 @@
}
},
{
- "HashCode": 1523802740,
+ "HashCode": 1949090136,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Routing.Router",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1562,7 +1562,7 @@
}
},
{
- "HashCode": 61077287,
+ "HashCode": 1471076104,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Routing.Router.NotFound",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1583,7 +1583,7 @@
}
},
{
- "HashCode": 1983952202,
+ "HashCode": -896158498,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Routing.Router.NotFound",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1605,7 +1605,7 @@
}
},
{
- "HashCode": -2094152673,
+ "HashCode": -711546968,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Routing.Router.Found",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1638,7 +1638,7 @@
}
},
{
- "HashCode": 1941056270,
+ "HashCode": 1697922391,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Routing.Router.Found",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1672,7 +1672,7 @@
}
},
{
- "HashCode": -575383083,
+ "HashCode": 612119160,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Routing.Router.Navigating",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1693,7 +1693,7 @@
}
},
{
- "HashCode": -1836562482,
+ "HashCode": 1194967104,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Routing.Router.Navigating",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -1715,7 +1715,7 @@
}
},
{
- "HashCode": -1853398221,
+ "HashCode": -160143733,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator",
"AssemblyName": "Microsoft.AspNetCore.Components.Forms",
@@ -1734,7 +1734,7 @@
}
},
{
- "HashCode": 1192894548,
+ "HashCode": -1165914937,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator",
"AssemblyName": "Microsoft.AspNetCore.Components.Forms",
@@ -1754,7 +1754,7 @@
}
},
{
- "HashCode": 399269380,
+ "HashCode": 135404518,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.EditForm",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -1859,7 +1859,7 @@
}
},
{
- "HashCode": -139959270,
+ "HashCode": -2116725859,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.EditForm",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -1965,7 +1965,7 @@
}
},
{
- "HashCode": -952987571,
+ "HashCode": -1836259642,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -1998,7 +1998,7 @@
}
},
{
- "HashCode": -1794756777,
+ "HashCode": -1554169027,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -2032,7 +2032,7 @@
}
},
{
- "HashCode": -582787647,
+ "HashCode": 575389025,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -2104,7 +2104,7 @@
}
},
{
- "HashCode": 1129586937,
+ "HashCode": 926043404,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -2177,7 +2177,7 @@
}
},
{
- "HashCode": 1335615647,
+ "HashCode": 698269952,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputDate",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -2285,7 +2285,7 @@
}
},
{
- "HashCode": -928966443,
+ "HashCode": -930024230,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputDate",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -2394,7 +2394,7 @@
}
},
{
- "HashCode": -1940133533,
+ "HashCode": -438909764,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputFile",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -2436,7 +2436,7 @@
}
},
{
- "HashCode": -1627232622,
+ "HashCode": -1901426514,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputFile",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -2479,7 +2479,7 @@
}
},
{
- "HashCode": -15729210,
+ "HashCode": 1021987688,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputNumber",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -2576,7 +2576,7 @@
}
},
{
- "HashCode": -28744159,
+ "HashCode": -1994693326,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputNumber",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -2674,7 +2674,7 @@
}
},
{
- "HashCode": -196989600,
+ "HashCode": -32173286,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputRadio",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -2738,7 +2738,7 @@
}
},
{
- "HashCode": 1537570242,
+ "HashCode": -1527936308,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputRadio",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -2803,7 +2803,7 @@
}
},
{
- "HashCode": 1072786232,
+ "HashCode": 1831029261,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -2911,7 +2911,7 @@
}
},
{
- "HashCode": 1745566843,
+ "HashCode": -630691353,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3020,7 +3020,7 @@
}
},
{
- "HashCode": -88255626,
+ "HashCode": 868266584,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3041,7 +3041,7 @@
}
},
{
- "HashCode": -1826607245,
+ "HashCode": 779644168,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3063,7 +3063,7 @@
}
},
{
- "HashCode": 85462880,
+ "HashCode": 1660363588,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputSelect",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3161,7 +3161,7 @@
}
},
{
- "HashCode": 935101788,
+ "HashCode": -1504648728,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputSelect",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3260,7 +3260,7 @@
}
},
{
- "HashCode": 1918529422,
+ "HashCode": 1849003884,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3281,7 +3281,7 @@
}
},
{
- "HashCode": 693497160,
+ "HashCode": 1684768976,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3303,7 +3303,7 @@
}
},
{
- "HashCode": 1846427511,
+ "HashCode": 1408237807,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputText",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3375,7 +3375,7 @@
}
},
{
- "HashCode": -313676628,
+ "HashCode": -455954529,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputText",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3448,7 +3448,7 @@
}
},
{
- "HashCode": 1949607720,
+ "HashCode": 272138034,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3520,7 +3520,7 @@
}
},
{
- "HashCode": 521385900,
+ "HashCode": -1755118978,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3593,7 +3593,7 @@
}
},
{
- "HashCode": -373102905,
+ "HashCode": -1890991670,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.ValidationMessage",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3647,7 +3647,7 @@
}
},
{
- "HashCode": 938682552,
+ "HashCode": -413578400,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.ValidationMessage",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3702,7 +3702,7 @@
}
},
{
- "HashCode": -654303500,
+ "HashCode": -482398313,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.ValidationSummary",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3743,7 +3743,7 @@
}
},
{
- "HashCode": -343540082,
+ "HashCode": -1446468726,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Forms.ValidationSummary",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3785,7 +3785,7 @@
}
},
{
- "HashCode": 859887749,
+ "HashCode": -1039680840,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Routing.FocusOnNavigate",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3826,7 +3826,7 @@
}
},
{
- "HashCode": 1151789185,
+ "HashCode": 55908691,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Routing.FocusOnNavigate",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3868,7 +3868,7 @@
}
},
{
- "HashCode": 1955680422,
+ "HashCode": -1857379780,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Routing.NavigationLock",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3910,7 +3910,7 @@
}
},
{
- "HashCode": -1653875250,
+ "HashCode": -625039525,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Routing.NavigationLock",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -3953,7 +3953,7 @@
}
},
{
- "HashCode": -1262802119,
+ "HashCode": -1950602434,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Routing.NavLink",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4016,7 +4016,7 @@
}
},
{
- "HashCode": 1707542517,
+ "HashCode": 1684280078,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Routing.NavLink",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4080,7 +4080,7 @@
}
},
{
- "HashCode": 362326052,
+ "HashCode": 1328011323,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4101,7 +4101,7 @@
}
},
{
- "HashCode": 748011621,
+ "HashCode": 514075282,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4123,7 +4123,7 @@
}
},
{
- "HashCode": 321205166,
+ "HashCode": 415373064,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.HeadContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4155,7 +4155,7 @@
}
},
{
- "HashCode": 538219943,
+ "HashCode": 1271835408,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.HeadContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4188,7 +4188,7 @@
}
},
{
- "HashCode": -1103367886,
+ "HashCode": 752180499,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4209,7 +4209,7 @@
}
},
{
- "HashCode": -1713885639,
+ "HashCode": -56123009,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4231,7 +4231,7 @@
}
},
{
- "HashCode": 657989575,
+ "HashCode": -412766320,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.HeadOutlet",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4250,7 +4250,7 @@
}
},
{
- "HashCode": 84761335,
+ "HashCode": -156797670,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.HeadOutlet",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4270,7 +4270,7 @@
}
},
{
- "HashCode": -1563471812,
+ "HashCode": -1891870588,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.PageTitle",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4302,7 +4302,7 @@
}
},
{
- "HashCode": -762960555,
+ "HashCode": -1662480161,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.PageTitle",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4335,7 +4335,7 @@
}
},
{
- "HashCode": 1546653174,
+ "HashCode": -2127874127,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4356,7 +4356,7 @@
}
},
{
- "HashCode": 1817808797,
+ "HashCode": -2141534787,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4378,7 +4378,7 @@
}
},
{
- "HashCode": 2146389111,
+ "HashCode": 1074906613,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4441,7 +4441,7 @@
}
},
{
- "HashCode": 84918884,
+ "HashCode": 846386704,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4505,7 +4505,7 @@
}
},
{
- "HashCode": -1882548324,
+ "HashCode": 2082880409,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4526,7 +4526,7 @@
}
},
{
- "HashCode": 2120034690,
+ "HashCode": 424095139,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4548,7 +4548,7 @@
}
},
{
- "HashCode": -1447250901,
+ "HashCode": 888051741,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4581,7 +4581,7 @@
}
},
{
- "HashCode": 172553611,
+ "HashCode": -1164345779,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4615,7 +4615,7 @@
}
},
{
- "HashCode": 926510316,
+ "HashCode": -2007763116,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4747,7 +4747,7 @@
}
},
{
- "HashCode": 1267704216,
+ "HashCode": 1786347889,
"Kind": "Components.Component",
"Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4880,7 +4880,7 @@
}
},
{
- "HashCode": -608085423,
+ "HashCode": 1219355574,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4913,7 +4913,7 @@
}
},
{
- "HashCode": 1650472061,
+ "HashCode": 1166450214,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4947,7 +4947,7 @@
}
},
{
- "HashCode": -709516945,
+ "HashCode": -1259334400,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -4980,7 +4980,7 @@
}
},
{
- "HashCode": -398172116,
+ "HashCode": 143064575,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -5014,7 +5014,7 @@
}
},
{
- "HashCode": -786801036,
+ "HashCode": 1390137386,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -5047,7 +5047,7 @@
}
},
{
- "HashCode": 1330931756,
+ "HashCode": 839229262,
"Kind": "Components.ChildContent",
"Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -5081,7 +5081,7 @@
}
},
{
- "HashCode": -1089251550,
+ "HashCode": -1735590318,
"Kind": "Components.EventHandler",
"Name": "onfocus",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -5164,7 +5164,7 @@
}
},
{
- "HashCode": 1003443090,
+ "HashCode": -355107326,
"Kind": "Components.EventHandler",
"Name": "onblur",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -5247,7 +5247,7 @@
}
},
{
- "HashCode": -1202824148,
+ "HashCode": 1920175139,
"Kind": "Components.EventHandler",
"Name": "onfocusin",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -5330,7 +5330,7 @@
}
},
{
- "HashCode": -1735286805,
+ "HashCode": 491218965,
"Kind": "Components.EventHandler",
"Name": "onfocusout",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -5413,7 +5413,7 @@
}
},
{
- "HashCode": 1773065233,
+ "HashCode": -1254626866,
"Kind": "Components.EventHandler",
"Name": "onmouseover",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -5496,7 +5496,7 @@
}
},
{
- "HashCode": -1991494442,
+ "HashCode": -251449618,
"Kind": "Components.EventHandler",
"Name": "onmouseout",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -5579,7 +5579,7 @@
}
},
{
- "HashCode": 892845742,
+ "HashCode": 1545545757,
"Kind": "Components.EventHandler",
"Name": "onmouseleave",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -5662,7 +5662,7 @@
}
},
{
- "HashCode": -2058187950,
+ "HashCode": 977062767,
"Kind": "Components.EventHandler",
"Name": "onmouseenter",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -5745,7 +5745,7 @@
}
},
{
- "HashCode": -480590680,
+ "HashCode": -1515159047,
"Kind": "Components.EventHandler",
"Name": "onmousemove",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -5828,7 +5828,7 @@
}
},
{
- "HashCode": 448546382,
+ "HashCode": -616485944,
"Kind": "Components.EventHandler",
"Name": "onmousedown",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -5911,7 +5911,7 @@
}
},
{
- "HashCode": -1536820481,
+ "HashCode": -13696318,
"Kind": "Components.EventHandler",
"Name": "onmouseup",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -5994,7 +5994,7 @@
}
},
{
- "HashCode": 1100980673,
+ "HashCode": -149637787,
"Kind": "Components.EventHandler",
"Name": "onclick",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -6077,7 +6077,7 @@
}
},
{
- "HashCode": -278514687,
+ "HashCode": 652986096,
"Kind": "Components.EventHandler",
"Name": "ondblclick",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -6160,7 +6160,7 @@
}
},
{
- "HashCode": 833160475,
+ "HashCode": -668072518,
"Kind": "Components.EventHandler",
"Name": "onwheel",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -6243,7 +6243,7 @@
}
},
{
- "HashCode": 378544330,
+ "HashCode": 2012615105,
"Kind": "Components.EventHandler",
"Name": "onmousewheel",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -6326,7 +6326,7 @@
}
},
{
- "HashCode": -266055571,
+ "HashCode": 1517488603,
"Kind": "Components.EventHandler",
"Name": "oncontextmenu",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -6409,7 +6409,7 @@
}
},
{
- "HashCode": -718499756,
+ "HashCode": -163062017,
"Kind": "Components.EventHandler",
"Name": "ondrag",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -6492,7 +6492,7 @@
}
},
{
- "HashCode": -1876149906,
+ "HashCode": -1121231933,
"Kind": "Components.EventHandler",
"Name": "ondragend",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -6575,7 +6575,7 @@
}
},
{
- "HashCode": -2103930482,
+ "HashCode": 980461038,
"Kind": "Components.EventHandler",
"Name": "ondragenter",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -6658,7 +6658,7 @@
}
},
{
- "HashCode": -1607552929,
+ "HashCode": -1218321603,
"Kind": "Components.EventHandler",
"Name": "ondragleave",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -6741,7 +6741,7 @@
}
},
{
- "HashCode": -89173413,
+ "HashCode": -1955072238,
"Kind": "Components.EventHandler",
"Name": "ondragover",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -6824,7 +6824,7 @@
}
},
{
- "HashCode": -1532388361,
+ "HashCode": 870292106,
"Kind": "Components.EventHandler",
"Name": "ondragstart",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -6907,7 +6907,7 @@
}
},
{
- "HashCode": -1651948415,
+ "HashCode": -76618648,
"Kind": "Components.EventHandler",
"Name": "ondrop",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -6990,7 +6990,7 @@
}
},
{
- "HashCode": 1243653249,
+ "HashCode": 1089415921,
"Kind": "Components.EventHandler",
"Name": "onkeydown",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -7073,7 +7073,7 @@
}
},
{
- "HashCode": 377579827,
+ "HashCode": 171065834,
"Kind": "Components.EventHandler",
"Name": "onkeyup",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -7156,7 +7156,7 @@
}
},
{
- "HashCode": -420746081,
+ "HashCode": 1615089905,
"Kind": "Components.EventHandler",
"Name": "onkeypress",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -7239,7 +7239,7 @@
}
},
{
- "HashCode": -5557202,
+ "HashCode": -1599134754,
"Kind": "Components.EventHandler",
"Name": "onchange",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -7322,7 +7322,7 @@
}
},
{
- "HashCode": -1904968695,
+ "HashCode": -1952448107,
"Kind": "Components.EventHandler",
"Name": "oninput",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -7405,7 +7405,7 @@
}
},
{
- "HashCode": -424402153,
+ "HashCode": 85520715,
"Kind": "Components.EventHandler",
"Name": "oninvalid",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -7488,7 +7488,7 @@
}
},
{
- "HashCode": -1635028925,
+ "HashCode": -457511036,
"Kind": "Components.EventHandler",
"Name": "onreset",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -7571,7 +7571,7 @@
}
},
{
- "HashCode": -1026415333,
+ "HashCode": 826931558,
"Kind": "Components.EventHandler",
"Name": "onselect",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -7654,7 +7654,7 @@
}
},
{
- "HashCode": -1867669603,
+ "HashCode": -1114802249,
"Kind": "Components.EventHandler",
"Name": "onselectstart",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -7737,7 +7737,7 @@
}
},
{
- "HashCode": 594610541,
+ "HashCode": -76736455,
"Kind": "Components.EventHandler",
"Name": "onselectionchange",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -7820,7 +7820,7 @@
}
},
{
- "HashCode": -1143861368,
+ "HashCode": 784684305,
"Kind": "Components.EventHandler",
"Name": "onsubmit",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -7903,7 +7903,7 @@
}
},
{
- "HashCode": -1905610200,
+ "HashCode": -309760662,
"Kind": "Components.EventHandler",
"Name": "onbeforecopy",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -7986,7 +7986,7 @@
}
},
{
- "HashCode": -661414760,
+ "HashCode": -459248310,
"Kind": "Components.EventHandler",
"Name": "onbeforecut",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -8069,7 +8069,7 @@
}
},
{
- "HashCode": 241586407,
+ "HashCode": -694967600,
"Kind": "Components.EventHandler",
"Name": "onbeforepaste",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -8152,7 +8152,7 @@
}
},
{
- "HashCode": 1974456762,
+ "HashCode": 1431345677,
"Kind": "Components.EventHandler",
"Name": "oncopy",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -8235,7 +8235,7 @@
}
},
{
- "HashCode": 433176794,
+ "HashCode": 211319619,
"Kind": "Components.EventHandler",
"Name": "oncut",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -8318,7 +8318,7 @@
}
},
{
- "HashCode": 591630405,
+ "HashCode": 1896834205,
"Kind": "Components.EventHandler",
"Name": "onpaste",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -8401,7 +8401,7 @@
}
},
{
- "HashCode": -444643901,
+ "HashCode": 1967931094,
"Kind": "Components.EventHandler",
"Name": "ontouchcancel",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -8484,7 +8484,7 @@
}
},
{
- "HashCode": -1878371568,
+ "HashCode": -1550420666,
"Kind": "Components.EventHandler",
"Name": "ontouchend",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -8567,7 +8567,7 @@
}
},
{
- "HashCode": 342912925,
+ "HashCode": -442136674,
"Kind": "Components.EventHandler",
"Name": "ontouchmove",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -8650,7 +8650,7 @@
}
},
{
- "HashCode": -1622745151,
+ "HashCode": 1774734349,
"Kind": "Components.EventHandler",
"Name": "ontouchstart",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -8733,7 +8733,7 @@
}
},
{
- "HashCode": 655922628,
+ "HashCode": -1141059143,
"Kind": "Components.EventHandler",
"Name": "ontouchenter",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -8816,7 +8816,7 @@
}
},
{
- "HashCode": 375511155,
+ "HashCode": -2126219161,
"Kind": "Components.EventHandler",
"Name": "ontouchleave",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -8899,7 +8899,7 @@
}
},
{
- "HashCode": -1522983428,
+ "HashCode": 1511129780,
"Kind": "Components.EventHandler",
"Name": "ongotpointercapture",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -8982,7 +8982,7 @@
}
},
{
- "HashCode": -1400677198,
+ "HashCode": 1829826777,
"Kind": "Components.EventHandler",
"Name": "onlostpointercapture",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -9065,7 +9065,7 @@
}
},
{
- "HashCode": -1129204503,
+ "HashCode": 79055556,
"Kind": "Components.EventHandler",
"Name": "onpointercancel",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -9148,7 +9148,7 @@
}
},
{
- "HashCode": 1431948889,
+ "HashCode": -1130647665,
"Kind": "Components.EventHandler",
"Name": "onpointerdown",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -9231,7 +9231,7 @@
}
},
{
- "HashCode": -1422537683,
+ "HashCode": -807612247,
"Kind": "Components.EventHandler",
"Name": "onpointerenter",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -9314,7 +9314,7 @@
}
},
{
- "HashCode": -1484129851,
+ "HashCode": 1831563379,
"Kind": "Components.EventHandler",
"Name": "onpointerleave",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -9397,7 +9397,7 @@
}
},
{
- "HashCode": 487072108,
+ "HashCode": -1327262653,
"Kind": "Components.EventHandler",
"Name": "onpointermove",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -9480,7 +9480,7 @@
}
},
{
- "HashCode": -219166432,
+ "HashCode": 1105556961,
"Kind": "Components.EventHandler",
"Name": "onpointerout",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -9563,7 +9563,7 @@
}
},
{
- "HashCode": 1889507449,
+ "HashCode": -641342373,
"Kind": "Components.EventHandler",
"Name": "onpointerover",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -9646,7 +9646,7 @@
}
},
{
- "HashCode": -946623561,
+ "HashCode": -1835359465,
"Kind": "Components.EventHandler",
"Name": "onpointerup",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -9729,7 +9729,7 @@
}
},
{
- "HashCode": -1856461120,
+ "HashCode": 1616857470,
"Kind": "Components.EventHandler",
"Name": "oncanplay",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -9812,7 +9812,7 @@
}
},
{
- "HashCode": 292790429,
+ "HashCode": 283991527,
"Kind": "Components.EventHandler",
"Name": "oncanplaythrough",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -9895,7 +9895,7 @@
}
},
{
- "HashCode": -56325360,
+ "HashCode": -1313096933,
"Kind": "Components.EventHandler",
"Name": "oncuechange",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -9978,7 +9978,7 @@
}
},
{
- "HashCode": -1724455298,
+ "HashCode": -155498661,
"Kind": "Components.EventHandler",
"Name": "ondurationchange",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -10061,7 +10061,7 @@
}
},
{
- "HashCode": -488227321,
+ "HashCode": -659718121,
"Kind": "Components.EventHandler",
"Name": "onemptied",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -10144,7 +10144,7 @@
}
},
{
- "HashCode": -2094809796,
+ "HashCode": 407588646,
"Kind": "Components.EventHandler",
"Name": "onpause",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -10227,7 +10227,7 @@
}
},
{
- "HashCode": -252195643,
+ "HashCode": 1022311526,
"Kind": "Components.EventHandler",
"Name": "onplay",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -10310,7 +10310,7 @@
}
},
{
- "HashCode": 1497290729,
+ "HashCode": -781798187,
"Kind": "Components.EventHandler",
"Name": "onplaying",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -10393,7 +10393,7 @@
}
},
{
- "HashCode": 2025407877,
+ "HashCode": 329218079,
"Kind": "Components.EventHandler",
"Name": "onratechange",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -10476,7 +10476,7 @@
}
},
{
- "HashCode": 1006335136,
+ "HashCode": -1554685154,
"Kind": "Components.EventHandler",
"Name": "onseeked",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -10559,7 +10559,7 @@
}
},
{
- "HashCode": 1594842089,
+ "HashCode": 2126088742,
"Kind": "Components.EventHandler",
"Name": "onseeking",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -10642,7 +10642,7 @@
}
},
{
- "HashCode": -384604135,
+ "HashCode": 1619869791,
"Kind": "Components.EventHandler",
"Name": "onstalled",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -10725,7 +10725,7 @@
}
},
{
- "HashCode": -1469919604,
+ "HashCode": 895895168,
"Kind": "Components.EventHandler",
"Name": "onstop",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -10808,7 +10808,7 @@
}
},
{
- "HashCode": 266449033,
+ "HashCode": -1863064310,
"Kind": "Components.EventHandler",
"Name": "onsuspend",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -10891,7 +10891,7 @@
}
},
{
- "HashCode": 1612441446,
+ "HashCode": 666781867,
"Kind": "Components.EventHandler",
"Name": "ontimeupdate",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -10974,7 +10974,7 @@
}
},
{
- "HashCode": -1975187697,
+ "HashCode": -589717458,
"Kind": "Components.EventHandler",
"Name": "onvolumechange",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -11057,7 +11057,7 @@
}
},
{
- "HashCode": -1638257170,
+ "HashCode": -2093668869,
"Kind": "Components.EventHandler",
"Name": "onwaiting",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -11140,7 +11140,7 @@
}
},
{
- "HashCode": -603145531,
+ "HashCode": -1417365383,
"Kind": "Components.EventHandler",
"Name": "onloadstart",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -11223,7 +11223,7 @@
}
},
{
- "HashCode": 2068699927,
+ "HashCode": -1602725510,
"Kind": "Components.EventHandler",
"Name": "ontimeout",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -11306,7 +11306,7 @@
}
},
{
- "HashCode": 1157564576,
+ "HashCode": -1629681073,
"Kind": "Components.EventHandler",
"Name": "onabort",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -11389,7 +11389,7 @@
}
},
{
- "HashCode": -1502289097,
+ "HashCode": -1330664,
"Kind": "Components.EventHandler",
"Name": "onload",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -11472,7 +11472,7 @@
}
},
{
- "HashCode": -1361810976,
+ "HashCode": 1618113162,
"Kind": "Components.EventHandler",
"Name": "onloadend",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -11555,7 +11555,7 @@
}
},
{
- "HashCode": -192648861,
+ "HashCode": 1264249827,
"Kind": "Components.EventHandler",
"Name": "onprogress",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -11638,7 +11638,7 @@
}
},
{
- "HashCode": -1298114188,
+ "HashCode": -1592112729,
"Kind": "Components.EventHandler",
"Name": "onerror",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -11721,7 +11721,7 @@
}
},
{
- "HashCode": -1140746963,
+ "HashCode": 714942573,
"Kind": "Components.EventHandler",
"Name": "onactivate",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -11804,7 +11804,7 @@
}
},
{
- "HashCode": -1641536908,
+ "HashCode": 175043491,
"Kind": "Components.EventHandler",
"Name": "onbeforeactivate",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -11887,7 +11887,7 @@
}
},
{
- "HashCode": -134952408,
+ "HashCode": -1071089574,
"Kind": "Components.EventHandler",
"Name": "onbeforedeactivate",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -11970,7 +11970,7 @@
}
},
{
- "HashCode": 1994646917,
+ "HashCode": 1041261536,
"Kind": "Components.EventHandler",
"Name": "ondeactivate",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -12053,7 +12053,7 @@
}
},
{
- "HashCode": -19021631,
+ "HashCode": 402874852,
"Kind": "Components.EventHandler",
"Name": "onended",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -12136,7 +12136,7 @@
}
},
{
- "HashCode": 1022827052,
+ "HashCode": 2104869655,
"Kind": "Components.EventHandler",
"Name": "onfullscreenchange",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -12219,7 +12219,7 @@
}
},
{
- "HashCode": -121193265,
+ "HashCode": -1637753692,
"Kind": "Components.EventHandler",
"Name": "onfullscreenerror",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -12302,7 +12302,7 @@
}
},
{
- "HashCode": -348467637,
+ "HashCode": 1973493245,
"Kind": "Components.EventHandler",
"Name": "onloadeddata",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -12385,7 +12385,7 @@
}
},
{
- "HashCode": -1661888889,
+ "HashCode": -2054946683,
"Kind": "Components.EventHandler",
"Name": "onloadedmetadata",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -12468,7 +12468,7 @@
}
},
{
- "HashCode": -27955929,
+ "HashCode": 1132740491,
"Kind": "Components.EventHandler",
"Name": "onpointerlockchange",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -12551,7 +12551,7 @@
}
},
{
- "HashCode": -1310138109,
+ "HashCode": 981640992,
"Kind": "Components.EventHandler",
"Name": "onpointerlockerror",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -12634,7 +12634,7 @@
}
},
{
- "HashCode": -1247630458,
+ "HashCode": 1981590003,
"Kind": "Components.EventHandler",
"Name": "onreadystatechange",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -12717,7 +12717,7 @@
}
},
{
- "HashCode": 1558495793,
+ "HashCode": 1867125963,
"Kind": "Components.EventHandler",
"Name": "onscroll",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -12800,7 +12800,7 @@
}
},
{
- "HashCode": 1715192494,
+ "HashCode": -386338035,
"Kind": "Components.EventHandler",
"Name": "ontoggle",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -12883,7 +12883,7 @@
}
},
{
- "HashCode": 1712098314,
+ "HashCode": 1643633704,
"Kind": "Components.Splat",
"Name": "Attributes",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -12922,7 +12922,7 @@
}
},
{
- "HashCode": -23427618,
+ "HashCode": 1522283043,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.Razor",
@@ -13239,7 +13239,7 @@
}
},
{
- "HashCode": -1047147051,
+ "HashCode": -1188696717,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -13438,7 +13438,7 @@
}
},
{
- "HashCode": 1984029497,
+ "HashCode": 1248325294,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.CacheTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -13567,7 +13567,7 @@
}
},
{
- "HashCode": 1181141961,
+ "HashCode": 1189247706,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ComponentTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -13624,7 +13624,7 @@
}
},
{
- "HashCode": -117733956,
+ "HashCode": -184813095,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.DistributedCacheTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -13758,7 +13758,7 @@
}
},
{
- "HashCode": -988027223,
+ "HashCode": 990601747,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.EnvironmentTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -13806,7 +13806,7 @@
}
},
{
- "HashCode": -316199059,
+ "HashCode": -384270010,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.FormActionTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -14225,7 +14225,7 @@
}
},
{
- "HashCode": -1633686236,
+ "HashCode": -650085779,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -14329,7 +14329,7 @@
}
},
{
- "HashCode": 1752372468,
+ "HashCode": -1988789950,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ImageTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -14377,7 +14377,7 @@
}
},
{
- "HashCode": -730293354,
+ "HashCode": -373015068,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -14449,7 +14449,7 @@
}
},
{
- "HashCode": 157421013,
+ "HashCode": -1085958041,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.LabelTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -14484,7 +14484,7 @@
}
},
{
- "HashCode": -1135709469,
+ "HashCode": -1682593932,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.LinkTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -14682,7 +14682,7 @@
}
},
{
- "HashCode": 266820658,
+ "HashCode": -776929477,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -14712,7 +14712,7 @@
}
},
{
- "HashCode": -593907616,
+ "HashCode": -392609734,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.PartialTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -14795,7 +14795,7 @@
}
},
{
- "HashCode": 1220067386,
+ "HashCode": 1201539622,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.PersistComponentStateTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -14826,7 +14826,7 @@
}
},
{
- "HashCode": -529131065,
+ "HashCode": 1007827883,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -14981,7 +14981,7 @@
}
},
{
- "HashCode": -295110026,
+ "HashCode": -2006746894,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.SelectTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -15042,7 +15042,7 @@
}
},
{
- "HashCode": 240343637,
+ "HashCode": -756732277,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.TextAreaTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -15086,7 +15086,7 @@
}
},
{
- "HashCode": -1980283352,
+ "HashCode": 1842784575,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ValidationMessageTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -15121,7 +15121,7 @@
}
},
{
- "HashCode": 1050992622,
+ "HashCode": -1749895783,
"Kind": "ITagHelper",
"Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ValidationSummaryTagHelper",
"AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers",
@@ -15157,7 +15157,7 @@
}
},
{
- "HashCode": -2122087380,
+ "HashCode": -196470533,
"Kind": "Components.Bind",
"Name": "Bind",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -15253,7 +15253,7 @@
}
},
{
- "HashCode": 2133999824,
+ "HashCode": -5862540,
"Kind": "Components.Bind",
"Name": "Bind",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -15375,7 +15375,7 @@
}
},
{
- "HashCode": 1953584632,
+ "HashCode": 1396306368,
"Kind": "Components.Bind",
"Name": "Bind_value",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -15497,7 +15497,7 @@
}
},
{
- "HashCode": -1816057673,
+ "HashCode": 1833236185,
"Kind": "Components.Bind",
"Name": "Bind",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -15630,7 +15630,7 @@
}
},
{
- "HashCode": 320462892,
+ "HashCode": 1402386106,
"Kind": "Components.Bind",
"Name": "Bind",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -15763,7 +15763,7 @@
}
},
{
- "HashCode": 356145604,
+ "HashCode": -1685499713,
"Kind": "Components.Bind",
"Name": "Bind",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -15896,7 +15896,7 @@
}
},
{
- "HashCode": 1541407490,
+ "HashCode": 2037003133,
"Kind": "Components.Bind",
"Name": "Bind_value",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -16029,7 +16029,7 @@
}
},
{
- "HashCode": 1243446179,
+ "HashCode": 1976514717,
"Kind": "Components.Bind",
"Name": "Bind",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -16162,7 +16162,7 @@
}
},
{
- "HashCode": 1506666834,
+ "HashCode": -1970739783,
"Kind": "Components.Bind",
"Name": "Bind_value",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -16295,7 +16295,7 @@
}
},
{
- "HashCode": -1216614224,
+ "HashCode": -1563600333,
"Kind": "Components.Bind",
"Name": "Bind",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -16428,7 +16428,7 @@
}
},
{
- "HashCode": 270308137,
+ "HashCode": -2007279156,
"Kind": "Components.Bind",
"Name": "Bind_value",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -16561,7 +16561,7 @@
}
},
{
- "HashCode": -1503920233,
+ "HashCode": -2100337193,
"Kind": "Components.Bind",
"Name": "Bind",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -16694,7 +16694,7 @@
}
},
{
- "HashCode": 1934295320,
+ "HashCode": 53273015,
"Kind": "Components.Bind",
"Name": "Bind_value",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -16827,7 +16827,7 @@
}
},
{
- "HashCode": -1748416181,
+ "HashCode": -823865740,
"Kind": "Components.Bind",
"Name": "Bind",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -16960,7 +16960,7 @@
}
},
{
- "HashCode": 358506155,
+ "HashCode": -106624514,
"Kind": "Components.Bind",
"Name": "Bind_value",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -17093,7 +17093,7 @@
}
},
{
- "HashCode": 1823546209,
+ "HashCode": 2081998992,
"Kind": "Components.Bind",
"Name": "Bind",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -17215,7 +17215,7 @@
}
},
{
- "HashCode": 1256225732,
+ "HashCode": 2072085029,
"Kind": "Components.Bind",
"Name": "Bind",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -17337,7 +17337,7 @@
}
},
{
- "HashCode": 362141290,
+ "HashCode": -637276283,
"Kind": "Components.Bind",
"Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -17424,7 +17424,7 @@
}
},
{
- "HashCode": -1817827902,
+ "HashCode": -553244866,
"Kind": "Components.Bind",
"Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -17512,7 +17512,7 @@
}
},
{
- "HashCode": -943383549,
+ "HashCode": 1910152205,
"Kind": "Components.Bind",
"Name": "Microsoft.AspNetCore.Components.Forms.InputDate",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -17599,7 +17599,7 @@
}
},
{
- "HashCode": -1478803341,
+ "HashCode": 617407331,
"Kind": "Components.Bind",
"Name": "Microsoft.AspNetCore.Components.Forms.InputDate",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -17687,7 +17687,7 @@
}
},
{
- "HashCode": -2099389437,
+ "HashCode": -1265891958,
"Kind": "Components.Bind",
"Name": "Microsoft.AspNetCore.Components.Forms.InputNumber",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -17774,7 +17774,7 @@
}
},
{
- "HashCode": 373374362,
+ "HashCode": -849422180,
"Kind": "Components.Bind",
"Name": "Microsoft.AspNetCore.Components.Forms.InputNumber",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -17862,7 +17862,7 @@
}
},
{
- "HashCode": -715318771,
+ "HashCode": 650741712,
"Kind": "Components.Bind",
"Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -17949,7 +17949,7 @@
}
},
{
- "HashCode": -1237684739,
+ "HashCode": 1269188248,
"Kind": "Components.Bind",
"Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -18037,7 +18037,7 @@
}
},
{
- "HashCode": 37869711,
+ "HashCode": 1070713786,
"Kind": "Components.Bind",
"Name": "Microsoft.AspNetCore.Components.Forms.InputSelect",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -18124,7 +18124,7 @@
}
},
{
- "HashCode": -971873255,
+ "HashCode": 1317442859,
"Kind": "Components.Bind",
"Name": "Microsoft.AspNetCore.Components.Forms.InputSelect",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -18212,7 +18212,7 @@
}
},
{
- "HashCode": -299235820,
+ "HashCode": -2095734839,
"Kind": "Components.Bind",
"Name": "Microsoft.AspNetCore.Components.Forms.InputText",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -18299,7 +18299,7 @@
}
},
{
- "HashCode": -1269626639,
+ "HashCode": -1972673848,
"Kind": "Components.Bind",
"Name": "Microsoft.AspNetCore.Components.Forms.InputText",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -18387,7 +18387,7 @@
}
},
{
- "HashCode": -2093681161,
+ "HashCode": 1628487756,
"Kind": "Components.Bind",
"Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -18474,7 +18474,7 @@
}
},
{
- "HashCode": -22222857,
+ "HashCode": 208849587,
"Kind": "Components.Bind",
"Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea",
"AssemblyName": "Microsoft.AspNetCore.Components.Web",
@@ -18562,7 +18562,7 @@
}
},
{
- "HashCode": -929176337,
+ "HashCode": -39746375,
"Kind": "Components.Ref",
"Name": "Ref",
"AssemblyName": "Microsoft.AspNetCore.Components",
@@ -18601,7 +18601,7 @@
}
},
{
- "HashCode": 34047236,
+ "HashCode": -251525573,
"Kind": "Components.Key",
"Name": "Key",
"AssemblyName": "Microsoft.AspNetCore.Components",
diff --git a/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/ref/AAIntegration.SimmonsBank.API.dll b/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/ref/AAIntegration.SimmonsBank.API.dll
index ec50680..f7d49f1 100644
Binary files a/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/ref/AAIntegration.SimmonsBank.API.dll and b/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/ref/AAIntegration.SimmonsBank.API.dll differ
diff --git a/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/refint/AAIntegration.SimmonsBank.API.dll b/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/refint/AAIntegration.SimmonsBank.API.dll
index ec50680..f7d49f1 100644
Binary files a/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/refint/AAIntegration.SimmonsBank.API.dll and b/AAIntegration.SimmonsBank.API/obj/Debug/net7.0/refint/AAIntegration.SimmonsBank.API.dll differ
diff --git a/AAIntegration.SimmonsBank.API/obj/project.assets.json b/AAIntegration.SimmonsBank.API/obj/project.assets.json
index 45bf0e2..a27ef08 100644
--- a/AAIntegration.SimmonsBank.API/obj/project.assets.json
+++ b/AAIntegration.SimmonsBank.API/obj/project.assets.json
@@ -2,6 +2,50 @@
"version": 3,
"targets": {
"net7.0": {
+ "Humanizer.Core/2.14.1": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/Humanizer.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Authorization/7.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.AspNetCore.Metadata": "7.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "7.0.0",
+ "Microsoft.Extensions.Options": "7.0.0"
+ },
+ "compile": {
+ "lib/net7.0/Microsoft.AspNetCore.Authorization.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Microsoft.AspNetCore.Authorization.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Metadata/7.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net7.0/Microsoft.AspNetCore.Metadata.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Microsoft.AspNetCore.Metadata.dll": {
+ "related": ".xml"
+ }
+ }
+ },
"Microsoft.AspNetCore.OpenApi/7.0.15": {
"type": "package",
"dependencies": {
@@ -21,6 +65,90 @@
"Microsoft.AspNetCore.App"
]
},
+ "Microsoft.EntityFrameworkCore/7.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.EntityFrameworkCore.Abstractions": "7.0.0",
+ "Microsoft.EntityFrameworkCore.Analyzers": "7.0.0",
+ "Microsoft.Extensions.Caching.Memory": "7.0.0",
+ "Microsoft.Extensions.DependencyInjection": "7.0.0",
+ "Microsoft.Extensions.Logging": "7.0.0"
+ },
+ "compile": {
+ "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.EntityFrameworkCore.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/Microsoft.EntityFrameworkCore.props": {}
+ }
+ },
+ "Microsoft.EntityFrameworkCore.Abstractions/7.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.EntityFrameworkCore.Analyzers/7.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/_._": {}
+ }
+ },
+ "Microsoft.EntityFrameworkCore.Design/7.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Humanizer.Core": "2.14.1",
+ "Microsoft.EntityFrameworkCore.Relational": "7.0.0",
+ "Microsoft.Extensions.DependencyModel": "7.0.0",
+ "Mono.TextTemplating": "2.2.1"
+ },
+ "compile": {
+ "lib/net6.0/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "build/net6.0/Microsoft.EntityFrameworkCore.Design.props": {}
+ }
+ },
+ "Microsoft.EntityFrameworkCore.Relational/7.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.EntityFrameworkCore": "7.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "7.0.0"
+ },
+ "compile": {
+ "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": {
+ "related": ".xml"
+ }
+ }
+ },
"Microsoft.Extensions.ApiDescription.Server/6.0.5": {
"type": "package",
"build": {
@@ -32,6 +160,241 @@
"buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {}
}
},
+ "Microsoft.Extensions.Caching.Abstractions/7.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "7.0.0"
+ },
+ "compile": {
+ "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.Caching.Memory/7.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Caching.Abstractions": "7.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "7.0.0",
+ "Microsoft.Extensions.Options": "7.0.0",
+ "Microsoft.Extensions.Primitives": "7.0.0"
+ },
+ "compile": {
+ "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/7.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "7.0.0"
+ },
+ "compile": {
+ "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/7.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0"
+ },
+ "compile": {
+ "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.DependencyModel/7.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Text.Encodings.Web": "7.0.0",
+ "System.Text.Json": "7.0.0"
+ },
+ "compile": {
+ "lib/net7.0/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Microsoft.Extensions.DependencyModel.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.Logging/7.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection": "7.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "7.0.0",
+ "Microsoft.Extensions.Options": "7.0.0"
+ },
+ "compile": {
+ "lib/net7.0/Microsoft.Extensions.Logging.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Microsoft.Extensions.Logging.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/7.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
+ }
+ },
+ "Microsoft.Extensions.Options/7.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0",
+ "Microsoft.Extensions.Primitives": "7.0.0"
+ },
+ "compile": {
+ "lib/net7.0/Microsoft.Extensions.Options.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Microsoft.Extensions.Options.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.Extensions.Primitives/7.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net7.0/Microsoft.Extensions.Primitives.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Microsoft.Extensions.Primitives.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ }
+ },
+ "Microsoft.IdentityModel.Abstractions/7.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.Logging/7.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.IdentityModel.Abstractions": "7.0.0"
+ },
+ "compile": {
+ "lib/net6.0/Microsoft.IdentityModel.Logging.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.IdentityModel.Logging.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.Tokens/7.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.IdentityModel.Logging": "7.0.0"
+ },
+ "compile": {
+ "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": {
+ "related": ".xml"
+ }
+ }
+ },
"Microsoft.OpenApi/1.4.3": {
"type": "package",
"compile": {
@@ -45,6 +408,54 @@
}
}
},
+ "Mono.TextTemplating/2.2.1": {
+ "type": "package",
+ "dependencies": {
+ "System.CodeDom": "4.4.0"
+ },
+ "compile": {
+ "lib/netstandard2.0/_._": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/Mono.TextTemplating.dll": {}
+ }
+ },
+ "Npgsql/7.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.Extensions.Logging.Abstractions": "6.0.0",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ },
+ "compile": {
+ "lib/net7.0/Npgsql.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Npgsql.dll": {
+ "related": ".xml"
+ }
+ }
+ },
+ "Npgsql.EntityFrameworkCore.PostgreSQL/7.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Microsoft.EntityFrameworkCore": "[7.0.0, 8.0.0)",
+ "Microsoft.EntityFrameworkCore.Abstractions": "[7.0.0, 8.0.0)",
+ "Microsoft.EntityFrameworkCore.Relational": "[7.0.0, 8.0.0)",
+ "Npgsql": "7.0.0"
+ },
+ "compile": {
+ "lib/net7.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {
+ "related": ".xml"
+ }
+ }
+ },
"Swashbuckle.AspNetCore/6.5.0": {
"type": "package",
"dependencies": {
@@ -107,10 +518,134 @@
"frameworkReferences": [
"Microsoft.AspNetCore.App"
]
+ },
+ "System.CodeDom/4.4.0": {
+ "type": "package",
+ "compile": {
+ "ref/netstandard2.0/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netstandard2.0/System.CodeDom.dll": {}
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe/6.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/netcoreapp3.1/_._": {}
+ }
+ },
+ "System.Text.Encodings.Web/7.0.0": {
+ "type": "package",
+ "compile": {
+ "lib/net7.0/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/System.Text.Encodings.Web.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/_._": {}
+ },
+ "runtimeTargets": {
+ "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll": {
+ "assetType": "runtime",
+ "rid": "browser"
+ }
+ }
+ },
+ "System.Text.Json/7.0.0": {
+ "type": "package",
+ "dependencies": {
+ "System.Text.Encodings.Web": "7.0.0"
+ },
+ "compile": {
+ "lib/net7.0/_._": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/net7.0/System.Text.Json.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "buildTransitive/net6.0/System.Text.Json.targets": {}
+ }
}
}
},
"libraries": {
+ "Humanizer.Core/2.14.1": {
+ "sha512": "lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==",
+ "type": "package",
+ "path": "humanizer.core/2.14.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "humanizer.core.2.14.1.nupkg.sha512",
+ "humanizer.core.nuspec",
+ "lib/net6.0/Humanizer.dll",
+ "lib/net6.0/Humanizer.xml",
+ "lib/netstandard1.0/Humanizer.dll",
+ "lib/netstandard1.0/Humanizer.xml",
+ "lib/netstandard2.0/Humanizer.dll",
+ "lib/netstandard2.0/Humanizer.xml",
+ "logo.png"
+ ]
+ },
+ "Microsoft.AspNetCore.Authorization/7.0.0": {
+ "sha512": "0O7C7XHj+17Q0geMpnpRC0fnnALH2Yhaa2SAzX00OkeF2NZ/+zWoDymbSnepg1qhueufUivihZiVGtMeq5Zywg==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.authorization/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net462/Microsoft.AspNetCore.Authorization.dll",
+ "lib/net462/Microsoft.AspNetCore.Authorization.xml",
+ "lib/net7.0/Microsoft.AspNetCore.Authorization.dll",
+ "lib/net7.0/Microsoft.AspNetCore.Authorization.xml",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml",
+ "microsoft.aspnetcore.authorization.7.0.0.nupkg.sha512",
+ "microsoft.aspnetcore.authorization.nuspec"
+ ]
+ },
+ "Microsoft.AspNetCore.Metadata/7.0.0": {
+ "sha512": "ut2azlKz7BQpCKu6AiwKEjMHpRWoD4qu2Ff/n6KagjFsyDAfZY7lgYJ158vr4O0jXet6pV1uF1q3jmXvki0OlA==",
+ "type": "package",
+ "path": "microsoft.aspnetcore.metadata/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net462/Microsoft.AspNetCore.Metadata.dll",
+ "lib/net462/Microsoft.AspNetCore.Metadata.xml",
+ "lib/net7.0/Microsoft.AspNetCore.Metadata.dll",
+ "lib/net7.0/Microsoft.AspNetCore.Metadata.xml",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll",
+ "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.xml",
+ "microsoft.aspnetcore.metadata.7.0.0.nupkg.sha512",
+ "microsoft.aspnetcore.metadata.nuspec"
+ ]
+ },
"Microsoft.AspNetCore.OpenApi/7.0.15": {
"sha512": "5AnwJuy7lBaoDhos9SYzLxsGO/s8LsAnP1DR0JSUp1zGzBGnHJEgT4IafAk24PnveKgkiVwh77t5+dU652rwxA==",
"type": "package",
@@ -126,6 +661,78 @@
"microsoft.aspnetcore.openapi.nuspec"
]
},
+ "Microsoft.EntityFrameworkCore/7.0.0": {
+ "sha512": "9W+IfmAzMrp2ZpKZLhgTlWljSBM9Erldis1us61DAGi+L7Q6vilTbe1G2zDxtYO8F2H0I0Qnupdx5Cp4s2xoZw==",
+ "type": "package",
+ "path": "microsoft.entityframeworkcore/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "buildTransitive/net6.0/Microsoft.EntityFrameworkCore.props",
+ "lib/net6.0/Microsoft.EntityFrameworkCore.dll",
+ "lib/net6.0/Microsoft.EntityFrameworkCore.xml",
+ "microsoft.entityframeworkcore.7.0.0.nupkg.sha512",
+ "microsoft.entityframeworkcore.nuspec"
+ ]
+ },
+ "Microsoft.EntityFrameworkCore.Abstractions/7.0.0": {
+ "sha512": "Pfu3Zjj5+d2Gt27oE9dpGiF/VobBB+s5ogrfI9sBsXQE1SG49RqVz5+IyeNnzhyejFrPIQsPDRMchhcojy4Hbw==",
+ "type": "package",
+ "path": "microsoft.entityframeworkcore.abstractions/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll",
+ "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
+ "microsoft.entityframeworkcore.abstractions.7.0.0.nupkg.sha512",
+ "microsoft.entityframeworkcore.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.EntityFrameworkCore.Analyzers/7.0.0": {
+ "sha512": "Qkd2H+jLe37o5ku+LjT6qf7kAHY75Yfn2bBDQgqr13DTOLYpEy1Mt93KPFjaZvIu/srEcbfGGMRL7urKm5zN8Q==",
+ "type": "package",
+ "path": "microsoft.entityframeworkcore.analyzers/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll",
+ "lib/netstandard2.0/_._",
+ "microsoft.entityframeworkcore.analyzers.7.0.0.nupkg.sha512",
+ "microsoft.entityframeworkcore.analyzers.nuspec"
+ ]
+ },
+ "Microsoft.EntityFrameworkCore.Design/7.0.0": {
+ "sha512": "fEEU/zZ/VblZRQxHNZxgGKVtEtOGqEAmuHkACV1i0H031bM8PQKTS7PlKPVOgg0C1v+6yeHoIAGGgbAvG9f7kw==",
+ "type": "package",
+ "path": "microsoft.entityframeworkcore.design/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "build/net6.0/Microsoft.EntityFrameworkCore.Design.props",
+ "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll",
+ "lib/net6.0/Microsoft.EntityFrameworkCore.Design.xml",
+ "microsoft.entityframeworkcore.design.7.0.0.nupkg.sha512",
+ "microsoft.entityframeworkcore.design.nuspec"
+ ]
+ },
+ "Microsoft.EntityFrameworkCore.Relational/7.0.0": {
+ "sha512": "eQiYygtR2xZ0Uy7KtiFRHpoEx/U8xNwbNRgu1pEJgSxbJLtg6tDL1y2YcIbSuIRSNEljXIIHq/apEhGm1QL70g==",
+ "type": "package",
+ "path": "microsoft.entityframeworkcore.relational/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll",
+ "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.xml",
+ "microsoft.entityframeworkcore.relational.7.0.0.nupkg.sha512",
+ "microsoft.entityframeworkcore.relational.nuspec"
+ ]
+ },
"Microsoft.Extensions.ApiDescription.Server/6.0.5": {
"sha512": "Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==",
"type": "package",
@@ -357,6 +964,397 @@
"tools/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll"
]
},
+ "Microsoft.Extensions.Caching.Abstractions/7.0.0": {
+ "sha512": "IeimUd0TNbhB4ded3AbgBLQv2SnsiVugDyGV1MvspQFVlA07nDC7Zul7kcwH5jWN3JiTcp/ySE83AIJo8yfKjg==",
+ "type": "package",
+ "path": "microsoft.extensions.caching.abstractions/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets",
+ "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll",
+ "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml",
+ "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.dll",
+ "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.xml",
+ "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll",
+ "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml",
+ "microsoft.extensions.caching.abstractions.7.0.0.nupkg.sha512",
+ "microsoft.extensions.caching.abstractions.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.Caching.Memory/7.0.0": {
+ "sha512": "xpidBs2KCE2gw1JrD0quHE72kvCaI3xFql5/Peb2GRtUuZX+dYPoK/NTdVMiM67Svym0M0Df9A3xyU0FbMQhHw==",
+ "type": "package",
+ "path": "microsoft.extensions.caching.memory/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets",
+ "lib/net462/Microsoft.Extensions.Caching.Memory.dll",
+ "lib/net462/Microsoft.Extensions.Caching.Memory.xml",
+ "lib/net6.0/Microsoft.Extensions.Caching.Memory.dll",
+ "lib/net6.0/Microsoft.Extensions.Caching.Memory.xml",
+ "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll",
+ "lib/net7.0/Microsoft.Extensions.Caching.Memory.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml",
+ "microsoft.extensions.caching.memory.7.0.0.nupkg.sha512",
+ "microsoft.extensions.caching.memory.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/7.0.0": {
+ "sha512": "f34u2eaqIjNO9YLHBz8rozVZ+TcFiFs0F3r7nUJd7FRkVSxk8u4OpoK226mi49MwexHOR2ibP9MFvRUaLilcQQ==",
+ "type": "package",
+ "path": "microsoft.extensions.configuration.abstractions/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets",
+ "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll",
+ "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml",
+ "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll",
+ "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml",
+ "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll",
+ "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
+ "microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512",
+ "microsoft.extensions.configuration.abstractions.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.DependencyInjection/7.0.0": {
+ "sha512": "elNeOmkeX3eDVG6pYVeV82p29hr+UKDaBhrZyWvWLw/EVZSYEkZlQdkp0V39k/Xehs2Qa0mvoCvkVj3eQxNQ1Q==",
+ "type": "package",
+ "path": "microsoft.extensions.dependencyinjection/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets",
+ "lib/net462/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/net462/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
+ "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
+ "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
+ "microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512",
+ "microsoft.extensions.dependencyinjection.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {
+ "sha512": "h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==",
+ "type": "package",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
+ "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
+ "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
+ "microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512",
+ "microsoft.extensions.dependencyinjection.abstractions.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.DependencyModel/7.0.0": {
+ "sha512": "oONNYd71J3LzkWc4fUHl3SvMfiQMYUCo/mDHDEu76hYYxdhdrPYv6fvGv9nnKVyhE9P0h20AU8RZB5OOWQcAXg==",
+ "type": "package",
+ "path": "microsoft.extensions.dependencymodel/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "README.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets",
+ "lib/net462/Microsoft.Extensions.DependencyModel.dll",
+ "lib/net462/Microsoft.Extensions.DependencyModel.xml",
+ "lib/net6.0/Microsoft.Extensions.DependencyModel.dll",
+ "lib/net6.0/Microsoft.Extensions.DependencyModel.xml",
+ "lib/net7.0/Microsoft.Extensions.DependencyModel.dll",
+ "lib/net7.0/Microsoft.Extensions.DependencyModel.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml",
+ "microsoft.extensions.dependencymodel.7.0.0.nupkg.sha512",
+ "microsoft.extensions.dependencymodel.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.Logging/7.0.0": {
+ "sha512": "Nw2muoNrOG5U5qa2ZekXwudUn2BJcD41e65zwmDHb1fQegTX66UokLWZkJRpqSSHXDOWZ5V0iqhbxOEky91atA==",
+ "type": "package",
+ "path": "microsoft.extensions.logging/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.Logging.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets",
+ "lib/net462/Microsoft.Extensions.Logging.dll",
+ "lib/net462/Microsoft.Extensions.Logging.xml",
+ "lib/net6.0/Microsoft.Extensions.Logging.dll",
+ "lib/net6.0/Microsoft.Extensions.Logging.xml",
+ "lib/net7.0/Microsoft.Extensions.Logging.dll",
+ "lib/net7.0/Microsoft.Extensions.Logging.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
+ "lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
+ "lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
+ "microsoft.extensions.logging.7.0.0.nupkg.sha512",
+ "microsoft.extensions.logging.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.Logging.Abstractions/7.0.0": {
+ "sha512": "kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==",
+ "type": "package",
+ "path": "microsoft.extensions.logging.abstractions/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
+ "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
+ "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll",
+ "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
+ "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets",
+ "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets",
+ "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
+ "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets",
+ "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml",
+ "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
+ "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
+ "microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512",
+ "microsoft.extensions.logging.abstractions.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.Options/7.0.0": {
+ "sha512": "lP1yBnTTU42cKpMozuafbvNtQ7QcBjr/CcK3bYOGEMH55Fjt+iecXjT6chR7vbgCMqy3PG3aNQSZgo/EuY/9qQ==",
+ "type": "package",
+ "path": "microsoft.extensions.options/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.Options.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets",
+ "lib/net462/Microsoft.Extensions.Options.dll",
+ "lib/net462/Microsoft.Extensions.Options.xml",
+ "lib/net6.0/Microsoft.Extensions.Options.dll",
+ "lib/net6.0/Microsoft.Extensions.Options.xml",
+ "lib/net7.0/Microsoft.Extensions.Options.dll",
+ "lib/net7.0/Microsoft.Extensions.Options.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Options.xml",
+ "lib/netstandard2.1/Microsoft.Extensions.Options.dll",
+ "lib/netstandard2.1/Microsoft.Extensions.Options.xml",
+ "microsoft.extensions.options.7.0.0.nupkg.sha512",
+ "microsoft.extensions.options.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.Extensions.Primitives/7.0.0": {
+ "sha512": "um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==",
+ "type": "package",
+ "path": "microsoft.extensions.primitives/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/Microsoft.Extensions.Primitives.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets",
+ "lib/net462/Microsoft.Extensions.Primitives.dll",
+ "lib/net462/Microsoft.Extensions.Primitives.xml",
+ "lib/net6.0/Microsoft.Extensions.Primitives.dll",
+ "lib/net6.0/Microsoft.Extensions.Primitives.xml",
+ "lib/net7.0/Microsoft.Extensions.Primitives.dll",
+ "lib/net7.0/Microsoft.Extensions.Primitives.xml",
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
+ "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
+ "microsoft.extensions.primitives.7.0.0.nupkg.sha512",
+ "microsoft.extensions.primitives.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "Microsoft.IdentityModel.Abstractions/7.0.0": {
+ "sha512": "7iSWSRR72VKeonFdfDi43Lvkca98Y0F3TmmWhRSuHbkjk/IKUSO0Qd272LQFZpi5eDNQNbUXy3o4THXhOAU6cw==",
+ "type": "package",
+ "path": "microsoft.identitymodel.abstractions/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net461/Microsoft.IdentityModel.Abstractions.dll",
+ "lib/net461/Microsoft.IdentityModel.Abstractions.xml",
+ "lib/net462/Microsoft.IdentityModel.Abstractions.dll",
+ "lib/net462/Microsoft.IdentityModel.Abstractions.xml",
+ "lib/net472/Microsoft.IdentityModel.Abstractions.dll",
+ "lib/net472/Microsoft.IdentityModel.Abstractions.xml",
+ "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll",
+ "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml",
+ "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll",
+ "lib/net8.0/Microsoft.IdentityModel.Abstractions.xml",
+ "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll",
+ "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml",
+ "microsoft.identitymodel.abstractions.7.0.0.nupkg.sha512",
+ "microsoft.identitymodel.abstractions.nuspec"
+ ]
+ },
+ "Microsoft.IdentityModel.Logging/7.0.0": {
+ "sha512": "6I35Kt2/PQZAyUYLo3+QgT/LubZ5/4Ojelkbyo8KKdDgjMbVocAx2B3P5V7iMCz+rsAe/RLr6ql87QKnHtI+aw==",
+ "type": "package",
+ "path": "microsoft.identitymodel.logging/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net461/Microsoft.IdentityModel.Logging.dll",
+ "lib/net461/Microsoft.IdentityModel.Logging.xml",
+ "lib/net462/Microsoft.IdentityModel.Logging.dll",
+ "lib/net462/Microsoft.IdentityModel.Logging.xml",
+ "lib/net472/Microsoft.IdentityModel.Logging.dll",
+ "lib/net472/Microsoft.IdentityModel.Logging.xml",
+ "lib/net6.0/Microsoft.IdentityModel.Logging.dll",
+ "lib/net6.0/Microsoft.IdentityModel.Logging.xml",
+ "lib/net8.0/Microsoft.IdentityModel.Logging.dll",
+ "lib/net8.0/Microsoft.IdentityModel.Logging.xml",
+ "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll",
+ "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml",
+ "microsoft.identitymodel.logging.7.0.0.nupkg.sha512",
+ "microsoft.identitymodel.logging.nuspec"
+ ]
+ },
+ "Microsoft.IdentityModel.Tokens/7.0.0": {
+ "sha512": "dxYqmmFLsjBQZ6F6a4XDzrZ1CTxBRFVigJvWiNtXiIsT6UlYMxs9ONMaGx9XKzcxmcgEQ2ADuCqKZduz0LR9Hw==",
+ "type": "package",
+ "path": "microsoft.identitymodel.tokens/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net461/Microsoft.IdentityModel.Tokens.dll",
+ "lib/net461/Microsoft.IdentityModel.Tokens.xml",
+ "lib/net462/Microsoft.IdentityModel.Tokens.dll",
+ "lib/net462/Microsoft.IdentityModel.Tokens.xml",
+ "lib/net472/Microsoft.IdentityModel.Tokens.dll",
+ "lib/net472/Microsoft.IdentityModel.Tokens.xml",
+ "lib/net6.0/Microsoft.IdentityModel.Tokens.dll",
+ "lib/net6.0/Microsoft.IdentityModel.Tokens.xml",
+ "lib/net8.0/Microsoft.IdentityModel.Tokens.dll",
+ "lib/net8.0/Microsoft.IdentityModel.Tokens.xml",
+ "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll",
+ "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml",
+ "microsoft.identitymodel.tokens.7.0.0.nupkg.sha512",
+ "microsoft.identitymodel.tokens.nuspec"
+ ]
+ },
"Microsoft.OpenApi/1.4.3": {
"sha512": "rURwggB+QZYcSVbDr7HSdhw/FELvMlriW10OeOzjPT7pstefMo7IThhtNtDudxbXhW+lj0NfX72Ka5EDsG8x6w==",
"type": "package",
@@ -371,6 +1369,61 @@
"microsoft.openapi.nuspec"
]
},
+ "Mono.TextTemplating/2.2.1": {
+ "sha512": "KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==",
+ "type": "package",
+ "path": "mono.texttemplating/2.2.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net472/Mono.TextTemplating.dll",
+ "lib/netstandard2.0/Mono.TextTemplating.dll",
+ "mono.texttemplating.2.2.1.nupkg.sha512",
+ "mono.texttemplating.nuspec"
+ ]
+ },
+ "Npgsql/7.0.0": {
+ "sha512": "tOBFksJZ2MiEz8xtDUgS5IG19jVO3nSP15QDYWiiGpXHe0PsLoQBts2Sg3hHKrrLTuw+AjsJz9iKvvGNHyKDIg==",
+ "type": "package",
+ "path": "npgsql/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "README.md",
+ "lib/net5.0/Npgsql.dll",
+ "lib/net5.0/Npgsql.xml",
+ "lib/net6.0/Npgsql.dll",
+ "lib/net6.0/Npgsql.xml",
+ "lib/net7.0/Npgsql.dll",
+ "lib/net7.0/Npgsql.xml",
+ "lib/netcoreapp3.1/Npgsql.dll",
+ "lib/netcoreapp3.1/Npgsql.xml",
+ "lib/netstandard2.0/Npgsql.dll",
+ "lib/netstandard2.0/Npgsql.xml",
+ "lib/netstandard2.1/Npgsql.dll",
+ "lib/netstandard2.1/Npgsql.xml",
+ "npgsql.7.0.0.nupkg.sha512",
+ "npgsql.nuspec",
+ "postgresql.png"
+ ]
+ },
+ "Npgsql.EntityFrameworkCore.PostgreSQL/7.0.0": {
+ "sha512": "CyUNlFZmtX2Kmw8XK5Tlx5eVUCzWJ+zJHErxZiMo2Y8zCRuH9+/OMGwG+9Mmp5zD5p3Ifbi5Pp3btsqoDDkSZQ==",
+ "type": "package",
+ "path": "npgsql.entityframeworkcore.postgresql/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "README.md",
+ "lib/net6.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll",
+ "lib/net6.0/Npgsql.EntityFrameworkCore.PostgreSQL.xml",
+ "lib/net7.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll",
+ "lib/net7.0/Npgsql.EntityFrameworkCore.PostgreSQL.xml",
+ "npgsql.entityframeworkcore.postgresql.7.0.0.nupkg.sha512",
+ "npgsql.entityframeworkcore.postgresql.nuspec",
+ "postgresql.png"
+ ]
+ },
"Swashbuckle.AspNetCore/6.5.0": {
"sha512": "FK05XokgjgwlCI6wCT+D4/abtQkL1X1/B9Oas6uIwHFmYrIO9WUD5aLC9IzMs9GnHfUXOtXZ2S43gN1mhs5+aA==",
"type": "package",
@@ -460,11 +1513,164 @@
"swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512",
"swashbuckle.aspnetcore.swaggerui.nuspec"
]
+ },
+ "System.CodeDom/4.4.0": {
+ "sha512": "2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==",
+ "type": "package",
+ "path": "system.codedom/4.4.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "lib/net461/System.CodeDom.dll",
+ "lib/netstandard2.0/System.CodeDom.dll",
+ "ref/net461/System.CodeDom.dll",
+ "ref/net461/System.CodeDom.xml",
+ "ref/netstandard2.0/System.CodeDom.dll",
+ "ref/netstandard2.0/System.CodeDom.xml",
+ "system.codedom.4.4.0.nupkg.sha512",
+ "system.codedom.nuspec",
+ "useSharedDesignerContext.txt",
+ "version.txt"
+ ]
+ },
+ "System.Runtime.CompilerServices.Unsafe/6.0.0": {
+ "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
+ "type": "package",
+ "path": "system.runtime.compilerservices.unsafe/6.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets",
+ "buildTransitive/netcoreapp3.1/_._",
+ "lib/net461/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/net461/System.Runtime.CompilerServices.Unsafe.xml",
+ "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml",
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll",
+ "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml",
+ "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
+ "system.runtime.compilerservices.unsafe.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Text.Encodings.Web/7.0.0": {
+ "sha512": "OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==",
+ "type": "package",
+ "path": "system.text.encodings.web/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "THIRD-PARTY-NOTICES.TXT",
+ "buildTransitive/net461/System.Text.Encodings.Web.targets",
+ "buildTransitive/net462/_._",
+ "buildTransitive/net6.0/_._",
+ "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets",
+ "lib/net462/System.Text.Encodings.Web.dll",
+ "lib/net462/System.Text.Encodings.Web.xml",
+ "lib/net6.0/System.Text.Encodings.Web.dll",
+ "lib/net6.0/System.Text.Encodings.Web.xml",
+ "lib/net7.0/System.Text.Encodings.Web.dll",
+ "lib/net7.0/System.Text.Encodings.Web.xml",
+ "lib/netstandard2.0/System.Text.Encodings.Web.dll",
+ "lib/netstandard2.0/System.Text.Encodings.Web.xml",
+ "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll",
+ "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml",
+ "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll",
+ "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml",
+ "system.text.encodings.web.7.0.0.nupkg.sha512",
+ "system.text.encodings.web.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
+ },
+ "System.Text.Json/7.0.0": {
+ "sha512": "DaGSsVqKsn/ia6RG8frjwmJonfos0srquhw09TlT8KRw5I43E+4gs+/bZj4K0vShJ5H9imCuXupb4RmS+dBy3w==",
+ "type": "package",
+ "path": "system.text.json/7.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "Icon.png",
+ "LICENSE.TXT",
+ "README.md",
+ "THIRD-PARTY-NOTICES.TXT",
+ "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll",
+ "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll",
+ "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll",
+ "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll",
+ "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll",
+ "buildTransitive/net461/System.Text.Json.targets",
+ "buildTransitive/net462/System.Text.Json.targets",
+ "buildTransitive/net6.0/System.Text.Json.targets",
+ "buildTransitive/netcoreapp2.0/System.Text.Json.targets",
+ "buildTransitive/netstandard2.0/System.Text.Json.targets",
+ "lib/net462/System.Text.Json.dll",
+ "lib/net462/System.Text.Json.xml",
+ "lib/net6.0/System.Text.Json.dll",
+ "lib/net6.0/System.Text.Json.xml",
+ "lib/net7.0/System.Text.Json.dll",
+ "lib/net7.0/System.Text.Json.xml",
+ "lib/netstandard2.0/System.Text.Json.dll",
+ "lib/netstandard2.0/System.Text.Json.xml",
+ "system.text.json.7.0.0.nupkg.sha512",
+ "system.text.json.nuspec",
+ "useSharedDesignerContext.txt"
+ ]
}
},
"projectFileDependencyGroups": {
"net7.0": [
+ "Microsoft.AspNetCore.Authorization >= 7.0.0",
"Microsoft.AspNetCore.OpenApi >= 7.0.15",
+ "Microsoft.EntityFrameworkCore >= 7.0.0",
+ "Microsoft.EntityFrameworkCore.Design >= 7.0.0",
+ "Microsoft.IdentityModel.Tokens >= 7.0.0",
+ "Npgsql.EntityFrameworkCore.PostgreSQL >= 7.0.0",
"Swashbuckle.AspNetCore >= 6.5.0"
]
},
@@ -505,10 +1711,32 @@
"net7.0": {
"targetAlias": "net7.0",
"dependencies": {
+ "Microsoft.AspNetCore.Authorization": {
+ "target": "Package",
+ "version": "[7.0.0, )"
+ },
"Microsoft.AspNetCore.OpenApi": {
"target": "Package",
"version": "[7.0.15, )"
},
+ "Microsoft.EntityFrameworkCore": {
+ "target": "Package",
+ "version": "[7.0.0, )"
+ },
+ "Microsoft.EntityFrameworkCore.Design": {
+ "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive",
+ "suppressParent": "All",
+ "target": "Package",
+ "version": "[7.0.0, )"
+ },
+ "Microsoft.IdentityModel.Tokens": {
+ "target": "Package",
+ "version": "[7.0.0, )"
+ },
+ "Npgsql.EntityFrameworkCore.PostgreSQL": {
+ "target": "Package",
+ "version": "[7.0.0, )"
+ },
"Swashbuckle.AspNetCore": {
"target": "Package",
"version": "[6.5.0, )"
diff --git a/AAIntegration.SimmonsBank.API/obj/project.nuget.cache b/AAIntegration.SimmonsBank.API/obj/project.nuget.cache
index 7a7f10f..10f019e 100644
--- a/AAIntegration.SimmonsBank.API/obj/project.nuget.cache
+++ b/AAIntegration.SimmonsBank.API/obj/project.nuget.cache
@@ -1,16 +1,44 @@
{
"version": 2,
- "dgSpecHash": "XQrq5LBJp+1kT3+rj0AHhB8AHpRyUUUinZzEJ/+2HgUt/elY0PG2VzNm+fyVtUTHGtWNVXVkgTkQY4KV3eBuoQ==",
+ "dgSpecHash": "+YzPVm6dCqls1vMVNzEq7Me1vMtNZci2DFK/dzhgGd7F3oUcG2jW1uWdu7yR4roqWl4E1HzertAKQW8S2e71Yw==",
"success": true,
"projectFilePath": "/home/william/Git/Integration-TransactionImporter-SimmonsBank/AAIntegration.SimmonsBank.API/AAIntegration.SimmonsBank.API.csproj",
"expectedPackageFiles": [
+ "/home/william/.nuget/packages/humanizer.core/2.14.1/humanizer.core.2.14.1.nupkg.sha512",
+ "/home/william/.nuget/packages/microsoft.aspnetcore.authorization/7.0.0/microsoft.aspnetcore.authorization.7.0.0.nupkg.sha512",
+ "/home/william/.nuget/packages/microsoft.aspnetcore.metadata/7.0.0/microsoft.aspnetcore.metadata.7.0.0.nupkg.sha512",
"/home/william/.nuget/packages/microsoft.aspnetcore.openapi/7.0.15/microsoft.aspnetcore.openapi.7.0.15.nupkg.sha512",
+ "/home/william/.nuget/packages/microsoft.entityframeworkcore/7.0.0/microsoft.entityframeworkcore.7.0.0.nupkg.sha512",
+ "/home/william/.nuget/packages/microsoft.entityframeworkcore.abstractions/7.0.0/microsoft.entityframeworkcore.abstractions.7.0.0.nupkg.sha512",
+ "/home/william/.nuget/packages/microsoft.entityframeworkcore.analyzers/7.0.0/microsoft.entityframeworkcore.analyzers.7.0.0.nupkg.sha512",
+ "/home/william/.nuget/packages/microsoft.entityframeworkcore.design/7.0.0/microsoft.entityframeworkcore.design.7.0.0.nupkg.sha512",
+ "/home/william/.nuget/packages/microsoft.entityframeworkcore.relational/7.0.0/microsoft.entityframeworkcore.relational.7.0.0.nupkg.sha512",
"/home/william/.nuget/packages/microsoft.extensions.apidescription.server/6.0.5/microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512",
+ "/home/william/.nuget/packages/microsoft.extensions.caching.abstractions/7.0.0/microsoft.extensions.caching.abstractions.7.0.0.nupkg.sha512",
+ "/home/william/.nuget/packages/microsoft.extensions.caching.memory/7.0.0/microsoft.extensions.caching.memory.7.0.0.nupkg.sha512",
+ "/home/william/.nuget/packages/microsoft.extensions.configuration.abstractions/7.0.0/microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512",
+ "/home/william/.nuget/packages/microsoft.extensions.dependencyinjection/7.0.0/microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512",
+ "/home/william/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/7.0.0/microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512",
+ "/home/william/.nuget/packages/microsoft.extensions.dependencymodel/7.0.0/microsoft.extensions.dependencymodel.7.0.0.nupkg.sha512",
+ "/home/william/.nuget/packages/microsoft.extensions.logging/7.0.0/microsoft.extensions.logging.7.0.0.nupkg.sha512",
+ "/home/william/.nuget/packages/microsoft.extensions.logging.abstractions/7.0.0/microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512",
+ "/home/william/.nuget/packages/microsoft.extensions.options/7.0.0/microsoft.extensions.options.7.0.0.nupkg.sha512",
+ "/home/william/.nuget/packages/microsoft.extensions.primitives/7.0.0/microsoft.extensions.primitives.7.0.0.nupkg.sha512",
+ "/home/william/.nuget/packages/microsoft.identitymodel.abstractions/7.0.0/microsoft.identitymodel.abstractions.7.0.0.nupkg.sha512",
+ "/home/william/.nuget/packages/microsoft.identitymodel.logging/7.0.0/microsoft.identitymodel.logging.7.0.0.nupkg.sha512",
+ "/home/william/.nuget/packages/microsoft.identitymodel.tokens/7.0.0/microsoft.identitymodel.tokens.7.0.0.nupkg.sha512",
"/home/william/.nuget/packages/microsoft.openapi/1.4.3/microsoft.openapi.1.4.3.nupkg.sha512",
+ "/home/william/.nuget/packages/mono.texttemplating/2.2.1/mono.texttemplating.2.2.1.nupkg.sha512",
+ "/home/william/.nuget/packages/npgsql/7.0.0/npgsql.7.0.0.nupkg.sha512",
+ "/home/william/.nuget/packages/npgsql.entityframeworkcore.postgresql/7.0.0/npgsql.entityframeworkcore.postgresql.7.0.0.nupkg.sha512",
"/home/william/.nuget/packages/swashbuckle.aspnetcore/6.5.0/swashbuckle.aspnetcore.6.5.0.nupkg.sha512",
"/home/william/.nuget/packages/swashbuckle.aspnetcore.swagger/6.5.0/swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512",
"/home/william/.nuget/packages/swashbuckle.aspnetcore.swaggergen/6.5.0/swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512",
"/home/william/.nuget/packages/swashbuckle.aspnetcore.swaggerui/6.5.0/swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512",
+ "/home/william/.nuget/packages/system.codedom/4.4.0/system.codedom.4.4.0.nupkg.sha512",
+ "/home/william/.nuget/packages/system.runtime.compilerservices.unsafe/6.0.0/system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
+ "/home/william/.nuget/packages/system.text.encodings.web/7.0.0/system.text.encodings.web.7.0.0.nupkg.sha512",
+ "/home/william/.nuget/packages/system.text.json/7.0.0/system.text.json.7.0.0.nupkg.sha512",
"/home/william/.nuget/packages/microsoft.aspnetcore.app.ref/7.0.15/microsoft.aspnetcore.app.ref.7.0.15.nupkg.sha512"
],
"logs": []
diff --git a/README.md b/README.md
index bdbfd4b..7044722 100644
--- a/README.md
+++ b/README.md
@@ -18,4 +18,8 @@ When running pgAdmin (a container in the docker compose stack) if there are erro
You may also need to allow full rwx (Read, Write, and Execute) rights on the directory.
-```sudo chmod -R 777 ./Postgres/pg-admin_data```
\ No newline at end of file
+```sudo chmod -R 777 ./Postgres/pg-admin_data```
+
+## Namespace
+
+AAIntegration.SimmonsBank.API
\ No newline at end of file