diff --git a/backend/API/Middlewares/JwtMiddleware.cs b/backend/API/Middlewares/JwtMiddleware.cs
index 01de0ce..0e9a1c4 100644
--- a/backend/API/Middlewares/JwtMiddleware.cs
+++ b/backend/API/Middlewares/JwtMiddleware.cs
@@ -33,6 +33,7 @@ public class JwtMiddleware
else
{
var token = context.Request.Headers["Authorization"].FirstOrDefault()?.Split(" ").Last();
+ Console.WriteLine(token);
if (token != null && _jwtService.ValidateJwtToken(token))
{
await _next(context);
diff --git a/backend/API/Middlewares/log.txt b/backend/API/Middlewares/log.txt
new file mode 100644
index 0000000..6337f6e
--- /dev/null
+++ b/backend/API/Middlewares/log.txt
@@ -0,0 +1 @@
+2024/05/02 11:02:08 Micro started
diff --git a/backend/API/Program.cs b/backend/API/Program.cs
index 0a9dbb7..1b56fbf 100644
--- a/backend/API/Program.cs
+++ b/backend/API/Program.cs
@@ -9,32 +9,11 @@ using Microsoft.AspNetCore.Server.Kestrel.Https;
var builder = WebApplication.CreateBuilder(args);
-// Specify the paths to your certificate and key files
-var certPath = Path.Combine(Directory.GetCurrentDirectory(), "cert.pem");
-var keyPath = Path.Combine(Directory.GetCurrentDirectory(), "key.pem");
-
-// Load the certificate and key
-var certificate = new X509Certificate2(certPath);
-var privateKeyText = File.ReadAllText(keyPath);
-var rsaPrivateKey = RSA.Create();
-rsaPrivateKey.ImportFromPem(privateKeyText.ToCharArray());
-
-// Combine the certificate and private key into one X509Certificate2 object
-var certificateWithKey = certificate.CopyWithPrivateKey(rsaPrivateKey);
-
-builder.WebHost.ConfigureKestrel(serverOptions =>
+// Configure Kestrel with certificate paths from appsettings.json
+builder.WebHost.ConfigureKestrel((context, serverOptions) =>
{
- serverOptions.ListenAnyIP(5000); // Set HTTP port
- serverOptions.ListenAnyIP(5001, listenOptions => // Set HTTPS port
- {
- // Apply the certificate with the private key to HTTPS
- listenOptions.UseHttps(new HttpsConnectionAdapterOptions
- {
- ServerCertificate = certificateWithKey,
- ClientCertificateMode = ClientCertificateMode.NoCertificate
- });
- });
-});;
+ serverOptions.Configure(context.Configuration.GetSection("Kestrel"), reloadOnChange: true);
+});
builder.Services.AddCors(options =>
{
diff --git a/backend/API/appsettings.json b/backend/API/appsettings.json
index 0c11637..6085739 100644
--- a/backend/API/appsettings.json
+++ b/backend/API/appsettings.json
@@ -5,6 +5,20 @@
"Microsoft.AspNetCore": "Warning"
}
},
+ "Kestrel": {
+ "Endpoints": {
+ "Http": {
+ "Url": "http://*:5000"
+ },
+ "Https": {
+ "Url": "https://*:5001",
+ "Certificate": {
+ "Path": "/etc/letsencrypt/live/healthcaremanager.ddns.net/fullchain.pem",
+ "KeyPath": "/etc/letsencrypt/live/healthcaremanager.ddns.net/privkey.pem"
+ }
+ }
+ }
+ },
"ConnectionStrings": {
"HealthcareManagerDatabase": "Host=postgresrv.postgres.database.azure.com;Database=postgres;Port=5432;User Id=postgre;Password=Password1;Ssl Mode=Require;",
"MongoDBConnection": "mongodb+srv://mongodb:Password1@healthcaremanagermongodb.mongocluster.cosmos.azure.com/?tls=true&authMechanism=SCRAM-SHA-256&retrywrites=false&maxIdleTimeMS=120000"
diff --git a/backend/API/bin/Debug/net8.0/API b/backend/API/bin/Debug/net8.0/API
new file mode 100755
index 0000000..dac881f
Binary files /dev/null and b/backend/API/bin/Debug/net8.0/API differ
diff --git a/backend/API/bin/Debug/net8.0/API.dll b/backend/API/bin/Debug/net8.0/API.dll
index 184c93c..cc9824a 100644
Binary files a/backend/API/bin/Debug/net8.0/API.dll and b/backend/API/bin/Debug/net8.0/API.dll differ
diff --git a/backend/API/bin/Debug/net8.0/API.pdb b/backend/API/bin/Debug/net8.0/API.pdb
index b8d3103..480697d 100644
Binary files a/backend/API/bin/Debug/net8.0/API.pdb and b/backend/API/bin/Debug/net8.0/API.pdb differ
diff --git a/backend/API/bin/Debug/net8.0/AWSSDK.Core.dll b/backend/API/bin/Debug/net8.0/AWSSDK.Core.dll
old mode 100644
new mode 100755
diff --git a/backend/API/bin/Debug/net8.0/AWSSDK.SecurityToken.dll b/backend/API/bin/Debug/net8.0/AWSSDK.SecurityToken.dll
old mode 100644
new mode 100755
diff --git a/backend/API/bin/Debug/net8.0/Application.dll b/backend/API/bin/Debug/net8.0/Application.dll
index 2286215..8143ca9 100644
Binary files a/backend/API/bin/Debug/net8.0/Application.dll and b/backend/API/bin/Debug/net8.0/Application.dll differ
diff --git a/backend/API/bin/Debug/net8.0/Application.pdb b/backend/API/bin/Debug/net8.0/Application.pdb
index cebe308..fadae4a 100644
Binary files a/backend/API/bin/Debug/net8.0/Application.pdb and b/backend/API/bin/Debug/net8.0/Application.pdb differ
diff --git a/backend/API/bin/Debug/net8.0/Core.dll b/backend/API/bin/Debug/net8.0/Core.dll
index 084d28e..832a623 100644
Binary files a/backend/API/bin/Debug/net8.0/Core.dll and b/backend/API/bin/Debug/net8.0/Core.dll differ
diff --git a/backend/API/bin/Debug/net8.0/Core.pdb b/backend/API/bin/Debug/net8.0/Core.pdb
index 87867c2..53f26cc 100644
Binary files a/backend/API/bin/Debug/net8.0/Core.pdb and b/backend/API/bin/Debug/net8.0/Core.pdb differ
diff --git a/backend/API/bin/Debug/net8.0/DnsClient.dll b/backend/API/bin/Debug/net8.0/DnsClient.dll
old mode 100644
new mode 100755
diff --git a/backend/API/bin/Debug/net8.0/FluentValidation.dll b/backend/API/bin/Debug/net8.0/FluentValidation.dll
old mode 100644
new mode 100755
diff --git a/backend/API/bin/Debug/net8.0/Infrastructure.dll b/backend/API/bin/Debug/net8.0/Infrastructure.dll
index d9860c2..30c5060 100644
Binary files a/backend/API/bin/Debug/net8.0/Infrastructure.dll and b/backend/API/bin/Debug/net8.0/Infrastructure.dll differ
diff --git a/backend/API/bin/Debug/net8.0/Infrastructure.pdb b/backend/API/bin/Debug/net8.0/Infrastructure.pdb
index 80fc906..49825fc 100644
Binary files a/backend/API/bin/Debug/net8.0/Infrastructure.pdb and b/backend/API/bin/Debug/net8.0/Infrastructure.pdb differ
diff --git a/backend/API/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll b/backend/API/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll
old mode 100644
new mode 100755
diff --git a/backend/API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/backend/API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll
old mode 100644
new mode 100755
diff --git a/backend/API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll b/backend/API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll
old mode 100644
new mode 100755
diff --git a/backend/API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll b/backend/API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll
old mode 100644
new mode 100755
diff --git a/backend/API/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll b/backend/API/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll
old mode 100644
new mode 100755
diff --git a/backend/API/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll b/backend/API/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll
old mode 100644
new mode 100755
diff --git a/backend/API/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll b/backend/API/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll
old mode 100644
new mode 100755
diff --git a/backend/API/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/backend/API/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
old mode 100644
new mode 100755
diff --git a/backend/API/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll b/backend/API/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll
old mode 100644
new mode 100755
diff --git a/backend/API/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll b/backend/API/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll
old mode 100644
new mode 100755
diff --git a/backend/API/bin/Debug/net8.0/Microsoft.OpenApi.dll b/backend/API/bin/Debug/net8.0/Microsoft.OpenApi.dll
old mode 100644
new mode 100755
diff --git a/backend/API/bin/Debug/net8.0/MongoDB.Bson.dll b/backend/API/bin/Debug/net8.0/MongoDB.Bson.dll
old mode 100644
new mode 100755
diff --git a/backend/API/bin/Debug/net8.0/MongoDB.Driver.Core.dll b/backend/API/bin/Debug/net8.0/MongoDB.Driver.Core.dll
old mode 100644
new mode 100755
diff --git a/backend/API/bin/Debug/net8.0/MongoDB.Driver.dll b/backend/API/bin/Debug/net8.0/MongoDB.Driver.dll
old mode 100644
new mode 100755
diff --git a/backend/API/bin/Debug/net8.0/MongoDB.Libmongocrypt.dll b/backend/API/bin/Debug/net8.0/MongoDB.Libmongocrypt.dll
old mode 100644
new mode 100755
diff --git a/backend/API/bin/Debug/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll b/backend/API/bin/Debug/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll
old mode 100644
new mode 100755
diff --git a/backend/API/bin/Debug/net8.0/Npgsql.dll b/backend/API/bin/Debug/net8.0/Npgsql.dll
old mode 100644
new mode 100755
diff --git a/backend/API/bin/Debug/net8.0/SharpCompress.dll b/backend/API/bin/Debug/net8.0/SharpCompress.dll
old mode 100644
new mode 100755
diff --git a/backend/API/bin/Debug/net8.0/Snappier.dll b/backend/API/bin/Debug/net8.0/Snappier.dll
old mode 100644
new mode 100755
diff --git a/backend/API/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll b/backend/API/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll
old mode 100644
new mode 100755
diff --git a/backend/API/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll b/backend/API/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll
old mode 100644
new mode 100755
diff --git a/backend/API/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll b/backend/API/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll
old mode 100644
new mode 100755
diff --git a/backend/API/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll b/backend/API/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll
old mode 100644
new mode 100755
diff --git a/backend/API/bin/Debug/net8.0/ZstdSharp.dll b/backend/API/bin/Debug/net8.0/ZstdSharp.dll
old mode 100644
new mode 100755
diff --git a/backend/API/bin/Debug/net8.0/appsettings.json b/backend/API/bin/Debug/net8.0/appsettings.json
index 0c11637..6085739 100644
--- a/backend/API/bin/Debug/net8.0/appsettings.json
+++ b/backend/API/bin/Debug/net8.0/appsettings.json
@@ -5,6 +5,20 @@
"Microsoft.AspNetCore": "Warning"
}
},
+ "Kestrel": {
+ "Endpoints": {
+ "Http": {
+ "Url": "http://*:5000"
+ },
+ "Https": {
+ "Url": "https://*:5001",
+ "Certificate": {
+ "Path": "/etc/letsencrypt/live/healthcaremanager.ddns.net/fullchain.pem",
+ "KeyPath": "/etc/letsencrypt/live/healthcaremanager.ddns.net/privkey.pem"
+ }
+ }
+ }
+ },
"ConnectionStrings": {
"HealthcareManagerDatabase": "Host=postgresrv.postgres.database.azure.com;Database=postgres;Port=5432;User Id=postgre;Password=Password1;Ssl Mode=Require;",
"MongoDBConnection": "mongodb+srv://mongodb:Password1@healthcaremanagermongodb.mongocluster.cosmos.azure.com/?tls=true&authMechanism=SCRAM-SHA-256&retrywrites=false&maxIdleTimeMS=120000"
diff --git a/backend/API/bin/Debug/net8.0/runtimes/linux/native/libmongocrypt.so b/backend/API/bin/Debug/net8.0/runtimes/linux/native/libmongocrypt.so
old mode 100644
new mode 100755
diff --git a/backend/API/bin/Debug/net8.0/runtimes/osx/native/libmongocrypt.dylib b/backend/API/bin/Debug/net8.0/runtimes/osx/native/libmongocrypt.dylib
old mode 100644
new mode 100755
diff --git a/backend/API/bin/Debug/net8.0/runtimes/win/native/mongocrypt.dll b/backend/API/bin/Debug/net8.0/runtimes/win/native/mongocrypt.dll
old mode 100644
new mode 100755
diff --git a/backend/API/bin/Release/net8.0/API b/backend/API/bin/Release/net8.0/API
new file mode 100755
index 0000000..dac881f
Binary files /dev/null and b/backend/API/bin/Release/net8.0/API differ
diff --git a/backend/API/bin/Release/net8.0/API.deps.json b/backend/API/bin/Release/net8.0/API.deps.json
new file mode 100644
index 0000000..2dc28ac
--- /dev/null
+++ b/backend/API/bin/Release/net8.0/API.deps.json
@@ -0,0 +1,924 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v8.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v8.0": {
+ "API/1.0.0": {
+ "dependencies": {
+ "Application": "1.0.0",
+ "Infrastructure": "1.0.0",
+ "Microsoft.AspNetCore.Authentication.JwtBearer": "8.0.3",
+ "Swashbuckle.AspNetCore": "6.5.0"
+ },
+ "runtime": {
+ "API.dll": {}
+ }
+ },
+ "AWSSDK.Core/3.7.100.14": {
+ "runtime": {
+ "lib/netcoreapp3.1/AWSSDK.Core.dll": {
+ "assemblyVersion": "3.3.0.0",
+ "fileVersion": "3.7.100.14"
+ }
+ }
+ },
+ "AWSSDK.SecurityToken/3.7.100.14": {
+ "dependencies": {
+ "AWSSDK.Core": "3.7.100.14"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/AWSSDK.SecurityToken.dll": {
+ "assemblyVersion": "3.3.0.0",
+ "fileVersion": "3.7.100.14"
+ }
+ }
+ },
+ "DnsClient/1.6.1": {
+ "dependencies": {
+ "Microsoft.Win32.Registry": "5.0.0"
+ },
+ "runtime": {
+ "lib/net5.0/DnsClient.dll": {
+ "assemblyVersion": "1.6.1.0",
+ "fileVersion": "1.6.1.0"
+ }
+ }
+ },
+ "FluentValidation/11.9.0": {
+ "runtime": {
+ "lib/net8.0/FluentValidation.dll": {
+ "assemblyVersion": "11.0.0.0",
+ "fileVersion": "11.9.0.0"
+ }
+ }
+ },
+ "Microsoft.AspNetCore.Authentication.JwtBearer/8.0.3": {
+ "dependencies": {
+ "Microsoft.IdentityModel.Protocols.OpenIdConnect": "7.1.2"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {
+ "assemblyVersion": "8.0.3.0",
+ "fileVersion": "8.0.324.11615"
+ }
+ }
+ },
+ "Microsoft.EntityFrameworkCore/8.0.3": {
+ "dependencies": {
+ "Microsoft.EntityFrameworkCore.Abstractions": "8.0.3",
+ "Microsoft.EntityFrameworkCore.Analyzers": "8.0.3",
+ "Microsoft.Extensions.Caching.Memory": "8.0.0",
+ "Microsoft.Extensions.Logging": "8.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
+ "assemblyVersion": "8.0.3.0",
+ "fileVersion": "8.0.324.11510"
+ }
+ }
+ },
+ "Microsoft.EntityFrameworkCore.Abstractions/8.0.3": {
+ "runtime": {
+ "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
+ "assemblyVersion": "8.0.3.0",
+ "fileVersion": "8.0.324.11510"
+ }
+ }
+ },
+ "Microsoft.EntityFrameworkCore.Analyzers/8.0.3": {},
+ "Microsoft.EntityFrameworkCore.Relational/8.0.3": {
+ "dependencies": {
+ "Microsoft.EntityFrameworkCore": "8.0.3",
+ "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
+ "assemblyVersion": "8.0.3.0",
+ "fileVersion": "8.0.324.11510"
+ }
+ }
+ },
+ "Microsoft.Extensions.ApiDescription.Server/6.0.5": {},
+ "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "8.0.0"
+ }
+ },
+ "Microsoft.Extensions.Caching.Memory/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Caching.Abstractions": "8.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
+ "Microsoft.Extensions.Options": "8.0.0",
+ "Microsoft.Extensions.Primitives": "8.0.0"
+ }
+ },
+ "Microsoft.Extensions.Configuration/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
+ "Microsoft.Extensions.Primitives": "8.0.0"
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "8.0.0"
+ }
+ },
+ "Microsoft.Extensions.Configuration.Binder/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
+ }
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "8.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "8.0.0",
+ "Microsoft.Extensions.Primitives": "8.0.0"
+ }
+ },
+ "Microsoft.Extensions.Configuration.Json/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "8.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
+ "System.Text.Json": "8.0.0"
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0"
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {},
+ "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "8.0.0"
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Physical/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "8.0.0",
+ "Microsoft.Extensions.Primitives": "8.0.0"
+ }
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/8.0.0": {},
+ "Microsoft.Extensions.Logging/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection": "8.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
+ "Microsoft.Extensions.Options": "8.0.0"
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0"
+ }
+ },
+ "Microsoft.Extensions.Options/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
+ "Microsoft.Extensions.Primitives": "8.0.0"
+ }
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
+ "Microsoft.Extensions.Configuration.Binder": "8.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
+ "Microsoft.Extensions.Options": "8.0.0",
+ "Microsoft.Extensions.Primitives": "8.0.0"
+ }
+ },
+ "Microsoft.Extensions.Primitives/8.0.0": {},
+ "Microsoft.IdentityModel.Abstractions/7.5.1": {
+ "runtime": {
+ "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll": {
+ "assemblyVersion": "7.5.1.0",
+ "fileVersion": "7.5.1.50405"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.JsonWebTokens/7.5.1": {
+ "dependencies": {
+ "Microsoft.IdentityModel.Tokens": "7.5.1"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
+ "assemblyVersion": "7.5.1.0",
+ "fileVersion": "7.5.1.50405"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.Logging/7.5.1": {
+ "dependencies": {
+ "Microsoft.IdentityModel.Abstractions": "7.5.1"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.IdentityModel.Logging.dll": {
+ "assemblyVersion": "7.5.1.0",
+ "fileVersion": "7.5.1.50405"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.Protocols/7.1.2": {
+ "dependencies": {
+ "Microsoft.IdentityModel.Logging": "7.5.1",
+ "Microsoft.IdentityModel.Tokens": "7.5.1"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.IdentityModel.Protocols.dll": {
+ "assemblyVersion": "7.1.2.0",
+ "fileVersion": "7.1.2.41121"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.Protocols.OpenIdConnect/7.1.2": {
+ "dependencies": {
+ "Microsoft.IdentityModel.Protocols": "7.1.2",
+ "System.IdentityModel.Tokens.Jwt": "7.5.1"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {
+ "assemblyVersion": "7.1.2.0",
+ "fileVersion": "7.1.2.41121"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.Tokens/7.5.1": {
+ "dependencies": {
+ "Microsoft.IdentityModel.Logging": "7.5.1"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.IdentityModel.Tokens.dll": {
+ "assemblyVersion": "7.5.1.0",
+ "fileVersion": "7.5.1.50405"
+ }
+ }
+ },
+ "Microsoft.NETCore.Platforms/5.0.0": {},
+ "Microsoft.OpenApi/1.2.3": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.OpenApi.dll": {
+ "assemblyVersion": "1.2.3.0",
+ "fileVersion": "1.2.3.0"
+ }
+ }
+ },
+ "Microsoft.Win32.Registry/5.0.0": {
+ "dependencies": {
+ "System.Security.AccessControl": "5.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ }
+ },
+ "MongoDB.Bson/2.24.0": {
+ "dependencies": {
+ "System.Memory": "4.5.5",
+ "System.Runtime.CompilerServices.Unsafe": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/MongoDB.Bson.dll": {
+ "assemblyVersion": "2.24.0.0",
+ "fileVersion": "2.24.0.0"
+ }
+ }
+ },
+ "MongoDB.Driver/2.24.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
+ "MongoDB.Bson": "2.24.0",
+ "MongoDB.Driver.Core": "2.24.0",
+ "MongoDB.Libmongocrypt": "1.8.2"
+ },
+ "runtime": {
+ "lib/netstandard2.1/MongoDB.Driver.dll": {
+ "assemblyVersion": "2.24.0.0",
+ "fileVersion": "2.24.0.0"
+ }
+ }
+ },
+ "MongoDB.Driver.Core/2.24.0": {
+ "dependencies": {
+ "AWSSDK.SecurityToken": "3.7.100.14",
+ "DnsClient": "1.6.1",
+ "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
+ "MongoDB.Bson": "2.24.0",
+ "MongoDB.Libmongocrypt": "1.8.2",
+ "SharpCompress": "0.30.1",
+ "Snappier": "1.0.0",
+ "System.Buffers": "4.5.1",
+ "ZstdSharp.Port": "0.7.3"
+ },
+ "runtime": {
+ "lib/netstandard2.1/MongoDB.Driver.Core.dll": {
+ "assemblyVersion": "2.24.0.0",
+ "fileVersion": "2.24.0.0"
+ }
+ }
+ },
+ "MongoDB.Libmongocrypt/1.8.2": {
+ "runtime": {
+ "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": {
+ "assemblyVersion": "1.8.2.0",
+ "fileVersion": "1.8.2.0"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/linux/native/libmongocrypt.so": {
+ "rid": "linux",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/osx/native/libmongocrypt.dylib": {
+ "rid": "osx",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/win/native/mongocrypt.dll": {
+ "rid": "win",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ }
+ }
+ },
+ "Npgsql/8.0.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Logging.Abstractions": "8.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/Npgsql.dll": {
+ "assemblyVersion": "8.0.2.0",
+ "fileVersion": "8.0.2.0"
+ }
+ }
+ },
+ "Npgsql.EntityFrameworkCore.PostgreSQL/8.0.2": {
+ "dependencies": {
+ "Microsoft.EntityFrameworkCore": "8.0.3",
+ "Microsoft.EntityFrameworkCore.Abstractions": "8.0.3",
+ "Microsoft.EntityFrameworkCore.Relational": "8.0.3",
+ "Npgsql": "8.0.2"
+ },
+ "runtime": {
+ "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {
+ "assemblyVersion": "8.0.2.0",
+ "fileVersion": "8.0.2.0"
+ }
+ }
+ },
+ "SharpCompress/0.30.1": {
+ "runtime": {
+ "lib/net5.0/SharpCompress.dll": {
+ "assemblyVersion": "0.30.1.0",
+ "fileVersion": "0.30.1.0"
+ }
+ }
+ },
+ "Snappier/1.0.0": {
+ "runtime": {
+ "lib/net5.0/Snappier.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "1.0.0.0"
+ }
+ }
+ },
+ "Swashbuckle.AspNetCore/6.5.0": {
+ "dependencies": {
+ "Microsoft.Extensions.ApiDescription.Server": "6.0.5",
+ "Swashbuckle.AspNetCore.Swagger": "6.5.0",
+ "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0",
+ "Swashbuckle.AspNetCore.SwaggerUI": "6.5.0"
+ }
+ },
+ "Swashbuckle.AspNetCore.Swagger/6.5.0": {
+ "dependencies": {
+ "Microsoft.OpenApi": "1.2.3"
+ },
+ "runtime": {
+ "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll": {
+ "assemblyVersion": "6.5.0.0",
+ "fileVersion": "6.5.0.0"
+ }
+ }
+ },
+ "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": {
+ "dependencies": {
+ "Swashbuckle.AspNetCore.Swagger": "6.5.0"
+ },
+ "runtime": {
+ "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {
+ "assemblyVersion": "6.5.0.0",
+ "fileVersion": "6.5.0.0"
+ }
+ }
+ },
+ "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": {
+ "runtime": {
+ "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {
+ "assemblyVersion": "6.5.0.0",
+ "fileVersion": "6.5.0.0"
+ }
+ }
+ },
+ "System.Buffers/4.5.1": {},
+ "System.IdentityModel.Tokens.Jwt/7.5.1": {
+ "dependencies": {
+ "Microsoft.IdentityModel.JsonWebTokens": "7.5.1",
+ "Microsoft.IdentityModel.Tokens": "7.5.1"
+ },
+ "runtime": {
+ "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll": {
+ "assemblyVersion": "7.5.1.0",
+ "fileVersion": "7.5.1.50405"
+ }
+ }
+ },
+ "System.Memory/4.5.5": {},
+ "System.Runtime.CompilerServices.Unsafe/5.0.0": {},
+ "System.Security.AccessControl/5.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ }
+ },
+ "System.Security.Principal.Windows/5.0.0": {},
+ "System.Text.Encodings.Web/8.0.0": {},
+ "System.Text.Json/8.0.0": {
+ "dependencies": {
+ "System.Text.Encodings.Web": "8.0.0"
+ }
+ },
+ "ZstdSharp.Port/0.7.3": {
+ "runtime": {
+ "lib/net7.0/ZstdSharp.dll": {
+ "assemblyVersion": "0.7.3.0",
+ "fileVersion": "0.7.3.0"
+ }
+ }
+ },
+ "Application/1.0.0": {
+ "dependencies": {
+ "Core": "1.0.0",
+ "FluentValidation": "11.9.0",
+ "MongoDB.Driver": "2.24.0"
+ },
+ "runtime": {
+ "Application.dll": {}
+ }
+ },
+ "Core/1.0.0": {
+ "dependencies": {
+ "MongoDB.Bson": "2.24.0"
+ },
+ "runtime": {
+ "Core.dll": {}
+ }
+ },
+ "Infrastructure/1.0.0": {
+ "dependencies": {
+ "Application": "1.0.0",
+ "Core": "1.0.0",
+ "Microsoft.EntityFrameworkCore": "8.0.3",
+ "Microsoft.EntityFrameworkCore.Relational": "8.0.3",
+ "Microsoft.Extensions.Configuration": "8.0.0",
+ "Microsoft.Extensions.Configuration.Json": "8.0.0",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0",
+ "Microsoft.IdentityModel.Tokens": "7.5.1",
+ "MongoDB.Driver": "2.24.0",
+ "Npgsql.EntityFrameworkCore.PostgreSQL": "8.0.2",
+ "System.IdentityModel.Tokens.Jwt": "7.5.1"
+ },
+ "runtime": {
+ "Infrastructure.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "API/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "AWSSDK.Core/3.7.100.14": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-gnEgxBlk4PFEfdPE8Lkf4+D16MZFYSaW7/o6Wwe5e035QWUkTJX0Dn4LfTCdV5QSEL/fOFxu+yCAm55eIIBgog==",
+ "path": "awssdk.core/3.7.100.14",
+ "hashPath": "awssdk.core.3.7.100.14.nupkg.sha512"
+ },
+ "AWSSDK.SecurityToken/3.7.100.14": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dGCVuVo0CFUKWW85W8YENO+aREf8sCBDjvGbnNvxJuNW4Ss+brEU9ltHhq2KfZze2VUNK1/wygbPG1bmbpyXEw==",
+ "path": "awssdk.securitytoken/3.7.100.14",
+ "hashPath": "awssdk.securitytoken.3.7.100.14.nupkg.sha512"
+ },
+ "DnsClient/1.6.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-4H/f2uYJOZ+YObZjpY9ABrKZI+JNw3uizp6oMzTXwDw6F+2qIPhpRl/1t68O/6e98+vqNiYGu+lswmwdYUy3gg==",
+ "path": "dnsclient/1.6.1",
+ "hashPath": "dnsclient.1.6.1.nupkg.sha512"
+ },
+ "FluentValidation/11.9.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VneVlTvwYDkfHV5av3QrQ0amALgrLX6LV94wlYyEsh0B/klJBW7C8y2eAtj5tOZ3jH6CAVpr4s1ZGgew/QWyig==",
+ "path": "fluentvalidation/11.9.0",
+ "hashPath": "fluentvalidation.11.9.0.nupkg.sha512"
+ },
+ "Microsoft.AspNetCore.Authentication.JwtBearer/8.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VsDy8R6/0ushSpUow7m4lB82ovVBnI1e2AtPo1z22pzYzUjqY9QJvaexzqMkwmI3K1CVdT6MweXiWoqCcHrJbA==",
+ "path": "microsoft.aspnetcore.authentication.jwtbearer/8.0.3",
+ "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.8.0.3.nupkg.sha512"
+ },
+ "Microsoft.EntityFrameworkCore/8.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-QUPQbeq4yCjgIL/6PzkhfwhljXmai3CNOsErWFJ/WJ1Z41V8+At0Bi4PT8/2pX25kPgf83g0CUKIZd0QbeKT4A==",
+ "path": "microsoft.entityframeworkcore/8.0.3",
+ "hashPath": "microsoft.entityframeworkcore.8.0.3.nupkg.sha512"
+ },
+ "Microsoft.EntityFrameworkCore.Abstractions/8.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cW+SKdx34wZ25ZVKCpk/6+6z27wrZlQ1qXyx7UWpy34s9CyAojH0QiYlV/2owNOGSAH67rm+LxAjUOicsqlGzQ==",
+ "path": "microsoft.entityframeworkcore.abstractions/8.0.3",
+ "hashPath": "microsoft.entityframeworkcore.abstractions.8.0.3.nupkg.sha512"
+ },
+ "Microsoft.EntityFrameworkCore.Analyzers/8.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3csRAzz5O5Gn+GQBMyLn26OICtEo2/U2iDDygQhKb3LnC78bAUvutkMqvb0Ek5A6uHrBcZQrKQJfkgfnRT5XZw==",
+ "path": "microsoft.entityframeworkcore.analyzers/8.0.3",
+ "hashPath": "microsoft.entityframeworkcore.analyzers.8.0.3.nupkg.sha512"
+ },
+ "Microsoft.EntityFrameworkCore.Relational/8.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-8JnVZHWaNFkrrD/FC0O4jekiHIYey8y6TQ4Co3OzLz0wd5Dm1cwJfTp++1TvaVu0BBd4bVDtiktppa5epuoPrA==",
+ "path": "microsoft.entityframeworkcore.relational/8.0.3",
+ "hashPath": "microsoft.entityframeworkcore.relational.8.0.3.nupkg.sha512"
+ },
+ "Microsoft.Extensions.ApiDescription.Server/6.0.5": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==",
+ "path": "microsoft.extensions.apidescription.server/6.0.5",
+ "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==",
+ "path": "microsoft.extensions.caching.abstractions/8.0.0",
+ "hashPath": "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Caching.Memory/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-7pqivmrZDzo1ADPkRwjy+8jtRKWRCPag9qPI+p7sgu7Q4QreWhcvbiWXsbhP+yY8XSiDvZpu2/LWdBv7PnmOpQ==",
+ "path": "microsoft.extensions.caching.memory/8.0.0",
+ "hashPath": "microsoft.extensions.caching.memory.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-0J/9YNXTMWSZP2p2+nvl8p71zpSwokZXZuJW+VjdErkegAnFdO1XlqtA62SJtgVYHdKu3uPxJHcMR/r35HwFBA==",
+ "path": "microsoft.extensions.configuration/8.0.0",
+ "hashPath": "microsoft.extensions.configuration.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==",
+ "path": "microsoft.extensions.configuration.abstractions/8.0.0",
+ "hashPath": "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Binder/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-mBMoXLsr5s1y2zOHWmKsE9veDcx8h1x/c3rz4baEdQKTeDcmQAPNbB54Pi/lhFO3K431eEq6PFbMgLaa6PHFfA==",
+ "path": "microsoft.extensions.configuration.binder/8.0.0",
+ "hashPath": "microsoft.extensions.configuration.binder.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-McP+Lz/EKwvtCv48z0YImw+L1gi1gy5rHhNaNIY2CrjloV+XY8gydT8DjMR6zWeL13AFK+DioVpppwAuO1Gi1w==",
+ "path": "microsoft.extensions.configuration.fileextensions/8.0.0",
+ "hashPath": "microsoft.extensions.configuration.fileextensions.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Json/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-C2wqUoh9OmRL1akaCcKSTmRU8z0kckfImG7zLNI8uyi47Lp+zd5LWAD17waPQEqCz3ioWOCrFUo+JJuoeZLOBw==",
+ "path": "microsoft.extensions.configuration.json/8.0.0",
+ "hashPath": "microsoft.extensions.configuration.json.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==",
+ "path": "microsoft.extensions.dependencyinjection/8.0.0",
+ "hashPath": "microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0",
+ "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==",
+ "path": "microsoft.extensions.fileproviders.abstractions/8.0.0",
+ "hashPath": "microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Physical/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UboiXxpPUpwulHvIAVE36Knq0VSHaAmfrFkegLyBZeaADuKezJ/AIXYAW8F5GBlGk/VaibN2k/Zn1ca8YAfVdA==",
+ "path": "microsoft.extensions.fileproviders.physical/8.0.0",
+ "hashPath": "microsoft.extensions.fileproviders.physical.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OK+670i7esqlQrPjdIKRbsyMCe9g5kSLpRRQGSr4Q58AOYEe/hCnfLZprh7viNisSUUQZmMrbbuDaIrP+V1ebQ==",
+ "path": "microsoft.extensions.filesystemglobbing/8.0.0",
+ "hashPath": "microsoft.extensions.filesystemglobbing.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==",
+ "path": "microsoft.extensions.logging/8.0.0",
+ "hashPath": "microsoft.extensions.logging.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==",
+ "path": "microsoft.extensions.logging.abstractions/8.0.0",
+ "hashPath": "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==",
+ "path": "microsoft.extensions.options/8.0.0",
+ "hashPath": "microsoft.extensions.options.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-0f4DMRqEd50zQh+UyJc+/HiBsZ3vhAQALgdkcQEalSH1L2isdC7Yj54M3cyo5e+BeO5fcBQ7Dxly8XiBBcvRgw==",
+ "path": "microsoft.extensions.options.configurationextensions/8.0.0",
+ "hashPath": "microsoft.extensions.options.configurationextensions.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Primitives/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==",
+ "path": "microsoft.extensions.primitives/8.0.0",
+ "hashPath": "microsoft.extensions.primitives.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.IdentityModel.Abstractions/7.5.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PT16ZFbPIiMsYv07oy3zOjqUOJ7xutGBkJTOX0+IbNyU6+O6X7aIxjq9EaSSRLWbekRgamgtmfg8Xjw6A6Ua9g==",
+ "path": "microsoft.identitymodel.abstractions/7.5.1",
+ "hashPath": "microsoft.identitymodel.abstractions.7.5.1.nupkg.sha512"
+ },
+ "Microsoft.IdentityModel.JsonWebTokens/7.5.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-93CGSa8RPdZU8zfvA3nf9NGKUqEnQrE12VzYlMqKh72ddhzusosqLNEUgH/YhFWBLRFOnY1RCgHMV7pR+sAx2w==",
+ "path": "microsoft.identitymodel.jsonwebtokens/7.5.1",
+ "hashPath": "microsoft.identitymodel.jsonwebtokens.7.5.1.nupkg.sha512"
+ },
+ "Microsoft.IdentityModel.Logging/7.5.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PnpAQX20BAiDIPYmWUyQSlEaWD8BLXzHpiDGTCT568Cs0ReOeyzNe401LzCeiv6ilug/KefVeV1CeqtCHTo8dw==",
+ "path": "microsoft.identitymodel.logging/7.5.1",
+ "hashPath": "microsoft.identitymodel.logging.7.5.1.nupkg.sha512"
+ },
+ "Microsoft.IdentityModel.Protocols/7.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-SydLwMRFx6EHPWJ+N6+MVaoArN1Htt92b935O3RUWPY1yUF63zEjvd3lBu79eWdZUwedP8TN2I5V9T3nackvIQ==",
+ "path": "microsoft.identitymodel.protocols/7.1.2",
+ "hashPath": "microsoft.identitymodel.protocols.7.1.2.nupkg.sha512"
+ },
+ "Microsoft.IdentityModel.Protocols.OpenIdConnect/7.1.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6lHQoLXhnMQ42mGrfDkzbIOR3rzKM1W1tgTeMPLgLCqwwGw0d96xFi/UiX/fYsu7d6cD5MJiL3+4HuI8VU+sVQ==",
+ "path": "microsoft.identitymodel.protocols.openidconnect/7.1.2",
+ "hashPath": "microsoft.identitymodel.protocols.openidconnect.7.1.2.nupkg.sha512"
+ },
+ "Microsoft.IdentityModel.Tokens/7.5.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Q3DKpyFViP84IUlTFKH/zIkswIrmSh2Vd/eFDo4wlOHy4DYxoweZEEw4kDEiKt9VCX6o7SddK3HK2xDYyFpexA==",
+ "path": "microsoft.identitymodel.tokens/7.5.1",
+ "hashPath": "microsoft.identitymodel.tokens.7.5.1.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Platforms/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
+ "path": "microsoft.netcore.platforms/5.0.0",
+ "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.OpenApi/1.2.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==",
+ "path": "microsoft.openapi/1.2.3",
+ "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512"
+ },
+ "Microsoft.Win32.Registry/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
+ "path": "microsoft.win32.registry/5.0.0",
+ "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512"
+ },
+ "MongoDB.Bson/2.24.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-n8CWaA4iTuoEQYv0+FSKNTX/hJozFQa5EgSILVNPhTGHcrbABHhpVrT1NwRRAAS6sUb8ZyhHmLPBa88LJemptA==",
+ "path": "mongodb.bson/2.24.0",
+ "hashPath": "mongodb.bson.2.24.0.nupkg.sha512"
+ },
+ "MongoDB.Driver/2.24.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-j1q11iMk3LN38ze6jgV1ATp+WKVVQbsGrhFkuOcHwRNtIk70TpLKjOD1Z3CCkyrzxCsUyhwk745tK2ASNOI4WA==",
+ "path": "mongodb.driver/2.24.0",
+ "hashPath": "mongodb.driver.2.24.0.nupkg.sha512"
+ },
+ "MongoDB.Driver.Core/2.24.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UW0yadpMPi9+MtLHy6onpol3D9tXMRg61P0ROnij+h35EOr0vt/nxvlPrDcUjl3SvttvpsEXQKxb2lQShBA1dA==",
+ "path": "mongodb.driver.core/2.24.0",
+ "hashPath": "mongodb.driver.core.2.24.0.nupkg.sha512"
+ },
+ "MongoDB.Libmongocrypt/1.8.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-z/8JCULSHM1+mzkau0ivIkU9kIn8JEFFSkmYTSaMaWMMHt96JjUtMKuXxeGNGSnHZ5290ZPKIlQfjoWFk2sKog==",
+ "path": "mongodb.libmongocrypt/1.8.2",
+ "hashPath": "mongodb.libmongocrypt.1.8.2.nupkg.sha512"
+ },
+ "Npgsql/8.0.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-MuJzLoWCaQhQAR3oh66YR0Ir6mxuezncGX3f8wxvAc21g0+9HICktJQlqMoODhxztZKXE5k9GxRxqUAN+vPb4g==",
+ "path": "npgsql/8.0.2",
+ "hashPath": "npgsql.8.0.2.nupkg.sha512"
+ },
+ "Npgsql.EntityFrameworkCore.PostgreSQL/8.0.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-eoZPynwkZTWFTgnocvXORuCL2yFZtscrUdqVhjxiRULpC7BMg9zhLM5oDZAU5PoX1PgN77hmkKE4a3PQiHqh7Q==",
+ "path": "npgsql.entityframeworkcore.postgresql/8.0.2",
+ "hashPath": "npgsql.entityframeworkcore.postgresql.8.0.2.nupkg.sha512"
+ },
+ "SharpCompress/0.30.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==",
+ "path": "sharpcompress/0.30.1",
+ "hashPath": "sharpcompress.0.30.1.nupkg.sha512"
+ },
+ "Snappier/1.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rFtK2KEI9hIe8gtx3a0YDXdHOpedIf9wYCEYtBEmtlyiWVX3XlCNV03JrmmAi/Cdfn7dxK+k0sjjcLv4fpHnqA==",
+ "path": "snappier/1.0.0",
+ "hashPath": "snappier.1.0.0.nupkg.sha512"
+ },
+ "Swashbuckle.AspNetCore/6.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-FK05XokgjgwlCI6wCT+D4/abtQkL1X1/B9Oas6uIwHFmYrIO9WUD5aLC9IzMs9GnHfUXOtXZ2S43gN1mhs5+aA==",
+ "path": "swashbuckle.aspnetcore/6.5.0",
+ "hashPath": "swashbuckle.aspnetcore.6.5.0.nupkg.sha512"
+ },
+ "Swashbuckle.AspNetCore.Swagger/6.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-XWmCmqyFmoItXKFsQSwQbEAsjDKcxlNf1l+/Ki42hcb6LjKL8m5Db69OTvz5vLonMSRntYO1XLqz0OP+n3vKnA==",
+ "path": "swashbuckle.aspnetcore.swagger/6.5.0",
+ "hashPath": "swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512"
+ },
+ "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Y/qW8Qdg9OEs7V013tt+94OdPxbRdbhcEbw4NiwGvf4YBcfhL/y7qp/Mjv/cENsQ2L3NqJ2AOu94weBy/h4KvA==",
+ "path": "swashbuckle.aspnetcore.swaggergen/6.5.0",
+ "hashPath": "swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512"
+ },
+ "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OvbvxX+wL8skxTBttcBsVxdh73Fag4xwqEU2edh4JMn7Ws/xJHnY/JB1e9RoCb6XpDxUF3hD9A0Z1lEUx40Pfw==",
+ "path": "swashbuckle.aspnetcore.swaggerui/6.5.0",
+ "hashPath": "swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512"
+ },
+ "System.Buffers/4.5.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
+ "path": "system.buffers/4.5.1",
+ "hashPath": "system.buffers.4.5.1.nupkg.sha512"
+ },
+ "System.IdentityModel.Tokens.Jwt/7.5.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UUw+E0R73lZLlXgneYIJQxNs1kfbcxjVzw64JQyiwjqCd4HMpAbjn+xRo86QZT84uHq8/MkqvfH82tgjgPzpuw==",
+ "path": "system.identitymodel.tokens.jwt/7.5.1",
+ "hashPath": "system.identitymodel.tokens.jwt.7.5.1.nupkg.sha512"
+ },
+ "System.Memory/4.5.5": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
+ "path": "system.memory/4.5.5",
+ "hashPath": "system.memory.4.5.5.nupkg.sha512"
+ },
+ "System.Runtime.CompilerServices.Unsafe/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
+ "path": "system.runtime.compilerservices.unsafe/5.0.0",
+ "hashPath": "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512"
+ },
+ "System.Security.AccessControl/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
+ "path": "system.security.accesscontrol/5.0.0",
+ "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512"
+ },
+ "System.Security.Principal.Windows/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
+ "path": "system.security.principal.windows/5.0.0",
+ "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512"
+ },
+ "System.Text.Encodings.Web/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==",
+ "path": "system.text.encodings.web/8.0.0",
+ "hashPath": "system.text.encodings.web.8.0.0.nupkg.sha512"
+ },
+ "System.Text.Json/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==",
+ "path": "system.text.json/8.0.0",
+ "hashPath": "system.text.json.8.0.0.nupkg.sha512"
+ },
+ "ZstdSharp.Port/0.7.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-U9Ix4l4cl58Kzz1rJzj5hoVTjmbx1qGMwzAcbv1j/d3NzrFaESIurQyg+ow4mivCgkE3S413y+U9k4WdnEIkRA==",
+ "path": "zstdsharp.port/0.7.3",
+ "hashPath": "zstdsharp.port.0.7.3.nupkg.sha512"
+ },
+ "Application/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Core/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Infrastructure/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/backend/API/bin/Release/net8.0/API.dll b/backend/API/bin/Release/net8.0/API.dll
new file mode 100644
index 0000000..2cfbf07
Binary files /dev/null and b/backend/API/bin/Release/net8.0/API.dll differ
diff --git a/backend/API/bin/Release/net8.0/API.pdb b/backend/API/bin/Release/net8.0/API.pdb
new file mode 100644
index 0000000..b7df0e9
Binary files /dev/null and b/backend/API/bin/Release/net8.0/API.pdb differ
diff --git a/backend/API/bin/Release/net8.0/API.runtimeconfig.json b/backend/API/bin/Release/net8.0/API.runtimeconfig.json
new file mode 100644
index 0000000..ffac358
--- /dev/null
+++ b/backend/API/bin/Release/net8.0/API.runtimeconfig.json
@@ -0,0 +1,21 @@
+{
+ "runtimeOptions": {
+ "tfm": "net8.0",
+ "frameworks": [
+ {
+ "name": "Microsoft.NETCore.App",
+ "version": "8.0.0"
+ },
+ {
+ "name": "Microsoft.AspNetCore.App",
+ "version": "8.0.0"
+ }
+ ],
+ "configProperties": {
+ "System.GC.Server": true,
+ "System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
+ "System.Reflection.NullabilityInfoContext.IsSupported": true,
+ "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/backend/API/bin/Release/net8.0/AWSSDK.Core.dll b/backend/API/bin/Release/net8.0/AWSSDK.Core.dll
new file mode 100755
index 0000000..2c8f637
Binary files /dev/null and b/backend/API/bin/Release/net8.0/AWSSDK.Core.dll differ
diff --git a/backend/API/bin/Release/net8.0/AWSSDK.SecurityToken.dll b/backend/API/bin/Release/net8.0/AWSSDK.SecurityToken.dll
new file mode 100755
index 0000000..a97c0ef
Binary files /dev/null and b/backend/API/bin/Release/net8.0/AWSSDK.SecurityToken.dll differ
diff --git a/backend/API/bin/Release/net8.0/Application.dll b/backend/API/bin/Release/net8.0/Application.dll
new file mode 100644
index 0000000..765805d
Binary files /dev/null and b/backend/API/bin/Release/net8.0/Application.dll differ
diff --git a/backend/API/bin/Release/net8.0/Application.pdb b/backend/API/bin/Release/net8.0/Application.pdb
new file mode 100644
index 0000000..8f537c0
Binary files /dev/null and b/backend/API/bin/Release/net8.0/Application.pdb differ
diff --git a/backend/API/bin/Release/net8.0/Core.dll b/backend/API/bin/Release/net8.0/Core.dll
new file mode 100644
index 0000000..5f8e19b
Binary files /dev/null and b/backend/API/bin/Release/net8.0/Core.dll differ
diff --git a/backend/API/bin/Release/net8.0/Core.pdb b/backend/API/bin/Release/net8.0/Core.pdb
new file mode 100644
index 0000000..496f3e3
Binary files /dev/null and b/backend/API/bin/Release/net8.0/Core.pdb differ
diff --git a/backend/API/bin/Release/net8.0/DnsClient.dll b/backend/API/bin/Release/net8.0/DnsClient.dll
new file mode 100755
index 0000000..39aa546
Binary files /dev/null and b/backend/API/bin/Release/net8.0/DnsClient.dll differ
diff --git a/backend/API/bin/Release/net8.0/FluentValidation.dll b/backend/API/bin/Release/net8.0/FluentValidation.dll
new file mode 100755
index 0000000..ce036f5
Binary files /dev/null and b/backend/API/bin/Release/net8.0/FluentValidation.dll differ
diff --git a/backend/API/bin/Release/net8.0/Infrastructure.dll b/backend/API/bin/Release/net8.0/Infrastructure.dll
new file mode 100644
index 0000000..a64d960
Binary files /dev/null and b/backend/API/bin/Release/net8.0/Infrastructure.dll differ
diff --git a/backend/API/bin/Release/net8.0/Infrastructure.pdb b/backend/API/bin/Release/net8.0/Infrastructure.pdb
new file mode 100644
index 0000000..d25eb54
Binary files /dev/null and b/backend/API/bin/Release/net8.0/Infrastructure.pdb differ
diff --git a/backend/API/bin/Release/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll b/backend/API/bin/Release/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll
new file mode 100755
index 0000000..21bdd35
Binary files /dev/null and b/backend/API/bin/Release/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll differ
diff --git a/backend/API/bin/Release/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/backend/API/bin/Release/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll
new file mode 100755
index 0000000..d80430b
Binary files /dev/null and b/backend/API/bin/Release/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll differ
diff --git a/backend/API/bin/Release/net8.0/Microsoft.EntityFrameworkCore.Relational.dll b/backend/API/bin/Release/net8.0/Microsoft.EntityFrameworkCore.Relational.dll
new file mode 100755
index 0000000..0d72770
Binary files /dev/null and b/backend/API/bin/Release/net8.0/Microsoft.EntityFrameworkCore.Relational.dll differ
diff --git a/backend/API/bin/Release/net8.0/Microsoft.EntityFrameworkCore.dll b/backend/API/bin/Release/net8.0/Microsoft.EntityFrameworkCore.dll
new file mode 100755
index 0000000..029c06c
Binary files /dev/null and b/backend/API/bin/Release/net8.0/Microsoft.EntityFrameworkCore.dll differ
diff --git a/backend/API/bin/Release/net8.0/Microsoft.IdentityModel.Abstractions.dll b/backend/API/bin/Release/net8.0/Microsoft.IdentityModel.Abstractions.dll
new file mode 100755
index 0000000..110051f
Binary files /dev/null and b/backend/API/bin/Release/net8.0/Microsoft.IdentityModel.Abstractions.dll differ
diff --git a/backend/API/bin/Release/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll b/backend/API/bin/Release/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll
new file mode 100755
index 0000000..6d1c915
Binary files /dev/null and b/backend/API/bin/Release/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll differ
diff --git a/backend/API/bin/Release/net8.0/Microsoft.IdentityModel.Logging.dll b/backend/API/bin/Release/net8.0/Microsoft.IdentityModel.Logging.dll
new file mode 100755
index 0000000..c61af6f
Binary files /dev/null and b/backend/API/bin/Release/net8.0/Microsoft.IdentityModel.Logging.dll differ
diff --git a/backend/API/bin/Release/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/backend/API/bin/Release/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
new file mode 100755
index 0000000..fed943a
Binary files /dev/null and b/backend/API/bin/Release/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll differ
diff --git a/backend/API/bin/Release/net8.0/Microsoft.IdentityModel.Protocols.dll b/backend/API/bin/Release/net8.0/Microsoft.IdentityModel.Protocols.dll
new file mode 100755
index 0000000..da9cab0
Binary files /dev/null and b/backend/API/bin/Release/net8.0/Microsoft.IdentityModel.Protocols.dll differ
diff --git a/backend/API/bin/Release/net8.0/Microsoft.IdentityModel.Tokens.dll b/backend/API/bin/Release/net8.0/Microsoft.IdentityModel.Tokens.dll
new file mode 100755
index 0000000..2d1a4a9
Binary files /dev/null and b/backend/API/bin/Release/net8.0/Microsoft.IdentityModel.Tokens.dll differ
diff --git a/backend/API/bin/Release/net8.0/Microsoft.OpenApi.dll b/backend/API/bin/Release/net8.0/Microsoft.OpenApi.dll
new file mode 100755
index 0000000..14f3ded
Binary files /dev/null and b/backend/API/bin/Release/net8.0/Microsoft.OpenApi.dll differ
diff --git a/backend/API/bin/Release/net8.0/MongoDB.Bson.dll b/backend/API/bin/Release/net8.0/MongoDB.Bson.dll
new file mode 100755
index 0000000..a408cb3
Binary files /dev/null and b/backend/API/bin/Release/net8.0/MongoDB.Bson.dll differ
diff --git a/backend/API/bin/Release/net8.0/MongoDB.Driver.Core.dll b/backend/API/bin/Release/net8.0/MongoDB.Driver.Core.dll
new file mode 100755
index 0000000..a7d8a1a
Binary files /dev/null and b/backend/API/bin/Release/net8.0/MongoDB.Driver.Core.dll differ
diff --git a/backend/API/bin/Release/net8.0/MongoDB.Driver.dll b/backend/API/bin/Release/net8.0/MongoDB.Driver.dll
new file mode 100755
index 0000000..9d78a01
Binary files /dev/null and b/backend/API/bin/Release/net8.0/MongoDB.Driver.dll differ
diff --git a/backend/API/bin/Release/net8.0/MongoDB.Libmongocrypt.dll b/backend/API/bin/Release/net8.0/MongoDB.Libmongocrypt.dll
new file mode 100755
index 0000000..968b7e7
Binary files /dev/null and b/backend/API/bin/Release/net8.0/MongoDB.Libmongocrypt.dll differ
diff --git a/backend/API/bin/Release/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll b/backend/API/bin/Release/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll
new file mode 100755
index 0000000..23c5adf
Binary files /dev/null and b/backend/API/bin/Release/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll differ
diff --git a/backend/API/bin/Release/net8.0/Npgsql.dll b/backend/API/bin/Release/net8.0/Npgsql.dll
new file mode 100755
index 0000000..4fea0ba
Binary files /dev/null and b/backend/API/bin/Release/net8.0/Npgsql.dll differ
diff --git a/backend/API/bin/Release/net8.0/SharpCompress.dll b/backend/API/bin/Release/net8.0/SharpCompress.dll
new file mode 100755
index 0000000..c1a7f07
Binary files /dev/null and b/backend/API/bin/Release/net8.0/SharpCompress.dll differ
diff --git a/backend/API/bin/Release/net8.0/Snappier.dll b/backend/API/bin/Release/net8.0/Snappier.dll
new file mode 100755
index 0000000..9b68e85
Binary files /dev/null and b/backend/API/bin/Release/net8.0/Snappier.dll differ
diff --git a/backend/API/bin/Release/net8.0/Swashbuckle.AspNetCore.Swagger.dll b/backend/API/bin/Release/net8.0/Swashbuckle.AspNetCore.Swagger.dll
new file mode 100755
index 0000000..fd052a3
Binary files /dev/null and b/backend/API/bin/Release/net8.0/Swashbuckle.AspNetCore.Swagger.dll differ
diff --git a/backend/API/bin/Release/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll b/backend/API/bin/Release/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll
new file mode 100755
index 0000000..2ea00ee
Binary files /dev/null and b/backend/API/bin/Release/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll differ
diff --git a/backend/API/bin/Release/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll b/backend/API/bin/Release/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll
new file mode 100755
index 0000000..0571d0f
Binary files /dev/null and b/backend/API/bin/Release/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll differ
diff --git a/backend/API/bin/Release/net8.0/System.IdentityModel.Tokens.Jwt.dll b/backend/API/bin/Release/net8.0/System.IdentityModel.Tokens.Jwt.dll
new file mode 100755
index 0000000..e30037c
Binary files /dev/null and b/backend/API/bin/Release/net8.0/System.IdentityModel.Tokens.Jwt.dll differ
diff --git a/backend/API/bin/Release/net8.0/ZstdSharp.dll b/backend/API/bin/Release/net8.0/ZstdSharp.dll
new file mode 100755
index 0000000..5d93f7e
Binary files /dev/null and b/backend/API/bin/Release/net8.0/ZstdSharp.dll differ
diff --git a/backend/API/bin/Release/net8.0/appsettings.Development.json b/backend/API/bin/Release/net8.0/appsettings.Development.json
new file mode 100644
index 0000000..0c208ae
--- /dev/null
+++ b/backend/API/bin/Release/net8.0/appsettings.Development.json
@@ -0,0 +1,8 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ }
+}
diff --git a/backend/API/bin/Release/net8.0/appsettings.json b/backend/API/bin/Release/net8.0/appsettings.json
new file mode 100644
index 0000000..0c11637
--- /dev/null
+++ b/backend/API/bin/Release/net8.0/appsettings.json
@@ -0,0 +1,36 @@
+{
+ "Logging": {
+ "LogLevel": {
+ "Default": "Information",
+ "Microsoft.AspNetCore": "Warning"
+ }
+ },
+ "ConnectionStrings": {
+ "HealthcareManagerDatabase": "Host=postgresrv.postgres.database.azure.com;Database=postgres;Port=5432;User Id=postgre;Password=Password1;Ssl Mode=Require;",
+ "MongoDBConnection": "mongodb+srv://mongodb:Password1@healthcaremanagermongodb.mongocluster.cosmos.azure.com/?tls=true&authMechanism=SCRAM-SHA-256&retrywrites=false&maxIdleTimeMS=120000"
+ },
+ "HealthcareManagerDatabase": {
+ "Name": "HealthcareManager",
+ "MedicalRecordCollectionName": "MedicalHistory",
+ "ChatCollectionName": "Chat",
+ "AppointmentsCollectionName": "Appointments"
+ },
+ "ApiKeySettings": {
+ "ApiKey": "testapikey"
+ },
+ "Jwt": {
+ "SecretKey": "f76bf7dc6e8a260f725f8a50ef9a8c4bd08ba2ae38e3b51d77d66617d1d6b7c0",
+ "Issuer": "HealthcareManager",
+ "Audience": "HealthCareManagerUsers",
+ "ExpirationTime": 1440
+ },
+ "SmtpSettings": {
+ "Host": "smtp-relay.brevo.com",
+ "Port": 587,
+ "From": "bot@healthcaremanager.com",
+ "EnableSSL": false,
+ "UserName": "andreimihneacerbu@gmail.com",
+ "Password": "zpK3w71LkNa0sGt6"
+ },
+ "AllowedHosts": "*"
+}
diff --git a/backend/API/bin/Release/net8.0/runtimes/linux/native/libmongocrypt.so b/backend/API/bin/Release/net8.0/runtimes/linux/native/libmongocrypt.so
new file mode 100755
index 0000000..2917ad8
Binary files /dev/null and b/backend/API/bin/Release/net8.0/runtimes/linux/native/libmongocrypt.so differ
diff --git a/backend/API/bin/Release/net8.0/runtimes/osx/native/libmongocrypt.dylib b/backend/API/bin/Release/net8.0/runtimes/osx/native/libmongocrypt.dylib
new file mode 100755
index 0000000..f1f0d80
Binary files /dev/null and b/backend/API/bin/Release/net8.0/runtimes/osx/native/libmongocrypt.dylib differ
diff --git a/backend/API/bin/Release/net8.0/runtimes/win/native/mongocrypt.dll b/backend/API/bin/Release/net8.0/runtimes/win/native/mongocrypt.dll
new file mode 100755
index 0000000..a4c53e4
Binary files /dev/null and b/backend/API/bin/Release/net8.0/runtimes/win/native/mongocrypt.dll differ
diff --git a/backend/API/log.txt b/backend/API/log.txt
index cb26275..4070b69 100644
--- a/backend/API/log.txt
+++ b/backend/API/log.txt
@@ -1 +1 @@
-2024/05/01 20:38:38 Micro started
+2024/05/02 00:23:33 Micro started
diff --git a/backend/API/obj/API.csproj.nuget.dgspec.json b/backend/API/obj/API.csproj.nuget.dgspec.json
index bf5a848..19d4bce 100644
--- a/backend/API/obj/API.csproj.nuget.dgspec.json
+++ b/backend/API/obj/API.csproj.nuget.dgspec.json
@@ -1,20 +1,20 @@
{
"format": 1,
"restore": {
- "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\API\\API.csproj": {}
+ "/home/azureuser/CC-FinalProj/backend/API/API.csproj": {}
},
"projects": {
- "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\API\\API.csproj": {
+ "/home/azureuser/CC-FinalProj/backend/API/API.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\API\\API.csproj",
+ "projectUniqueName": "/home/azureuser/CC-FinalProj/backend/API/API.csproj",
"projectName": "API",
- "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\API\\API.csproj",
- "packagesPath": "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\API\\obj\\",
+ "projectPath": "/home/azureuser/CC-FinalProj/backend/API/API.csproj",
+ "packagesPath": "/root/.nuget/packages/",
+ "outputPath": "/home/azureuser/CC-FinalProj/backend/API/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
- "C:\\Users\\Andrei Cerbu\\AppData\\Roaming\\NuGet\\NuGet.Config"
+ "/root/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net8.0"
@@ -26,11 +26,11 @@
"net8.0": {
"targetAlias": "net8.0",
"projectReferences": {
- "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj": {
- "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj"
+ "/home/azureuser/CC-FinalProj/backend/Application/Application.csproj": {
+ "projectPath": "/home/azureuser/CC-FinalProj/backend/Application/Application.csproj"
},
- "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\Infrastructure.csproj": {
- "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\Infrastructure.csproj"
+ "/home/azureuser/CC-FinalProj/backend/Infrastructure/Infrastructure.csproj": {
+ "projectPath": "/home/azureuser/CC-FinalProj/backend/Infrastructure/Infrastructure.csproj"
}
}
}
@@ -39,6 +39,11 @@
"warnAsError": [
"NU1605"
]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "direct"
}
},
"frameworks": {
@@ -73,21 +78,21 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.204/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json"
}
}
},
- "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj": {
+ "/home/azureuser/CC-FinalProj/backend/Application/Application.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj",
+ "projectUniqueName": "/home/azureuser/CC-FinalProj/backend/Application/Application.csproj",
"projectName": "Application",
- "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj",
- "packagesPath": "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\obj\\",
+ "projectPath": "/home/azureuser/CC-FinalProj/backend/Application/Application.csproj",
+ "packagesPath": "/root/.nuget/packages/",
+ "outputPath": "/home/azureuser/CC-FinalProj/backend/Application/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
- "C:\\Users\\Andrei Cerbu\\AppData\\Roaming\\NuGet\\NuGet.Config"
+ "/root/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net8.0"
@@ -99,8 +104,8 @@
"net8.0": {
"targetAlias": "net8.0",
"projectReferences": {
- "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj": {
- "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj"
+ "/home/azureuser/CC-FinalProj/backend/Core/Core.csproj": {
+ "projectPath": "/home/azureuser/CC-FinalProj/backend/Core/Core.csproj"
}
}
}
@@ -109,6 +114,11 @@
"warnAsError": [
"NU1605"
]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "direct"
}
},
"frameworks": {
@@ -140,21 +150,21 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.204/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json"
}
}
},
- "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj": {
+ "/home/azureuser/CC-FinalProj/backend/Core/Core.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj",
+ "projectUniqueName": "/home/azureuser/CC-FinalProj/backend/Core/Core.csproj",
"projectName": "Core",
- "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj",
- "packagesPath": "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\obj\\",
+ "projectPath": "/home/azureuser/CC-FinalProj/backend/Core/Core.csproj",
+ "packagesPath": "/root/.nuget/packages/",
+ "outputPath": "/home/azureuser/CC-FinalProj/backend/Core/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
- "C:\\Users\\Andrei Cerbu\\AppData\\Roaming\\NuGet\\NuGet.Config"
+ "/root/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net8.0"
@@ -172,6 +182,11 @@
"warnAsError": [
"NU1605"
]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "direct"
}
},
"frameworks": {
@@ -199,21 +214,21 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.204/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json"
}
}
},
- "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\Infrastructure.csproj": {
+ "/home/azureuser/CC-FinalProj/backend/Infrastructure/Infrastructure.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\Infrastructure.csproj",
+ "projectUniqueName": "/home/azureuser/CC-FinalProj/backend/Infrastructure/Infrastructure.csproj",
"projectName": "Infrastructure",
- "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\Infrastructure.csproj",
- "packagesPath": "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\obj\\",
+ "projectPath": "/home/azureuser/CC-FinalProj/backend/Infrastructure/Infrastructure.csproj",
+ "packagesPath": "/root/.nuget/packages/",
+ "outputPath": "/home/azureuser/CC-FinalProj/backend/Infrastructure/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
- "C:\\Users\\Andrei Cerbu\\AppData\\Roaming\\NuGet\\NuGet.Config"
+ "/root/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net8.0"
@@ -225,11 +240,11 @@
"net8.0": {
"targetAlias": "net8.0",
"projectReferences": {
- "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj": {
- "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj"
+ "/home/azureuser/CC-FinalProj/backend/Application/Application.csproj": {
+ "projectPath": "/home/azureuser/CC-FinalProj/backend/Application/Application.csproj"
},
- "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj": {
- "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj"
+ "/home/azureuser/CC-FinalProj/backend/Core/Core.csproj": {
+ "projectPath": "/home/azureuser/CC-FinalProj/backend/Core/Core.csproj"
}
}
}
@@ -238,6 +253,11 @@
"warnAsError": [
"NU1605"
]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "direct"
}
},
"frameworks": {
@@ -303,7 +323,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.204/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json"
}
}
}
diff --git a/backend/API/obj/API.csproj.nuget.g.props b/backend/API/obj/API.csproj.nuget.g.props
index a3e3676..e904459 100644
--- a/backend/API/obj/API.csproj.nuget.g.props
+++ b/backend/API/obj/API.csproj.nuget.g.props
@@ -4,22 +4,22 @@
True
NuGet
$(MSBuildThisFileDirectory)project.assets.json
- $(UserProfile)\.nuget\packages\
- C:\Users\Andrei Cerbu\.nuget\packages\
+ /root/.nuget/packages/
+ /root/.nuget/packages/
PackageReference
6.9.1
-
+
-
-
-
+
+
+
- C:\Users\Andrei Cerbu\.nuget\packages\microsoft.extensions.apidescription.server\6.0.5
- C:\Users\Andrei Cerbu\.nuget\packages\awssdk.core\3.7.100.14
- C:\Users\Andrei Cerbu\.nuget\packages\awssdk.securitytoken\3.7.100.14
+ /root/.nuget/packages/microsoft.extensions.apidescription.server/6.0.5
+ /root/.nuget/packages/awssdk.core/3.7.100.14
+ /root/.nuget/packages/awssdk.securitytoken/3.7.100.14
\ No newline at end of file
diff --git a/backend/API/obj/API.csproj.nuget.g.targets b/backend/API/obj/API.csproj.nuget.g.targets
index 3bc36dc..1f9f9b2 100644
--- a/backend/API/obj/API.csproj.nuget.g.targets
+++ b/backend/API/obj/API.csproj.nuget.g.targets
@@ -1,10 +1,10 @@
-
-
-
-
-
+
+
+
+
+
\ No newline at end of file
diff --git a/backend/API/obj/Debug/net8.0/API.AssemblyInfo.cs b/backend/API/obj/Debug/net8.0/API.AssemblyInfo.cs
index dcd1aeb..40abd94 100644
--- a/backend/API/obj/Debug/net8.0/API.AssemblyInfo.cs
+++ b/backend/API/obj/Debug/net8.0/API.AssemblyInfo.cs
@@ -13,7 +13,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("API")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+e57b47cae362bcdd292021d92f19844516cd42b7")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+8e4322649e4df45cec652c7098c929f725ff16bf")]
[assembly: System.Reflection.AssemblyProductAttribute("API")]
[assembly: System.Reflection.AssemblyTitleAttribute("API")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
diff --git a/backend/API/obj/Debug/net8.0/API.AssemblyInfoInputs.cache b/backend/API/obj/Debug/net8.0/API.AssemblyInfoInputs.cache
index de7b4fe..d2b6a89 100644
--- a/backend/API/obj/Debug/net8.0/API.AssemblyInfoInputs.cache
+++ b/backend/API/obj/Debug/net8.0/API.AssemblyInfoInputs.cache
@@ -1 +1 @@
-9dc91fd589f405d9b89d7ec2470007cfa5e9ff60c37dde9d153100048a5640aa
+453ffda4295c5e0dce92614f7a406e66ffae57500f6c15603961c11cf348a009
diff --git a/backend/API/obj/Debug/net8.0/API.GeneratedMSBuildEditorConfig.editorconfig b/backend/API/obj/Debug/net8.0/API.GeneratedMSBuildEditorConfig.editorconfig
index b620701..e411af1 100644
--- a/backend/API/obj/Debug/net8.0/API.GeneratedMSBuildEditorConfig.editorconfig
+++ b/backend/API/obj/Debug/net8.0/API.GeneratedMSBuildEditorConfig.editorconfig
@@ -9,11 +9,11 @@ build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = API
build_property.RootNamespace = API
-build_property.ProjectDir = C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\
+build_property.ProjectDir = /home/azureuser/CC-FinalProj/backend/API/
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
build_property.RazorLangVersion = 8.0
build_property.SupportLocalizedComponentNames =
build_property.GenerateRazorMetadataSourceChecksumAttributes =
-build_property.MSBuildProjectDirectory = C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API
+build_property.MSBuildProjectDirectory = /home/azureuser/CC-FinalProj/backend/API
build_property._RazorSourceGeneratorDebug =
diff --git a/backend/API/obj/Debug/net8.0/API.assets.cache b/backend/API/obj/Debug/net8.0/API.assets.cache
index 33816ec..504360c 100644
Binary files a/backend/API/obj/Debug/net8.0/API.assets.cache and b/backend/API/obj/Debug/net8.0/API.assets.cache differ
diff --git a/backend/API/obj/Debug/net8.0/API.csproj.AssemblyReference.cache b/backend/API/obj/Debug/net8.0/API.csproj.AssemblyReference.cache
index 84095c9..413e6f6 100644
Binary files a/backend/API/obj/Debug/net8.0/API.csproj.AssemblyReference.cache and b/backend/API/obj/Debug/net8.0/API.csproj.AssemblyReference.cache differ
diff --git a/backend/API/obj/Debug/net8.0/API.csproj.CoreCompileInputs.cache b/backend/API/obj/Debug/net8.0/API.csproj.CoreCompileInputs.cache
index 24e9248..22b1f69 100644
--- a/backend/API/obj/Debug/net8.0/API.csproj.CoreCompileInputs.cache
+++ b/backend/API/obj/Debug/net8.0/API.csproj.CoreCompileInputs.cache
@@ -1 +1 @@
-8c59fc255b4b69acd38bc45a0276c696dc6787c8fece172b6bc728c6ed196212
+233ebfe2d35d45f34e572600746f65e38b167c7292d5dc26d4ccae73dbd11a81
diff --git a/backend/API/obj/Debug/net8.0/API.csproj.FileListAbsolute.txt b/backend/API/obj/Debug/net8.0/API.csproj.FileListAbsolute.txt
index 278f4f0..5b35175 100644
--- a/backend/API/obj/Debug/net8.0/API.csproj.FileListAbsolute.txt
+++ b/backend/API/obj/Debug/net8.0/API.csproj.FileListAbsolute.txt
@@ -1,196 +1,262 @@
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\appsettings.Development.json
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\appsettings.json
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\API.exe
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\API.deps.json
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\API.runtimeconfig.json
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\API.dll
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\API.pdb
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\AWSSDK.Core.dll
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\AWSSDK.SecurityToken.dll
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\DnsClient.dll
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\FluentValidation.dll
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\Microsoft.AspNetCore.Authentication.JwtBearer.dll
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.dll
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Abstractions.dll
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Relational.dll
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\Microsoft.IdentityModel.Abstractions.dll
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\Microsoft.IdentityModel.JsonWebTokens.dll
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\Microsoft.IdentityModel.Logging.dll
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.dll
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\Microsoft.IdentityModel.Tokens.dll
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\Microsoft.OpenApi.dll
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\MongoDB.Bson.dll
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\MongoDB.Driver.dll
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\MongoDB.Driver.Core.dll
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\MongoDB.Libmongocrypt.dll
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\Npgsql.dll
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\Npgsql.EntityFrameworkCore.PostgreSQL.dll
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\SharpCompress.dll
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\Snappier.dll
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\Swashbuckle.AspNetCore.Swagger.dll
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerGen.dll
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerUI.dll
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\System.IdentityModel.Tokens.Jwt.dll
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\ZstdSharp.dll
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\runtimes\linux\native\libmongocrypt.so
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\runtimes\osx\native\libmongocrypt.dylib
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\runtimes\win\native\mongocrypt.dll
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\Application.dll
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\Core.dll
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\Infrastructure.dll
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\Application.pdb
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\Infrastructure.pdb
-C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\Core.pdb
-C:\Users\Andrei Cerbu\Desktop\backend\API\obj\Debug\net8.0\API.csproj.AssemblyReference.cache
-C:\Users\Andrei Cerbu\Desktop\backend\API\obj\Debug\net8.0\API.GeneratedMSBuildEditorConfig.editorconfig
-C:\Users\Andrei Cerbu\Desktop\backend\API\obj\Debug\net8.0\API.AssemblyInfoInputs.cache
-C:\Users\Andrei Cerbu\Desktop\backend\API\obj\Debug\net8.0\API.AssemblyInfo.cs
-C:\Users\Andrei Cerbu\Desktop\backend\API\obj\Debug\net8.0\API.csproj.CoreCompileInputs.cache
-C:\Users\Andrei Cerbu\Desktop\backend\API\obj\Debug\net8.0\API.MvcApplicationPartsAssemblyInfo.cs
-C:\Users\Andrei Cerbu\Desktop\backend\API\obj\Debug\net8.0\API.MvcApplicationPartsAssemblyInfo.cache
-C:\Users\Andrei Cerbu\Desktop\backend\API\obj\Debug\net8.0\staticwebassets.build.json
-C:\Users\Andrei Cerbu\Desktop\backend\API\obj\Debug\net8.0\staticwebassets.development.json
-C:\Users\Andrei Cerbu\Desktop\backend\API\obj\Debug\net8.0\staticwebassets\msbuild.API.Microsoft.AspNetCore.StaticWebAssets.props
-C:\Users\Andrei Cerbu\Desktop\backend\API\obj\Debug\net8.0\staticwebassets\msbuild.build.API.props
-C:\Users\Andrei Cerbu\Desktop\backend\API\obj\Debug\net8.0\staticwebassets\msbuild.buildMultiTargeting.API.props
-C:\Users\Andrei Cerbu\Desktop\backend\API\obj\Debug\net8.0\staticwebassets\msbuild.buildTransitive.API.props
-C:\Users\Andrei Cerbu\Desktop\backend\API\obj\Debug\net8.0\staticwebassets.pack.json
-C:\Users\Andrei Cerbu\Desktop\backend\API\obj\Debug\net8.0\scopedcss\bundle\API.styles.css
-C:\Users\Andrei Cerbu\Desktop\backend\API\obj\Debug\net8.0\API.dll
-C:\Users\Andrei Cerbu\Desktop\backend\API\obj\Debug\net8.0\refint\API.dll
-C:\Users\Andrei Cerbu\Desktop\backend\API\obj\Debug\net8.0\API.pdb
-C:\Users\Andrei Cerbu\Desktop\backend\API\obj\Debug\net8.0\API.genruntimeconfig.cache
-C:\Users\Andrei Cerbu\Desktop\backend\API\obj\Debug\net8.0\ref\API.dll
-C:\Users\Andrei Cerbu\Desktop\backend\API\obj\Debug\net8.0\API.csproj.CopyComplete
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\appsettings.Development.json
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\appsettings.json
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\API.exe
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\API.deps.json
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\API.runtimeconfig.json
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\API.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\API.pdb
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\AWSSDK.Core.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\AWSSDK.SecurityToken.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\DnsClient.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\FluentValidation.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\Microsoft.AspNetCore.Authentication.JwtBearer.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Abstractions.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Relational.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\Microsoft.IdentityModel.Abstractions.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\Microsoft.IdentityModel.JsonWebTokens.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\Microsoft.IdentityModel.Logging.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\Microsoft.IdentityModel.Tokens.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\Microsoft.OpenApi.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\MongoDB.Bson.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\MongoDB.Driver.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\MongoDB.Driver.Core.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\MongoDB.Libmongocrypt.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\Npgsql.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\Npgsql.EntityFrameworkCore.PostgreSQL.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\SharpCompress.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\Snappier.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\Swashbuckle.AspNetCore.Swagger.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerGen.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerUI.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\System.IdentityModel.Tokens.Jwt.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\ZstdSharp.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\runtimes\linux\native\libmongocrypt.so
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\runtimes\osx\native\libmongocrypt.dylib
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\runtimes\win\native\mongocrypt.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\Application.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\Core.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\Infrastructure.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\Application.pdb
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\Infrastructure.pdb
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\bin\Debug\net8.0\Core.pdb
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\obj\Debug\net8.0\API.csproj.AssemblyReference.cache
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\obj\Debug\net8.0\API.GeneratedMSBuildEditorConfig.editorconfig
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\obj\Debug\net8.0\API.AssemblyInfoInputs.cache
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\obj\Debug\net8.0\API.AssemblyInfo.cs
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\obj\Debug\net8.0\API.csproj.CoreCompileInputs.cache
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\obj\Debug\net8.0\API.MvcApplicationPartsAssemblyInfo.cs
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\obj\Debug\net8.0\API.MvcApplicationPartsAssemblyInfo.cache
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\obj\Debug\net8.0\staticwebassets.build.json
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\obj\Debug\net8.0\staticwebassets.development.json
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\obj\Debug\net8.0\staticwebassets\msbuild.API.Microsoft.AspNetCore.StaticWebAssets.props
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\obj\Debug\net8.0\staticwebassets\msbuild.build.API.props
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\obj\Debug\net8.0\staticwebassets\msbuild.buildMultiTargeting.API.props
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\obj\Debug\net8.0\staticwebassets\msbuild.buildTransitive.API.props
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\obj\Debug\net8.0\staticwebassets.pack.json
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\obj\Debug\net8.0\scopedcss\bundle\API.styles.css
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\obj\Debug\net8.0\API.csproj.CopyComplete
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\obj\Debug\net8.0\API.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\obj\Debug\net8.0\refint\API.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\obj\Debug\net8.0\API.pdb
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\obj\Debug\net8.0\API.genruntimeconfig.cache
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\obj\Debug\net8.0\ref\API.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\appsettings.Development.json
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\appsettings.json
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\API.exe
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\API.deps.json
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\API.runtimeconfig.json
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\API.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\API.pdb
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\AWSSDK.Core.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\AWSSDK.SecurityToken.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\DnsClient.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\FluentValidation.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\Microsoft.AspNetCore.Authentication.JwtBearer.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Abstractions.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Relational.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\Microsoft.IdentityModel.Abstractions.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\Microsoft.IdentityModel.JsonWebTokens.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\Microsoft.IdentityModel.Logging.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\Microsoft.IdentityModel.Tokens.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\Microsoft.OpenApi.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\MongoDB.Bson.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\MongoDB.Driver.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\MongoDB.Driver.Core.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\MongoDB.Libmongocrypt.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\Npgsql.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\Npgsql.EntityFrameworkCore.PostgreSQL.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\SharpCompress.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\Snappier.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\Swashbuckle.AspNetCore.Swagger.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerGen.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerUI.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\System.IdentityModel.Tokens.Jwt.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\ZstdSharp.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\runtimes\linux\native\libmongocrypt.so
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\runtimes\osx\native\libmongocrypt.dylib
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\runtimes\win\native\mongocrypt.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\Application.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\Core.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\Infrastructure.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\Application.pdb
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\Infrastructure.pdb
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\bin\Debug\net8.0\Core.pdb
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\obj\Debug\net8.0\API.csproj.AssemblyReference.cache
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\obj\Debug\net8.0\API.GeneratedMSBuildEditorConfig.editorconfig
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\obj\Debug\net8.0\API.AssemblyInfoInputs.cache
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\obj\Debug\net8.0\API.AssemblyInfo.cs
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\obj\Debug\net8.0\API.csproj.CoreCompileInputs.cache
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\obj\Debug\net8.0\API.MvcApplicationPartsAssemblyInfo.cs
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\obj\Debug\net8.0\API.MvcApplicationPartsAssemblyInfo.cache
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\obj\Debug\net8.0\API.sourcelink.json
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\obj\Debug\net8.0\staticwebassets.build.json
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\obj\Debug\net8.0\staticwebassets.development.json
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\obj\Debug\net8.0\staticwebassets\msbuild.API.Microsoft.AspNetCore.StaticWebAssets.props
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\obj\Debug\net8.0\staticwebassets\msbuild.build.API.props
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\obj\Debug\net8.0\staticwebassets\msbuild.buildMultiTargeting.API.props
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\obj\Debug\net8.0\staticwebassets\msbuild.buildTransitive.API.props
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\obj\Debug\net8.0\staticwebassets.pack.json
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\obj\Debug\net8.0\scopedcss\bundle\API.styles.css
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\obj\Debug\net8.0\API.csproj.Up2Date
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\obj\Debug\net8.0\API.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\obj\Debug\net8.0\refint\API.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\obj\Debug\net8.0\API.pdb
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\obj\Debug\net8.0\API.genruntimeconfig.cache
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\API\obj\Debug\net8.0\ref\API.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/appsettings.Development.json
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/appsettings.json
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/API.exe
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/API.deps.json
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/API.runtimeconfig.json
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/API.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/API.pdb
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/AWSSDK.Core.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/AWSSDK.SecurityToken.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/DnsClient.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/FluentValidation.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/Microsoft.OpenApi.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/MongoDB.Bson.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/MongoDB.Driver.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/MongoDB.Driver.Core.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/MongoDB.Libmongocrypt.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/Npgsql.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/SharpCompress.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/Snappier.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/ZstdSharp.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/runtimes/linux/native/libmongocrypt.so
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/runtimes/osx/native/libmongocrypt.dylib
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/runtimes/win/native/mongocrypt.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/Application.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/Core.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/Infrastructure.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/Application.pdb
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/Infrastructure.pdb
+C:/Users/Andrei Cerbu/Desktop/backend/API/bin/Debug/net8.0/Core.pdb
+C:/Users/Andrei Cerbu/Desktop/backend/API/obj/Debug/net8.0/API.csproj.AssemblyReference.cache
+C:/Users/Andrei Cerbu/Desktop/backend/API/obj/Debug/net8.0/API.GeneratedMSBuildEditorConfig.editorconfig
+C:/Users/Andrei Cerbu/Desktop/backend/API/obj/Debug/net8.0/API.AssemblyInfoInputs.cache
+C:/Users/Andrei Cerbu/Desktop/backend/API/obj/Debug/net8.0/API.AssemblyInfo.cs
+C:/Users/Andrei Cerbu/Desktop/backend/API/obj/Debug/net8.0/API.csproj.CoreCompileInputs.cache
+C:/Users/Andrei Cerbu/Desktop/backend/API/obj/Debug/net8.0/API.MvcApplicationPartsAssemblyInfo.cs
+C:/Users/Andrei Cerbu/Desktop/backend/API/obj/Debug/net8.0/API.MvcApplicationPartsAssemblyInfo.cache
+C:/Users/Andrei Cerbu/Desktop/backend/API/obj/Debug/net8.0/staticwebassets.build.json
+C:/Users/Andrei Cerbu/Desktop/backend/API/obj/Debug/net8.0/staticwebassets.development.json
+C:/Users/Andrei Cerbu/Desktop/backend/API/obj/Debug/net8.0/staticwebassets/msbuild.API.Microsoft.AspNetCore.StaticWebAssets.props
+C:/Users/Andrei Cerbu/Desktop/backend/API/obj/Debug/net8.0/staticwebassets/msbuild.build.API.props
+C:/Users/Andrei Cerbu/Desktop/backend/API/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.API.props
+C:/Users/Andrei Cerbu/Desktop/backend/API/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.API.props
+C:/Users/Andrei Cerbu/Desktop/backend/API/obj/Debug/net8.0/staticwebassets.pack.json
+C:/Users/Andrei Cerbu/Desktop/backend/API/obj/Debug/net8.0/scopedcss/bundle/API.styles.css
+C:/Users/Andrei Cerbu/Desktop/backend/API/obj/Debug/net8.0/API.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/obj/Debug/net8.0/refint/API.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/obj/Debug/net8.0/API.pdb
+C:/Users/Andrei Cerbu/Desktop/backend/API/obj/Debug/net8.0/API.genruntimeconfig.cache
+C:/Users/Andrei Cerbu/Desktop/backend/API/obj/Debug/net8.0/ref/API.dll
+C:/Users/Andrei Cerbu/Desktop/backend/API/obj/Debug/net8.0/API.csproj.CopyComplete
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/appsettings.Development.json
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/appsettings.json
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/API.exe
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/API.deps.json
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/API.runtimeconfig.json
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/API.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/API.pdb
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/AWSSDK.Core.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/AWSSDK.SecurityToken.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/DnsClient.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/FluentValidation.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/Microsoft.OpenApi.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/MongoDB.Bson.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/MongoDB.Driver.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/MongoDB.Driver.Core.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/MongoDB.Libmongocrypt.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/Npgsql.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/SharpCompress.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/Snappier.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/ZstdSharp.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/runtimes/linux/native/libmongocrypt.so
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/runtimes/osx/native/libmongocrypt.dylib
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/runtimes/win/native/mongocrypt.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/Application.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/Core.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/Infrastructure.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/Application.pdb
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/Infrastructure.pdb
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/bin/Debug/net8.0/Core.pdb
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/obj/Debug/net8.0/API.csproj.AssemblyReference.cache
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/obj/Debug/net8.0/API.GeneratedMSBuildEditorConfig.editorconfig
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/obj/Debug/net8.0/API.AssemblyInfoInputs.cache
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/obj/Debug/net8.0/API.AssemblyInfo.cs
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/obj/Debug/net8.0/API.csproj.CoreCompileInputs.cache
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/obj/Debug/net8.0/API.MvcApplicationPartsAssemblyInfo.cs
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/obj/Debug/net8.0/API.MvcApplicationPartsAssemblyInfo.cache
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/obj/Debug/net8.0/staticwebassets.build.json
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/obj/Debug/net8.0/staticwebassets.development.json
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/obj/Debug/net8.0/staticwebassets/msbuild.API.Microsoft.AspNetCore.StaticWebAssets.props
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/obj/Debug/net8.0/staticwebassets/msbuild.build.API.props
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.API.props
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.API.props
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/obj/Debug/net8.0/staticwebassets.pack.json
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/obj/Debug/net8.0/scopedcss/bundle/API.styles.css
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/obj/Debug/net8.0/API.csproj.CopyComplete
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/obj/Debug/net8.0/API.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/obj/Debug/net8.0/refint/API.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/obj/Debug/net8.0/API.pdb
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/obj/Debug/net8.0/API.genruntimeconfig.cache
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/API/obj/Debug/net8.0/ref/API.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/appsettings.Development.json
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/appsettings.json
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/API.exe
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/API.deps.json
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/API.runtimeconfig.json
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/API.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/API.pdb
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/AWSSDK.Core.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/AWSSDK.SecurityToken.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/DnsClient.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/FluentValidation.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/Microsoft.OpenApi.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/MongoDB.Bson.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/MongoDB.Driver.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/MongoDB.Driver.Core.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/MongoDB.Libmongocrypt.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/Npgsql.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/SharpCompress.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/Snappier.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/ZstdSharp.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/runtimes/linux/native/libmongocrypt.so
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/runtimes/osx/native/libmongocrypt.dylib
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/runtimes/win/native/mongocrypt.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/Application.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/Core.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/Infrastructure.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/Application.pdb
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/Infrastructure.pdb
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/bin/Debug/net8.0/Core.pdb
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/obj/Debug/net8.0/API.csproj.AssemblyReference.cache
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/obj/Debug/net8.0/API.GeneratedMSBuildEditorConfig.editorconfig
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/obj/Debug/net8.0/API.AssemblyInfoInputs.cache
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/obj/Debug/net8.0/API.AssemblyInfo.cs
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/obj/Debug/net8.0/API.csproj.CoreCompileInputs.cache
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/obj/Debug/net8.0/API.MvcApplicationPartsAssemblyInfo.cs
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/obj/Debug/net8.0/API.MvcApplicationPartsAssemblyInfo.cache
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/obj/Debug/net8.0/API.sourcelink.json
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/obj/Debug/net8.0/staticwebassets.build.json
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/obj/Debug/net8.0/staticwebassets.development.json
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/obj/Debug/net8.0/staticwebassets/msbuild.API.Microsoft.AspNetCore.StaticWebAssets.props
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/obj/Debug/net8.0/staticwebassets/msbuild.build.API.props
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.API.props
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.API.props
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/obj/Debug/net8.0/staticwebassets.pack.json
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/obj/Debug/net8.0/scopedcss/bundle/API.styles.css
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/obj/Debug/net8.0/API.csproj.Up2Date
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/obj/Debug/net8.0/API.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/obj/Debug/net8.0/refint/API.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/obj/Debug/net8.0/API.pdb
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/obj/Debug/net8.0/API.genruntimeconfig.cache
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/API/obj/Debug/net8.0/ref/API.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/appsettings.Development.json
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/appsettings.json
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/API
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/API.deps.json
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/API.runtimeconfig.json
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/API.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/API.pdb
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/AWSSDK.Core.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/AWSSDK.SecurityToken.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/DnsClient.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/FluentValidation.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/Microsoft.OpenApi.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/MongoDB.Bson.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/MongoDB.Driver.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/MongoDB.Driver.Core.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/MongoDB.Libmongocrypt.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/Npgsql.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/SharpCompress.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/Snappier.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/ZstdSharp.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/runtimes/linux/native/libmongocrypt.so
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/runtimes/osx/native/libmongocrypt.dylib
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/runtimes/win/native/mongocrypt.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/Application.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/Core.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/Infrastructure.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/Application.pdb
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/Infrastructure.pdb
+/home/azureuser/CC-FinalProj/backend/API/bin/Debug/net8.0/Core.pdb
+/home/azureuser/CC-FinalProj/backend/API/obj/Debug/net8.0/API.csproj.AssemblyReference.cache
+/home/azureuser/CC-FinalProj/backend/API/obj/Debug/net8.0/API.GeneratedMSBuildEditorConfig.editorconfig
+/home/azureuser/CC-FinalProj/backend/API/obj/Debug/net8.0/API.AssemblyInfoInputs.cache
+/home/azureuser/CC-FinalProj/backend/API/obj/Debug/net8.0/API.AssemblyInfo.cs
+/home/azureuser/CC-FinalProj/backend/API/obj/Debug/net8.0/API.csproj.CoreCompileInputs.cache
+/home/azureuser/CC-FinalProj/backend/API/obj/Debug/net8.0/API.MvcApplicationPartsAssemblyInfo.cs
+/home/azureuser/CC-FinalProj/backend/API/obj/Debug/net8.0/API.MvcApplicationPartsAssemblyInfo.cache
+/home/azureuser/CC-FinalProj/backend/API/obj/Debug/net8.0/API.sourcelink.json
+/home/azureuser/CC-FinalProj/backend/API/obj/Debug/net8.0/staticwebassets.build.json
+/home/azureuser/CC-FinalProj/backend/API/obj/Debug/net8.0/staticwebassets.development.json
+/home/azureuser/CC-FinalProj/backend/API/obj/Debug/net8.0/staticwebassets/msbuild.API.Microsoft.AspNetCore.StaticWebAssets.props
+/home/azureuser/CC-FinalProj/backend/API/obj/Debug/net8.0/staticwebassets/msbuild.build.API.props
+/home/azureuser/CC-FinalProj/backend/API/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.API.props
+/home/azureuser/CC-FinalProj/backend/API/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.API.props
+/home/azureuser/CC-FinalProj/backend/API/obj/Debug/net8.0/staticwebassets.pack.json
+/home/azureuser/CC-FinalProj/backend/API/obj/Debug/net8.0/scopedcss/bundle/API.styles.css
+/home/azureuser/CC-FinalProj/backend/API/obj/Debug/net8.0/API.csproj.Up2Date
+/home/azureuser/CC-FinalProj/backend/API/obj/Debug/net8.0/API.dll
+/home/azureuser/CC-FinalProj/backend/API/obj/Debug/net8.0/refint/API.dll
+/home/azureuser/CC-FinalProj/backend/API/obj/Debug/net8.0/API.pdb
+/home/azureuser/CC-FinalProj/backend/API/obj/Debug/net8.0/API.genruntimeconfig.cache
+/home/azureuser/CC-FinalProj/backend/API/obj/Debug/net8.0/ref/API.dll
diff --git a/backend/API/obj/Debug/net8.0/API.dll b/backend/API/obj/Debug/net8.0/API.dll
index 184c93c..cc9824a 100644
Binary files a/backend/API/obj/Debug/net8.0/API.dll and b/backend/API/obj/Debug/net8.0/API.dll differ
diff --git a/backend/API/obj/Debug/net8.0/API.genruntimeconfig.cache b/backend/API/obj/Debug/net8.0/API.genruntimeconfig.cache
index bdbdb9d..e842447 100644
--- a/backend/API/obj/Debug/net8.0/API.genruntimeconfig.cache
+++ b/backend/API/obj/Debug/net8.0/API.genruntimeconfig.cache
@@ -1 +1 @@
-cf7697bb57c8ed401672a12b2bb138875f61be594e170984d2a891dbe0535240
+b79ca47763b1beb23cc810d75f5f6679835ca6ae5ee3371bc8b58e5ba8b88be8
diff --git a/backend/API/obj/Debug/net8.0/API.pdb b/backend/API/obj/Debug/net8.0/API.pdb
index b8d3103..480697d 100644
Binary files a/backend/API/obj/Debug/net8.0/API.pdb and b/backend/API/obj/Debug/net8.0/API.pdb differ
diff --git a/backend/API/obj/Debug/net8.0/API.sourcelink.json b/backend/API/obj/Debug/net8.0/API.sourcelink.json
index b7c2852..da14bfd 100644
--- a/backend/API/obj/Debug/net8.0/API.sourcelink.json
+++ b/backend/API/obj/Debug/net8.0/API.sourcelink.json
@@ -1 +1 @@
-{"documents":{"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\*":"https://raw.githubusercontent.com/andrei-mihnea-cerbu/CC-FinalProj/e57b47cae362bcdd292021d92f19844516cd42b7/*"}}
\ No newline at end of file
+{"documents":{"/home/azureuser/CC-FinalProj/*":"https://raw.githubusercontent.com/andrei-mihnea-cerbu/CC-FinalProj/8e4322649e4df45cec652c7098c929f725ff16bf/*"}}
\ No newline at end of file
diff --git a/backend/API/obj/Debug/net8.0/apphost b/backend/API/obj/Debug/net8.0/apphost
new file mode 100755
index 0000000..dac881f
Binary files /dev/null and b/backend/API/obj/Debug/net8.0/apphost differ
diff --git a/backend/API/obj/Debug/net8.0/ref/API.dll b/backend/API/obj/Debug/net8.0/ref/API.dll
index 180017f..239904d 100644
Binary files a/backend/API/obj/Debug/net8.0/ref/API.dll and b/backend/API/obj/Debug/net8.0/ref/API.dll differ
diff --git a/backend/API/obj/Debug/net8.0/refint/API.dll b/backend/API/obj/Debug/net8.0/refint/API.dll
index 180017f..239904d 100644
Binary files a/backend/API/obj/Debug/net8.0/refint/API.dll and b/backend/API/obj/Debug/net8.0/refint/API.dll differ
diff --git a/backend/API/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.API.props b/backend/API/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.API.props
index c35c9fc..6aa6df8 100644
--- a/backend/API/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.API.props
+++ b/backend/API/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.API.props
@@ -1,3 +1,3 @@
-
+
\ No newline at end of file
diff --git a/backend/API/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.API.props b/backend/API/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.API.props
index 1cf7337..90e1133 100644
--- a/backend/API/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.API.props
+++ b/backend/API/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.API.props
@@ -1,3 +1,3 @@
-
+
\ No newline at end of file
diff --git a/backend/API/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/backend/API/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..dca70aa
--- /dev/null
+++ b/backend/API/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
diff --git a/backend/API/obj/Release/net8.0/API.AssemblyInfo.cs b/backend/API/obj/Release/net8.0/API.AssemblyInfo.cs
new file mode 100644
index 0000000..e9421c3
--- /dev/null
+++ b/backend/API/obj/Release/net8.0/API.AssemblyInfo.cs
@@ -0,0 +1,22 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("API")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+8e4322649e4df45cec652c7098c929f725ff16bf")]
+[assembly: System.Reflection.AssemblyProductAttribute("API")]
+[assembly: System.Reflection.AssemblyTitleAttribute("API")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/backend/API/obj/Release/net8.0/API.AssemblyInfoInputs.cache b/backend/API/obj/Release/net8.0/API.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..f5b0d08
--- /dev/null
+++ b/backend/API/obj/Release/net8.0/API.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+e89a8c996488c1617fa223013ed7b9a0fd40815ff027f6abecf28d00822c5d2a
diff --git a/backend/API/obj/Release/net8.0/API.GeneratedMSBuildEditorConfig.editorconfig b/backend/API/obj/Release/net8.0/API.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..e411af1
--- /dev/null
+++ b/backend/API/obj/Release/net8.0/API.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,19 @@
+is_global = true
+build_property.TargetFramework = net8.0
+build_property.TargetPlatformMinVersion =
+build_property.UsingMicrosoftNETSdkWeb = true
+build_property.ProjectTypeGuids =
+build_property.InvariantGlobalization =
+build_property.PlatformNeutralAssembly =
+build_property.EnforceExtendedAnalyzerRules =
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property.RootNamespace = API
+build_property.RootNamespace = API
+build_property.ProjectDir = /home/azureuser/CC-FinalProj/backend/API/
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
+build_property.RazorLangVersion = 8.0
+build_property.SupportLocalizedComponentNames =
+build_property.GenerateRazorMetadataSourceChecksumAttributes =
+build_property.MSBuildProjectDirectory = /home/azureuser/CC-FinalProj/backend/API
+build_property._RazorSourceGeneratorDebug =
diff --git a/backend/API/obj/Release/net8.0/API.GlobalUsings.g.cs b/backend/API/obj/Release/net8.0/API.GlobalUsings.g.cs
new file mode 100644
index 0000000..025530a
--- /dev/null
+++ b/backend/API/obj/Release/net8.0/API.GlobalUsings.g.cs
@@ -0,0 +1,17 @@
+//
+global using global::Microsoft.AspNetCore.Builder;
+global using global::Microsoft.AspNetCore.Hosting;
+global using global::Microsoft.AspNetCore.Http;
+global using global::Microsoft.AspNetCore.Routing;
+global using global::Microsoft.Extensions.Configuration;
+global using global::Microsoft.Extensions.DependencyInjection;
+global using global::Microsoft.Extensions.Hosting;
+global using global::Microsoft.Extensions.Logging;
+global using global::System;
+global using global::System.Collections.Generic;
+global using global::System.IO;
+global using global::System.Linq;
+global using global::System.Net.Http;
+global using global::System.Net.Http.Json;
+global using global::System.Threading;
+global using global::System.Threading.Tasks;
diff --git a/backend/API/obj/Release/net8.0/API.MvcApplicationPartsAssemblyInfo.cache b/backend/API/obj/Release/net8.0/API.MvcApplicationPartsAssemblyInfo.cache
new file mode 100644
index 0000000..e69de29
diff --git a/backend/API/obj/Release/net8.0/API.MvcApplicationPartsAssemblyInfo.cs b/backend/API/obj/Release/net8.0/API.MvcApplicationPartsAssemblyInfo.cs
new file mode 100644
index 0000000..5c337f8
--- /dev/null
+++ b/backend/API/obj/Release/net8.0/API.MvcApplicationPartsAssemblyInfo.cs
@@ -0,0 +1,16 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/backend/API/obj/Release/net8.0/API.assets.cache b/backend/API/obj/Release/net8.0/API.assets.cache
new file mode 100644
index 0000000..158e8fb
Binary files /dev/null and b/backend/API/obj/Release/net8.0/API.assets.cache differ
diff --git a/backend/API/obj/Release/net8.0/API.csproj.AssemblyReference.cache b/backend/API/obj/Release/net8.0/API.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..ba62548
Binary files /dev/null and b/backend/API/obj/Release/net8.0/API.csproj.AssemblyReference.cache differ
diff --git a/backend/API/obj/Release/net8.0/API.csproj.CoreCompileInputs.cache b/backend/API/obj/Release/net8.0/API.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..e72b4b7
--- /dev/null
+++ b/backend/API/obj/Release/net8.0/API.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+7f0e82a5e3b10b69388bb99d43260c2c908dc31d894f474a440ba4abbf1a8500
diff --git a/backend/API/obj/Release/net8.0/API.csproj.FileListAbsolute.txt b/backend/API/obj/Release/net8.0/API.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..07e069c
--- /dev/null
+++ b/backend/API/obj/Release/net8.0/API.csproj.FileListAbsolute.txt
@@ -0,0 +1,66 @@
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/appsettings.Development.json
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/appsettings.json
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/API
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/API.deps.json
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/API.runtimeconfig.json
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/API.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/API.pdb
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/AWSSDK.Core.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/AWSSDK.SecurityToken.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/DnsClient.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/FluentValidation.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/Microsoft.EntityFrameworkCore.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/Microsoft.EntityFrameworkCore.Relational.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/Microsoft.IdentityModel.Abstractions.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/Microsoft.IdentityModel.Logging.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/Microsoft.IdentityModel.Protocols.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/Microsoft.IdentityModel.Tokens.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/Microsoft.OpenApi.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/MongoDB.Bson.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/MongoDB.Driver.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/MongoDB.Driver.Core.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/MongoDB.Libmongocrypt.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/Npgsql.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/SharpCompress.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/Snappier.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/Swashbuckle.AspNetCore.Swagger.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/System.IdentityModel.Tokens.Jwt.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/ZstdSharp.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/runtimes/linux/native/libmongocrypt.so
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/runtimes/osx/native/libmongocrypt.dylib
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/runtimes/win/native/mongocrypt.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/Application.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/Core.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/Infrastructure.dll
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/Application.pdb
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/Infrastructure.pdb
+/home/azureuser/CC-FinalProj/backend/API/bin/Release/net8.0/Core.pdb
+/home/azureuser/CC-FinalProj/backend/API/obj/Release/net8.0/API.csproj.AssemblyReference.cache
+/home/azureuser/CC-FinalProj/backend/API/obj/Release/net8.0/API.GeneratedMSBuildEditorConfig.editorconfig
+/home/azureuser/CC-FinalProj/backend/API/obj/Release/net8.0/API.AssemblyInfoInputs.cache
+/home/azureuser/CC-FinalProj/backend/API/obj/Release/net8.0/API.AssemblyInfo.cs
+/home/azureuser/CC-FinalProj/backend/API/obj/Release/net8.0/API.csproj.CoreCompileInputs.cache
+/home/azureuser/CC-FinalProj/backend/API/obj/Release/net8.0/API.MvcApplicationPartsAssemblyInfo.cs
+/home/azureuser/CC-FinalProj/backend/API/obj/Release/net8.0/API.MvcApplicationPartsAssemblyInfo.cache
+/home/azureuser/CC-FinalProj/backend/API/obj/Release/net8.0/API.sourcelink.json
+/home/azureuser/CC-FinalProj/backend/API/obj/Release/net8.0/staticwebassets.build.json
+/home/azureuser/CC-FinalProj/backend/API/obj/Release/net8.0/staticwebassets.development.json
+/home/azureuser/CC-FinalProj/backend/API/obj/Release/net8.0/staticwebassets/msbuild.API.Microsoft.AspNetCore.StaticWebAssets.props
+/home/azureuser/CC-FinalProj/backend/API/obj/Release/net8.0/staticwebassets/msbuild.build.API.props
+/home/azureuser/CC-FinalProj/backend/API/obj/Release/net8.0/staticwebassets/msbuild.buildMultiTargeting.API.props
+/home/azureuser/CC-FinalProj/backend/API/obj/Release/net8.0/staticwebassets/msbuild.buildTransitive.API.props
+/home/azureuser/CC-FinalProj/backend/API/obj/Release/net8.0/staticwebassets.pack.json
+/home/azureuser/CC-FinalProj/backend/API/obj/Release/net8.0/scopedcss/bundle/API.styles.css
+/home/azureuser/CC-FinalProj/backend/API/obj/Release/net8.0/API.csproj.Up2Date
+/home/azureuser/CC-FinalProj/backend/API/obj/Release/net8.0/API.dll
+/home/azureuser/CC-FinalProj/backend/API/obj/Release/net8.0/refint/API.dll
+/home/azureuser/CC-FinalProj/backend/API/obj/Release/net8.0/API.pdb
+/home/azureuser/CC-FinalProj/backend/API/obj/Release/net8.0/API.genruntimeconfig.cache
+/home/azureuser/CC-FinalProj/backend/API/obj/Release/net8.0/ref/API.dll
diff --git a/backend/API/obj/Release/net8.0/API.csproj.Up2Date b/backend/API/obj/Release/net8.0/API.csproj.Up2Date
new file mode 100644
index 0000000..e69de29
diff --git a/backend/API/obj/Release/net8.0/API.dll b/backend/API/obj/Release/net8.0/API.dll
new file mode 100644
index 0000000..2cfbf07
Binary files /dev/null and b/backend/API/obj/Release/net8.0/API.dll differ
diff --git a/backend/API/obj/Release/net8.0/API.genruntimeconfig.cache b/backend/API/obj/Release/net8.0/API.genruntimeconfig.cache
new file mode 100644
index 0000000..2f430bb
--- /dev/null
+++ b/backend/API/obj/Release/net8.0/API.genruntimeconfig.cache
@@ -0,0 +1 @@
+1d7848bcc7e656e0ca59a7194eb81dc653a09b7c6bb86ea4161c37e3e15f51a3
diff --git a/backend/API/obj/Release/net8.0/API.pdb b/backend/API/obj/Release/net8.0/API.pdb
new file mode 100644
index 0000000..b7df0e9
Binary files /dev/null and b/backend/API/obj/Release/net8.0/API.pdb differ
diff --git a/backend/API/obj/Release/net8.0/API.sourcelink.json b/backend/API/obj/Release/net8.0/API.sourcelink.json
new file mode 100644
index 0000000..da14bfd
--- /dev/null
+++ b/backend/API/obj/Release/net8.0/API.sourcelink.json
@@ -0,0 +1 @@
+{"documents":{"/home/azureuser/CC-FinalProj/*":"https://raw.githubusercontent.com/andrei-mihnea-cerbu/CC-FinalProj/8e4322649e4df45cec652c7098c929f725ff16bf/*"}}
\ No newline at end of file
diff --git a/backend/API/obj/Release/net8.0/PublishOutputs.a4905141f0.txt b/backend/API/obj/Release/net8.0/PublishOutputs.a4905141f0.txt
new file mode 100644
index 0000000..ad55062
--- /dev/null
+++ b/backend/API/obj/Release/net8.0/PublishOutputs.a4905141f0.txt
@@ -0,0 +1,44 @@
+/var/www/healthcare_manager_api/API
+/var/www/healthcare_manager_api/appsettings.Development.json
+/var/www/healthcare_manager_api/appsettings.json
+/var/www/healthcare_manager_api/API.dll
+/var/www/healthcare_manager_api/API.deps.json
+/var/www/healthcare_manager_api/API.runtimeconfig.json
+/var/www/healthcare_manager_api/API.pdb
+/var/www/healthcare_manager_api/AWSSDK.Core.dll
+/var/www/healthcare_manager_api/AWSSDK.SecurityToken.dll
+/var/www/healthcare_manager_api/DnsClient.dll
+/var/www/healthcare_manager_api/FluentValidation.dll
+/var/www/healthcare_manager_api/Microsoft.AspNetCore.Authentication.JwtBearer.dll
+/var/www/healthcare_manager_api/Microsoft.EntityFrameworkCore.dll
+/var/www/healthcare_manager_api/Microsoft.EntityFrameworkCore.Abstractions.dll
+/var/www/healthcare_manager_api/Microsoft.EntityFrameworkCore.Relational.dll
+/var/www/healthcare_manager_api/Microsoft.IdentityModel.Abstractions.dll
+/var/www/healthcare_manager_api/Microsoft.IdentityModel.JsonWebTokens.dll
+/var/www/healthcare_manager_api/Microsoft.IdentityModel.Logging.dll
+/var/www/healthcare_manager_api/Microsoft.IdentityModel.Protocols.dll
+/var/www/healthcare_manager_api/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
+/var/www/healthcare_manager_api/Microsoft.IdentityModel.Tokens.dll
+/var/www/healthcare_manager_api/Microsoft.OpenApi.dll
+/var/www/healthcare_manager_api/MongoDB.Bson.dll
+/var/www/healthcare_manager_api/MongoDB.Driver.dll
+/var/www/healthcare_manager_api/MongoDB.Driver.Core.dll
+/var/www/healthcare_manager_api/MongoDB.Libmongocrypt.dll
+/var/www/healthcare_manager_api/Npgsql.dll
+/var/www/healthcare_manager_api/Npgsql.EntityFrameworkCore.PostgreSQL.dll
+/var/www/healthcare_manager_api/SharpCompress.dll
+/var/www/healthcare_manager_api/Snappier.dll
+/var/www/healthcare_manager_api/Swashbuckle.AspNetCore.Swagger.dll
+/var/www/healthcare_manager_api/Swashbuckle.AspNetCore.SwaggerGen.dll
+/var/www/healthcare_manager_api/Swashbuckle.AspNetCore.SwaggerUI.dll
+/var/www/healthcare_manager_api/System.IdentityModel.Tokens.Jwt.dll
+/var/www/healthcare_manager_api/ZstdSharp.dll
+/var/www/healthcare_manager_api/runtimes/linux/native/libmongocrypt.so
+/var/www/healthcare_manager_api/runtimes/osx/native/libmongocrypt.dylib
+/var/www/healthcare_manager_api/runtimes/win/native/mongocrypt.dll
+/var/www/healthcare_manager_api/Application.dll
+/var/www/healthcare_manager_api/Core.dll
+/var/www/healthcare_manager_api/Infrastructure.dll
+/var/www/healthcare_manager_api/Application.pdb
+/var/www/healthcare_manager_api/Infrastructure.pdb
+/var/www/healthcare_manager_api/Core.pdb
diff --git a/backend/API/obj/Release/net8.0/apphost b/backend/API/obj/Release/net8.0/apphost
new file mode 100755
index 0000000..dac881f
Binary files /dev/null and b/backend/API/obj/Release/net8.0/apphost differ
diff --git a/backend/API/obj/Release/net8.0/ref/API.dll b/backend/API/obj/Release/net8.0/ref/API.dll
new file mode 100644
index 0000000..ebf3b5f
Binary files /dev/null and b/backend/API/obj/Release/net8.0/ref/API.dll differ
diff --git a/backend/API/obj/Release/net8.0/refint/API.dll b/backend/API/obj/Release/net8.0/refint/API.dll
new file mode 100644
index 0000000..ebf3b5f
Binary files /dev/null and b/backend/API/obj/Release/net8.0/refint/API.dll differ
diff --git a/backend/API/obj/Release/net8.0/staticwebassets.build.json b/backend/API/obj/Release/net8.0/staticwebassets.build.json
new file mode 100644
index 0000000..8163260
--- /dev/null
+++ b/backend/API/obj/Release/net8.0/staticwebassets.build.json
@@ -0,0 +1,11 @@
+{
+ "Version": 1,
+ "Hash": "bUm1vPqwZHJejLhtNIB7WgmMI8ngxypkYrDApg4MvgQ=",
+ "Source": "API",
+ "BasePath": "_content/API",
+ "Mode": "Default",
+ "ManifestType": "Build",
+ "ReferencedProjectsConfiguration": [],
+ "DiscoveryPatterns": [],
+ "Assets": []
+}
\ No newline at end of file
diff --git a/backend/API/obj/Release/net8.0/staticwebassets.publish.json b/backend/API/obj/Release/net8.0/staticwebassets.publish.json
new file mode 100644
index 0000000..7b1e7ca
--- /dev/null
+++ b/backend/API/obj/Release/net8.0/staticwebassets.publish.json
@@ -0,0 +1,11 @@
+{
+ "Version": 1,
+ "Hash": "BmU7fGuTJpBu0l1oTDCr6d1Z1+7OaO1PIkDzHCAqaAo=",
+ "Source": "API",
+ "BasePath": "_content/API",
+ "Mode": "Default",
+ "ManifestType": "Publish",
+ "ReferencedProjectsConfiguration": [],
+ "DiscoveryPatterns": [],
+ "Assets": []
+}
\ No newline at end of file
diff --git a/backend/API/obj/Release/net8.0/staticwebassets/msbuild.build.API.props b/backend/API/obj/Release/net8.0/staticwebassets/msbuild.build.API.props
new file mode 100644
index 0000000..5a6032a
--- /dev/null
+++ b/backend/API/obj/Release/net8.0/staticwebassets/msbuild.build.API.props
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/backend/API/obj/Release/net8.0/staticwebassets/msbuild.buildMultiTargeting.API.props b/backend/API/obj/Release/net8.0/staticwebassets/msbuild.buildMultiTargeting.API.props
new file mode 100644
index 0000000..6aa6df8
--- /dev/null
+++ b/backend/API/obj/Release/net8.0/staticwebassets/msbuild.buildMultiTargeting.API.props
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/backend/API/obj/Release/net8.0/staticwebassets/msbuild.buildTransitive.API.props b/backend/API/obj/Release/net8.0/staticwebassets/msbuild.buildTransitive.API.props
new file mode 100644
index 0000000..90e1133
--- /dev/null
+++ b/backend/API/obj/Release/net8.0/staticwebassets/msbuild.buildTransitive.API.props
@@ -0,0 +1,3 @@
+
+
+
\ No newline at end of file
diff --git a/backend/API/obj/project.assets.json b/backend/API/obj/project.assets.json
index cfa6090..148d013 100644
--- a/backend/API/obj/project.assets.json
+++ b/backend/API/obj/project.assets.json
@@ -2861,19 +2861,19 @@
]
},
"packageFolders": {
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\": {}
+ "/root/.nuget/packages/": {}
},
"project": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\API\\API.csproj",
+ "projectUniqueName": "/home/azureuser/CC-FinalProj/backend/API/API.csproj",
"projectName": "API",
- "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\API\\API.csproj",
- "packagesPath": "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\API\\obj\\",
+ "projectPath": "/home/azureuser/CC-FinalProj/backend/API/API.csproj",
+ "packagesPath": "/root/.nuget/packages/",
+ "outputPath": "/home/azureuser/CC-FinalProj/backend/API/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
- "C:\\Users\\Andrei Cerbu\\AppData\\Roaming\\NuGet\\NuGet.Config"
+ "/root/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net8.0"
@@ -2885,11 +2885,11 @@
"net8.0": {
"targetAlias": "net8.0",
"projectReferences": {
- "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj": {
- "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj"
+ "/home/azureuser/CC-FinalProj/backend/Application/Application.csproj": {
+ "projectPath": "/home/azureuser/CC-FinalProj/backend/Application/Application.csproj"
},
- "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\Infrastructure.csproj": {
- "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\Infrastructure.csproj"
+ "/home/azureuser/CC-FinalProj/backend/Infrastructure/Infrastructure.csproj": {
+ "projectPath": "/home/azureuser/CC-FinalProj/backend/Infrastructure/Infrastructure.csproj"
}
}
}
@@ -2898,6 +2898,11 @@
"warnAsError": [
"NU1605"
]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "direct"
}
},
"frameworks": {
@@ -2932,7 +2937,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.204/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json"
}
}
}
diff --git a/backend/API/obj/project.nuget.cache b/backend/API/obj/project.nuget.cache
index 0f39a4f..4b0a58c 100644
--- a/backend/API/obj/project.nuget.cache
+++ b/backend/API/obj/project.nuget.cache
@@ -1,66 +1,66 @@
{
"version": 2,
- "dgSpecHash": "7jkfKfsq1O08v1oLZKWIq+I+Cfh6FX5Jb1/2lgLdcvK6ptg+a1Yo/FcJrv8v5+MsMlMebo8eb+/xBIIyQ7VYKA==",
+ "dgSpecHash": "CcGZQ4bqkKNDq76D4OQ5Zaf4Emo2Mbnp6kQREOsFXrF85CirurFnuuGKOJuX1pAI8vToy+s+5qp+7fP/fW661Q==",
"success": true,
- "projectFilePath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\API\\API.csproj",
+ "projectFilePath": "/home/azureuser/CC-FinalProj/backend/API/API.csproj",
"expectedPackageFiles": [
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\awssdk.core\\3.7.100.14\\awssdk.core.3.7.100.14.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\awssdk.securitytoken\\3.7.100.14\\awssdk.securitytoken.3.7.100.14.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\dnsclient\\1.6.1\\dnsclient.1.6.1.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\fluentvalidation\\11.9.0\\fluentvalidation.11.9.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.aspnetcore.authentication.jwtbearer\\8.0.3\\microsoft.aspnetcore.authentication.jwtbearer.8.0.3.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.entityframeworkcore\\8.0.3\\microsoft.entityframeworkcore.8.0.3.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\8.0.3\\microsoft.entityframeworkcore.abstractions.8.0.3.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\8.0.3\\microsoft.entityframeworkcore.analyzers.8.0.3.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\8.0.3\\microsoft.entityframeworkcore.relational.8.0.3.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.apidescription.server\\6.0.5\\microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\8.0.0\\microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.caching.memory\\8.0.0\\microsoft.extensions.caching.memory.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.configuration\\8.0.0\\microsoft.extensions.configuration.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\8.0.0\\microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.configuration.binder\\8.0.0\\microsoft.extensions.configuration.binder.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\8.0.0\\microsoft.extensions.configuration.fileextensions.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.configuration.json\\8.0.0\\microsoft.extensions.configuration.json.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\8.0.0\\microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.0\\microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\8.0.0\\microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\8.0.0\\microsoft.extensions.fileproviders.physical.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\8.0.0\\microsoft.extensions.filesystemglobbing.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.logging\\8.0.0\\microsoft.extensions.logging.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\8.0.0\\microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.options\\8.0.0\\microsoft.extensions.options.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\8.0.0\\microsoft.extensions.options.configurationextensions.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.primitives\\8.0.0\\microsoft.extensions.primitives.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.identitymodel.abstractions\\7.5.1\\microsoft.identitymodel.abstractions.7.5.1.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\7.5.1\\microsoft.identitymodel.jsonwebtokens.7.5.1.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.identitymodel.logging\\7.5.1\\microsoft.identitymodel.logging.7.5.1.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.identitymodel.protocols\\7.1.2\\microsoft.identitymodel.protocols.7.1.2.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\7.1.2\\microsoft.identitymodel.protocols.openidconnect.7.1.2.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.identitymodel.tokens\\7.5.1\\microsoft.identitymodel.tokens.7.5.1.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.win32.registry\\5.0.0\\microsoft.win32.registry.5.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\mongodb.bson\\2.24.0\\mongodb.bson.2.24.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\mongodb.driver\\2.24.0\\mongodb.driver.2.24.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\mongodb.driver.core\\2.24.0\\mongodb.driver.core.2.24.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\mongodb.libmongocrypt\\1.8.2\\mongodb.libmongocrypt.1.8.2.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\npgsql\\8.0.2\\npgsql.8.0.2.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\8.0.2\\npgsql.entityframeworkcore.postgresql.8.0.2.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\sharpcompress\\0.30.1\\sharpcompress.0.30.1.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\snappier\\1.0.0\\snappier.1.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\swashbuckle.aspnetcore\\6.5.0\\swashbuckle.aspnetcore.6.5.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.5.0\\swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.5.0\\swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.5.0\\swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\system.identitymodel.tokens.jwt\\7.5.1\\system.identitymodel.tokens.jwt.7.5.1.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\system.memory\\4.5.5\\system.memory.4.5.5.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\5.0.0\\system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\system.security.accesscontrol\\5.0.0\\system.security.accesscontrol.5.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\system.text.encodings.web\\8.0.0\\system.text.encodings.web.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\system.text.json\\8.0.0\\system.text.json.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\zstdsharp.port\\0.7.3\\zstdsharp.port.0.7.3.nupkg.sha512"
+ "/root/.nuget/packages/awssdk.core/3.7.100.14/awssdk.core.3.7.100.14.nupkg.sha512",
+ "/root/.nuget/packages/awssdk.securitytoken/3.7.100.14/awssdk.securitytoken.3.7.100.14.nupkg.sha512",
+ "/root/.nuget/packages/dnsclient/1.6.1/dnsclient.1.6.1.nupkg.sha512",
+ "/root/.nuget/packages/fluentvalidation/11.9.0/fluentvalidation.11.9.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.aspnetcore.authentication.jwtbearer/8.0.3/microsoft.aspnetcore.authentication.jwtbearer.8.0.3.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.entityframeworkcore/8.0.3/microsoft.entityframeworkcore.8.0.3.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.entityframeworkcore.abstractions/8.0.3/microsoft.entityframeworkcore.abstractions.8.0.3.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.entityframeworkcore.analyzers/8.0.3/microsoft.entityframeworkcore.analyzers.8.0.3.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.entityframeworkcore.relational/8.0.3/microsoft.entityframeworkcore.relational.8.0.3.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.apidescription.server/6.0.5/microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.caching.abstractions/8.0.0/microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.caching.memory/8.0.0/microsoft.extensions.caching.memory.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.configuration/8.0.0/microsoft.extensions.configuration.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.configuration.abstractions/8.0.0/microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.configuration.binder/8.0.0/microsoft.extensions.configuration.binder.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.configuration.fileextensions/8.0.0/microsoft.extensions.configuration.fileextensions.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.configuration.json/8.0.0/microsoft.extensions.configuration.json.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.dependencyinjection/8.0.0/microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/8.0.0/microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.fileproviders.abstractions/8.0.0/microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.fileproviders.physical/8.0.0/microsoft.extensions.fileproviders.physical.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.filesystemglobbing/8.0.0/microsoft.extensions.filesystemglobbing.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.logging/8.0.0/microsoft.extensions.logging.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.logging.abstractions/8.0.0/microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.options/8.0.0/microsoft.extensions.options.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.options.configurationextensions/8.0.0/microsoft.extensions.options.configurationextensions.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.primitives/8.0.0/microsoft.extensions.primitives.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.identitymodel.abstractions/7.5.1/microsoft.identitymodel.abstractions.7.5.1.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.identitymodel.jsonwebtokens/7.5.1/microsoft.identitymodel.jsonwebtokens.7.5.1.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.identitymodel.logging/7.5.1/microsoft.identitymodel.logging.7.5.1.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.identitymodel.protocols/7.1.2/microsoft.identitymodel.protocols.7.1.2.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.identitymodel.protocols.openidconnect/7.1.2/microsoft.identitymodel.protocols.openidconnect.7.1.2.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.identitymodel.tokens/7.5.1/microsoft.identitymodel.tokens.7.5.1.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.netcore.platforms/5.0.0/microsoft.netcore.platforms.5.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.openapi/1.2.3/microsoft.openapi.1.2.3.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.win32.registry/5.0.0/microsoft.win32.registry.5.0.0.nupkg.sha512",
+ "/root/.nuget/packages/mongodb.bson/2.24.0/mongodb.bson.2.24.0.nupkg.sha512",
+ "/root/.nuget/packages/mongodb.driver/2.24.0/mongodb.driver.2.24.0.nupkg.sha512",
+ "/root/.nuget/packages/mongodb.driver.core/2.24.0/mongodb.driver.core.2.24.0.nupkg.sha512",
+ "/root/.nuget/packages/mongodb.libmongocrypt/1.8.2/mongodb.libmongocrypt.1.8.2.nupkg.sha512",
+ "/root/.nuget/packages/npgsql/8.0.2/npgsql.8.0.2.nupkg.sha512",
+ "/root/.nuget/packages/npgsql.entityframeworkcore.postgresql/8.0.2/npgsql.entityframeworkcore.postgresql.8.0.2.nupkg.sha512",
+ "/root/.nuget/packages/sharpcompress/0.30.1/sharpcompress.0.30.1.nupkg.sha512",
+ "/root/.nuget/packages/snappier/1.0.0/snappier.1.0.0.nupkg.sha512",
+ "/root/.nuget/packages/swashbuckle.aspnetcore/6.5.0/swashbuckle.aspnetcore.6.5.0.nupkg.sha512",
+ "/root/.nuget/packages/swashbuckle.aspnetcore.swagger/6.5.0/swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512",
+ "/root/.nuget/packages/swashbuckle.aspnetcore.swaggergen/6.5.0/swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512",
+ "/root/.nuget/packages/swashbuckle.aspnetcore.swaggerui/6.5.0/swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512",
+ "/root/.nuget/packages/system.buffers/4.5.1/system.buffers.4.5.1.nupkg.sha512",
+ "/root/.nuget/packages/system.identitymodel.tokens.jwt/7.5.1/system.identitymodel.tokens.jwt.7.5.1.nupkg.sha512",
+ "/root/.nuget/packages/system.memory/4.5.5/system.memory.4.5.5.nupkg.sha512",
+ "/root/.nuget/packages/system.runtime.compilerservices.unsafe/5.0.0/system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512",
+ "/root/.nuget/packages/system.security.accesscontrol/5.0.0/system.security.accesscontrol.5.0.0.nupkg.sha512",
+ "/root/.nuget/packages/system.security.principal.windows/5.0.0/system.security.principal.windows.5.0.0.nupkg.sha512",
+ "/root/.nuget/packages/system.text.encodings.web/8.0.0/system.text.encodings.web.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/system.text.json/8.0.0/system.text.json.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/zstdsharp.port/0.7.3/zstdsharp.port.0.7.3.nupkg.sha512"
],
"logs": []
}
\ No newline at end of file
diff --git a/backend/Application/bin/Debug/net8.0/Application.dll b/backend/Application/bin/Debug/net8.0/Application.dll
index 2286215..8143ca9 100644
Binary files a/backend/Application/bin/Debug/net8.0/Application.dll and b/backend/Application/bin/Debug/net8.0/Application.dll differ
diff --git a/backend/Application/bin/Debug/net8.0/Application.pdb b/backend/Application/bin/Debug/net8.0/Application.pdb
index cebe308..fadae4a 100644
Binary files a/backend/Application/bin/Debug/net8.0/Application.pdb and b/backend/Application/bin/Debug/net8.0/Application.pdb differ
diff --git a/backend/Application/bin/Debug/net8.0/Core.dll b/backend/Application/bin/Debug/net8.0/Core.dll
index 084d28e..832a623 100644
Binary files a/backend/Application/bin/Debug/net8.0/Core.dll and b/backend/Application/bin/Debug/net8.0/Core.dll differ
diff --git a/backend/Application/bin/Debug/net8.0/Core.pdb b/backend/Application/bin/Debug/net8.0/Core.pdb
index 87867c2..53f26cc 100644
Binary files a/backend/Application/bin/Debug/net8.0/Core.pdb and b/backend/Application/bin/Debug/net8.0/Core.pdb differ
diff --git a/backend/Application/bin/Release/net8.0/Application.deps.json b/backend/Application/bin/Release/net8.0/Application.deps.json
new file mode 100644
index 0000000..7db3fe4
--- /dev/null
+++ b/backend/Application/bin/Release/net8.0/Application.deps.json
@@ -0,0 +1,331 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v8.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v8.0": {
+ "Application/1.0.0": {
+ "dependencies": {
+ "Core": "1.0.0",
+ "FluentValidation": "11.9.0",
+ "MongoDB.Driver": "2.24.0"
+ },
+ "runtime": {
+ "Application.dll": {}
+ }
+ },
+ "AWSSDK.Core/3.7.100.14": {
+ "runtime": {
+ "lib/netcoreapp3.1/AWSSDK.Core.dll": {
+ "assemblyVersion": "3.3.0.0",
+ "fileVersion": "3.7.100.14"
+ }
+ }
+ },
+ "AWSSDK.SecurityToken/3.7.100.14": {
+ "dependencies": {
+ "AWSSDK.Core": "3.7.100.14"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/AWSSDK.SecurityToken.dll": {
+ "assemblyVersion": "3.3.0.0",
+ "fileVersion": "3.7.100.14"
+ }
+ }
+ },
+ "DnsClient/1.6.1": {
+ "dependencies": {
+ "Microsoft.Win32.Registry": "5.0.0"
+ },
+ "runtime": {
+ "lib/net5.0/DnsClient.dll": {
+ "assemblyVersion": "1.6.1.0",
+ "fileVersion": "1.6.1.0"
+ }
+ }
+ },
+ "FluentValidation/11.9.0": {
+ "runtime": {
+ "lib/net8.0/FluentValidation.dll": {
+ "assemblyVersion": "11.0.0.0",
+ "fileVersion": "11.9.0.0"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/2.0.0": {
+ "runtime": {
+ "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "assemblyVersion": "2.0.0.0",
+ "fileVersion": "2.0.0.17205"
+ }
+ }
+ },
+ "Microsoft.NETCore.Platforms/5.0.0": {},
+ "Microsoft.Win32.Registry/5.0.0": {
+ "dependencies": {
+ "System.Security.AccessControl": "5.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ }
+ },
+ "MongoDB.Bson/2.24.0": {
+ "dependencies": {
+ "System.Memory": "4.5.5",
+ "System.Runtime.CompilerServices.Unsafe": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/MongoDB.Bson.dll": {
+ "assemblyVersion": "2.24.0.0",
+ "fileVersion": "2.24.0.0"
+ }
+ }
+ },
+ "MongoDB.Driver/2.24.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Logging.Abstractions": "2.0.0",
+ "MongoDB.Bson": "2.24.0",
+ "MongoDB.Driver.Core": "2.24.0",
+ "MongoDB.Libmongocrypt": "1.8.2"
+ },
+ "runtime": {
+ "lib/netstandard2.1/MongoDB.Driver.dll": {
+ "assemblyVersion": "2.24.0.0",
+ "fileVersion": "2.24.0.0"
+ }
+ }
+ },
+ "MongoDB.Driver.Core/2.24.0": {
+ "dependencies": {
+ "AWSSDK.SecurityToken": "3.7.100.14",
+ "DnsClient": "1.6.1",
+ "Microsoft.Extensions.Logging.Abstractions": "2.0.0",
+ "MongoDB.Bson": "2.24.0",
+ "MongoDB.Libmongocrypt": "1.8.2",
+ "SharpCompress": "0.30.1",
+ "Snappier": "1.0.0",
+ "System.Buffers": "4.5.1",
+ "ZstdSharp.Port": "0.7.3"
+ },
+ "runtime": {
+ "lib/netstandard2.1/MongoDB.Driver.Core.dll": {
+ "assemblyVersion": "2.24.0.0",
+ "fileVersion": "2.24.0.0"
+ }
+ }
+ },
+ "MongoDB.Libmongocrypt/1.8.2": {
+ "runtime": {
+ "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": {
+ "assemblyVersion": "1.8.2.0",
+ "fileVersion": "1.8.2.0"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/linux/native/libmongocrypt.so": {
+ "rid": "linux",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/osx/native/libmongocrypt.dylib": {
+ "rid": "osx",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/win/native/mongocrypt.dll": {
+ "rid": "win",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ }
+ }
+ },
+ "SharpCompress/0.30.1": {
+ "runtime": {
+ "lib/net5.0/SharpCompress.dll": {
+ "assemblyVersion": "0.30.1.0",
+ "fileVersion": "0.30.1.0"
+ }
+ }
+ },
+ "Snappier/1.0.0": {
+ "runtime": {
+ "lib/net5.0/Snappier.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "1.0.0.0"
+ }
+ }
+ },
+ "System.Buffers/4.5.1": {},
+ "System.Memory/4.5.5": {},
+ "System.Runtime.CompilerServices.Unsafe/5.0.0": {},
+ "System.Security.AccessControl/5.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ }
+ },
+ "System.Security.Principal.Windows/5.0.0": {},
+ "ZstdSharp.Port/0.7.3": {
+ "runtime": {
+ "lib/net7.0/ZstdSharp.dll": {
+ "assemblyVersion": "0.7.3.0",
+ "fileVersion": "0.7.3.0"
+ }
+ }
+ },
+ "Core/1.0.0": {
+ "dependencies": {
+ "MongoDB.Bson": "2.24.0"
+ },
+ "runtime": {
+ "Core.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Application/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "AWSSDK.Core/3.7.100.14": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-gnEgxBlk4PFEfdPE8Lkf4+D16MZFYSaW7/o6Wwe5e035QWUkTJX0Dn4LfTCdV5QSEL/fOFxu+yCAm55eIIBgog==",
+ "path": "awssdk.core/3.7.100.14",
+ "hashPath": "awssdk.core.3.7.100.14.nupkg.sha512"
+ },
+ "AWSSDK.SecurityToken/3.7.100.14": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dGCVuVo0CFUKWW85W8YENO+aREf8sCBDjvGbnNvxJuNW4Ss+brEU9ltHhq2KfZze2VUNK1/wygbPG1bmbpyXEw==",
+ "path": "awssdk.securitytoken/3.7.100.14",
+ "hashPath": "awssdk.securitytoken.3.7.100.14.nupkg.sha512"
+ },
+ "DnsClient/1.6.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-4H/f2uYJOZ+YObZjpY9ABrKZI+JNw3uizp6oMzTXwDw6F+2qIPhpRl/1t68O/6e98+vqNiYGu+lswmwdYUy3gg==",
+ "path": "dnsclient/1.6.1",
+ "hashPath": "dnsclient.1.6.1.nupkg.sha512"
+ },
+ "FluentValidation/11.9.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VneVlTvwYDkfHV5av3QrQ0amALgrLX6LV94wlYyEsh0B/klJBW7C8y2eAtj5tOZ3jH6CAVpr4s1ZGgew/QWyig==",
+ "path": "fluentvalidation/11.9.0",
+ "hashPath": "fluentvalidation.11.9.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Abstractions/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-6ZCllUYGFukkymSTx3Yr0G/ajRxoNJp7/FqSxSB4fGISST54ifBhgu4Nc0ItGi3i6DqwuNd8SUyObmiC++AO2Q==",
+ "path": "microsoft.extensions.logging.abstractions/2.0.0",
+ "hashPath": "microsoft.extensions.logging.abstractions.2.0.0.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Platforms/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
+ "path": "microsoft.netcore.platforms/5.0.0",
+ "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Win32.Registry/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
+ "path": "microsoft.win32.registry/5.0.0",
+ "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512"
+ },
+ "MongoDB.Bson/2.24.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-n8CWaA4iTuoEQYv0+FSKNTX/hJozFQa5EgSILVNPhTGHcrbABHhpVrT1NwRRAAS6sUb8ZyhHmLPBa88LJemptA==",
+ "path": "mongodb.bson/2.24.0",
+ "hashPath": "mongodb.bson.2.24.0.nupkg.sha512"
+ },
+ "MongoDB.Driver/2.24.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-j1q11iMk3LN38ze6jgV1ATp+WKVVQbsGrhFkuOcHwRNtIk70TpLKjOD1Z3CCkyrzxCsUyhwk745tK2ASNOI4WA==",
+ "path": "mongodb.driver/2.24.0",
+ "hashPath": "mongodb.driver.2.24.0.nupkg.sha512"
+ },
+ "MongoDB.Driver.Core/2.24.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UW0yadpMPi9+MtLHy6onpol3D9tXMRg61P0ROnij+h35EOr0vt/nxvlPrDcUjl3SvttvpsEXQKxb2lQShBA1dA==",
+ "path": "mongodb.driver.core/2.24.0",
+ "hashPath": "mongodb.driver.core.2.24.0.nupkg.sha512"
+ },
+ "MongoDB.Libmongocrypt/1.8.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-z/8JCULSHM1+mzkau0ivIkU9kIn8JEFFSkmYTSaMaWMMHt96JjUtMKuXxeGNGSnHZ5290ZPKIlQfjoWFk2sKog==",
+ "path": "mongodb.libmongocrypt/1.8.2",
+ "hashPath": "mongodb.libmongocrypt.1.8.2.nupkg.sha512"
+ },
+ "SharpCompress/0.30.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==",
+ "path": "sharpcompress/0.30.1",
+ "hashPath": "sharpcompress.0.30.1.nupkg.sha512"
+ },
+ "Snappier/1.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rFtK2KEI9hIe8gtx3a0YDXdHOpedIf9wYCEYtBEmtlyiWVX3XlCNV03JrmmAi/Cdfn7dxK+k0sjjcLv4fpHnqA==",
+ "path": "snappier/1.0.0",
+ "hashPath": "snappier.1.0.0.nupkg.sha512"
+ },
+ "System.Buffers/4.5.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
+ "path": "system.buffers/4.5.1",
+ "hashPath": "system.buffers.4.5.1.nupkg.sha512"
+ },
+ "System.Memory/4.5.5": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
+ "path": "system.memory/4.5.5",
+ "hashPath": "system.memory.4.5.5.nupkg.sha512"
+ },
+ "System.Runtime.CompilerServices.Unsafe/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
+ "path": "system.runtime.compilerservices.unsafe/5.0.0",
+ "hashPath": "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512"
+ },
+ "System.Security.AccessControl/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
+ "path": "system.security.accesscontrol/5.0.0",
+ "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512"
+ },
+ "System.Security.Principal.Windows/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
+ "path": "system.security.principal.windows/5.0.0",
+ "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512"
+ },
+ "ZstdSharp.Port/0.7.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-U9Ix4l4cl58Kzz1rJzj5hoVTjmbx1qGMwzAcbv1j/d3NzrFaESIurQyg+ow4mivCgkE3S413y+U9k4WdnEIkRA==",
+ "path": "zstdsharp.port/0.7.3",
+ "hashPath": "zstdsharp.port.0.7.3.nupkg.sha512"
+ },
+ "Core/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/backend/Application/bin/Release/net8.0/Application.dll b/backend/Application/bin/Release/net8.0/Application.dll
new file mode 100644
index 0000000..765805d
Binary files /dev/null and b/backend/Application/bin/Release/net8.0/Application.dll differ
diff --git a/backend/Application/bin/Release/net8.0/Application.pdb b/backend/Application/bin/Release/net8.0/Application.pdb
new file mode 100644
index 0000000..8f537c0
Binary files /dev/null and b/backend/Application/bin/Release/net8.0/Application.pdb differ
diff --git a/backend/Application/bin/Release/net8.0/Core.dll b/backend/Application/bin/Release/net8.0/Core.dll
new file mode 100644
index 0000000..5f8e19b
Binary files /dev/null and b/backend/Application/bin/Release/net8.0/Core.dll differ
diff --git a/backend/Application/bin/Release/net8.0/Core.pdb b/backend/Application/bin/Release/net8.0/Core.pdb
new file mode 100644
index 0000000..496f3e3
Binary files /dev/null and b/backend/Application/bin/Release/net8.0/Core.pdb differ
diff --git a/backend/Application/obj/Application.csproj.nuget.dgspec.json b/backend/Application/obj/Application.csproj.nuget.dgspec.json
index 2e3301e..e429b71 100644
--- a/backend/Application/obj/Application.csproj.nuget.dgspec.json
+++ b/backend/Application/obj/Application.csproj.nuget.dgspec.json
@@ -1,20 +1,20 @@
{
"format": 1,
"restore": {
- "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj": {}
+ "/home/azureuser/CC-FinalProj/backend/Application/Application.csproj": {}
},
"projects": {
- "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj": {
+ "/home/azureuser/CC-FinalProj/backend/Application/Application.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj",
+ "projectUniqueName": "/home/azureuser/CC-FinalProj/backend/Application/Application.csproj",
"projectName": "Application",
- "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj",
- "packagesPath": "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\obj\\",
+ "projectPath": "/home/azureuser/CC-FinalProj/backend/Application/Application.csproj",
+ "packagesPath": "/root/.nuget/packages/",
+ "outputPath": "/home/azureuser/CC-FinalProj/backend/Application/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
- "C:\\Users\\Andrei Cerbu\\AppData\\Roaming\\NuGet\\NuGet.Config"
+ "/root/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net8.0"
@@ -26,8 +26,8 @@
"net8.0": {
"targetAlias": "net8.0",
"projectReferences": {
- "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj": {
- "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj"
+ "/home/azureuser/CC-FinalProj/backend/Core/Core.csproj": {
+ "projectPath": "/home/azureuser/CC-FinalProj/backend/Core/Core.csproj"
}
}
}
@@ -36,6 +36,11 @@
"warnAsError": [
"NU1605"
]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "direct"
}
},
"frameworks": {
@@ -67,21 +72,21 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.204/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json"
}
}
},
- "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj": {
+ "/home/azureuser/CC-FinalProj/backend/Core/Core.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj",
+ "projectUniqueName": "/home/azureuser/CC-FinalProj/backend/Core/Core.csproj",
"projectName": "Core",
- "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj",
- "packagesPath": "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\obj\\",
+ "projectPath": "/home/azureuser/CC-FinalProj/backend/Core/Core.csproj",
+ "packagesPath": "/root/.nuget/packages/",
+ "outputPath": "/home/azureuser/CC-FinalProj/backend/Core/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
- "C:\\Users\\Andrei Cerbu\\AppData\\Roaming\\NuGet\\NuGet.Config"
+ "/root/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net8.0"
@@ -99,6 +104,11 @@
"warnAsError": [
"NU1605"
]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "direct"
}
},
"frameworks": {
@@ -126,7 +136,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.204/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json"
}
}
}
diff --git a/backend/Application/obj/Application.csproj.nuget.g.props b/backend/Application/obj/Application.csproj.nuget.g.props
index 110a9a9..419e262 100644
--- a/backend/Application/obj/Application.csproj.nuget.g.props
+++ b/backend/Application/obj/Application.csproj.nuget.g.props
@@ -4,16 +4,16 @@
True
NuGet
$(MSBuildThisFileDirectory)project.assets.json
- $(UserProfile)\.nuget\packages\
- C:\Users\Andrei Cerbu\.nuget\packages\
+ /root/.nuget/packages/
+ /root/.nuget/packages/
PackageReference
6.9.1
-
+
- C:\Users\Andrei Cerbu\.nuget\packages\awssdk.core\3.7.100.14
- C:\Users\Andrei Cerbu\.nuget\packages\awssdk.securitytoken\3.7.100.14
+ /root/.nuget/packages/awssdk.core/3.7.100.14
+ /root/.nuget/packages/awssdk.securitytoken/3.7.100.14
\ No newline at end of file
diff --git a/backend/Application/obj/Debug/net8.0/Application.AssemblyInfo.cs b/backend/Application/obj/Debug/net8.0/Application.AssemblyInfo.cs
index 7631959..ddacefe 100644
--- a/backend/Application/obj/Debug/net8.0/Application.AssemblyInfo.cs
+++ b/backend/Application/obj/Debug/net8.0/Application.AssemblyInfo.cs
@@ -13,7 +13,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Application")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+e57b47cae362bcdd292021d92f19844516cd42b7")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+8e4322649e4df45cec652c7098c929f725ff16bf")]
[assembly: System.Reflection.AssemblyProductAttribute("Application")]
[assembly: System.Reflection.AssemblyTitleAttribute("Application")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
diff --git a/backend/Application/obj/Debug/net8.0/Application.AssemblyInfoInputs.cache b/backend/Application/obj/Debug/net8.0/Application.AssemblyInfoInputs.cache
index 99f26a4..7296c34 100644
--- a/backend/Application/obj/Debug/net8.0/Application.AssemblyInfoInputs.cache
+++ b/backend/Application/obj/Debug/net8.0/Application.AssemblyInfoInputs.cache
@@ -1 +1 @@
-bfe10c0d99ed763107935cd49c0577dc27e483b0ca9df238669535f4476770d5
+6ca174afc35f5fdcc8715c5bb376cc554f09ba16eda6d67b7df7a3c0e062c344
diff --git a/backend/Application/obj/Debug/net8.0/Application.GeneratedMSBuildEditorConfig.editorconfig b/backend/Application/obj/Debug/net8.0/Application.GeneratedMSBuildEditorConfig.editorconfig
index 8b01177..582cffd 100644
--- a/backend/Application/obj/Debug/net8.0/Application.GeneratedMSBuildEditorConfig.editorconfig
+++ b/backend/Application/obj/Debug/net8.0/Application.GeneratedMSBuildEditorConfig.editorconfig
@@ -8,6 +8,6 @@ build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Application
-build_property.ProjectDir = C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Application\
+build_property.ProjectDir = /home/azureuser/CC-FinalProj/backend/Application/
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
diff --git a/backend/Application/obj/Debug/net8.0/Application.assets.cache b/backend/Application/obj/Debug/net8.0/Application.assets.cache
index d31744b..af6608e 100644
Binary files a/backend/Application/obj/Debug/net8.0/Application.assets.cache and b/backend/Application/obj/Debug/net8.0/Application.assets.cache differ
diff --git a/backend/Application/obj/Debug/net8.0/Application.csproj.AssemblyReference.cache b/backend/Application/obj/Debug/net8.0/Application.csproj.AssemblyReference.cache
index 9866b35..fe55d0b 100644
Binary files a/backend/Application/obj/Debug/net8.0/Application.csproj.AssemblyReference.cache and b/backend/Application/obj/Debug/net8.0/Application.csproj.AssemblyReference.cache differ
diff --git a/backend/Application/obj/Debug/net8.0/Application.csproj.CoreCompileInputs.cache b/backend/Application/obj/Debug/net8.0/Application.csproj.CoreCompileInputs.cache
index 8b1464c..8248f56 100644
--- a/backend/Application/obj/Debug/net8.0/Application.csproj.CoreCompileInputs.cache
+++ b/backend/Application/obj/Debug/net8.0/Application.csproj.CoreCompileInputs.cache
@@ -1 +1 @@
-24d48b7ac5c8a48e682ae0667a5c1f940feef5e7c37e8785d24884ba316ad382
+b1f2dfdf7e90d16b502e2392466d697f9ae0afc3e370989a7d04c991ccff86d5
diff --git a/backend/Application/obj/Debug/net8.0/Application.csproj.FileListAbsolute.txt b/backend/Application/obj/Debug/net8.0/Application.csproj.FileListAbsolute.txt
index 0d2a1d8..04adda8 100644
--- a/backend/Application/obj/Debug/net8.0/Application.csproj.FileListAbsolute.txt
+++ b/backend/Application/obj/Debug/net8.0/Application.csproj.FileListAbsolute.txt
@@ -1,46 +1,62 @@
-C:\Users\Andrei Cerbu\Desktop\backend\Application\bin\Debug\net8.0\Application.deps.json
-C:\Users\Andrei Cerbu\Desktop\backend\Application\bin\Debug\net8.0\Application.dll
-C:\Users\Andrei Cerbu\Desktop\backend\Application\bin\Debug\net8.0\Application.pdb
-C:\Users\Andrei Cerbu\Desktop\backend\Application\bin\Debug\net8.0\Core.dll
-C:\Users\Andrei Cerbu\Desktop\backend\Application\bin\Debug\net8.0\Core.pdb
-C:\Users\Andrei Cerbu\Desktop\backend\Application\obj\Debug\net8.0\Application.csproj.AssemblyReference.cache
-C:\Users\Andrei Cerbu\Desktop\backend\Application\obj\Debug\net8.0\Application.GeneratedMSBuildEditorConfig.editorconfig
-C:\Users\Andrei Cerbu\Desktop\backend\Application\obj\Debug\net8.0\Application.AssemblyInfoInputs.cache
-C:\Users\Andrei Cerbu\Desktop\backend\Application\obj\Debug\net8.0\Application.AssemblyInfo.cs
-C:\Users\Andrei Cerbu\Desktop\backend\Application\obj\Debug\net8.0\Application.csproj.CoreCompileInputs.cache
-C:\Users\Andrei Cerbu\Desktop\backend\Application\obj\Debug\net8.0\Application.dll
-C:\Users\Andrei Cerbu\Desktop\backend\Application\obj\Debug\net8.0\refint\Application.dll
-C:\Users\Andrei Cerbu\Desktop\backend\Application\obj\Debug\net8.0\Application.pdb
-C:\Users\Andrei Cerbu\Desktop\backend\Application\obj\Debug\net8.0\ref\Application.dll
-C:\Users\Andrei Cerbu\Desktop\backend\Application\obj\Debug\net8.0\Application.csproj.CopyComplete
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Application\bin\Debug\net8.0\Application.deps.json
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Application\bin\Debug\net8.0\Application.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Application\bin\Debug\net8.0\Application.pdb
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Application\bin\Debug\net8.0\Core.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Application\bin\Debug\net8.0\Core.pdb
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Application\obj\Debug\net8.0\Application.csproj.AssemblyReference.cache
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Application\obj\Debug\net8.0\Application.GeneratedMSBuildEditorConfig.editorconfig
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Application\obj\Debug\net8.0\Application.AssemblyInfoInputs.cache
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Application\obj\Debug\net8.0\Application.AssemblyInfo.cs
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Application\obj\Debug\net8.0\Application.csproj.CoreCompileInputs.cache
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Application\obj\Debug\net8.0\Application.csproj.CopyComplete
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Application\obj\Debug\net8.0\Application.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Application\obj\Debug\net8.0\refint\Application.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Application\obj\Debug\net8.0\Application.pdb
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Application\obj\Debug\net8.0\ref\Application.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Application\bin\Debug\net8.0\Application.deps.json
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Application\bin\Debug\net8.0\Application.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Application\bin\Debug\net8.0\Application.pdb
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Application\bin\Debug\net8.0\Core.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Application\bin\Debug\net8.0\Core.pdb
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Application\obj\Debug\net8.0\Application.csproj.AssemblyReference.cache
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Application\obj\Debug\net8.0\Application.GeneratedMSBuildEditorConfig.editorconfig
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Application\obj\Debug\net8.0\Application.AssemblyInfoInputs.cache
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Application\obj\Debug\net8.0\Application.AssemblyInfo.cs
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Application\obj\Debug\net8.0\Application.csproj.CoreCompileInputs.cache
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Application\obj\Debug\net8.0\Application.sourcelink.json
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Application\obj\Debug\net8.0\Applicat.44B5EDA2.Up2Date
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Application\obj\Debug\net8.0\Application.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Application\obj\Debug\net8.0\refint\Application.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Application\obj\Debug\net8.0\Application.pdb
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Application\obj\Debug\net8.0\ref\Application.dll
+C:/Users/Andrei Cerbu/Desktop/backend/Application/bin/Debug/net8.0/Application.deps.json
+C:/Users/Andrei Cerbu/Desktop/backend/Application/bin/Debug/net8.0/Application.dll
+C:/Users/Andrei Cerbu/Desktop/backend/Application/bin/Debug/net8.0/Application.pdb
+C:/Users/Andrei Cerbu/Desktop/backend/Application/bin/Debug/net8.0/Core.dll
+C:/Users/Andrei Cerbu/Desktop/backend/Application/bin/Debug/net8.0/Core.pdb
+C:/Users/Andrei Cerbu/Desktop/backend/Application/obj/Debug/net8.0/Application.csproj.AssemblyReference.cache
+C:/Users/Andrei Cerbu/Desktop/backend/Application/obj/Debug/net8.0/Application.GeneratedMSBuildEditorConfig.editorconfig
+C:/Users/Andrei Cerbu/Desktop/backend/Application/obj/Debug/net8.0/Application.AssemblyInfoInputs.cache
+C:/Users/Andrei Cerbu/Desktop/backend/Application/obj/Debug/net8.0/Application.AssemblyInfo.cs
+C:/Users/Andrei Cerbu/Desktop/backend/Application/obj/Debug/net8.0/Application.csproj.CoreCompileInputs.cache
+C:/Users/Andrei Cerbu/Desktop/backend/Application/obj/Debug/net8.0/Application.dll
+C:/Users/Andrei Cerbu/Desktop/backend/Application/obj/Debug/net8.0/refint/Application.dll
+C:/Users/Andrei Cerbu/Desktop/backend/Application/obj/Debug/net8.0/Application.pdb
+C:/Users/Andrei Cerbu/Desktop/backend/Application/obj/Debug/net8.0/ref/Application.dll
+C:/Users/Andrei Cerbu/Desktop/backend/Application/obj/Debug/net8.0/Application.csproj.CopyComplete
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Application/bin/Debug/net8.0/Application.deps.json
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Application/bin/Debug/net8.0/Application.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Application/bin/Debug/net8.0/Application.pdb
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Application/bin/Debug/net8.0/Core.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Application/bin/Debug/net8.0/Core.pdb
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Application/obj/Debug/net8.0/Application.csproj.AssemblyReference.cache
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Application/obj/Debug/net8.0/Application.GeneratedMSBuildEditorConfig.editorconfig
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Application/obj/Debug/net8.0/Application.AssemblyInfoInputs.cache
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Application/obj/Debug/net8.0/Application.AssemblyInfo.cs
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Application/obj/Debug/net8.0/Application.csproj.CoreCompileInputs.cache
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Application/obj/Debug/net8.0/Application.csproj.CopyComplete
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Application/obj/Debug/net8.0/Application.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Application/obj/Debug/net8.0/refint/Application.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Application/obj/Debug/net8.0/Application.pdb
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Application/obj/Debug/net8.0/ref/Application.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Application/bin/Debug/net8.0/Application.deps.json
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Application/bin/Debug/net8.0/Application.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Application/bin/Debug/net8.0/Application.pdb
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Application/bin/Debug/net8.0/Core.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Application/bin/Debug/net8.0/Core.pdb
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Application/obj/Debug/net8.0/Application.csproj.AssemblyReference.cache
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Application/obj/Debug/net8.0/Application.GeneratedMSBuildEditorConfig.editorconfig
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Application/obj/Debug/net8.0/Application.AssemblyInfoInputs.cache
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Application/obj/Debug/net8.0/Application.AssemblyInfo.cs
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Application/obj/Debug/net8.0/Application.csproj.CoreCompileInputs.cache
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Application/obj/Debug/net8.0/Application.sourcelink.json
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Application/obj/Debug/net8.0/Applicat.44B5EDA2.Up2Date
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Application/obj/Debug/net8.0/Application.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Application/obj/Debug/net8.0/refint/Application.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Application/obj/Debug/net8.0/Application.pdb
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Application/obj/Debug/net8.0/ref/Application.dll
+/home/azureuser/CC-FinalProj/backend/Application/bin/Debug/net8.0/Application.deps.json
+/home/azureuser/CC-FinalProj/backend/Application/bin/Debug/net8.0/Application.dll
+/home/azureuser/CC-FinalProj/backend/Application/bin/Debug/net8.0/Application.pdb
+/home/azureuser/CC-FinalProj/backend/Application/bin/Debug/net8.0/Core.dll
+/home/azureuser/CC-FinalProj/backend/Application/bin/Debug/net8.0/Core.pdb
+/home/azureuser/CC-FinalProj/backend/Application/obj/Debug/net8.0/Application.csproj.AssemblyReference.cache
+/home/azureuser/CC-FinalProj/backend/Application/obj/Debug/net8.0/Application.GeneratedMSBuildEditorConfig.editorconfig
+/home/azureuser/CC-FinalProj/backend/Application/obj/Debug/net8.0/Application.AssemblyInfoInputs.cache
+/home/azureuser/CC-FinalProj/backend/Application/obj/Debug/net8.0/Application.AssemblyInfo.cs
+/home/azureuser/CC-FinalProj/backend/Application/obj/Debug/net8.0/Application.csproj.CoreCompileInputs.cache
+/home/azureuser/CC-FinalProj/backend/Application/obj/Debug/net8.0/Application.sourcelink.json
+/home/azureuser/CC-FinalProj/backend/Application/obj/Debug/net8.0/Applicat.44B5EDA2.Up2Date
+/home/azureuser/CC-FinalProj/backend/Application/obj/Debug/net8.0/Application.dll
+/home/azureuser/CC-FinalProj/backend/Application/obj/Debug/net8.0/refint/Application.dll
+/home/azureuser/CC-FinalProj/backend/Application/obj/Debug/net8.0/Application.pdb
+/home/azureuser/CC-FinalProj/backend/Application/obj/Debug/net8.0/ref/Application.dll
diff --git a/backend/Application/obj/Debug/net8.0/Application.dll b/backend/Application/obj/Debug/net8.0/Application.dll
index 2286215..8143ca9 100644
Binary files a/backend/Application/obj/Debug/net8.0/Application.dll and b/backend/Application/obj/Debug/net8.0/Application.dll differ
diff --git a/backend/Application/obj/Debug/net8.0/Application.pdb b/backend/Application/obj/Debug/net8.0/Application.pdb
index cebe308..fadae4a 100644
Binary files a/backend/Application/obj/Debug/net8.0/Application.pdb and b/backend/Application/obj/Debug/net8.0/Application.pdb differ
diff --git a/backend/Application/obj/Debug/net8.0/Application.sourcelink.json b/backend/Application/obj/Debug/net8.0/Application.sourcelink.json
index b7c2852..da14bfd 100644
--- a/backend/Application/obj/Debug/net8.0/Application.sourcelink.json
+++ b/backend/Application/obj/Debug/net8.0/Application.sourcelink.json
@@ -1 +1 @@
-{"documents":{"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\*":"https://raw.githubusercontent.com/andrei-mihnea-cerbu/CC-FinalProj/e57b47cae362bcdd292021d92f19844516cd42b7/*"}}
\ No newline at end of file
+{"documents":{"/home/azureuser/CC-FinalProj/*":"https://raw.githubusercontent.com/andrei-mihnea-cerbu/CC-FinalProj/8e4322649e4df45cec652c7098c929f725ff16bf/*"}}
\ No newline at end of file
diff --git a/backend/Application/obj/Debug/net8.0/ref/Application.dll b/backend/Application/obj/Debug/net8.0/ref/Application.dll
index 0599bac..2c31ba6 100644
Binary files a/backend/Application/obj/Debug/net8.0/ref/Application.dll and b/backend/Application/obj/Debug/net8.0/ref/Application.dll differ
diff --git a/backend/Application/obj/Debug/net8.0/refint/Application.dll b/backend/Application/obj/Debug/net8.0/refint/Application.dll
index 0599bac..2c31ba6 100644
Binary files a/backend/Application/obj/Debug/net8.0/refint/Application.dll and b/backend/Application/obj/Debug/net8.0/refint/Application.dll differ
diff --git a/backend/Application/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/backend/Application/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..dca70aa
--- /dev/null
+++ b/backend/Application/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
diff --git a/backend/Application/obj/Release/net8.0/Applicat.44B5EDA2.Up2Date b/backend/Application/obj/Release/net8.0/Applicat.44B5EDA2.Up2Date
new file mode 100644
index 0000000..e69de29
diff --git a/backend/Application/obj/Release/net8.0/Application.AssemblyInfo.cs b/backend/Application/obj/Release/net8.0/Application.AssemblyInfo.cs
new file mode 100644
index 0000000..9cf8c4b
--- /dev/null
+++ b/backend/Application/obj/Release/net8.0/Application.AssemblyInfo.cs
@@ -0,0 +1,22 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("Application")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+8e4322649e4df45cec652c7098c929f725ff16bf")]
+[assembly: System.Reflection.AssemblyProductAttribute("Application")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Application")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/backend/Application/obj/Release/net8.0/Application.AssemblyInfoInputs.cache b/backend/Application/obj/Release/net8.0/Application.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..7bc879d
--- /dev/null
+++ b/backend/Application/obj/Release/net8.0/Application.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+05b350311c2158466e145b9690a97e82c9cc65123276a73475386669b6438a14
diff --git a/backend/Application/obj/Release/net8.0/Application.GeneratedMSBuildEditorConfig.editorconfig b/backend/Application/obj/Release/net8.0/Application.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..582cffd
--- /dev/null
+++ b/backend/Application/obj/Release/net8.0/Application.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,13 @@
+is_global = true
+build_property.TargetFramework = net8.0
+build_property.TargetPlatformMinVersion =
+build_property.UsingMicrosoftNETSdkWeb =
+build_property.ProjectTypeGuids =
+build_property.InvariantGlobalization =
+build_property.PlatformNeutralAssembly =
+build_property.EnforceExtendedAnalyzerRules =
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property.RootNamespace = Application
+build_property.ProjectDir = /home/azureuser/CC-FinalProj/backend/Application/
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
diff --git a/backend/Application/obj/Release/net8.0/Application.GlobalUsings.g.cs b/backend/Application/obj/Release/net8.0/Application.GlobalUsings.g.cs
new file mode 100644
index 0000000..8578f3d
--- /dev/null
+++ b/backend/Application/obj/Release/net8.0/Application.GlobalUsings.g.cs
@@ -0,0 +1,8 @@
+//
+global using global::System;
+global using global::System.Collections.Generic;
+global using global::System.IO;
+global using global::System.Linq;
+global using global::System.Net.Http;
+global using global::System.Threading;
+global using global::System.Threading.Tasks;
diff --git a/backend/Application/obj/Release/net8.0/Application.assets.cache b/backend/Application/obj/Release/net8.0/Application.assets.cache
new file mode 100644
index 0000000..097fc3b
Binary files /dev/null and b/backend/Application/obj/Release/net8.0/Application.assets.cache differ
diff --git a/backend/Application/obj/Release/net8.0/Application.csproj.AssemblyReference.cache b/backend/Application/obj/Release/net8.0/Application.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..67212bd
Binary files /dev/null and b/backend/Application/obj/Release/net8.0/Application.csproj.AssemblyReference.cache differ
diff --git a/backend/Application/obj/Release/net8.0/Application.csproj.CoreCompileInputs.cache b/backend/Application/obj/Release/net8.0/Application.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..2318123
--- /dev/null
+++ b/backend/Application/obj/Release/net8.0/Application.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+6e280b4e0f4d55906dc2a5f0c15d4741642cc3aa2a3e441a0b30d80e6ed511ac
diff --git a/backend/Application/obj/Release/net8.0/Application.csproj.FileListAbsolute.txt b/backend/Application/obj/Release/net8.0/Application.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..7535d71
--- /dev/null
+++ b/backend/Application/obj/Release/net8.0/Application.csproj.FileListAbsolute.txt
@@ -0,0 +1,16 @@
+/home/azureuser/CC-FinalProj/backend/Application/bin/Release/net8.0/Application.deps.json
+/home/azureuser/CC-FinalProj/backend/Application/bin/Release/net8.0/Application.dll
+/home/azureuser/CC-FinalProj/backend/Application/bin/Release/net8.0/Application.pdb
+/home/azureuser/CC-FinalProj/backend/Application/bin/Release/net8.0/Core.dll
+/home/azureuser/CC-FinalProj/backend/Application/bin/Release/net8.0/Core.pdb
+/home/azureuser/CC-FinalProj/backend/Application/obj/Release/net8.0/Application.csproj.AssemblyReference.cache
+/home/azureuser/CC-FinalProj/backend/Application/obj/Release/net8.0/Application.GeneratedMSBuildEditorConfig.editorconfig
+/home/azureuser/CC-FinalProj/backend/Application/obj/Release/net8.0/Application.AssemblyInfoInputs.cache
+/home/azureuser/CC-FinalProj/backend/Application/obj/Release/net8.0/Application.AssemblyInfo.cs
+/home/azureuser/CC-FinalProj/backend/Application/obj/Release/net8.0/Application.csproj.CoreCompileInputs.cache
+/home/azureuser/CC-FinalProj/backend/Application/obj/Release/net8.0/Application.sourcelink.json
+/home/azureuser/CC-FinalProj/backend/Application/obj/Release/net8.0/Applicat.44B5EDA2.Up2Date
+/home/azureuser/CC-FinalProj/backend/Application/obj/Release/net8.0/Application.dll
+/home/azureuser/CC-FinalProj/backend/Application/obj/Release/net8.0/refint/Application.dll
+/home/azureuser/CC-FinalProj/backend/Application/obj/Release/net8.0/Application.pdb
+/home/azureuser/CC-FinalProj/backend/Application/obj/Release/net8.0/ref/Application.dll
diff --git a/backend/Application/obj/Release/net8.0/Application.dll b/backend/Application/obj/Release/net8.0/Application.dll
new file mode 100644
index 0000000..765805d
Binary files /dev/null and b/backend/Application/obj/Release/net8.0/Application.dll differ
diff --git a/backend/Application/obj/Release/net8.0/Application.pdb b/backend/Application/obj/Release/net8.0/Application.pdb
new file mode 100644
index 0000000..8f537c0
Binary files /dev/null and b/backend/Application/obj/Release/net8.0/Application.pdb differ
diff --git a/backend/Application/obj/Release/net8.0/Application.sourcelink.json b/backend/Application/obj/Release/net8.0/Application.sourcelink.json
new file mode 100644
index 0000000..da14bfd
--- /dev/null
+++ b/backend/Application/obj/Release/net8.0/Application.sourcelink.json
@@ -0,0 +1 @@
+{"documents":{"/home/azureuser/CC-FinalProj/*":"https://raw.githubusercontent.com/andrei-mihnea-cerbu/CC-FinalProj/8e4322649e4df45cec652c7098c929f725ff16bf/*"}}
\ No newline at end of file
diff --git a/backend/Application/obj/Release/net8.0/ref/Application.dll b/backend/Application/obj/Release/net8.0/ref/Application.dll
new file mode 100644
index 0000000..44f11f3
Binary files /dev/null and b/backend/Application/obj/Release/net8.0/ref/Application.dll differ
diff --git a/backend/Application/obj/Release/net8.0/refint/Application.dll b/backend/Application/obj/Release/net8.0/refint/Application.dll
new file mode 100644
index 0000000..44f11f3
Binary files /dev/null and b/backend/Application/obj/Release/net8.0/refint/Application.dll differ
diff --git a/backend/Application/obj/project.assets.json b/backend/Application/obj/project.assets.json
index 92d7635..967f1b7 100644
--- a/backend/Application/obj/project.assets.json
+++ b/backend/Application/obj/project.assets.json
@@ -839,19 +839,19 @@
]
},
"packageFolders": {
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\": {}
+ "/root/.nuget/packages/": {}
},
"project": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj",
+ "projectUniqueName": "/home/azureuser/CC-FinalProj/backend/Application/Application.csproj",
"projectName": "Application",
- "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj",
- "packagesPath": "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\obj\\",
+ "projectPath": "/home/azureuser/CC-FinalProj/backend/Application/Application.csproj",
+ "packagesPath": "/root/.nuget/packages/",
+ "outputPath": "/home/azureuser/CC-FinalProj/backend/Application/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
- "C:\\Users\\Andrei Cerbu\\AppData\\Roaming\\NuGet\\NuGet.Config"
+ "/root/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net8.0"
@@ -863,8 +863,8 @@
"net8.0": {
"targetAlias": "net8.0",
"projectReferences": {
- "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj": {
- "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj"
+ "/home/azureuser/CC-FinalProj/backend/Core/Core.csproj": {
+ "projectPath": "/home/azureuser/CC-FinalProj/backend/Core/Core.csproj"
}
}
}
@@ -873,6 +873,11 @@
"warnAsError": [
"NU1605"
]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "direct"
}
},
"frameworks": {
@@ -904,7 +909,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.204/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json"
}
}
}
diff --git a/backend/Application/obj/project.nuget.cache b/backend/Application/obj/project.nuget.cache
index 27acbbf..eed8243 100644
--- a/backend/Application/obj/project.nuget.cache
+++ b/backend/Application/obj/project.nuget.cache
@@ -1,28 +1,28 @@
{
"version": 2,
- "dgSpecHash": "WyH33m7zWk7g3j9CYvsFPzXsDJPPyeIPctq/SoZ74VYQioORxLnWL2xpKN/Lnbjde/zH0vxe/WOL05jX/+a0tg==",
+ "dgSpecHash": "xbFAS0EJ9D5wqx6C2ZwtqAkjTv6+37IIPMzuXcWc+eX3pzBKAk/xD079gtuhxXRl26oX/FuHjD68U4JeA5xl7g==",
"success": true,
- "projectFilePath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj",
+ "projectFilePath": "/home/azureuser/CC-FinalProj/backend/Application/Application.csproj",
"expectedPackageFiles": [
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\awssdk.core\\3.7.100.14\\awssdk.core.3.7.100.14.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\awssdk.securitytoken\\3.7.100.14\\awssdk.securitytoken.3.7.100.14.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\dnsclient\\1.6.1\\dnsclient.1.6.1.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\fluentvalidation\\11.9.0\\fluentvalidation.11.9.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\2.0.0\\microsoft.extensions.logging.abstractions.2.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.win32.registry\\5.0.0\\microsoft.win32.registry.5.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\mongodb.bson\\2.24.0\\mongodb.bson.2.24.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\mongodb.driver\\2.24.0\\mongodb.driver.2.24.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\mongodb.driver.core\\2.24.0\\mongodb.driver.core.2.24.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\mongodb.libmongocrypt\\1.8.2\\mongodb.libmongocrypt.1.8.2.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\sharpcompress\\0.30.1\\sharpcompress.0.30.1.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\snappier\\1.0.0\\snappier.1.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\system.memory\\4.5.5\\system.memory.4.5.5.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\5.0.0\\system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\system.security.accesscontrol\\5.0.0\\system.security.accesscontrol.5.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\zstdsharp.port\\0.7.3\\zstdsharp.port.0.7.3.nupkg.sha512"
+ "/root/.nuget/packages/awssdk.core/3.7.100.14/awssdk.core.3.7.100.14.nupkg.sha512",
+ "/root/.nuget/packages/awssdk.securitytoken/3.7.100.14/awssdk.securitytoken.3.7.100.14.nupkg.sha512",
+ "/root/.nuget/packages/dnsclient/1.6.1/dnsclient.1.6.1.nupkg.sha512",
+ "/root/.nuget/packages/fluentvalidation/11.9.0/fluentvalidation.11.9.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.logging.abstractions/2.0.0/microsoft.extensions.logging.abstractions.2.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.netcore.platforms/5.0.0/microsoft.netcore.platforms.5.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.win32.registry/5.0.0/microsoft.win32.registry.5.0.0.nupkg.sha512",
+ "/root/.nuget/packages/mongodb.bson/2.24.0/mongodb.bson.2.24.0.nupkg.sha512",
+ "/root/.nuget/packages/mongodb.driver/2.24.0/mongodb.driver.2.24.0.nupkg.sha512",
+ "/root/.nuget/packages/mongodb.driver.core/2.24.0/mongodb.driver.core.2.24.0.nupkg.sha512",
+ "/root/.nuget/packages/mongodb.libmongocrypt/1.8.2/mongodb.libmongocrypt.1.8.2.nupkg.sha512",
+ "/root/.nuget/packages/sharpcompress/0.30.1/sharpcompress.0.30.1.nupkg.sha512",
+ "/root/.nuget/packages/snappier/1.0.0/snappier.1.0.0.nupkg.sha512",
+ "/root/.nuget/packages/system.buffers/4.5.1/system.buffers.4.5.1.nupkg.sha512",
+ "/root/.nuget/packages/system.memory/4.5.5/system.memory.4.5.5.nupkg.sha512",
+ "/root/.nuget/packages/system.runtime.compilerservices.unsafe/5.0.0/system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512",
+ "/root/.nuget/packages/system.security.accesscontrol/5.0.0/system.security.accesscontrol.5.0.0.nupkg.sha512",
+ "/root/.nuget/packages/system.security.principal.windows/5.0.0/system.security.principal.windows.5.0.0.nupkg.sha512",
+ "/root/.nuget/packages/zstdsharp.port/0.7.3/zstdsharp.port.0.7.3.nupkg.sha512"
],
"logs": []
}
\ No newline at end of file
diff --git a/backend/Core/bin/Debug/net8.0/Core.dll b/backend/Core/bin/Debug/net8.0/Core.dll
index 084d28e..832a623 100644
Binary files a/backend/Core/bin/Debug/net8.0/Core.dll and b/backend/Core/bin/Debug/net8.0/Core.dll differ
diff --git a/backend/Core/bin/Debug/net8.0/Core.pdb b/backend/Core/bin/Debug/net8.0/Core.pdb
index 87867c2..53f26cc 100644
Binary files a/backend/Core/bin/Debug/net8.0/Core.pdb and b/backend/Core/bin/Debug/net8.0/Core.pdb differ
diff --git a/backend/Core/bin/Release/net8.0/Core.deps.json b/backend/Core/bin/Release/net8.0/Core.deps.json
new file mode 100644
index 0000000..a58542f
--- /dev/null
+++ b/backend/Core/bin/Release/net8.0/Core.deps.json
@@ -0,0 +1,61 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v8.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v8.0": {
+ "Core/1.0.0": {
+ "dependencies": {
+ "MongoDB.Bson": "2.24.0"
+ },
+ "runtime": {
+ "Core.dll": {}
+ }
+ },
+ "MongoDB.Bson/2.24.0": {
+ "dependencies": {
+ "System.Memory": "4.5.5",
+ "System.Runtime.CompilerServices.Unsafe": "5.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/MongoDB.Bson.dll": {
+ "assemblyVersion": "2.24.0.0",
+ "fileVersion": "2.24.0.0"
+ }
+ }
+ },
+ "System.Memory/4.5.5": {},
+ "System.Runtime.CompilerServices.Unsafe/5.0.0": {}
+ }
+ },
+ "libraries": {
+ "Core/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "MongoDB.Bson/2.24.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-n8CWaA4iTuoEQYv0+FSKNTX/hJozFQa5EgSILVNPhTGHcrbABHhpVrT1NwRRAAS6sUb8ZyhHmLPBa88LJemptA==",
+ "path": "mongodb.bson/2.24.0",
+ "hashPath": "mongodb.bson.2.24.0.nupkg.sha512"
+ },
+ "System.Memory/4.5.5": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
+ "path": "system.memory/4.5.5",
+ "hashPath": "system.memory.4.5.5.nupkg.sha512"
+ },
+ "System.Runtime.CompilerServices.Unsafe/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==",
+ "path": "system.runtime.compilerservices.unsafe/5.0.0",
+ "hashPath": "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512"
+ }
+ }
+}
\ No newline at end of file
diff --git a/backend/Core/bin/Release/net8.0/Core.dll b/backend/Core/bin/Release/net8.0/Core.dll
new file mode 100644
index 0000000..5f8e19b
Binary files /dev/null and b/backend/Core/bin/Release/net8.0/Core.dll differ
diff --git a/backend/Core/bin/Release/net8.0/Core.pdb b/backend/Core/bin/Release/net8.0/Core.pdb
new file mode 100644
index 0000000..496f3e3
Binary files /dev/null and b/backend/Core/bin/Release/net8.0/Core.pdb differ
diff --git a/backend/Core/obj/Core.csproj.nuget.dgspec.json b/backend/Core/obj/Core.csproj.nuget.dgspec.json
index ca941db..073f63c 100644
--- a/backend/Core/obj/Core.csproj.nuget.dgspec.json
+++ b/backend/Core/obj/Core.csproj.nuget.dgspec.json
@@ -1,20 +1,20 @@
{
"format": 1,
"restore": {
- "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj": {}
+ "/home/azureuser/CC-FinalProj/backend/Core/Core.csproj": {}
},
"projects": {
- "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj": {
+ "/home/azureuser/CC-FinalProj/backend/Core/Core.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj",
+ "projectUniqueName": "/home/azureuser/CC-FinalProj/backend/Core/Core.csproj",
"projectName": "Core",
- "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj",
- "packagesPath": "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\obj\\",
+ "projectPath": "/home/azureuser/CC-FinalProj/backend/Core/Core.csproj",
+ "packagesPath": "/root/.nuget/packages/",
+ "outputPath": "/home/azureuser/CC-FinalProj/backend/Core/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
- "C:\\Users\\Andrei Cerbu\\AppData\\Roaming\\NuGet\\NuGet.Config"
+ "/root/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net8.0"
@@ -32,6 +32,11 @@
"warnAsError": [
"NU1605"
]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "direct"
}
},
"frameworks": {
@@ -59,7 +64,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.204/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json"
}
}
}
diff --git a/backend/Core/obj/Core.csproj.nuget.g.props b/backend/Core/obj/Core.csproj.nuget.g.props
index 53ed97d..6203992 100644
--- a/backend/Core/obj/Core.csproj.nuget.g.props
+++ b/backend/Core/obj/Core.csproj.nuget.g.props
@@ -4,12 +4,12 @@
True
NuGet
$(MSBuildThisFileDirectory)project.assets.json
- $(UserProfile)\.nuget\packages\
- C:\Users\Andrei Cerbu\.nuget\packages\
+ /root/.nuget/packages/
+ /root/.nuget/packages/
PackageReference
6.9.1
-
+
\ No newline at end of file
diff --git a/backend/Core/obj/Debug/net8.0/Core.AssemblyInfo.cs b/backend/Core/obj/Debug/net8.0/Core.AssemblyInfo.cs
index 6b92a14..4528dd6 100644
--- a/backend/Core/obj/Debug/net8.0/Core.AssemblyInfo.cs
+++ b/backend/Core/obj/Debug/net8.0/Core.AssemblyInfo.cs
@@ -13,7 +13,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Core")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+e57b47cae362bcdd292021d92f19844516cd42b7")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+8e4322649e4df45cec652c7098c929f725ff16bf")]
[assembly: System.Reflection.AssemblyProductAttribute("Core")]
[assembly: System.Reflection.AssemblyTitleAttribute("Core")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
diff --git a/backend/Core/obj/Debug/net8.0/Core.AssemblyInfoInputs.cache b/backend/Core/obj/Debug/net8.0/Core.AssemblyInfoInputs.cache
index 9343e08..450ab5c 100644
--- a/backend/Core/obj/Debug/net8.0/Core.AssemblyInfoInputs.cache
+++ b/backend/Core/obj/Debug/net8.0/Core.AssemblyInfoInputs.cache
@@ -1 +1 @@
-1731d862758ef82cd7c513bcb38bff73a1b5beb084a39b696fc298cd610107a4
+06e566e120d8488e3dfc95d85e6805370c781d6c203b86c1b46ed0b55079aa4f
diff --git a/backend/Core/obj/Debug/net8.0/Core.GeneratedMSBuildEditorConfig.editorconfig b/backend/Core/obj/Debug/net8.0/Core.GeneratedMSBuildEditorConfig.editorconfig
index 2791433..d013500 100644
--- a/backend/Core/obj/Debug/net8.0/Core.GeneratedMSBuildEditorConfig.editorconfig
+++ b/backend/Core/obj/Debug/net8.0/Core.GeneratedMSBuildEditorConfig.editorconfig
@@ -8,6 +8,6 @@ build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Core
-build_property.ProjectDir = C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Core\
+build_property.ProjectDir = /home/azureuser/CC-FinalProj/backend/Core/
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
diff --git a/backend/Core/obj/Debug/net8.0/Core.assets.cache b/backend/Core/obj/Debug/net8.0/Core.assets.cache
index 8ebd8b6..267bfd1 100644
Binary files a/backend/Core/obj/Debug/net8.0/Core.assets.cache and b/backend/Core/obj/Debug/net8.0/Core.assets.cache differ
diff --git a/backend/Core/obj/Debug/net8.0/Core.csproj.AssemblyReference.cache b/backend/Core/obj/Debug/net8.0/Core.csproj.AssemblyReference.cache
index 2895449..12a1e9c 100644
Binary files a/backend/Core/obj/Debug/net8.0/Core.csproj.AssemblyReference.cache and b/backend/Core/obj/Debug/net8.0/Core.csproj.AssemblyReference.cache differ
diff --git a/backend/Core/obj/Debug/net8.0/Core.csproj.CoreCompileInputs.cache b/backend/Core/obj/Debug/net8.0/Core.csproj.CoreCompileInputs.cache
index db2a875..ce84fe1 100644
--- a/backend/Core/obj/Debug/net8.0/Core.csproj.CoreCompileInputs.cache
+++ b/backend/Core/obj/Debug/net8.0/Core.csproj.CoreCompileInputs.cache
@@ -1 +1 @@
-164c1aa8711983f5a748375165bfc6ef268b31b39301f5cc31e4bc6b839afeac
+220ef0bce0d01465acd26ad6b6b2c806ab070ee22adfdcb0ae525c97043460f3
diff --git a/backend/Core/obj/Debug/net8.0/Core.csproj.FileListAbsolute.txt b/backend/Core/obj/Debug/net8.0/Core.csproj.FileListAbsolute.txt
index 2c1a9b5..e8ea818 100644
--- a/backend/Core/obj/Debug/net8.0/Core.csproj.FileListAbsolute.txt
+++ b/backend/Core/obj/Debug/net8.0/Core.csproj.FileListAbsolute.txt
@@ -1,37 +1,50 @@
-C:\Users\Andrei Cerbu\Desktop\backend\Core\bin\Debug\net8.0\Core.deps.json
-C:\Users\Andrei Cerbu\Desktop\backend\Core\bin\Debug\net8.0\Core.dll
-C:\Users\Andrei Cerbu\Desktop\backend\Core\bin\Debug\net8.0\Core.pdb
-C:\Users\Andrei Cerbu\Desktop\backend\Core\obj\Debug\net8.0\Core.csproj.AssemblyReference.cache
-C:\Users\Andrei Cerbu\Desktop\backend\Core\obj\Debug\net8.0\Core.GeneratedMSBuildEditorConfig.editorconfig
-C:\Users\Andrei Cerbu\Desktop\backend\Core\obj\Debug\net8.0\Core.AssemblyInfoInputs.cache
-C:\Users\Andrei Cerbu\Desktop\backend\Core\obj\Debug\net8.0\Core.AssemblyInfo.cs
-C:\Users\Andrei Cerbu\Desktop\backend\Core\obj\Debug\net8.0\Core.csproj.CoreCompileInputs.cache
-C:\Users\Andrei Cerbu\Desktop\backend\Core\obj\Debug\net8.0\Core.dll
-C:\Users\Andrei Cerbu\Desktop\backend\Core\obj\Debug\net8.0\refint\Core.dll
-C:\Users\Andrei Cerbu\Desktop\backend\Core\obj\Debug\net8.0\Core.pdb
-C:\Users\Andrei Cerbu\Desktop\backend\Core\obj\Debug\net8.0\ref\Core.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Core\bin\Debug\net8.0\Core.deps.json
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Core\bin\Debug\net8.0\Core.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Core\bin\Debug\net8.0\Core.pdb
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Core\obj\Debug\net8.0\Core.csproj.AssemblyReference.cache
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Core\obj\Debug\net8.0\Core.GeneratedMSBuildEditorConfig.editorconfig
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Core\obj\Debug\net8.0\Core.AssemblyInfoInputs.cache
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Core\obj\Debug\net8.0\Core.AssemblyInfo.cs
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Core\obj\Debug\net8.0\Core.csproj.CoreCompileInputs.cache
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Core\obj\Debug\net8.0\Core.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Core\obj\Debug\net8.0\refint\Core.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Core\obj\Debug\net8.0\Core.pdb
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Core\obj\Debug\net8.0\ref\Core.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Core\bin\Debug\net8.0\Core.deps.json
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Core\bin\Debug\net8.0\Core.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Core\bin\Debug\net8.0\Core.pdb
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Core\obj\Debug\net8.0\Core.csproj.AssemblyReference.cache
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Core\obj\Debug\net8.0\Core.GeneratedMSBuildEditorConfig.editorconfig
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Core\obj\Debug\net8.0\Core.AssemblyInfoInputs.cache
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Core\obj\Debug\net8.0\Core.AssemblyInfo.cs
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Core\obj\Debug\net8.0\Core.csproj.CoreCompileInputs.cache
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Core\obj\Debug\net8.0\Core.sourcelink.json
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Core\obj\Debug\net8.0\Core.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Core\obj\Debug\net8.0\refint\Core.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Core\obj\Debug\net8.0\Core.pdb
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Core\obj\Debug\net8.0\ref\Core.dll
+C:/Users/Andrei Cerbu/Desktop/backend/Core/bin/Debug/net8.0/Core.deps.json
+C:/Users/Andrei Cerbu/Desktop/backend/Core/bin/Debug/net8.0/Core.dll
+C:/Users/Andrei Cerbu/Desktop/backend/Core/bin/Debug/net8.0/Core.pdb
+C:/Users/Andrei Cerbu/Desktop/backend/Core/obj/Debug/net8.0/Core.csproj.AssemblyReference.cache
+C:/Users/Andrei Cerbu/Desktop/backend/Core/obj/Debug/net8.0/Core.GeneratedMSBuildEditorConfig.editorconfig
+C:/Users/Andrei Cerbu/Desktop/backend/Core/obj/Debug/net8.0/Core.AssemblyInfoInputs.cache
+C:/Users/Andrei Cerbu/Desktop/backend/Core/obj/Debug/net8.0/Core.AssemblyInfo.cs
+C:/Users/Andrei Cerbu/Desktop/backend/Core/obj/Debug/net8.0/Core.csproj.CoreCompileInputs.cache
+C:/Users/Andrei Cerbu/Desktop/backend/Core/obj/Debug/net8.0/Core.dll
+C:/Users/Andrei Cerbu/Desktop/backend/Core/obj/Debug/net8.0/refint/Core.dll
+C:/Users/Andrei Cerbu/Desktop/backend/Core/obj/Debug/net8.0/Core.pdb
+C:/Users/Andrei Cerbu/Desktop/backend/Core/obj/Debug/net8.0/ref/Core.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Core/bin/Debug/net8.0/Core.deps.json
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Core/bin/Debug/net8.0/Core.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Core/bin/Debug/net8.0/Core.pdb
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Core/obj/Debug/net8.0/Core.csproj.AssemblyReference.cache
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Core/obj/Debug/net8.0/Core.GeneratedMSBuildEditorConfig.editorconfig
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Core/obj/Debug/net8.0/Core.AssemblyInfoInputs.cache
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Core/obj/Debug/net8.0/Core.AssemblyInfo.cs
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Core/obj/Debug/net8.0/Core.csproj.CoreCompileInputs.cache
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Core/obj/Debug/net8.0/Core.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Core/obj/Debug/net8.0/refint/Core.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Core/obj/Debug/net8.0/Core.pdb
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Core/obj/Debug/net8.0/ref/Core.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Core/bin/Debug/net8.0/Core.deps.json
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Core/bin/Debug/net8.0/Core.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Core/bin/Debug/net8.0/Core.pdb
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Core/obj/Debug/net8.0/Core.csproj.AssemblyReference.cache
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Core/obj/Debug/net8.0/Core.GeneratedMSBuildEditorConfig.editorconfig
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Core/obj/Debug/net8.0/Core.AssemblyInfoInputs.cache
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Core/obj/Debug/net8.0/Core.AssemblyInfo.cs
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Core/obj/Debug/net8.0/Core.csproj.CoreCompileInputs.cache
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Core/obj/Debug/net8.0/Core.sourcelink.json
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Core/obj/Debug/net8.0/Core.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Core/obj/Debug/net8.0/refint/Core.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Core/obj/Debug/net8.0/Core.pdb
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Core/obj/Debug/net8.0/ref/Core.dll
+/home/azureuser/CC-FinalProj/backend/Core/bin/Debug/net8.0/Core.deps.json
+/home/azureuser/CC-FinalProj/backend/Core/bin/Debug/net8.0/Core.dll
+/home/azureuser/CC-FinalProj/backend/Core/bin/Debug/net8.0/Core.pdb
+/home/azureuser/CC-FinalProj/backend/Core/obj/Debug/net8.0/Core.csproj.AssemblyReference.cache
+/home/azureuser/CC-FinalProj/backend/Core/obj/Debug/net8.0/Core.GeneratedMSBuildEditorConfig.editorconfig
+/home/azureuser/CC-FinalProj/backend/Core/obj/Debug/net8.0/Core.AssemblyInfoInputs.cache
+/home/azureuser/CC-FinalProj/backend/Core/obj/Debug/net8.0/Core.AssemblyInfo.cs
+/home/azureuser/CC-FinalProj/backend/Core/obj/Debug/net8.0/Core.csproj.CoreCompileInputs.cache
+/home/azureuser/CC-FinalProj/backend/Core/obj/Debug/net8.0/Core.sourcelink.json
+/home/azureuser/CC-FinalProj/backend/Core/obj/Debug/net8.0/Core.dll
+/home/azureuser/CC-FinalProj/backend/Core/obj/Debug/net8.0/refint/Core.dll
+/home/azureuser/CC-FinalProj/backend/Core/obj/Debug/net8.0/Core.pdb
+/home/azureuser/CC-FinalProj/backend/Core/obj/Debug/net8.0/ref/Core.dll
diff --git a/backend/Core/obj/Debug/net8.0/Core.dll b/backend/Core/obj/Debug/net8.0/Core.dll
index 084d28e..832a623 100644
Binary files a/backend/Core/obj/Debug/net8.0/Core.dll and b/backend/Core/obj/Debug/net8.0/Core.dll differ
diff --git a/backend/Core/obj/Debug/net8.0/Core.pdb b/backend/Core/obj/Debug/net8.0/Core.pdb
index 87867c2..53f26cc 100644
Binary files a/backend/Core/obj/Debug/net8.0/Core.pdb and b/backend/Core/obj/Debug/net8.0/Core.pdb differ
diff --git a/backend/Core/obj/Debug/net8.0/Core.sourcelink.json b/backend/Core/obj/Debug/net8.0/Core.sourcelink.json
index b7c2852..da14bfd 100644
--- a/backend/Core/obj/Debug/net8.0/Core.sourcelink.json
+++ b/backend/Core/obj/Debug/net8.0/Core.sourcelink.json
@@ -1 +1 @@
-{"documents":{"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\*":"https://raw.githubusercontent.com/andrei-mihnea-cerbu/CC-FinalProj/e57b47cae362bcdd292021d92f19844516cd42b7/*"}}
\ No newline at end of file
+{"documents":{"/home/azureuser/CC-FinalProj/*":"https://raw.githubusercontent.com/andrei-mihnea-cerbu/CC-FinalProj/8e4322649e4df45cec652c7098c929f725ff16bf/*"}}
\ No newline at end of file
diff --git a/backend/Core/obj/Debug/net8.0/ref/Core.dll b/backend/Core/obj/Debug/net8.0/ref/Core.dll
index 4ed4a47..7cc829b 100644
Binary files a/backend/Core/obj/Debug/net8.0/ref/Core.dll and b/backend/Core/obj/Debug/net8.0/ref/Core.dll differ
diff --git a/backend/Core/obj/Debug/net8.0/refint/Core.dll b/backend/Core/obj/Debug/net8.0/refint/Core.dll
index 4ed4a47..7cc829b 100644
Binary files a/backend/Core/obj/Debug/net8.0/refint/Core.dll and b/backend/Core/obj/Debug/net8.0/refint/Core.dll differ
diff --git a/backend/Core/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/backend/Core/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..dca70aa
--- /dev/null
+++ b/backend/Core/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
diff --git a/backend/Core/obj/Release/net8.0/Core.AssemblyInfo.cs b/backend/Core/obj/Release/net8.0/Core.AssemblyInfo.cs
new file mode 100644
index 0000000..9a2383a
--- /dev/null
+++ b/backend/Core/obj/Release/net8.0/Core.AssemblyInfo.cs
@@ -0,0 +1,22 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("Core")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+8e4322649e4df45cec652c7098c929f725ff16bf")]
+[assembly: System.Reflection.AssemblyProductAttribute("Core")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Core")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/backend/Core/obj/Release/net8.0/Core.AssemblyInfoInputs.cache b/backend/Core/obj/Release/net8.0/Core.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..e35233a
--- /dev/null
+++ b/backend/Core/obj/Release/net8.0/Core.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+17d3399e01a1613370704a8e1a8d8c6b27df3a58f829704af0d9cc5d048ceef6
diff --git a/backend/Core/obj/Release/net8.0/Core.GeneratedMSBuildEditorConfig.editorconfig b/backend/Core/obj/Release/net8.0/Core.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..d013500
--- /dev/null
+++ b/backend/Core/obj/Release/net8.0/Core.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,13 @@
+is_global = true
+build_property.TargetFramework = net8.0
+build_property.TargetPlatformMinVersion =
+build_property.UsingMicrosoftNETSdkWeb =
+build_property.ProjectTypeGuids =
+build_property.InvariantGlobalization =
+build_property.PlatformNeutralAssembly =
+build_property.EnforceExtendedAnalyzerRules =
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property.RootNamespace = Core
+build_property.ProjectDir = /home/azureuser/CC-FinalProj/backend/Core/
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
diff --git a/backend/Core/obj/Release/net8.0/Core.GlobalUsings.g.cs b/backend/Core/obj/Release/net8.0/Core.GlobalUsings.g.cs
new file mode 100644
index 0000000..8578f3d
--- /dev/null
+++ b/backend/Core/obj/Release/net8.0/Core.GlobalUsings.g.cs
@@ -0,0 +1,8 @@
+//
+global using global::System;
+global using global::System.Collections.Generic;
+global using global::System.IO;
+global using global::System.Linq;
+global using global::System.Net.Http;
+global using global::System.Threading;
+global using global::System.Threading.Tasks;
diff --git a/backend/Core/obj/Release/net8.0/Core.assets.cache b/backend/Core/obj/Release/net8.0/Core.assets.cache
new file mode 100644
index 0000000..1f5a73a
Binary files /dev/null and b/backend/Core/obj/Release/net8.0/Core.assets.cache differ
diff --git a/backend/Core/obj/Release/net8.0/Core.csproj.AssemblyReference.cache b/backend/Core/obj/Release/net8.0/Core.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..12a1e9c
Binary files /dev/null and b/backend/Core/obj/Release/net8.0/Core.csproj.AssemblyReference.cache differ
diff --git a/backend/Core/obj/Release/net8.0/Core.csproj.CoreCompileInputs.cache b/backend/Core/obj/Release/net8.0/Core.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..0429fb6
--- /dev/null
+++ b/backend/Core/obj/Release/net8.0/Core.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+1a31573d4e0464ff66445e6248e13862c6a02f2a78c05d91046cda6fdfa3443a
diff --git a/backend/Core/obj/Release/net8.0/Core.csproj.FileListAbsolute.txt b/backend/Core/obj/Release/net8.0/Core.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..423a419
--- /dev/null
+++ b/backend/Core/obj/Release/net8.0/Core.csproj.FileListAbsolute.txt
@@ -0,0 +1,13 @@
+/home/azureuser/CC-FinalProj/backend/Core/bin/Release/net8.0/Core.deps.json
+/home/azureuser/CC-FinalProj/backend/Core/bin/Release/net8.0/Core.dll
+/home/azureuser/CC-FinalProj/backend/Core/bin/Release/net8.0/Core.pdb
+/home/azureuser/CC-FinalProj/backend/Core/obj/Release/net8.0/Core.csproj.AssemblyReference.cache
+/home/azureuser/CC-FinalProj/backend/Core/obj/Release/net8.0/Core.GeneratedMSBuildEditorConfig.editorconfig
+/home/azureuser/CC-FinalProj/backend/Core/obj/Release/net8.0/Core.AssemblyInfoInputs.cache
+/home/azureuser/CC-FinalProj/backend/Core/obj/Release/net8.0/Core.AssemblyInfo.cs
+/home/azureuser/CC-FinalProj/backend/Core/obj/Release/net8.0/Core.csproj.CoreCompileInputs.cache
+/home/azureuser/CC-FinalProj/backend/Core/obj/Release/net8.0/Core.sourcelink.json
+/home/azureuser/CC-FinalProj/backend/Core/obj/Release/net8.0/Core.dll
+/home/azureuser/CC-FinalProj/backend/Core/obj/Release/net8.0/refint/Core.dll
+/home/azureuser/CC-FinalProj/backend/Core/obj/Release/net8.0/Core.pdb
+/home/azureuser/CC-FinalProj/backend/Core/obj/Release/net8.0/ref/Core.dll
diff --git a/backend/Core/obj/Release/net8.0/Core.dll b/backend/Core/obj/Release/net8.0/Core.dll
new file mode 100644
index 0000000..5f8e19b
Binary files /dev/null and b/backend/Core/obj/Release/net8.0/Core.dll differ
diff --git a/backend/Core/obj/Release/net8.0/Core.pdb b/backend/Core/obj/Release/net8.0/Core.pdb
new file mode 100644
index 0000000..496f3e3
Binary files /dev/null and b/backend/Core/obj/Release/net8.0/Core.pdb differ
diff --git a/backend/Core/obj/Release/net8.0/Core.sourcelink.json b/backend/Core/obj/Release/net8.0/Core.sourcelink.json
new file mode 100644
index 0000000..da14bfd
--- /dev/null
+++ b/backend/Core/obj/Release/net8.0/Core.sourcelink.json
@@ -0,0 +1 @@
+{"documents":{"/home/azureuser/CC-FinalProj/*":"https://raw.githubusercontent.com/andrei-mihnea-cerbu/CC-FinalProj/8e4322649e4df45cec652c7098c929f725ff16bf/*"}}
\ No newline at end of file
diff --git a/backend/Core/obj/Release/net8.0/ref/Core.dll b/backend/Core/obj/Release/net8.0/ref/Core.dll
new file mode 100644
index 0000000..6b601c8
Binary files /dev/null and b/backend/Core/obj/Release/net8.0/ref/Core.dll differ
diff --git a/backend/Core/obj/Release/net8.0/refint/Core.dll b/backend/Core/obj/Release/net8.0/refint/Core.dll
new file mode 100644
index 0000000..6b601c8
Binary files /dev/null and b/backend/Core/obj/Release/net8.0/refint/Core.dll differ
diff --git a/backend/Core/obj/project.assets.json b/backend/Core/obj/project.assets.json
index 0336572..53a9f5b 100644
--- a/backend/Core/obj/project.assets.json
+++ b/backend/Core/obj/project.assets.json
@@ -125,19 +125,19 @@
]
},
"packageFolders": {
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\": {}
+ "/root/.nuget/packages/": {}
},
"project": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj",
+ "projectUniqueName": "/home/azureuser/CC-FinalProj/backend/Core/Core.csproj",
"projectName": "Core",
- "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj",
- "packagesPath": "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\obj\\",
+ "projectPath": "/home/azureuser/CC-FinalProj/backend/Core/Core.csproj",
+ "packagesPath": "/root/.nuget/packages/",
+ "outputPath": "/home/azureuser/CC-FinalProj/backend/Core/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
- "C:\\Users\\Andrei Cerbu\\AppData\\Roaming\\NuGet\\NuGet.Config"
+ "/root/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net8.0"
@@ -155,6 +155,11 @@
"warnAsError": [
"NU1605"
]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "direct"
}
},
"frameworks": {
@@ -182,7 +187,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.204/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json"
}
}
}
diff --git a/backend/Core/obj/project.nuget.cache b/backend/Core/obj/project.nuget.cache
index b10553d..44cabf2 100644
--- a/backend/Core/obj/project.nuget.cache
+++ b/backend/Core/obj/project.nuget.cache
@@ -1,12 +1,12 @@
{
"version": 2,
- "dgSpecHash": "bmMu3Dw/KfOoh0FEvqvC4XTFxTMRTGqwkBYWlOUA+wqcCfNbzfe7DyIF9ngFjCILgQpie3tua29YWMBr37amyw==",
+ "dgSpecHash": "a2S+hLdHkuYgwYkp7bNJQ0Jz1TyBb8Z7rMqxQYb3o8zBvLppIzD5OwZu7tweeM7UAhj8b85K6BjQC9BXdU2dew==",
"success": true,
- "projectFilePath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj",
+ "projectFilePath": "/home/azureuser/CC-FinalProj/backend/Core/Core.csproj",
"expectedPackageFiles": [
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\mongodb.bson\\2.24.0\\mongodb.bson.2.24.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\system.memory\\4.5.5\\system.memory.4.5.5.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\5.0.0\\system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512"
+ "/root/.nuget/packages/mongodb.bson/2.24.0/mongodb.bson.2.24.0.nupkg.sha512",
+ "/root/.nuget/packages/system.memory/4.5.5/system.memory.4.5.5.nupkg.sha512",
+ "/root/.nuget/packages/system.runtime.compilerservices.unsafe/5.0.0/system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512"
],
"logs": []
}
\ No newline at end of file
diff --git a/backend/Infrastructure/bin/Debug/net8.0/Application.dll b/backend/Infrastructure/bin/Debug/net8.0/Application.dll
index 2286215..8143ca9 100644
Binary files a/backend/Infrastructure/bin/Debug/net8.0/Application.dll and b/backend/Infrastructure/bin/Debug/net8.0/Application.dll differ
diff --git a/backend/Infrastructure/bin/Debug/net8.0/Application.pdb b/backend/Infrastructure/bin/Debug/net8.0/Application.pdb
index cebe308..fadae4a 100644
Binary files a/backend/Infrastructure/bin/Debug/net8.0/Application.pdb and b/backend/Infrastructure/bin/Debug/net8.0/Application.pdb differ
diff --git a/backend/Infrastructure/bin/Debug/net8.0/Core.dll b/backend/Infrastructure/bin/Debug/net8.0/Core.dll
index 084d28e..832a623 100644
Binary files a/backend/Infrastructure/bin/Debug/net8.0/Core.dll and b/backend/Infrastructure/bin/Debug/net8.0/Core.dll differ
diff --git a/backend/Infrastructure/bin/Debug/net8.0/Core.pdb b/backend/Infrastructure/bin/Debug/net8.0/Core.pdb
index 87867c2..53f26cc 100644
Binary files a/backend/Infrastructure/bin/Debug/net8.0/Core.pdb and b/backend/Infrastructure/bin/Debug/net8.0/Core.pdb differ
diff --git a/backend/Infrastructure/bin/Debug/net8.0/Infrastructure.dll b/backend/Infrastructure/bin/Debug/net8.0/Infrastructure.dll
index d9860c2..30c5060 100644
Binary files a/backend/Infrastructure/bin/Debug/net8.0/Infrastructure.dll and b/backend/Infrastructure/bin/Debug/net8.0/Infrastructure.dll differ
diff --git a/backend/Infrastructure/bin/Debug/net8.0/Infrastructure.pdb b/backend/Infrastructure/bin/Debug/net8.0/Infrastructure.pdb
index 80fc906..49825fc 100644
Binary files a/backend/Infrastructure/bin/Debug/net8.0/Infrastructure.pdb and b/backend/Infrastructure/bin/Debug/net8.0/Infrastructure.pdb differ
diff --git a/backend/Infrastructure/bin/Release/net8.0/Application.dll b/backend/Infrastructure/bin/Release/net8.0/Application.dll
new file mode 100644
index 0000000..765805d
Binary files /dev/null and b/backend/Infrastructure/bin/Release/net8.0/Application.dll differ
diff --git a/backend/Infrastructure/bin/Release/net8.0/Application.pdb b/backend/Infrastructure/bin/Release/net8.0/Application.pdb
new file mode 100644
index 0000000..8f537c0
Binary files /dev/null and b/backend/Infrastructure/bin/Release/net8.0/Application.pdb differ
diff --git a/backend/Infrastructure/bin/Release/net8.0/Core.dll b/backend/Infrastructure/bin/Release/net8.0/Core.dll
new file mode 100644
index 0000000..5f8e19b
Binary files /dev/null and b/backend/Infrastructure/bin/Release/net8.0/Core.dll differ
diff --git a/backend/Infrastructure/bin/Release/net8.0/Core.pdb b/backend/Infrastructure/bin/Release/net8.0/Core.pdb
new file mode 100644
index 0000000..496f3e3
Binary files /dev/null and b/backend/Infrastructure/bin/Release/net8.0/Core.pdb differ
diff --git a/backend/Infrastructure/bin/Release/net8.0/Infrastructure.deps.json b/backend/Infrastructure/bin/Release/net8.0/Infrastructure.deps.json
new file mode 100644
index 0000000..51b0577
--- /dev/null
+++ b/backend/Infrastructure/bin/Release/net8.0/Infrastructure.deps.json
@@ -0,0 +1,1390 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v8.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v8.0": {
+ "Infrastructure/1.0.0": {
+ "dependencies": {
+ "Application": "1.0.0",
+ "Core": "1.0.0",
+ "Microsoft.EntityFrameworkCore": "8.0.3",
+ "Microsoft.EntityFrameworkCore.Design": "8.0.3",
+ "Microsoft.EntityFrameworkCore.Relational": "8.0.3",
+ "Microsoft.Extensions.Configuration": "8.0.0",
+ "Microsoft.Extensions.Configuration.Json": "8.0.0",
+ "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0",
+ "Microsoft.IdentityModel.Tokens": "7.5.1",
+ "MongoDB.Driver": "2.24.0",
+ "Npgsql.EntityFrameworkCore.PostgreSQL": "8.0.2",
+ "System.IdentityModel.Tokens.Jwt": "7.5.1"
+ },
+ "runtime": {
+ "Infrastructure.dll": {}
+ }
+ },
+ "AWSSDK.Core/3.7.100.14": {
+ "runtime": {
+ "lib/netcoreapp3.1/AWSSDK.Core.dll": {
+ "assemblyVersion": "3.3.0.0",
+ "fileVersion": "3.7.100.14"
+ }
+ }
+ },
+ "AWSSDK.SecurityToken/3.7.100.14": {
+ "dependencies": {
+ "AWSSDK.Core": "3.7.100.14"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/AWSSDK.SecurityToken.dll": {
+ "assemblyVersion": "3.3.0.0",
+ "fileVersion": "3.7.100.14"
+ }
+ }
+ },
+ "DnsClient/1.6.1": {
+ "dependencies": {
+ "Microsoft.Win32.Registry": "5.0.0"
+ },
+ "runtime": {
+ "lib/net5.0/DnsClient.dll": {
+ "assemblyVersion": "1.6.1.0",
+ "fileVersion": "1.6.1.0"
+ }
+ }
+ },
+ "FluentValidation/11.9.0": {
+ "runtime": {
+ "lib/net8.0/FluentValidation.dll": {
+ "assemblyVersion": "11.0.0.0",
+ "fileVersion": "11.9.0.0"
+ }
+ }
+ },
+ "Humanizer.Core/2.14.1": {
+ "runtime": {
+ "lib/net6.0/Humanizer.dll": {
+ "assemblyVersion": "2.14.0.0",
+ "fileVersion": "2.14.1.48190"
+ }
+ }
+ },
+ "Microsoft.Bcl.AsyncInterfaces/6.0.0": {
+ "runtime": {
+ "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ }
+ },
+ "Microsoft.CodeAnalysis.Analyzers/3.3.3": {},
+ "Microsoft.CodeAnalysis.Common/4.5.0": {
+ "dependencies": {
+ "Microsoft.CodeAnalysis.Analyzers": "3.3.3",
+ "System.Collections.Immutable": "6.0.0",
+ "System.Reflection.Metadata": "6.0.1",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0",
+ "System.Text.Encoding.CodePages": "6.0.0"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {
+ "assemblyVersion": "4.5.0.0",
+ "fileVersion": "4.500.23.10905"
+ }
+ },
+ "resources": {
+ "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "de"
+ },
+ "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "es"
+ },
+ "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "it"
+ },
+ "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.CodeAnalysis.CSharp/4.5.0": {
+ "dependencies": {
+ "Microsoft.CodeAnalysis.Common": "4.5.0"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {
+ "assemblyVersion": "4.5.0.0",
+ "fileVersion": "4.500.23.10905"
+ }
+ },
+ "resources": {
+ "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "de"
+ },
+ "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "es"
+ },
+ "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "it"
+ },
+ "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
+ "dependencies": {
+ "Humanizer.Core": "2.14.1",
+ "Microsoft.CodeAnalysis.CSharp": "4.5.0",
+ "Microsoft.CodeAnalysis.Common": "4.5.0",
+ "Microsoft.CodeAnalysis.Workspaces.Common": "4.5.0"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
+ "assemblyVersion": "4.5.0.0",
+ "fileVersion": "4.500.23.10905"
+ }
+ },
+ "resources": {
+ "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "de"
+ },
+ "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "es"
+ },
+ "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "it"
+ },
+ "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
+ "dependencies": {
+ "Humanizer.Core": "2.14.1",
+ "Microsoft.Bcl.AsyncInterfaces": "6.0.0",
+ "Microsoft.CodeAnalysis.Common": "4.5.0",
+ "System.Composition": "6.0.0",
+ "System.IO.Pipelines": "6.0.3",
+ "System.Threading.Channels": "6.0.0"
+ },
+ "runtime": {
+ "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": {
+ "assemblyVersion": "4.5.0.0",
+ "fileVersion": "4.500.23.10905"
+ }
+ },
+ "resources": {
+ "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "cs"
+ },
+ "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "de"
+ },
+ "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "es"
+ },
+ "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "fr"
+ },
+ "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "it"
+ },
+ "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "ja"
+ },
+ "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "ko"
+ },
+ "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "pl"
+ },
+ "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "pt-BR"
+ },
+ "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "ru"
+ },
+ "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "tr"
+ },
+ "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "zh-Hans"
+ },
+ "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": {
+ "locale": "zh-Hant"
+ }
+ }
+ },
+ "Microsoft.EntityFrameworkCore/8.0.3": {
+ "dependencies": {
+ "Microsoft.EntityFrameworkCore.Abstractions": "8.0.3",
+ "Microsoft.EntityFrameworkCore.Analyzers": "8.0.3",
+ "Microsoft.Extensions.Caching.Memory": "8.0.0",
+ "Microsoft.Extensions.Logging": "8.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {
+ "assemblyVersion": "8.0.3.0",
+ "fileVersion": "8.0.324.11510"
+ }
+ }
+ },
+ "Microsoft.EntityFrameworkCore.Abstractions/8.0.3": {
+ "runtime": {
+ "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {
+ "assemblyVersion": "8.0.3.0",
+ "fileVersion": "8.0.324.11510"
+ }
+ }
+ },
+ "Microsoft.EntityFrameworkCore.Analyzers/8.0.3": {},
+ "Microsoft.EntityFrameworkCore.Design/8.0.3": {
+ "dependencies": {
+ "Humanizer.Core": "2.14.1",
+ "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0",
+ "Microsoft.EntityFrameworkCore.Relational": "8.0.3",
+ "Microsoft.Extensions.DependencyModel": "8.0.0",
+ "Mono.TextTemplating": "2.2.1"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": {
+ "assemblyVersion": "8.0.3.0",
+ "fileVersion": "8.0.324.11510"
+ }
+ }
+ },
+ "Microsoft.EntityFrameworkCore.Relational/8.0.3": {
+ "dependencies": {
+ "Microsoft.EntityFrameworkCore": "8.0.3",
+ "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {
+ "assemblyVersion": "8.0.3.0",
+ "fileVersion": "8.0.324.11510"
+ }
+ }
+ },
+ "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "8.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.Extensions.Caching.Memory/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Caching.Abstractions": "8.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
+ "Microsoft.Extensions.Options": "8.0.0",
+ "Microsoft.Extensions.Primitives": "8.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
+ "Microsoft.Extensions.Primitives": "8.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Configuration.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "8.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Binder/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "8.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "8.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
+ "Microsoft.Extensions.FileProviders.Physical": "8.0.0",
+ "Microsoft.Extensions.Primitives": "8.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.Extensions.Configuration.Json/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration": "8.0.0",
+ "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
+ "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0",
+ "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
+ "System.Text.Json": "8.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.Extensions.DependencyModel/8.0.0": {
+ "dependencies": {
+ "System.Text.Encodings.Web": "8.0.0",
+ "System.Text.Json": "8.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Primitives": "8.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileProviders.Physical/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0",
+ "Microsoft.Extensions.FileSystemGlobbing": "8.0.0",
+ "Microsoft.Extensions.Primitives": "8.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/8.0.0": {
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection": "8.0.0",
+ "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
+ "Microsoft.Extensions.Options": "8.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Logging.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.Extensions.Options/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
+ "Microsoft.Extensions.Primitives": "8.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Options.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Configuration.Abstractions": "8.0.0",
+ "Microsoft.Extensions.Configuration.Binder": "8.0.0",
+ "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0",
+ "Microsoft.Extensions.Options": "8.0.0",
+ "Microsoft.Extensions.Primitives": "8.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.Extensions.Primitives/8.0.0": {
+ "runtime": {
+ "lib/net8.0/Microsoft.Extensions.Primitives.dll": {
+ "assemblyVersion": "8.0.0.0",
+ "fileVersion": "8.0.23.53103"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.Abstractions/7.5.1": {
+ "runtime": {
+ "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll": {
+ "assemblyVersion": "7.5.1.0",
+ "fileVersion": "7.5.1.50405"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.JsonWebTokens/7.5.1": {
+ "dependencies": {
+ "Microsoft.IdentityModel.Tokens": "7.5.1"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
+ "assemblyVersion": "7.5.1.0",
+ "fileVersion": "7.5.1.50405"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.Logging/7.5.1": {
+ "dependencies": {
+ "Microsoft.IdentityModel.Abstractions": "7.5.1"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.IdentityModel.Logging.dll": {
+ "assemblyVersion": "7.5.1.0",
+ "fileVersion": "7.5.1.50405"
+ }
+ }
+ },
+ "Microsoft.IdentityModel.Tokens/7.5.1": {
+ "dependencies": {
+ "Microsoft.IdentityModel.Logging": "7.5.1"
+ },
+ "runtime": {
+ "lib/net8.0/Microsoft.IdentityModel.Tokens.dll": {
+ "assemblyVersion": "7.5.1.0",
+ "fileVersion": "7.5.1.50405"
+ }
+ }
+ },
+ "Microsoft.NETCore.Platforms/5.0.0": {},
+ "Microsoft.Win32.Registry/5.0.0": {
+ "dependencies": {
+ "System.Security.AccessControl": "5.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ }
+ },
+ "MongoDB.Bson/2.24.0": {
+ "dependencies": {
+ "System.Memory": "4.5.5",
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ },
+ "runtime": {
+ "lib/netstandard2.1/MongoDB.Bson.dll": {
+ "assemblyVersion": "2.24.0.0",
+ "fileVersion": "2.24.0.0"
+ }
+ }
+ },
+ "MongoDB.Driver/2.24.0": {
+ "dependencies": {
+ "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
+ "MongoDB.Bson": "2.24.0",
+ "MongoDB.Driver.Core": "2.24.0",
+ "MongoDB.Libmongocrypt": "1.8.2"
+ },
+ "runtime": {
+ "lib/netstandard2.1/MongoDB.Driver.dll": {
+ "assemblyVersion": "2.24.0.0",
+ "fileVersion": "2.24.0.0"
+ }
+ }
+ },
+ "MongoDB.Driver.Core/2.24.0": {
+ "dependencies": {
+ "AWSSDK.SecurityToken": "3.7.100.14",
+ "DnsClient": "1.6.1",
+ "Microsoft.Extensions.Logging.Abstractions": "8.0.0",
+ "MongoDB.Bson": "2.24.0",
+ "MongoDB.Libmongocrypt": "1.8.2",
+ "SharpCompress": "0.30.1",
+ "Snappier": "1.0.0",
+ "System.Buffers": "4.5.1",
+ "ZstdSharp.Port": "0.7.3"
+ },
+ "runtime": {
+ "lib/netstandard2.1/MongoDB.Driver.Core.dll": {
+ "assemblyVersion": "2.24.0.0",
+ "fileVersion": "2.24.0.0"
+ }
+ }
+ },
+ "MongoDB.Libmongocrypt/1.8.2": {
+ "runtime": {
+ "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": {
+ "assemblyVersion": "1.8.2.0",
+ "fileVersion": "1.8.2.0"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/linux/native/libmongocrypt.so": {
+ "rid": "linux",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/osx/native/libmongocrypt.dylib": {
+ "rid": "osx",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ },
+ "runtimes/win/native/mongocrypt.dll": {
+ "rid": "win",
+ "assetType": "native",
+ "fileVersion": "0.0.0.0"
+ }
+ }
+ },
+ "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/8.0.2": {
+ "dependencies": {
+ "Microsoft.Extensions.Logging.Abstractions": "8.0.0"
+ },
+ "runtime": {
+ "lib/net8.0/Npgsql.dll": {
+ "assemblyVersion": "8.0.2.0",
+ "fileVersion": "8.0.2.0"
+ }
+ }
+ },
+ "Npgsql.EntityFrameworkCore.PostgreSQL/8.0.2": {
+ "dependencies": {
+ "Microsoft.EntityFrameworkCore": "8.0.3",
+ "Microsoft.EntityFrameworkCore.Abstractions": "8.0.3",
+ "Microsoft.EntityFrameworkCore.Relational": "8.0.3",
+ "Npgsql": "8.0.2"
+ },
+ "runtime": {
+ "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {
+ "assemblyVersion": "8.0.2.0",
+ "fileVersion": "8.0.2.0"
+ }
+ }
+ },
+ "SharpCompress/0.30.1": {
+ "runtime": {
+ "lib/net5.0/SharpCompress.dll": {
+ "assemblyVersion": "0.30.1.0",
+ "fileVersion": "0.30.1.0"
+ }
+ }
+ },
+ "Snappier/1.0.0": {
+ "runtime": {
+ "lib/net5.0/Snappier.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "1.0.0.0"
+ }
+ }
+ },
+ "System.Buffers/4.5.1": {},
+ "System.CodeDom/4.4.0": {
+ "runtime": {
+ "lib/netstandard2.0/System.CodeDom.dll": {
+ "assemblyVersion": "4.0.0.0",
+ "fileVersion": "4.6.25519.3"
+ }
+ }
+ },
+ "System.Collections.Immutable/6.0.0": {
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "System.Composition/6.0.0": {
+ "dependencies": {
+ "System.Composition.AttributedModel": "6.0.0",
+ "System.Composition.Convention": "6.0.0",
+ "System.Composition.Hosting": "6.0.0",
+ "System.Composition.Runtime": "6.0.0",
+ "System.Composition.TypedParts": "6.0.0"
+ }
+ },
+ "System.Composition.AttributedModel/6.0.0": {
+ "runtime": {
+ "lib/net6.0/System.Composition.AttributedModel.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ }
+ },
+ "System.Composition.Convention/6.0.0": {
+ "dependencies": {
+ "System.Composition.AttributedModel": "6.0.0"
+ },
+ "runtime": {
+ "lib/net6.0/System.Composition.Convention.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ }
+ },
+ "System.Composition.Hosting/6.0.0": {
+ "dependencies": {
+ "System.Composition.Runtime": "6.0.0"
+ },
+ "runtime": {
+ "lib/net6.0/System.Composition.Hosting.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ }
+ },
+ "System.Composition.Runtime/6.0.0": {
+ "runtime": {
+ "lib/net6.0/System.Composition.Runtime.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ }
+ },
+ "System.Composition.TypedParts/6.0.0": {
+ "dependencies": {
+ "System.Composition.AttributedModel": "6.0.0",
+ "System.Composition.Hosting": "6.0.0",
+ "System.Composition.Runtime": "6.0.0"
+ },
+ "runtime": {
+ "lib/net6.0/System.Composition.TypedParts.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.21.52210"
+ }
+ }
+ },
+ "System.IdentityModel.Tokens.Jwt/7.5.1": {
+ "dependencies": {
+ "Microsoft.IdentityModel.JsonWebTokens": "7.5.1",
+ "Microsoft.IdentityModel.Tokens": "7.5.1"
+ },
+ "runtime": {
+ "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll": {
+ "assemblyVersion": "7.5.1.0",
+ "fileVersion": "7.5.1.50405"
+ }
+ }
+ },
+ "System.IO.Pipelines/6.0.3": {
+ "runtime": {
+ "lib/net6.0/System.IO.Pipelines.dll": {
+ "assemblyVersion": "6.0.0.0",
+ "fileVersion": "6.0.522.21309"
+ }
+ }
+ },
+ "System.Memory/4.5.5": {},
+ "System.Reflection.Metadata/6.0.1": {
+ "dependencies": {
+ "System.Collections.Immutable": "6.0.0"
+ }
+ },
+ "System.Runtime.CompilerServices.Unsafe/6.0.0": {},
+ "System.Security.AccessControl/5.0.0": {
+ "dependencies": {
+ "Microsoft.NETCore.Platforms": "5.0.0",
+ "System.Security.Principal.Windows": "5.0.0"
+ }
+ },
+ "System.Security.Principal.Windows/5.0.0": {},
+ "System.Text.Encoding.CodePages/6.0.0": {
+ "dependencies": {
+ "System.Runtime.CompilerServices.Unsafe": "6.0.0"
+ }
+ },
+ "System.Text.Encodings.Web/8.0.0": {},
+ "System.Text.Json/8.0.0": {
+ "dependencies": {
+ "System.Text.Encodings.Web": "8.0.0"
+ }
+ },
+ "System.Threading.Channels/6.0.0": {},
+ "ZstdSharp.Port/0.7.3": {
+ "runtime": {
+ "lib/net7.0/ZstdSharp.dll": {
+ "assemblyVersion": "0.7.3.0",
+ "fileVersion": "0.7.3.0"
+ }
+ }
+ },
+ "Application/1.0.0": {
+ "dependencies": {
+ "Core": "1.0.0",
+ "FluentValidation": "11.9.0",
+ "MongoDB.Driver": "2.24.0"
+ },
+ "runtime": {
+ "Application.dll": {}
+ }
+ },
+ "Core/1.0.0": {
+ "dependencies": {
+ "MongoDB.Bson": "2.24.0"
+ },
+ "runtime": {
+ "Core.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "Infrastructure/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "AWSSDK.Core/3.7.100.14": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-gnEgxBlk4PFEfdPE8Lkf4+D16MZFYSaW7/o6Wwe5e035QWUkTJX0Dn4LfTCdV5QSEL/fOFxu+yCAm55eIIBgog==",
+ "path": "awssdk.core/3.7.100.14",
+ "hashPath": "awssdk.core.3.7.100.14.nupkg.sha512"
+ },
+ "AWSSDK.SecurityToken/3.7.100.14": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dGCVuVo0CFUKWW85W8YENO+aREf8sCBDjvGbnNvxJuNW4Ss+brEU9ltHhq2KfZze2VUNK1/wygbPG1bmbpyXEw==",
+ "path": "awssdk.securitytoken/3.7.100.14",
+ "hashPath": "awssdk.securitytoken.3.7.100.14.nupkg.sha512"
+ },
+ "DnsClient/1.6.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-4H/f2uYJOZ+YObZjpY9ABrKZI+JNw3uizp6oMzTXwDw6F+2qIPhpRl/1t68O/6e98+vqNiYGu+lswmwdYUy3gg==",
+ "path": "dnsclient/1.6.1",
+ "hashPath": "dnsclient.1.6.1.nupkg.sha512"
+ },
+ "FluentValidation/11.9.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VneVlTvwYDkfHV5av3QrQ0amALgrLX6LV94wlYyEsh0B/klJBW7C8y2eAtj5tOZ3jH6CAVpr4s1ZGgew/QWyig==",
+ "path": "fluentvalidation/11.9.0",
+ "hashPath": "fluentvalidation.11.9.0.nupkg.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.Bcl.AsyncInterfaces/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UcSjPsst+DfAdJGVDsu346FX0ci0ah+lw3WRtn18NUwEqRt70HaOQ7lI72vy3+1LxtqI3T5GWwV39rQSrCzAeg==",
+ "path": "microsoft.bcl.asyncinterfaces/6.0.0",
+ "hashPath": "microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512"
+ },
+ "Microsoft.CodeAnalysis.Analyzers/3.3.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-j/rOZtLMVJjrfLRlAMckJLPW/1rze9MT1yfWqSIbUPGRu1m1P0fuo9PmqapwsmePfGB5PJrudQLvmUOAMF0DqQ==",
+ "path": "microsoft.codeanalysis.analyzers/3.3.3",
+ "hashPath": "microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512"
+ },
+ "Microsoft.CodeAnalysis.Common/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-lwAbIZNdnY0SUNoDmZHkVUwLO8UyNnyyh1t/4XsbFxi4Ounb3xszIYZaWhyj5ZjyfcwqwmtMbE7fUTVCqQEIdQ==",
+ "path": "microsoft.codeanalysis.common/4.5.0",
+ "hashPath": "microsoft.codeanalysis.common.4.5.0.nupkg.sha512"
+ },
+ "Microsoft.CodeAnalysis.CSharp/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cM59oMKAOxvdv76bdmaKPy5hfj+oR+zxikWoueEB7CwTko7mt9sVKZI8Qxlov0C/LuKEG+WQwifepqL3vuTiBQ==",
+ "path": "microsoft.codeanalysis.csharp/4.5.0",
+ "hashPath": "microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512"
+ },
+ "Microsoft.CodeAnalysis.CSharp.Workspaces/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-h74wTpmGOp4yS4hj+EvNzEiPgg/KVs2wmSfTZ81upJZOtPkJsVkgfsgtxxqmAeapjT/vLKfmYV0bS8n5MNVP+g==",
+ "path": "microsoft.codeanalysis.csharp.workspaces/4.5.0",
+ "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512"
+ },
+ "Microsoft.CodeAnalysis.Workspaces.Common/4.5.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-l4dDRmGELXG72XZaonnOeORyD/T5RpEu5LGHOUIhnv+MmUWDY/m1kWXGwtcgQ5CJ5ynkFiRnIYzTKXYjUs7rbw==",
+ "path": "microsoft.codeanalysis.workspaces.common/4.5.0",
+ "hashPath": "microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512"
+ },
+ "Microsoft.EntityFrameworkCore/8.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-QUPQbeq4yCjgIL/6PzkhfwhljXmai3CNOsErWFJ/WJ1Z41V8+At0Bi4PT8/2pX25kPgf83g0CUKIZd0QbeKT4A==",
+ "path": "microsoft.entityframeworkcore/8.0.3",
+ "hashPath": "microsoft.entityframeworkcore.8.0.3.nupkg.sha512"
+ },
+ "Microsoft.EntityFrameworkCore.Abstractions/8.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cW+SKdx34wZ25ZVKCpk/6+6z27wrZlQ1qXyx7UWpy34s9CyAojH0QiYlV/2owNOGSAH67rm+LxAjUOicsqlGzQ==",
+ "path": "microsoft.entityframeworkcore.abstractions/8.0.3",
+ "hashPath": "microsoft.entityframeworkcore.abstractions.8.0.3.nupkg.sha512"
+ },
+ "Microsoft.EntityFrameworkCore.Analyzers/8.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3csRAzz5O5Gn+GQBMyLn26OICtEo2/U2iDDygQhKb3LnC78bAUvutkMqvb0Ek5A6uHrBcZQrKQJfkgfnRT5XZw==",
+ "path": "microsoft.entityframeworkcore.analyzers/8.0.3",
+ "hashPath": "microsoft.entityframeworkcore.analyzers.8.0.3.nupkg.sha512"
+ },
+ "Microsoft.EntityFrameworkCore.Design/8.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OAh9P0M5VK3+mtmnjOyyw92s3L0r3fmYwWWAnh0pb/8JH3u7L2FmrJnNPFysChBiWIJu17+6Bqj4k/bkFK4RVw==",
+ "path": "microsoft.entityframeworkcore.design/8.0.3",
+ "hashPath": "microsoft.entityframeworkcore.design.8.0.3.nupkg.sha512"
+ },
+ "Microsoft.EntityFrameworkCore.Relational/8.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-8JnVZHWaNFkrrD/FC0O4jekiHIYey8y6TQ4Co3OzLz0wd5Dm1cwJfTp++1TvaVu0BBd4bVDtiktppa5epuoPrA==",
+ "path": "microsoft.entityframeworkcore.relational/8.0.3",
+ "hashPath": "microsoft.entityframeworkcore.relational.8.0.3.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Caching.Abstractions/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==",
+ "path": "microsoft.extensions.caching.abstractions/8.0.0",
+ "hashPath": "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Caching.Memory/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-7pqivmrZDzo1ADPkRwjy+8jtRKWRCPag9qPI+p7sgu7Q4QreWhcvbiWXsbhP+yY8XSiDvZpu2/LWdBv7PnmOpQ==",
+ "path": "microsoft.extensions.caching.memory/8.0.0",
+ "hashPath": "microsoft.extensions.caching.memory.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-0J/9YNXTMWSZP2p2+nvl8p71zpSwokZXZuJW+VjdErkegAnFdO1XlqtA62SJtgVYHdKu3uPxJHcMR/r35HwFBA==",
+ "path": "microsoft.extensions.configuration/8.0.0",
+ "hashPath": "microsoft.extensions.configuration.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Abstractions/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==",
+ "path": "microsoft.extensions.configuration.abstractions/8.0.0",
+ "hashPath": "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Binder/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-mBMoXLsr5s1y2zOHWmKsE9veDcx8h1x/c3rz4baEdQKTeDcmQAPNbB54Pi/lhFO3K431eEq6PFbMgLaa6PHFfA==",
+ "path": "microsoft.extensions.configuration.binder/8.0.0",
+ "hashPath": "microsoft.extensions.configuration.binder.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.FileExtensions/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-McP+Lz/EKwvtCv48z0YImw+L1gi1gy5rHhNaNIY2CrjloV+XY8gydT8DjMR6zWeL13AFK+DioVpppwAuO1Gi1w==",
+ "path": "microsoft.extensions.configuration.fileextensions/8.0.0",
+ "hashPath": "microsoft.extensions.configuration.fileextensions.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Configuration.Json/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-C2wqUoh9OmRL1akaCcKSTmRU8z0kckfImG7zLNI8uyi47Lp+zd5LWAD17waPQEqCz3ioWOCrFUo+JJuoeZLOBw==",
+ "path": "microsoft.extensions.configuration.json/8.0.0",
+ "hashPath": "microsoft.extensions.configuration.json.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==",
+ "path": "microsoft.extensions.dependencyinjection/8.0.0",
+ "hashPath": "microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==",
+ "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0",
+ "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.DependencyModel/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-NSmDw3K0ozNDgShSIpsZcbFIzBX4w28nDag+TfaQujkXGazBm+lid5onlWoCBy4VsLxqnnKjEBbGSJVWJMf43g==",
+ "path": "microsoft.extensions.dependencymodel/8.0.0",
+ "hashPath": "microsoft.extensions.dependencymodel.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==",
+ "path": "microsoft.extensions.fileproviders.abstractions/8.0.0",
+ "hashPath": "microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileProviders.Physical/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UboiXxpPUpwulHvIAVE36Knq0VSHaAmfrFkegLyBZeaADuKezJ/AIXYAW8F5GBlGk/VaibN2k/Zn1ca8YAfVdA==",
+ "path": "microsoft.extensions.fileproviders.physical/8.0.0",
+ "hashPath": "microsoft.extensions.fileproviders.physical.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.FileSystemGlobbing/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OK+670i7esqlQrPjdIKRbsyMCe9g5kSLpRRQGSr4Q58AOYEe/hCnfLZprh7viNisSUUQZmMrbbuDaIrP+V1ebQ==",
+ "path": "microsoft.extensions.filesystemglobbing/8.0.0",
+ "hashPath": "microsoft.extensions.filesystemglobbing.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==",
+ "path": "microsoft.extensions.logging/8.0.0",
+ "hashPath": "microsoft.extensions.logging.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Logging.Abstractions/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==",
+ "path": "microsoft.extensions.logging.abstractions/8.0.0",
+ "hashPath": "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==",
+ "path": "microsoft.extensions.options/8.0.0",
+ "hashPath": "microsoft.extensions.options.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-0f4DMRqEd50zQh+UyJc+/HiBsZ3vhAQALgdkcQEalSH1L2isdC7Yj54M3cyo5e+BeO5fcBQ7Dxly8XiBBcvRgw==",
+ "path": "microsoft.extensions.options.configurationextensions/8.0.0",
+ "hashPath": "microsoft.extensions.options.configurationextensions.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.Extensions.Primitives/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==",
+ "path": "microsoft.extensions.primitives/8.0.0",
+ "hashPath": "microsoft.extensions.primitives.8.0.0.nupkg.sha512"
+ },
+ "Microsoft.IdentityModel.Abstractions/7.5.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PT16ZFbPIiMsYv07oy3zOjqUOJ7xutGBkJTOX0+IbNyU6+O6X7aIxjq9EaSSRLWbekRgamgtmfg8Xjw6A6Ua9g==",
+ "path": "microsoft.identitymodel.abstractions/7.5.1",
+ "hashPath": "microsoft.identitymodel.abstractions.7.5.1.nupkg.sha512"
+ },
+ "Microsoft.IdentityModel.JsonWebTokens/7.5.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-93CGSa8RPdZU8zfvA3nf9NGKUqEnQrE12VzYlMqKh72ddhzusosqLNEUgH/YhFWBLRFOnY1RCgHMV7pR+sAx2w==",
+ "path": "microsoft.identitymodel.jsonwebtokens/7.5.1",
+ "hashPath": "microsoft.identitymodel.jsonwebtokens.7.5.1.nupkg.sha512"
+ },
+ "Microsoft.IdentityModel.Logging/7.5.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-PnpAQX20BAiDIPYmWUyQSlEaWD8BLXzHpiDGTCT568Cs0ReOeyzNe401LzCeiv6ilug/KefVeV1CeqtCHTo8dw==",
+ "path": "microsoft.identitymodel.logging/7.5.1",
+ "hashPath": "microsoft.identitymodel.logging.7.5.1.nupkg.sha512"
+ },
+ "Microsoft.IdentityModel.Tokens/7.5.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Q3DKpyFViP84IUlTFKH/zIkswIrmSh2Vd/eFDo4wlOHy4DYxoweZEEw4kDEiKt9VCX6o7SddK3HK2xDYyFpexA==",
+ "path": "microsoft.identitymodel.tokens/7.5.1",
+ "hashPath": "microsoft.identitymodel.tokens.7.5.1.nupkg.sha512"
+ },
+ "Microsoft.NETCore.Platforms/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
+ "path": "microsoft.netcore.platforms/5.0.0",
+ "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512"
+ },
+ "Microsoft.Win32.Registry/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==",
+ "path": "microsoft.win32.registry/5.0.0",
+ "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512"
+ },
+ "MongoDB.Bson/2.24.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-n8CWaA4iTuoEQYv0+FSKNTX/hJozFQa5EgSILVNPhTGHcrbABHhpVrT1NwRRAAS6sUb8ZyhHmLPBa88LJemptA==",
+ "path": "mongodb.bson/2.24.0",
+ "hashPath": "mongodb.bson.2.24.0.nupkg.sha512"
+ },
+ "MongoDB.Driver/2.24.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-j1q11iMk3LN38ze6jgV1ATp+WKVVQbsGrhFkuOcHwRNtIk70TpLKjOD1Z3CCkyrzxCsUyhwk745tK2ASNOI4WA==",
+ "path": "mongodb.driver/2.24.0",
+ "hashPath": "mongodb.driver.2.24.0.nupkg.sha512"
+ },
+ "MongoDB.Driver.Core/2.24.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UW0yadpMPi9+MtLHy6onpol3D9tXMRg61P0ROnij+h35EOr0vt/nxvlPrDcUjl3SvttvpsEXQKxb2lQShBA1dA==",
+ "path": "mongodb.driver.core/2.24.0",
+ "hashPath": "mongodb.driver.core.2.24.0.nupkg.sha512"
+ },
+ "MongoDB.Libmongocrypt/1.8.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-z/8JCULSHM1+mzkau0ivIkU9kIn8JEFFSkmYTSaMaWMMHt96JjUtMKuXxeGNGSnHZ5290ZPKIlQfjoWFk2sKog==",
+ "path": "mongodb.libmongocrypt/1.8.2",
+ "hashPath": "mongodb.libmongocrypt.1.8.2.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/8.0.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-MuJzLoWCaQhQAR3oh66YR0Ir6mxuezncGX3f8wxvAc21g0+9HICktJQlqMoODhxztZKXE5k9GxRxqUAN+vPb4g==",
+ "path": "npgsql/8.0.2",
+ "hashPath": "npgsql.8.0.2.nupkg.sha512"
+ },
+ "Npgsql.EntityFrameworkCore.PostgreSQL/8.0.2": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-eoZPynwkZTWFTgnocvXORuCL2yFZtscrUdqVhjxiRULpC7BMg9zhLM5oDZAU5PoX1PgN77hmkKE4a3PQiHqh7Q==",
+ "path": "npgsql.entityframeworkcore.postgresql/8.0.2",
+ "hashPath": "npgsql.entityframeworkcore.postgresql.8.0.2.nupkg.sha512"
+ },
+ "SharpCompress/0.30.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==",
+ "path": "sharpcompress/0.30.1",
+ "hashPath": "sharpcompress.0.30.1.nupkg.sha512"
+ },
+ "Snappier/1.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-rFtK2KEI9hIe8gtx3a0YDXdHOpedIf9wYCEYtBEmtlyiWVX3XlCNV03JrmmAi/Cdfn7dxK+k0sjjcLv4fpHnqA==",
+ "path": "snappier/1.0.0",
+ "hashPath": "snappier.1.0.0.nupkg.sha512"
+ },
+ "System.Buffers/4.5.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
+ "path": "system.buffers/4.5.1",
+ "hashPath": "system.buffers.4.5.1.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.Collections.Immutable/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-l4zZJ1WU2hqpQQHXz1rvC3etVZN+2DLmQMO79FhOTZHMn8tDRr+WU287sbomD0BETlmKDn0ygUgVy9k5xkkJdA==",
+ "path": "system.collections.immutable/6.0.0",
+ "hashPath": "system.collections.immutable.6.0.0.nupkg.sha512"
+ },
+ "System.Composition/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-d7wMuKQtfsxUa7S13tITC8n1cQzewuhD5iDjZtK2prwFfKVzdYtgrTHgjaV03Zq7feGQ5gkP85tJJntXwInsJA==",
+ "path": "system.composition/6.0.0",
+ "hashPath": "system.composition.6.0.0.nupkg.sha512"
+ },
+ "System.Composition.AttributedModel/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-WK1nSDLByK/4VoC7fkNiFuTVEiperuCN/Hyn+VN30R+W2ijO1d0Z2Qm0ScEl9xkSn1G2MyapJi8xpf4R8WRa/w==",
+ "path": "system.composition.attributedmodel/6.0.0",
+ "hashPath": "system.composition.attributedmodel.6.0.0.nupkg.sha512"
+ },
+ "System.Composition.Convention/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-XYi4lPRdu5bM4JVJ3/UIHAiG6V6lWWUlkhB9ab4IOq0FrRsp0F4wTyV4Dj+Ds+efoXJ3qbLqlvaUozDO7OLeXA==",
+ "path": "system.composition.convention/6.0.0",
+ "hashPath": "system.composition.convention.6.0.0.nupkg.sha512"
+ },
+ "System.Composition.Hosting/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-w/wXjj7kvxuHPLdzZ0PAUt++qJl03t7lENmb2Oev0n3zbxyNULbWBlnd5J5WUMMv15kg5o+/TCZFb6lSwfaUUQ==",
+ "path": "system.composition.hosting/6.0.0",
+ "hashPath": "system.composition.hosting.6.0.0.nupkg.sha512"
+ },
+ "System.Composition.Runtime/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-qkRH/YBaMPTnzxrS5RDk1juvqed4A6HOD/CwRcDGyPpYps1J27waBddiiq1y93jk2ZZ9wuA/kynM+NO0kb3PKg==",
+ "path": "system.composition.runtime/6.0.0",
+ "hashPath": "system.composition.runtime.6.0.0.nupkg.sha512"
+ },
+ "System.Composition.TypedParts/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-iUR1eHrL8Cwd82neQCJ00MpwNIBs4NZgXzrPqx8NJf/k4+mwBO0XCRmHYJT4OLSwDDqh5nBLJWkz5cROnrGhRA==",
+ "path": "system.composition.typedparts/6.0.0",
+ "hashPath": "system.composition.typedparts.6.0.0.nupkg.sha512"
+ },
+ "System.IdentityModel.Tokens.Jwt/7.5.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-UUw+E0R73lZLlXgneYIJQxNs1kfbcxjVzw64JQyiwjqCd4HMpAbjn+xRo86QZT84uHq8/MkqvfH82tgjgPzpuw==",
+ "path": "system.identitymodel.tokens.jwt/7.5.1",
+ "hashPath": "system.identitymodel.tokens.jwt.7.5.1.nupkg.sha512"
+ },
+ "System.IO.Pipelines/6.0.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==",
+ "path": "system.io.pipelines/6.0.3",
+ "hashPath": "system.io.pipelines.6.0.3.nupkg.sha512"
+ },
+ "System.Memory/4.5.5": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==",
+ "path": "system.memory/4.5.5",
+ "hashPath": "system.memory.4.5.5.nupkg.sha512"
+ },
+ "System.Reflection.Metadata/6.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-III/lNMSn0ZRBuM9m5Cgbiho5j81u0FAEagFX5ta2DKbljZ3T0IpD8j+BIiHQPeKqJppWS9bGEp6JnKnWKze0g==",
+ "path": "system.reflection.metadata/6.0.1",
+ "hashPath": "system.reflection.metadata.6.0.1.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.Security.AccessControl/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==",
+ "path": "system.security.accesscontrol/5.0.0",
+ "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512"
+ },
+ "System.Security.Principal.Windows/5.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==",
+ "path": "system.security.principal.windows/5.0.0",
+ "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512"
+ },
+ "System.Text.Encoding.CodePages/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==",
+ "path": "system.text.encoding.codepages/6.0.0",
+ "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512"
+ },
+ "System.Text.Encodings.Web/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==",
+ "path": "system.text.encodings.web/8.0.0",
+ "hashPath": "system.text.encodings.web.8.0.0.nupkg.sha512"
+ },
+ "System.Text.Json/8.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==",
+ "path": "system.text.json/8.0.0",
+ "hashPath": "system.text.json.8.0.0.nupkg.sha512"
+ },
+ "System.Threading.Channels/6.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-TY8/9+tI0mNaUMgntOxxaq2ndTkdXqLSxvPmas7XEqOlv9lQtB7wLjYGd756lOaO7Dvb5r/WXhluM+0Xe87v5Q==",
+ "path": "system.threading.channels/6.0.0",
+ "hashPath": "system.threading.channels.6.0.0.nupkg.sha512"
+ },
+ "ZstdSharp.Port/0.7.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-U9Ix4l4cl58Kzz1rJzj5hoVTjmbx1qGMwzAcbv1j/d3NzrFaESIurQyg+ow4mivCgkE3S413y+U9k4WdnEIkRA==",
+ "path": "zstdsharp.port/0.7.3",
+ "hashPath": "zstdsharp.port.0.7.3.nupkg.sha512"
+ },
+ "Application/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "Core/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ }
+ }
+}
\ No newline at end of file
diff --git a/backend/Infrastructure/bin/Release/net8.0/Infrastructure.dll b/backend/Infrastructure/bin/Release/net8.0/Infrastructure.dll
new file mode 100644
index 0000000..a64d960
Binary files /dev/null and b/backend/Infrastructure/bin/Release/net8.0/Infrastructure.dll differ
diff --git a/backend/Infrastructure/bin/Release/net8.0/Infrastructure.pdb b/backend/Infrastructure/bin/Release/net8.0/Infrastructure.pdb
new file mode 100644
index 0000000..d25eb54
Binary files /dev/null and b/backend/Infrastructure/bin/Release/net8.0/Infrastructure.pdb differ
diff --git a/backend/Infrastructure/bin/Release/net8.0/Infrastructure.runtimeconfig.json b/backend/Infrastructure/bin/Release/net8.0/Infrastructure.runtimeconfig.json
new file mode 100644
index 0000000..4844b2d
--- /dev/null
+++ b/backend/Infrastructure/bin/Release/net8.0/Infrastructure.runtimeconfig.json
@@ -0,0 +1,14 @@
+{
+ "runtimeOptions": {
+ "tfm": "net8.0",
+ "framework": {
+ "name": "Microsoft.NETCore.App",
+ "version": "8.0.0"
+ },
+ "configProperties": {
+ "System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
+ "System.Reflection.NullabilityInfoContext.IsSupported": true,
+ "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.AssemblyInfo.cs b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.AssemblyInfo.cs
index 2f8bb6e..ad3a984 100644
--- a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.AssemblyInfo.cs
+++ b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.AssemblyInfo.cs
@@ -13,7 +13,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("Infrastructure")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+e57b47cae362bcdd292021d92f19844516cd42b7")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+8e4322649e4df45cec652c7098c929f725ff16bf")]
[assembly: System.Reflection.AssemblyProductAttribute("Infrastructure")]
[assembly: System.Reflection.AssemblyTitleAttribute("Infrastructure")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
diff --git a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.AssemblyInfoInputs.cache b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.AssemblyInfoInputs.cache
index c9d5a61..069251d 100644
--- a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.AssemblyInfoInputs.cache
+++ b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.AssemblyInfoInputs.cache
@@ -1 +1 @@
-96f120a4c90b24741ae606108bd0d57fcdbef6caac17c6380670528a15f69c56
+01fdf999d8e59aa323bab4cc85ea8512cc4d311b21dd98f5a7d79aa4a2c0dbd7
diff --git a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.GeneratedMSBuildEditorConfig.editorconfig b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.GeneratedMSBuildEditorConfig.editorconfig
index 3cf157a..3f74926 100644
--- a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.GeneratedMSBuildEditorConfig.editorconfig
+++ b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.GeneratedMSBuildEditorConfig.editorconfig
@@ -8,6 +8,6 @@ build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = Infrastructure
-build_property.ProjectDir = C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Infrastructure\
+build_property.ProjectDir = /home/azureuser/CC-FinalProj/backend/Infrastructure/
build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop =
diff --git a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.assets.cache b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.assets.cache
index 2e26b59..f8a124d 100644
Binary files a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.assets.cache and b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.assets.cache differ
diff --git a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.csproj.AssemblyReference.cache b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.csproj.AssemblyReference.cache
index c6e0537..9d15583 100644
Binary files a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.csproj.AssemblyReference.cache and b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.csproj.AssemblyReference.cache differ
diff --git a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.csproj.CoreCompileInputs.cache b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.csproj.CoreCompileInputs.cache
index 13629c1..5b10fb6 100644
--- a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.csproj.CoreCompileInputs.cache
+++ b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.csproj.CoreCompileInputs.cache
@@ -1 +1 @@
-a915a8295be2c2c627f4c7cb2970dff0d73ad2fd2462dbedb1aaf922e774afb6
+35a315ccccab0bcf7ee0227906e42dfff1b6b1203e986f61566945af36a0aead
diff --git a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.csproj.FileListAbsolute.txt b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.csproj.FileListAbsolute.txt
index 910e6a0..804905a 100644
--- a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.csproj.FileListAbsolute.txt
+++ b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.csproj.FileListAbsolute.txt
@@ -1,58 +1,78 @@
-C:\Users\Andrei Cerbu\Desktop\backend\Infrastructure\bin\Debug\net8.0\Infrastructure.deps.json
-C:\Users\Andrei Cerbu\Desktop\backend\Infrastructure\bin\Debug\net8.0\Infrastructure.runtimeconfig.json
-C:\Users\Andrei Cerbu\Desktop\backend\Infrastructure\bin\Debug\net8.0\Infrastructure.dll
-C:\Users\Andrei Cerbu\Desktop\backend\Infrastructure\bin\Debug\net8.0\Infrastructure.pdb
-C:\Users\Andrei Cerbu\Desktop\backend\Infrastructure\bin\Debug\net8.0\Application.dll
-C:\Users\Andrei Cerbu\Desktop\backend\Infrastructure\bin\Debug\net8.0\Core.dll
-C:\Users\Andrei Cerbu\Desktop\backend\Infrastructure\bin\Debug\net8.0\Application.pdb
-C:\Users\Andrei Cerbu\Desktop\backend\Infrastructure\bin\Debug\net8.0\Core.pdb
-C:\Users\Andrei Cerbu\Desktop\backend\Infrastructure\obj\Debug\net8.0\Infrastructure.csproj.AssemblyReference.cache
-C:\Users\Andrei Cerbu\Desktop\backend\Infrastructure\obj\Debug\net8.0\Infrastructure.GeneratedMSBuildEditorConfig.editorconfig
-C:\Users\Andrei Cerbu\Desktop\backend\Infrastructure\obj\Debug\net8.0\Infrastructure.AssemblyInfoInputs.cache
-C:\Users\Andrei Cerbu\Desktop\backend\Infrastructure\obj\Debug\net8.0\Infrastructure.AssemblyInfo.cs
-C:\Users\Andrei Cerbu\Desktop\backend\Infrastructure\obj\Debug\net8.0\Infrastructure.csproj.CoreCompileInputs.cache
-C:\Users\Andrei Cerbu\Desktop\backend\Infrastructure\obj\Debug\net8.0\Infrastructure.dll
-C:\Users\Andrei Cerbu\Desktop\backend\Infrastructure\obj\Debug\net8.0\refint\Infrastructure.dll
-C:\Users\Andrei Cerbu\Desktop\backend\Infrastructure\obj\Debug\net8.0\Infrastructure.pdb
-C:\Users\Andrei Cerbu\Desktop\backend\Infrastructure\obj\Debug\net8.0\Infrastructure.genruntimeconfig.cache
-C:\Users\Andrei Cerbu\Desktop\backend\Infrastructure\obj\Debug\net8.0\ref\Infrastructure.dll
-C:\Users\Andrei Cerbu\Desktop\backend\Infrastructure\obj\Debug\net8.0\Infrastructure.csproj.CopyComplete
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Infrastructure\bin\Debug\net8.0\Infrastructure.deps.json
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Infrastructure\bin\Debug\net8.0\Infrastructure.runtimeconfig.json
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Infrastructure\bin\Debug\net8.0\Infrastructure.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Infrastructure\bin\Debug\net8.0\Infrastructure.pdb
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Infrastructure\bin\Debug\net8.0\Application.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Infrastructure\bin\Debug\net8.0\Core.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Infrastructure\bin\Debug\net8.0\Application.pdb
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Infrastructure\bin\Debug\net8.0\Core.pdb
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Infrastructure\obj\Debug\net8.0\Infrastructure.csproj.AssemblyReference.cache
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Infrastructure\obj\Debug\net8.0\Infrastructure.GeneratedMSBuildEditorConfig.editorconfig
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Infrastructure\obj\Debug\net8.0\Infrastructure.AssemblyInfoInputs.cache
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Infrastructure\obj\Debug\net8.0\Infrastructure.AssemblyInfo.cs
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Infrastructure\obj\Debug\net8.0\Infrastructure.csproj.CoreCompileInputs.cache
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Infrastructure\obj\Debug\net8.0\Infrastructure.csproj.CopyComplete
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Infrastructure\obj\Debug\net8.0\Infrastructure.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Infrastructure\obj\Debug\net8.0\refint\Infrastructure.dll
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Infrastructure\obj\Debug\net8.0\Infrastructure.pdb
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Infrastructure\obj\Debug\net8.0\Infrastructure.genruntimeconfig.cache
-C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\Infrastructure\obj\Debug\net8.0\ref\Infrastructure.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Infrastructure\bin\Debug\net8.0\Infrastructure.deps.json
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Infrastructure\bin\Debug\net8.0\Infrastructure.runtimeconfig.json
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Infrastructure\bin\Debug\net8.0\Infrastructure.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Infrastructure\bin\Debug\net8.0\Infrastructure.pdb
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Infrastructure\bin\Debug\net8.0\Application.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Infrastructure\bin\Debug\net8.0\Core.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Infrastructure\bin\Debug\net8.0\Application.pdb
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Infrastructure\bin\Debug\net8.0\Core.pdb
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Infrastructure\obj\Debug\net8.0\Infrastructure.csproj.AssemblyReference.cache
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Infrastructure\obj\Debug\net8.0\Infrastructure.GeneratedMSBuildEditorConfig.editorconfig
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Infrastructure\obj\Debug\net8.0\Infrastructure.AssemblyInfoInputs.cache
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Infrastructure\obj\Debug\net8.0\Infrastructure.AssemblyInfo.cs
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Infrastructure\obj\Debug\net8.0\Infrastructure.csproj.CoreCompileInputs.cache
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Infrastructure\obj\Debug\net8.0\Infrastructure.sourcelink.json
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Infrastructure\obj\Debug\net8.0\Infrastr.15EFFBFE.Up2Date
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Infrastructure\obj\Debug\net8.0\Infrastructure.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Infrastructure\obj\Debug\net8.0\refint\Infrastructure.dll
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Infrastructure\obj\Debug\net8.0\Infrastructure.pdb
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Infrastructure\obj\Debug\net8.0\Infrastructure.genruntimeconfig.cache
-C:\Users\Andrei Cerbu\Documents\FACULTATE\CC-FinalProj\backend\Infrastructure\obj\Debug\net8.0\ref\Infrastructure.dll
+C:/Users/Andrei Cerbu/Desktop/backend/Infrastructure/bin/Debug/net8.0/Infrastructure.deps.json
+C:/Users/Andrei Cerbu/Desktop/backend/Infrastructure/bin/Debug/net8.0/Infrastructure.runtimeconfig.json
+C:/Users/Andrei Cerbu/Desktop/backend/Infrastructure/bin/Debug/net8.0/Infrastructure.dll
+C:/Users/Andrei Cerbu/Desktop/backend/Infrastructure/bin/Debug/net8.0/Infrastructure.pdb
+C:/Users/Andrei Cerbu/Desktop/backend/Infrastructure/bin/Debug/net8.0/Application.dll
+C:/Users/Andrei Cerbu/Desktop/backend/Infrastructure/bin/Debug/net8.0/Core.dll
+C:/Users/Andrei Cerbu/Desktop/backend/Infrastructure/bin/Debug/net8.0/Application.pdb
+C:/Users/Andrei Cerbu/Desktop/backend/Infrastructure/bin/Debug/net8.0/Core.pdb
+C:/Users/Andrei Cerbu/Desktop/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.csproj.AssemblyReference.cache
+C:/Users/Andrei Cerbu/Desktop/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.GeneratedMSBuildEditorConfig.editorconfig
+C:/Users/Andrei Cerbu/Desktop/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.AssemblyInfoInputs.cache
+C:/Users/Andrei Cerbu/Desktop/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.AssemblyInfo.cs
+C:/Users/Andrei Cerbu/Desktop/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.csproj.CoreCompileInputs.cache
+C:/Users/Andrei Cerbu/Desktop/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.dll
+C:/Users/Andrei Cerbu/Desktop/backend/Infrastructure/obj/Debug/net8.0/refint/Infrastructure.dll
+C:/Users/Andrei Cerbu/Desktop/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.pdb
+C:/Users/Andrei Cerbu/Desktop/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.genruntimeconfig.cache
+C:/Users/Andrei Cerbu/Desktop/backend/Infrastructure/obj/Debug/net8.0/ref/Infrastructure.dll
+C:/Users/Andrei Cerbu/Desktop/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.csproj.CopyComplete
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Infrastructure/bin/Debug/net8.0/Infrastructure.deps.json
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Infrastructure/bin/Debug/net8.0/Infrastructure.runtimeconfig.json
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Infrastructure/bin/Debug/net8.0/Infrastructure.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Infrastructure/bin/Debug/net8.0/Infrastructure.pdb
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Infrastructure/bin/Debug/net8.0/Application.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Infrastructure/bin/Debug/net8.0/Core.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Infrastructure/bin/Debug/net8.0/Application.pdb
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Infrastructure/bin/Debug/net8.0/Core.pdb
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.csproj.AssemblyReference.cache
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.GeneratedMSBuildEditorConfig.editorconfig
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.AssemblyInfoInputs.cache
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.AssemblyInfo.cs
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.csproj.CoreCompileInputs.cache
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.csproj.CopyComplete
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Infrastructure/obj/Debug/net8.0/refint/Infrastructure.dll
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.pdb
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.genruntimeconfig.cache
+C:/Users/Andrei Cerbu/Desktop/sesiunile main/backend/Infrastructure/obj/Debug/net8.0/ref/Infrastructure.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Infrastructure/bin/Debug/net8.0/Infrastructure.deps.json
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Infrastructure/bin/Debug/net8.0/Infrastructure.runtimeconfig.json
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Infrastructure/bin/Debug/net8.0/Infrastructure.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Infrastructure/bin/Debug/net8.0/Infrastructure.pdb
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Infrastructure/bin/Debug/net8.0/Application.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Infrastructure/bin/Debug/net8.0/Core.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Infrastructure/bin/Debug/net8.0/Application.pdb
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Infrastructure/bin/Debug/net8.0/Core.pdb
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.csproj.AssemblyReference.cache
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.GeneratedMSBuildEditorConfig.editorconfig
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.AssemblyInfoInputs.cache
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.AssemblyInfo.cs
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.csproj.CoreCompileInputs.cache
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.sourcelink.json
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Infrastructure/obj/Debug/net8.0/Infrastr.15EFFBFE.Up2Date
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Infrastructure/obj/Debug/net8.0/refint/Infrastructure.dll
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.pdb
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.genruntimeconfig.cache
+C:/Users/Andrei Cerbu/Documents/FACULTATE/CC-FinalProj/backend/Infrastructure/obj/Debug/net8.0/ref/Infrastructure.dll
+/home/azureuser/CC-FinalProj/backend/Infrastructure/bin/Debug/net8.0/Infrastructure.deps.json
+/home/azureuser/CC-FinalProj/backend/Infrastructure/bin/Debug/net8.0/Infrastructure.runtimeconfig.json
+/home/azureuser/CC-FinalProj/backend/Infrastructure/bin/Debug/net8.0/Infrastructure.dll
+/home/azureuser/CC-FinalProj/backend/Infrastructure/bin/Debug/net8.0/Infrastructure.pdb
+/home/azureuser/CC-FinalProj/backend/Infrastructure/bin/Debug/net8.0/Application.dll
+/home/azureuser/CC-FinalProj/backend/Infrastructure/bin/Debug/net8.0/Core.dll
+/home/azureuser/CC-FinalProj/backend/Infrastructure/bin/Debug/net8.0/Application.pdb
+/home/azureuser/CC-FinalProj/backend/Infrastructure/bin/Debug/net8.0/Core.pdb
+/home/azureuser/CC-FinalProj/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.csproj.AssemblyReference.cache
+/home/azureuser/CC-FinalProj/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.GeneratedMSBuildEditorConfig.editorconfig
+/home/azureuser/CC-FinalProj/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.AssemblyInfoInputs.cache
+/home/azureuser/CC-FinalProj/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.AssemblyInfo.cs
+/home/azureuser/CC-FinalProj/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.csproj.CoreCompileInputs.cache
+/home/azureuser/CC-FinalProj/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.sourcelink.json
+/home/azureuser/CC-FinalProj/backend/Infrastructure/obj/Debug/net8.0/Infrastr.15EFFBFE.Up2Date
+/home/azureuser/CC-FinalProj/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.dll
+/home/azureuser/CC-FinalProj/backend/Infrastructure/obj/Debug/net8.0/refint/Infrastructure.dll
+/home/azureuser/CC-FinalProj/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.pdb
+/home/azureuser/CC-FinalProj/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.genruntimeconfig.cache
+/home/azureuser/CC-FinalProj/backend/Infrastructure/obj/Debug/net8.0/ref/Infrastructure.dll
diff --git a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.dll b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.dll
index d9860c2..30c5060 100644
Binary files a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.dll and b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.dll differ
diff --git a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.genruntimeconfig.cache b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.genruntimeconfig.cache
index a419895..cd9d663 100644
--- a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.genruntimeconfig.cache
+++ b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.genruntimeconfig.cache
@@ -1 +1 @@
-8669647c4f952cb9f9825a534fa4bb1335040a9cec57b5e81118a81800eca4aa
+9e39f2fb5cf0d207315b0c8c509f94d990f3cf09a9303541f7878f4fc2c808f4
diff --git a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.pdb b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.pdb
index 80fc906..49825fc 100644
Binary files a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.pdb and b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.pdb differ
diff --git a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.sourcelink.json b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.sourcelink.json
index b7c2852..da14bfd 100644
--- a/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.sourcelink.json
+++ b/backend/Infrastructure/obj/Debug/net8.0/Infrastructure.sourcelink.json
@@ -1 +1 @@
-{"documents":{"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\*":"https://raw.githubusercontent.com/andrei-mihnea-cerbu/CC-FinalProj/e57b47cae362bcdd292021d92f19844516cd42b7/*"}}
\ No newline at end of file
+{"documents":{"/home/azureuser/CC-FinalProj/*":"https://raw.githubusercontent.com/andrei-mihnea-cerbu/CC-FinalProj/8e4322649e4df45cec652c7098c929f725ff16bf/*"}}
\ No newline at end of file
diff --git a/backend/Infrastructure/obj/Debug/net8.0/ref/Infrastructure.dll b/backend/Infrastructure/obj/Debug/net8.0/ref/Infrastructure.dll
index b4a14b9..7b1e757 100644
Binary files a/backend/Infrastructure/obj/Debug/net8.0/ref/Infrastructure.dll and b/backend/Infrastructure/obj/Debug/net8.0/ref/Infrastructure.dll differ
diff --git a/backend/Infrastructure/obj/Debug/net8.0/refint/Infrastructure.dll b/backend/Infrastructure/obj/Debug/net8.0/refint/Infrastructure.dll
index b4a14b9..7b1e757 100644
Binary files a/backend/Infrastructure/obj/Debug/net8.0/refint/Infrastructure.dll and b/backend/Infrastructure/obj/Debug/net8.0/refint/Infrastructure.dll differ
diff --git a/backend/Infrastructure/obj/Infrastructure.csproj.nuget.dgspec.json b/backend/Infrastructure/obj/Infrastructure.csproj.nuget.dgspec.json
index 7a71b06..97be5d4 100644
--- a/backend/Infrastructure/obj/Infrastructure.csproj.nuget.dgspec.json
+++ b/backend/Infrastructure/obj/Infrastructure.csproj.nuget.dgspec.json
@@ -1,20 +1,20 @@
{
"format": 1,
"restore": {
- "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\Infrastructure.csproj": {}
+ "/home/azureuser/CC-FinalProj/backend/Infrastructure/Infrastructure.csproj": {}
},
"projects": {
- "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj": {
+ "/home/azureuser/CC-FinalProj/backend/Application/Application.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj",
+ "projectUniqueName": "/home/azureuser/CC-FinalProj/backend/Application/Application.csproj",
"projectName": "Application",
- "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj",
- "packagesPath": "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\obj\\",
+ "projectPath": "/home/azureuser/CC-FinalProj/backend/Application/Application.csproj",
+ "packagesPath": "/root/.nuget/packages/",
+ "outputPath": "/home/azureuser/CC-FinalProj/backend/Application/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
- "C:\\Users\\Andrei Cerbu\\AppData\\Roaming\\NuGet\\NuGet.Config"
+ "/root/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net8.0"
@@ -26,8 +26,8 @@
"net8.0": {
"targetAlias": "net8.0",
"projectReferences": {
- "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj": {
- "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj"
+ "/home/azureuser/CC-FinalProj/backend/Core/Core.csproj": {
+ "projectPath": "/home/azureuser/CC-FinalProj/backend/Core/Core.csproj"
}
}
}
@@ -36,6 +36,11 @@
"warnAsError": [
"NU1605"
]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "direct"
}
},
"frameworks": {
@@ -67,21 +72,21 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.204/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json"
}
}
},
- "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj": {
+ "/home/azureuser/CC-FinalProj/backend/Core/Core.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj",
+ "projectUniqueName": "/home/azureuser/CC-FinalProj/backend/Core/Core.csproj",
"projectName": "Core",
- "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj",
- "packagesPath": "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\obj\\",
+ "projectPath": "/home/azureuser/CC-FinalProj/backend/Core/Core.csproj",
+ "packagesPath": "/root/.nuget/packages/",
+ "outputPath": "/home/azureuser/CC-FinalProj/backend/Core/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
- "C:\\Users\\Andrei Cerbu\\AppData\\Roaming\\NuGet\\NuGet.Config"
+ "/root/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net8.0"
@@ -99,6 +104,11 @@
"warnAsError": [
"NU1605"
]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "direct"
}
},
"frameworks": {
@@ -126,21 +136,21 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.204/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json"
}
}
},
- "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\Infrastructure.csproj": {
+ "/home/azureuser/CC-FinalProj/backend/Infrastructure/Infrastructure.csproj": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\Infrastructure.csproj",
+ "projectUniqueName": "/home/azureuser/CC-FinalProj/backend/Infrastructure/Infrastructure.csproj",
"projectName": "Infrastructure",
- "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\Infrastructure.csproj",
- "packagesPath": "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\obj\\",
+ "projectPath": "/home/azureuser/CC-FinalProj/backend/Infrastructure/Infrastructure.csproj",
+ "packagesPath": "/root/.nuget/packages/",
+ "outputPath": "/home/azureuser/CC-FinalProj/backend/Infrastructure/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
- "C:\\Users\\Andrei Cerbu\\AppData\\Roaming\\NuGet\\NuGet.Config"
+ "/root/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net8.0"
@@ -152,11 +162,11 @@
"net8.0": {
"targetAlias": "net8.0",
"projectReferences": {
- "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj": {
- "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj"
+ "/home/azureuser/CC-FinalProj/backend/Application/Application.csproj": {
+ "projectPath": "/home/azureuser/CC-FinalProj/backend/Application/Application.csproj"
},
- "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj": {
- "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj"
+ "/home/azureuser/CC-FinalProj/backend/Core/Core.csproj": {
+ "projectPath": "/home/azureuser/CC-FinalProj/backend/Core/Core.csproj"
}
}
}
@@ -165,6 +175,11 @@
"warnAsError": [
"NU1605"
]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "direct"
}
},
"frameworks": {
@@ -230,7 +245,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.204/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json"
}
}
}
diff --git a/backend/Infrastructure/obj/Infrastructure.csproj.nuget.g.props b/backend/Infrastructure/obj/Infrastructure.csproj.nuget.g.props
index 6076878..715191d 100644
--- a/backend/Infrastructure/obj/Infrastructure.csproj.nuget.g.props
+++ b/backend/Infrastructure/obj/Infrastructure.csproj.nuget.g.props
@@ -4,21 +4,21 @@
True
NuGet
$(MSBuildThisFileDirectory)project.assets.json
- $(UserProfile)\.nuget\packages\
- C:\Users\Andrei Cerbu\.nuget\packages\
+ /root/.nuget/packages/
+ /root/.nuget/packages/
PackageReference
6.9.1
-
+
-
-
+
+
- C:\Users\Andrei Cerbu\.nuget\packages\awssdk.core\3.7.100.14
- C:\Users\Andrei Cerbu\.nuget\packages\awssdk.securitytoken\3.7.100.14
- C:\Users\Andrei Cerbu\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.3
+ /root/.nuget/packages/awssdk.core/3.7.100.14
+ /root/.nuget/packages/awssdk.securitytoken/3.7.100.14
+ /root/.nuget/packages/microsoft.codeanalysis.analyzers/3.3.3
\ No newline at end of file
diff --git a/backend/Infrastructure/obj/Infrastructure.csproj.nuget.g.targets b/backend/Infrastructure/obj/Infrastructure.csproj.nuget.g.targets
index f55a4bc..e3e8232 100644
--- a/backend/Infrastructure/obj/Infrastructure.csproj.nuget.g.targets
+++ b/backend/Infrastructure/obj/Infrastructure.csproj.nuget.g.targets
@@ -1,9 +1,9 @@
-
-
-
-
+
+
+
+
\ No newline at end of file
diff --git a/backend/Infrastructure/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/backend/Infrastructure/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..dca70aa
--- /dev/null
+++ b/backend/Infrastructure/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
diff --git a/backend/Infrastructure/obj/Release/net8.0/Infrastr.15EFFBFE.Up2Date b/backend/Infrastructure/obj/Release/net8.0/Infrastr.15EFFBFE.Up2Date
new file mode 100644
index 0000000..e69de29
diff --git a/backend/Infrastructure/obj/Release/net8.0/Infrastructure.AssemblyInfo.cs b/backend/Infrastructure/obj/Release/net8.0/Infrastructure.AssemblyInfo.cs
new file mode 100644
index 0000000..7ddb7c8
--- /dev/null
+++ b/backend/Infrastructure/obj/Release/net8.0/Infrastructure.AssemblyInfo.cs
@@ -0,0 +1,22 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("Infrastructure")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+8e4322649e4df45cec652c7098c929f725ff16bf")]
+[assembly: System.Reflection.AssemblyProductAttribute("Infrastructure")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Infrastructure")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/backend/Infrastructure/obj/Release/net8.0/Infrastructure.AssemblyInfoInputs.cache b/backend/Infrastructure/obj/Release/net8.0/Infrastructure.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..9055a0b
--- /dev/null
+++ b/backend/Infrastructure/obj/Release/net8.0/Infrastructure.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+d7fc5c8bcd426c1142f6428d8e32042d131d34cb9a6da4d819e540daa45ebaf9
diff --git a/backend/Infrastructure/obj/Release/net8.0/Infrastructure.GeneratedMSBuildEditorConfig.editorconfig b/backend/Infrastructure/obj/Release/net8.0/Infrastructure.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..3f74926
--- /dev/null
+++ b/backend/Infrastructure/obj/Release/net8.0/Infrastructure.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,13 @@
+is_global = true
+build_property.TargetFramework = net8.0
+build_property.TargetPlatformMinVersion =
+build_property.UsingMicrosoftNETSdkWeb =
+build_property.ProjectTypeGuids =
+build_property.InvariantGlobalization =
+build_property.PlatformNeutralAssembly =
+build_property.EnforceExtendedAnalyzerRules =
+build_property._SupportedPlatformList = Linux,macOS,Windows
+build_property.RootNamespace = Infrastructure
+build_property.ProjectDir = /home/azureuser/CC-FinalProj/backend/Infrastructure/
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
diff --git a/backend/Infrastructure/obj/Release/net8.0/Infrastructure.GlobalUsings.g.cs b/backend/Infrastructure/obj/Release/net8.0/Infrastructure.GlobalUsings.g.cs
new file mode 100644
index 0000000..8578f3d
--- /dev/null
+++ b/backend/Infrastructure/obj/Release/net8.0/Infrastructure.GlobalUsings.g.cs
@@ -0,0 +1,8 @@
+//
+global using global::System;
+global using global::System.Collections.Generic;
+global using global::System.IO;
+global using global::System.Linq;
+global using global::System.Net.Http;
+global using global::System.Threading;
+global using global::System.Threading.Tasks;
diff --git a/backend/Infrastructure/obj/Release/net8.0/Infrastructure.assets.cache b/backend/Infrastructure/obj/Release/net8.0/Infrastructure.assets.cache
new file mode 100644
index 0000000..d1760bc
Binary files /dev/null and b/backend/Infrastructure/obj/Release/net8.0/Infrastructure.assets.cache differ
diff --git a/backend/Infrastructure/obj/Release/net8.0/Infrastructure.csproj.AssemblyReference.cache b/backend/Infrastructure/obj/Release/net8.0/Infrastructure.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..554f175
Binary files /dev/null and b/backend/Infrastructure/obj/Release/net8.0/Infrastructure.csproj.AssemblyReference.cache differ
diff --git a/backend/Infrastructure/obj/Release/net8.0/Infrastructure.csproj.CoreCompileInputs.cache b/backend/Infrastructure/obj/Release/net8.0/Infrastructure.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..974c809
--- /dev/null
+++ b/backend/Infrastructure/obj/Release/net8.0/Infrastructure.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+60dd88d41a2415c7aec4db0cbb52fd56d819bef233e93897436e6ecab0b4db60
diff --git a/backend/Infrastructure/obj/Release/net8.0/Infrastructure.csproj.FileListAbsolute.txt b/backend/Infrastructure/obj/Release/net8.0/Infrastructure.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..7d75b5e
--- /dev/null
+++ b/backend/Infrastructure/obj/Release/net8.0/Infrastructure.csproj.FileListAbsolute.txt
@@ -0,0 +1,20 @@
+/home/azureuser/CC-FinalProj/backend/Infrastructure/bin/Release/net8.0/Infrastructure.deps.json
+/home/azureuser/CC-FinalProj/backend/Infrastructure/bin/Release/net8.0/Infrastructure.runtimeconfig.json
+/home/azureuser/CC-FinalProj/backend/Infrastructure/bin/Release/net8.0/Infrastructure.dll
+/home/azureuser/CC-FinalProj/backend/Infrastructure/bin/Release/net8.0/Infrastructure.pdb
+/home/azureuser/CC-FinalProj/backend/Infrastructure/bin/Release/net8.0/Application.dll
+/home/azureuser/CC-FinalProj/backend/Infrastructure/bin/Release/net8.0/Core.dll
+/home/azureuser/CC-FinalProj/backend/Infrastructure/bin/Release/net8.0/Application.pdb
+/home/azureuser/CC-FinalProj/backend/Infrastructure/bin/Release/net8.0/Core.pdb
+/home/azureuser/CC-FinalProj/backend/Infrastructure/obj/Release/net8.0/Infrastructure.csproj.AssemblyReference.cache
+/home/azureuser/CC-FinalProj/backend/Infrastructure/obj/Release/net8.0/Infrastructure.GeneratedMSBuildEditorConfig.editorconfig
+/home/azureuser/CC-FinalProj/backend/Infrastructure/obj/Release/net8.0/Infrastructure.AssemblyInfoInputs.cache
+/home/azureuser/CC-FinalProj/backend/Infrastructure/obj/Release/net8.0/Infrastructure.AssemblyInfo.cs
+/home/azureuser/CC-FinalProj/backend/Infrastructure/obj/Release/net8.0/Infrastructure.csproj.CoreCompileInputs.cache
+/home/azureuser/CC-FinalProj/backend/Infrastructure/obj/Release/net8.0/Infrastructure.sourcelink.json
+/home/azureuser/CC-FinalProj/backend/Infrastructure/obj/Release/net8.0/Infrastr.15EFFBFE.Up2Date
+/home/azureuser/CC-FinalProj/backend/Infrastructure/obj/Release/net8.0/Infrastructure.dll
+/home/azureuser/CC-FinalProj/backend/Infrastructure/obj/Release/net8.0/refint/Infrastructure.dll
+/home/azureuser/CC-FinalProj/backend/Infrastructure/obj/Release/net8.0/Infrastructure.pdb
+/home/azureuser/CC-FinalProj/backend/Infrastructure/obj/Release/net8.0/Infrastructure.genruntimeconfig.cache
+/home/azureuser/CC-FinalProj/backend/Infrastructure/obj/Release/net8.0/ref/Infrastructure.dll
diff --git a/backend/Infrastructure/obj/Release/net8.0/Infrastructure.dll b/backend/Infrastructure/obj/Release/net8.0/Infrastructure.dll
new file mode 100644
index 0000000..a64d960
Binary files /dev/null and b/backend/Infrastructure/obj/Release/net8.0/Infrastructure.dll differ
diff --git a/backend/Infrastructure/obj/Release/net8.0/Infrastructure.genruntimeconfig.cache b/backend/Infrastructure/obj/Release/net8.0/Infrastructure.genruntimeconfig.cache
new file mode 100644
index 0000000..7550418
--- /dev/null
+++ b/backend/Infrastructure/obj/Release/net8.0/Infrastructure.genruntimeconfig.cache
@@ -0,0 +1 @@
+7d7bdb319ccbdca657f9a73acff6829a09c83a2f5b9e5535499933a6f178ca59
diff --git a/backend/Infrastructure/obj/Release/net8.0/Infrastructure.pdb b/backend/Infrastructure/obj/Release/net8.0/Infrastructure.pdb
new file mode 100644
index 0000000..d25eb54
Binary files /dev/null and b/backend/Infrastructure/obj/Release/net8.0/Infrastructure.pdb differ
diff --git a/backend/Infrastructure/obj/Release/net8.0/Infrastructure.sourcelink.json b/backend/Infrastructure/obj/Release/net8.0/Infrastructure.sourcelink.json
new file mode 100644
index 0000000..da14bfd
--- /dev/null
+++ b/backend/Infrastructure/obj/Release/net8.0/Infrastructure.sourcelink.json
@@ -0,0 +1 @@
+{"documents":{"/home/azureuser/CC-FinalProj/*":"https://raw.githubusercontent.com/andrei-mihnea-cerbu/CC-FinalProj/8e4322649e4df45cec652c7098c929f725ff16bf/*"}}
\ No newline at end of file
diff --git a/backend/Infrastructure/obj/Release/net8.0/ref/Infrastructure.dll b/backend/Infrastructure/obj/Release/net8.0/ref/Infrastructure.dll
new file mode 100644
index 0000000..76b93ab
Binary files /dev/null and b/backend/Infrastructure/obj/Release/net8.0/ref/Infrastructure.dll differ
diff --git a/backend/Infrastructure/obj/Release/net8.0/refint/Infrastructure.dll b/backend/Infrastructure/obj/Release/net8.0/refint/Infrastructure.dll
new file mode 100644
index 0000000..76b93ab
Binary files /dev/null and b/backend/Infrastructure/obj/Release/net8.0/refint/Infrastructure.dll differ
diff --git a/backend/Infrastructure/obj/project.assets.json b/backend/Infrastructure/obj/project.assets.json
index 11cbff6..42a8fcd 100644
--- a/backend/Infrastructure/obj/project.assets.json
+++ b/backend/Infrastructure/obj/project.assets.json
@@ -3654,19 +3654,19 @@
]
},
"packageFolders": {
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\": {}
+ "/root/.nuget/packages/": {}
},
"project": {
"version": "1.0.0",
"restore": {
- "projectUniqueName": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\Infrastructure.csproj",
+ "projectUniqueName": "/home/azureuser/CC-FinalProj/backend/Infrastructure/Infrastructure.csproj",
"projectName": "Infrastructure",
- "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\Infrastructure.csproj",
- "packagesPath": "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\",
- "outputPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\obj\\",
+ "projectPath": "/home/azureuser/CC-FinalProj/backend/Infrastructure/Infrastructure.csproj",
+ "packagesPath": "/root/.nuget/packages/",
+ "outputPath": "/home/azureuser/CC-FinalProj/backend/Infrastructure/obj/",
"projectStyle": "PackageReference",
"configFilePaths": [
- "C:\\Users\\Andrei Cerbu\\AppData\\Roaming\\NuGet\\NuGet.Config"
+ "/root/.nuget/NuGet/NuGet.Config"
],
"originalTargetFrameworks": [
"net8.0"
@@ -3678,11 +3678,11 @@
"net8.0": {
"targetAlias": "net8.0",
"projectReferences": {
- "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj": {
- "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Application\\Application.csproj"
+ "/home/azureuser/CC-FinalProj/backend/Application/Application.csproj": {
+ "projectPath": "/home/azureuser/CC-FinalProj/backend/Application/Application.csproj"
},
- "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj": {
- "projectPath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Core\\Core.csproj"
+ "/home/azureuser/CC-FinalProj/backend/Core/Core.csproj": {
+ "projectPath": "/home/azureuser/CC-FinalProj/backend/Core/Core.csproj"
}
}
}
@@ -3691,6 +3691,11 @@
"warnAsError": [
"NU1605"
]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "direct"
}
},
"frameworks": {
@@ -3756,7 +3761,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.204/PortableRuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/8.0.204/PortableRuntimeIdentifierGraph.json"
}
}
}
diff --git a/backend/Infrastructure/obj/project.nuget.cache b/backend/Infrastructure/obj/project.nuget.cache
index a400fcb..6f1fc19 100644
--- a/backend/Infrastructure/obj/project.nuget.cache
+++ b/backend/Infrastructure/obj/project.nuget.cache
@@ -1,79 +1,79 @@
{
"version": 2,
- "dgSpecHash": "deDdD9R8pVQ0xhMba0i6ykTUcsSl2Qqmr9I26IZwtTDqSH5BVbC6+4XEeHwOyRiJRpQY7jbtPmQuGyEnewDm3Q==",
+ "dgSpecHash": "LDpywmZ4WMEoUKlmqZIwbE9mpdj666TdnieuCBdDs4feBdKjbfaF2aP8u3w+bFm/CYGBZyb7kD5DGSi/tYlabA==",
"success": true,
- "projectFilePath": "C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\backend\\Infrastructure\\Infrastructure.csproj",
+ "projectFilePath": "/home/azureuser/CC-FinalProj/backend/Infrastructure/Infrastructure.csproj",
"expectedPackageFiles": [
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\awssdk.core\\3.7.100.14\\awssdk.core.3.7.100.14.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\awssdk.securitytoken\\3.7.100.14\\awssdk.securitytoken.3.7.100.14.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\dnsclient\\1.6.1\\dnsclient.1.6.1.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\fluentvalidation\\11.9.0\\fluentvalidation.11.9.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\humanizer.core\\2.14.1\\humanizer.core.2.14.1.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\6.0.0\\microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.3\\microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.codeanalysis.common\\4.5.0\\microsoft.codeanalysis.common.4.5.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.5.0\\microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.codeanalysis.csharp.workspaces\\4.5.0\\microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.codeanalysis.workspaces.common\\4.5.0\\microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.entityframeworkcore\\8.0.3\\microsoft.entityframeworkcore.8.0.3.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\8.0.3\\microsoft.entityframeworkcore.abstractions.8.0.3.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\8.0.3\\microsoft.entityframeworkcore.analyzers.8.0.3.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.entityframeworkcore.design\\8.0.3\\microsoft.entityframeworkcore.design.8.0.3.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\8.0.3\\microsoft.entityframeworkcore.relational.8.0.3.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\8.0.0\\microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.caching.memory\\8.0.0\\microsoft.extensions.caching.memory.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.configuration\\8.0.0\\microsoft.extensions.configuration.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\8.0.0\\microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.configuration.binder\\8.0.0\\microsoft.extensions.configuration.binder.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\8.0.0\\microsoft.extensions.configuration.fileextensions.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.configuration.json\\8.0.0\\microsoft.extensions.configuration.json.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\8.0.0\\microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.0\\microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.dependencymodel\\8.0.0\\microsoft.extensions.dependencymodel.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\8.0.0\\microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\8.0.0\\microsoft.extensions.fileproviders.physical.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\8.0.0\\microsoft.extensions.filesystemglobbing.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.logging\\8.0.0\\microsoft.extensions.logging.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\8.0.0\\microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.options\\8.0.0\\microsoft.extensions.options.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\8.0.0\\microsoft.extensions.options.configurationextensions.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.extensions.primitives\\8.0.0\\microsoft.extensions.primitives.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.identitymodel.abstractions\\7.5.1\\microsoft.identitymodel.abstractions.7.5.1.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\7.5.1\\microsoft.identitymodel.jsonwebtokens.7.5.1.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.identitymodel.logging\\7.5.1\\microsoft.identitymodel.logging.7.5.1.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.identitymodel.tokens\\7.5.1\\microsoft.identitymodel.tokens.7.5.1.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\microsoft.win32.registry\\5.0.0\\microsoft.win32.registry.5.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\mongodb.bson\\2.24.0\\mongodb.bson.2.24.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\mongodb.driver\\2.24.0\\mongodb.driver.2.24.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\mongodb.driver.core\\2.24.0\\mongodb.driver.core.2.24.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\mongodb.libmongocrypt\\1.8.2\\mongodb.libmongocrypt.1.8.2.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\mono.texttemplating\\2.2.1\\mono.texttemplating.2.2.1.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\npgsql\\8.0.2\\npgsql.8.0.2.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\8.0.2\\npgsql.entityframeworkcore.postgresql.8.0.2.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\sharpcompress\\0.30.1\\sharpcompress.0.30.1.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\snappier\\1.0.0\\snappier.1.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\system.codedom\\4.4.0\\system.codedom.4.4.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\system.collections.immutable\\6.0.0\\system.collections.immutable.6.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\system.composition\\6.0.0\\system.composition.6.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\system.composition.attributedmodel\\6.0.0\\system.composition.attributedmodel.6.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\system.composition.convention\\6.0.0\\system.composition.convention.6.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\system.composition.hosting\\6.0.0\\system.composition.hosting.6.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\system.composition.runtime\\6.0.0\\system.composition.runtime.6.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\system.composition.typedparts\\6.0.0\\system.composition.typedparts.6.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\system.identitymodel.tokens.jwt\\7.5.1\\system.identitymodel.tokens.jwt.7.5.1.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\system.io.pipelines\\6.0.3\\system.io.pipelines.6.0.3.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\system.memory\\4.5.5\\system.memory.4.5.5.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\system.reflection.metadata\\6.0.1\\system.reflection.metadata.6.0.1.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\system.security.accesscontrol\\5.0.0\\system.security.accesscontrol.5.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\system.text.encoding.codepages\\6.0.0\\system.text.encoding.codepages.6.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\system.text.encodings.web\\8.0.0\\system.text.encodings.web.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\system.text.json\\8.0.0\\system.text.json.8.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\system.threading.channels\\6.0.0\\system.threading.channels.6.0.0.nupkg.sha512",
- "C:\\Users\\Andrei Cerbu\\.nuget\\packages\\zstdsharp.port\\0.7.3\\zstdsharp.port.0.7.3.nupkg.sha512"
+ "/root/.nuget/packages/awssdk.core/3.7.100.14/awssdk.core.3.7.100.14.nupkg.sha512",
+ "/root/.nuget/packages/awssdk.securitytoken/3.7.100.14/awssdk.securitytoken.3.7.100.14.nupkg.sha512",
+ "/root/.nuget/packages/dnsclient/1.6.1/dnsclient.1.6.1.nupkg.sha512",
+ "/root/.nuget/packages/fluentvalidation/11.9.0/fluentvalidation.11.9.0.nupkg.sha512",
+ "/root/.nuget/packages/humanizer.core/2.14.1/humanizer.core.2.14.1.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.bcl.asyncinterfaces/6.0.0/microsoft.bcl.asyncinterfaces.6.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.codeanalysis.analyzers/3.3.3/microsoft.codeanalysis.analyzers.3.3.3.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.codeanalysis.common/4.5.0/microsoft.codeanalysis.common.4.5.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.codeanalysis.csharp/4.5.0/microsoft.codeanalysis.csharp.4.5.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.codeanalysis.csharp.workspaces/4.5.0/microsoft.codeanalysis.csharp.workspaces.4.5.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.codeanalysis.workspaces.common/4.5.0/microsoft.codeanalysis.workspaces.common.4.5.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.entityframeworkcore/8.0.3/microsoft.entityframeworkcore.8.0.3.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.entityframeworkcore.abstractions/8.0.3/microsoft.entityframeworkcore.abstractions.8.0.3.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.entityframeworkcore.analyzers/8.0.3/microsoft.entityframeworkcore.analyzers.8.0.3.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.entityframeworkcore.design/8.0.3/microsoft.entityframeworkcore.design.8.0.3.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.entityframeworkcore.relational/8.0.3/microsoft.entityframeworkcore.relational.8.0.3.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.caching.abstractions/8.0.0/microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.caching.memory/8.0.0/microsoft.extensions.caching.memory.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.configuration/8.0.0/microsoft.extensions.configuration.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.configuration.abstractions/8.0.0/microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.configuration.binder/8.0.0/microsoft.extensions.configuration.binder.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.configuration.fileextensions/8.0.0/microsoft.extensions.configuration.fileextensions.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.configuration.json/8.0.0/microsoft.extensions.configuration.json.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.dependencyinjection/8.0.0/microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/8.0.0/microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.dependencymodel/8.0.0/microsoft.extensions.dependencymodel.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.fileproviders.abstractions/8.0.0/microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.fileproviders.physical/8.0.0/microsoft.extensions.fileproviders.physical.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.filesystemglobbing/8.0.0/microsoft.extensions.filesystemglobbing.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.logging/8.0.0/microsoft.extensions.logging.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.logging.abstractions/8.0.0/microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.options/8.0.0/microsoft.extensions.options.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.options.configurationextensions/8.0.0/microsoft.extensions.options.configurationextensions.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.extensions.primitives/8.0.0/microsoft.extensions.primitives.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.identitymodel.abstractions/7.5.1/microsoft.identitymodel.abstractions.7.5.1.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.identitymodel.jsonwebtokens/7.5.1/microsoft.identitymodel.jsonwebtokens.7.5.1.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.identitymodel.logging/7.5.1/microsoft.identitymodel.logging.7.5.1.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.identitymodel.tokens/7.5.1/microsoft.identitymodel.tokens.7.5.1.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.netcore.platforms/5.0.0/microsoft.netcore.platforms.5.0.0.nupkg.sha512",
+ "/root/.nuget/packages/microsoft.win32.registry/5.0.0/microsoft.win32.registry.5.0.0.nupkg.sha512",
+ "/root/.nuget/packages/mongodb.bson/2.24.0/mongodb.bson.2.24.0.nupkg.sha512",
+ "/root/.nuget/packages/mongodb.driver/2.24.0/mongodb.driver.2.24.0.nupkg.sha512",
+ "/root/.nuget/packages/mongodb.driver.core/2.24.0/mongodb.driver.core.2.24.0.nupkg.sha512",
+ "/root/.nuget/packages/mongodb.libmongocrypt/1.8.2/mongodb.libmongocrypt.1.8.2.nupkg.sha512",
+ "/root/.nuget/packages/mono.texttemplating/2.2.1/mono.texttemplating.2.2.1.nupkg.sha512",
+ "/root/.nuget/packages/npgsql/8.0.2/npgsql.8.0.2.nupkg.sha512",
+ "/root/.nuget/packages/npgsql.entityframeworkcore.postgresql/8.0.2/npgsql.entityframeworkcore.postgresql.8.0.2.nupkg.sha512",
+ "/root/.nuget/packages/sharpcompress/0.30.1/sharpcompress.0.30.1.nupkg.sha512",
+ "/root/.nuget/packages/snappier/1.0.0/snappier.1.0.0.nupkg.sha512",
+ "/root/.nuget/packages/system.buffers/4.5.1/system.buffers.4.5.1.nupkg.sha512",
+ "/root/.nuget/packages/system.codedom/4.4.0/system.codedom.4.4.0.nupkg.sha512",
+ "/root/.nuget/packages/system.collections.immutable/6.0.0/system.collections.immutable.6.0.0.nupkg.sha512",
+ "/root/.nuget/packages/system.composition/6.0.0/system.composition.6.0.0.nupkg.sha512",
+ "/root/.nuget/packages/system.composition.attributedmodel/6.0.0/system.composition.attributedmodel.6.0.0.nupkg.sha512",
+ "/root/.nuget/packages/system.composition.convention/6.0.0/system.composition.convention.6.0.0.nupkg.sha512",
+ "/root/.nuget/packages/system.composition.hosting/6.0.0/system.composition.hosting.6.0.0.nupkg.sha512",
+ "/root/.nuget/packages/system.composition.runtime/6.0.0/system.composition.runtime.6.0.0.nupkg.sha512",
+ "/root/.nuget/packages/system.composition.typedparts/6.0.0/system.composition.typedparts.6.0.0.nupkg.sha512",
+ "/root/.nuget/packages/system.identitymodel.tokens.jwt/7.5.1/system.identitymodel.tokens.jwt.7.5.1.nupkg.sha512",
+ "/root/.nuget/packages/system.io.pipelines/6.0.3/system.io.pipelines.6.0.3.nupkg.sha512",
+ "/root/.nuget/packages/system.memory/4.5.5/system.memory.4.5.5.nupkg.sha512",
+ "/root/.nuget/packages/system.reflection.metadata/6.0.1/system.reflection.metadata.6.0.1.nupkg.sha512",
+ "/root/.nuget/packages/system.runtime.compilerservices.unsafe/6.0.0/system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
+ "/root/.nuget/packages/system.security.accesscontrol/5.0.0/system.security.accesscontrol.5.0.0.nupkg.sha512",
+ "/root/.nuget/packages/system.security.principal.windows/5.0.0/system.security.principal.windows.5.0.0.nupkg.sha512",
+ "/root/.nuget/packages/system.text.encoding.codepages/6.0.0/system.text.encoding.codepages.6.0.0.nupkg.sha512",
+ "/root/.nuget/packages/system.text.encodings.web/8.0.0/system.text.encodings.web.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/system.text.json/8.0.0/system.text.json.8.0.0.nupkg.sha512",
+ "/root/.nuget/packages/system.threading.channels/6.0.0/system.threading.channels.6.0.0.nupkg.sha512",
+ "/root/.nuget/packages/zstdsharp.port/0.7.3/zstdsharp.port.0.7.3.nupkg.sha512"
],
"logs": []
}
\ No newline at end of file