logger added
This commit is contained in:
+4
-30
@@ -9,37 +9,11 @@ using Microsoft.AspNetCore.Server.Kestrel.Https;
|
|||||||
|
|
||||||
var builder = WebApplication.CreateBuilder(args);
|
var builder = WebApplication.CreateBuilder(args);
|
||||||
|
|
||||||
builder.Logging.ClearProviders();
|
// Configure Kestrel with certificate paths from appsettings.json
|
||||||
builder.Logging.AddConsole();
|
builder.WebHost.ConfigureKestrel((context, serverOptions) =>
|
||||||
builder.Logging.AddDebug();
|
|
||||||
|
|
||||||
|
|
||||||
// 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 =>
|
|
||||||
{
|
{
|
||||||
serverOptions.ListenAnyIP(5000); // Set HTTP port
|
serverOptions.Configure(context.Configuration.GetSection("Kestrel"), reloadOnChange: true);
|
||||||
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
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});;
|
|
||||||
|
|
||||||
builder.Services.AddCors(options =>
|
builder.Services.AddCors(options =>
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -1 +0,0 @@
|
|||||||
2024/05/01 19:55:08 Micro started
|
|
||||||
@@ -5,6 +5,20 @@
|
|||||||
"Microsoft.AspNetCore": "Warning"
|
"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": {
|
"ConnectionStrings": {
|
||||||
"HealthcareManagerDatabase": "Host=postgresrv.postgres.database.azure.com;Database=postgres;Port=5432;User Id=postgre;Password=Password1;Ssl Mode=Require;",
|
"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"
|
"MongoDBConnection": "mongodb+srv://mongodb:Password1@healthcaremanagermongodb.mongocluster.cosmos.azure.com/?tls=true&authMechanism=SCRAM-SHA-256&retrywrites=false&maxIdleTimeMS=120000"
|
||||||
|
|||||||
Executable
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Regular → Executable
Regular → Executable
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Regular → Executable
Regular → Executable
Binary file not shown.
Binary file not shown.
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
Regular → Executable
@@ -5,6 +5,20 @@
|
|||||||
"Microsoft.AspNetCore": "Warning"
|
"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": {
|
"ConnectionStrings": {
|
||||||
"HealthcareManagerDatabase": "Host=postgresrv.postgres.database.azure.com;Database=postgres;Port=5432;User Id=postgre;Password=Password1;Ssl Mode=Require;",
|
"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"
|
"MongoDBConnection": "mongodb+srv://mongodb:Password1@healthcaremanagermongodb.mongocluster.cosmos.azure.com/?tls=true&authMechanism=SCRAM-SHA-256&retrywrites=false&maxIdleTimeMS=120000"
|
||||||
|
|||||||
Regular → Executable
Regular → Executable
Regular → Executable
Executable
BIN
Binary file not shown.
@@ -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": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Binary file not shown.
Binary file not shown.
@@ -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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Executable
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Executable
BIN
Binary file not shown.
BIN
Binary file not shown.
Executable
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Executable
BIN
Binary file not shown.
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"Logging": {
|
||||||
|
"LogLevel": {
|
||||||
|
"Default": "Information",
|
||||||
|
"Microsoft.AspNetCore": "Warning"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -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": "*"
|
||||||
|
}
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1 +0,0 @@
|
|||||||
2024/05/01 20:38:38 Micro started
|
|
||||||
@@ -13,7 +13,7 @@ using System.Reflection;
|
|||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("API")]
|
[assembly: System.Reflection.AssemblyCompanyAttribute("API")]
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+8e4322649e4df45cec652c7098c929f725ff16bf")]
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+beedfcf666e33203980d37b2477db3c2bcef81a0")]
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("API")]
|
[assembly: System.Reflection.AssemblyProductAttribute("API")]
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("API")]
|
[assembly: System.Reflection.AssemblyTitleAttribute("API")]
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
453ffda4295c5e0dce92614f7a406e66ffae57500f6c15603961c11cf348a009
|
b658ee25330107fc855a5fc10816c653c167d7169534195be0b1be7ae03ecd2a
|
||||||
|
|||||||
Binary file not shown.
@@ -1,133 +1,265 @@
|
|||||||
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.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/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.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.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.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.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/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.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/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/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/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.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.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.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.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.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.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.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.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.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.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/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.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.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.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/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.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/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/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/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.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.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/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/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/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/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/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/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/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/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/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/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/Infrastructure.pdb
|
||||||
C:\Users\Andrei Cerbu\Desktop\backend\API\bin\Debug\net8.0\Core.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.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.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.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.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.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.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/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.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.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.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.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.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/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/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/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/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/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.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/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/ref/API.dll
|
||||||
C:\Users\Andrei Cerbu\Desktop\backend\API\obj\Debug\net8.0\API.csproj.CopyComplete
|
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.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/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.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.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.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.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/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.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/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/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/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.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.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.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.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.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.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.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.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.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.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/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.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.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.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/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.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/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/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/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.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.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/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/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/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/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/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/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/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/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/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/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/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/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.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.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.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.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.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.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/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.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.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.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.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.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/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/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/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.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/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/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.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/API.genruntimeconfig.cache
|
||||||
C:\Users\Andrei Cerbu\Desktop\sesiunile main\backend\API\obj\Debug\net8.0\ref\API.dll
|
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
|
||||||
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.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\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.exe
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
|||||||
{"documents":{"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\*":"https://raw.githubusercontent.com/andrei-mihnea-cerbu/CC-FinalProj/e57b47cae362bcdd292021d92f19844516cd42b7/*"}}
|
{"documents":{"C:\\Users\\Andrei Cerbu\\Documents\\FACULTATE\\CC-FinalProj\\*":"https://raw.githubusercontent.com/andrei-mihnea-cerbu/CC-FinalProj/beedfcf666e33203980d37b2477db3c2bcef81a0/*"}}
|
||||||
Executable
BIN
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user