diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..aa16fb4 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,8 @@ +**/bin/ +**/obj/ +**/global.json +**/Dockerfile* +**/.dockerignore* +**/*.user +**/.vs/ +**/Static/ \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9d925d9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +**/.vs/ +**/*.user +**/internal_logs +.gitconfig +.env + + diff --git a/AdapterLayer/AdapterLayer.csproj b/AdapterLayer/AdapterLayer.csproj new file mode 100644 index 0000000..551c6f8 --- /dev/null +++ b/AdapterLayer/AdapterLayer.csproj @@ -0,0 +1,19 @@ + + + + net8.0 + AdapterLayer + enable + enable + + + + + + + + + + + + diff --git a/AdapterLayer/DTOs/UserMapper.cs b/AdapterLayer/DTOs/UserMapper.cs new file mode 100644 index 0000000..665c86a --- /dev/null +++ b/AdapterLayer/DTOs/UserMapper.cs @@ -0,0 +1,27 @@ + +using AdapterLayer.Models; + +namespace AdapterLayer.DTOs +{ + public class UserMapper + { + public UserMapper() { } + + public UserModel ToModel(UserRequest request) + { + return new UserModel + { + nombre = request.nombre, + apellidos = request.apellidos, + email = request.email, + telefonoFijo = request.telefonoFijo, + telefonoMovil = request.telefonoMovil, + telefonoInstitucional = request.telefonoInstitucional, + clave = request.clave, + rol = request.rol, + esResponsable = request.esResponsable, + esAutorizante = request.esAutorizante + }; + } + } +} diff --git a/AdapterLayer/DTOs/UserRequest.cs b/AdapterLayer/DTOs/UserRequest.cs new file mode 100644 index 0000000..c70d128 --- /dev/null +++ b/AdapterLayer/DTOs/UserRequest.cs @@ -0,0 +1,17 @@ + +namespace AdapterLayer.DTOs +{ + public class UserRequest + { + public string nombre { get; set; } + public string apellidos { get; set; } + public string email { get; set; } + public string telefonoFijo { get; set; } + public string telefonoMovil { get; set; } + public string telefonoInstitucional { get; set; } + public string clave { get; set; } + public string rol { get; set; } + public bool esResponsable { get; set; } + public bool esAutorizante { get; set; } + } +} diff --git a/AdapterLayer/Models/UserModel.cs b/AdapterLayer/Models/UserModel.cs new file mode 100644 index 0000000..85947ee --- /dev/null +++ b/AdapterLayer/Models/UserModel.cs @@ -0,0 +1,22 @@ +using MongoDB.Bson; +using MongoDB.Bson.Serialization.Attributes; + +namespace AdapterLayer.Models +{ + public class UserModel + { + [BsonId] + [BsonRepresentation(BsonType.ObjectId)] + public string _id { get; set; } + public string nombre { get; set; } + public string apellidos { get; set; } + public string email { get; set; } + public string telefonoFijo { get; set; } + public string telefonoMovil { get; set; } + public string telefonoInstitucional { get; set; } + public string clave { get; set; } + public string rol { get; set; } + public bool esResponsable { get; set; } + public bool esAutorizante { get; set; } + } +} diff --git a/AdapterLayer/Models/UserView.cs b/AdapterLayer/Models/UserView.cs new file mode 100644 index 0000000..040d9e0 --- /dev/null +++ b/AdapterLayer/Models/UserView.cs @@ -0,0 +1,12 @@ + +namespace AdapterLayer.Models +{ + public class UserView + { + public string Id { get; set; } + public string nombre { get; set; } + public string apellidos { get; set; } + public string email { get; set; } + public string rol { get; set; } + } +} diff --git a/AdapterLayer/MongoDb/MongoConnectionService.cs b/AdapterLayer/MongoDb/MongoConnectionService.cs new file mode 100644 index 0000000..8540582 --- /dev/null +++ b/AdapterLayer/MongoDb/MongoConnectionService.cs @@ -0,0 +1,26 @@ +using MongoDB.Driver; + +namespace AdapterLayer.MongoDb +{ + public class MongoConnectionService + { + private readonly string ConnectionString; + private readonly string DatabaseName; + public MongoConnectionService() + { + ConnectionString = Environment.GetEnvironmentVariable("MONGO_URL"); + if (ConnectionString == null) ConnectionString = "mongodb://localhost:27017"; + + DatabaseName = Environment.GetEnvironmentVariable("MONGO_DB"); + if (DatabaseName == null) DatabaseName = "gex-api"; + } + + public IMongoCollection Connect(string collection) + { + var client = new MongoClient(ConnectionString); + var db = client.GetDatabase(DatabaseName); + return db.GetCollection(collection); + } + + } +} diff --git a/AdapterLayer/Repository/Repository.cs b/AdapterLayer/Repository/Repository.cs new file mode 100644 index 0000000..030d55c --- /dev/null +++ b/AdapterLayer/Repository/Repository.cs @@ -0,0 +1,32 @@ +using AdapterLayer.Models; +using AdapterLayer.MongoDb; +using ApplicationLayer.Interfaces; +using MongoDB.Driver; + +namespace AdapterLayer.Repository +{ + public class Repository : IRepository + { + private readonly MongoConnectionService _dbService; + + public Repository(MongoConnectionService dbService) + { + _dbService = dbService; + } + + public async Task> GetAllUsersAsync() + { + var collection = _dbService.Connect("users"); + var results = await collection.FindAsync(_ => true); + return results.ToList(); + } + + public async Task AddUserAsync(UserModel user) + { + var collection = _dbService.Connect("users"); + await collection.InsertOneAsync(user); + + } + + } +} \ No newline at end of file diff --git a/AdapterLayer/bin/Debug/net8.0/AdapterLayer.deps.json b/AdapterLayer/bin/Debug/net8.0/AdapterLayer.deps.json new file mode 100644 index 0000000..c29fa12 --- /dev/null +++ b/AdapterLayer/bin/Debug/net8.0/AdapterLayer.deps.json @@ -0,0 +1,244 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "AdapterLayer/1.0.0": { + "dependencies": { + "ApplicationLayer": "1.0.0", + "DomainLayer": "1.0.0", + "MongoDB.Driver": "3.0.0" + }, + "runtime": { + "AdapterLayer.dll": {} + } + }, + "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" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/2.0.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.17205" + } + } + }, + "Microsoft.NETCore.Platforms/5.0.0": {}, + "Microsoft.Win32.Registry/5.0.0": { + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "MongoDB.Bson/3.0.0": { + "dependencies": { + "System.Memory": "4.5.5", + "System.Runtime.CompilerServices.Unsafe": "5.0.0" + }, + "runtime": { + "lib/net6.0/MongoDB.Bson.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.0.0.0" + } + } + }, + "MongoDB.Driver/3.0.0": { + "dependencies": { + "DnsClient": "1.6.1", + "Microsoft.Extensions.Logging.Abstractions": "2.0.0", + "MongoDB.Bson": "3.0.0", + "SharpCompress": "0.30.1", + "Snappier": "1.0.0", + "System.Buffers": "4.5.1", + "ZstdSharp.Port": "0.7.3" + }, + "runtime": { + "lib/net6.0/MongoDB.Driver.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.0.0.0" + } + } + }, + "SharpCompress/0.30.1": { + "runtime": { + "lib/net5.0/SharpCompress.dll": { + "assemblyVersion": "0.30.1.0", + "fileVersion": "0.30.1.0" + } + } + }, + "Snappier/1.0.0": { + "runtime": { + "lib/net5.0/Snappier.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "System.Buffers/4.5.1": {}, + "System.Memory/4.5.5": {}, + "System.Runtime.CompilerServices.Unsafe/5.0.0": {}, + "System.Security.AccessControl/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "System.Security.Principal.Windows/5.0.0": {}, + "ZstdSharp.Port/0.7.3": { + "runtime": { + "lib/net7.0/ZstdSharp.dll": { + "assemblyVersion": "0.7.3.0", + "fileVersion": "0.7.3.0" + } + } + }, + "ApplicationLayer/1.0.0": { + "dependencies": { + "DomainLayer": "1.0.0" + }, + "runtime": { + "ApplicationLayer.dll": { + "assemblyVersion": "1.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "DomainLayer/1.0.0": { + "runtime": { + "DomainLayer.dll": { + "assemblyVersion": "1.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "AdapterLayer/1.0.0": { + "type": "project", + "serviceable": false, + "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" + }, + "Microsoft.Extensions.Logging.Abstractions/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6ZCllUYGFukkymSTx3Yr0G/ajRxoNJp7/FqSxSB4fGISST54ifBhgu4Nc0ItGi3i6DqwuNd8SUyObmiC++AO2Q==", + "path": "microsoft.extensions.logging.abstractions/2.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.2.0.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "path": "microsoft.netcore.platforms/5.0.0", + "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", + "path": "microsoft.win32.registry/5.0.0", + "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512" + }, + "MongoDB.Bson/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qnPRJ58HXDh7C4oxTf6YB7BJhlCGJIa6TMXhzImw6zk44lrAomQXTB6AtoQ5lNJbkyrgQcT7+smsKFMnXmLXhw==", + "path": "mongodb.bson/3.0.0", + "hashPath": "mongodb.bson.3.0.0.nupkg.sha512" + }, + "MongoDB.Driver/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-udcP8rOhyuhLDn3sGVdNUgQSXfKGPaIP4w09XVKf4xdy66YSXinhkIuQSuOeZVHdTFsG2PpUbRx2wyFm7E0EMg==", + "path": "mongodb.driver/3.0.0", + "hashPath": "mongodb.driver.3.0.0.nupkg.sha512" + }, + "SharpCompress/0.30.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==", + "path": "sharpcompress/0.30.1", + "hashPath": "sharpcompress.0.30.1.nupkg.sha512" + }, + "Snappier/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rFtK2KEI9hIe8gtx3a0YDXdHOpedIf9wYCEYtBEmtlyiWVX3XlCNV03JrmmAi/Cdfn7dxK+k0sjjcLv4fpHnqA==", + "path": "snappier/1.0.0", + "hashPath": "snappier.1.0.0.nupkg.sha512" + }, + "System.Buffers/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" + }, + "System.Memory/4.5.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", + "path": "system.memory/4.5.5", + "hashPath": "system.memory.4.5.5.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==", + "path": "system.runtime.compilerservices.unsafe/5.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512" + }, + "System.Security.AccessControl/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", + "path": "system.security.accesscontrol/5.0.0", + "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "path": "system.security.principal.windows/5.0.0", + "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" + }, + "ZstdSharp.Port/0.7.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U9Ix4l4cl58Kzz1rJzj5hoVTjmbx1qGMwzAcbv1j/d3NzrFaESIurQyg+ow4mivCgkE3S413y+U9k4WdnEIkRA==", + "path": "zstdsharp.port/0.7.3", + "hashPath": "zstdsharp.port.0.7.3.nupkg.sha512" + }, + "ApplicationLayer/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "DomainLayer/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/AdapterLayer/bin/Debug/net8.0/AdapterLayer.dll b/AdapterLayer/bin/Debug/net8.0/AdapterLayer.dll new file mode 100644 index 0000000..19551d6 Binary files /dev/null and b/AdapterLayer/bin/Debug/net8.0/AdapterLayer.dll differ diff --git a/AdapterLayer/bin/Debug/net8.0/AdapterLayer.pdb b/AdapterLayer/bin/Debug/net8.0/AdapterLayer.pdb new file mode 100644 index 0000000..0509a13 Binary files /dev/null and b/AdapterLayer/bin/Debug/net8.0/AdapterLayer.pdb differ diff --git a/AdapterLayer/bin/Debug/net8.0/ApplicationLayer.dll b/AdapterLayer/bin/Debug/net8.0/ApplicationLayer.dll new file mode 100644 index 0000000..784189f Binary files /dev/null and b/AdapterLayer/bin/Debug/net8.0/ApplicationLayer.dll differ diff --git a/AdapterLayer/bin/Debug/net8.0/ApplicationLayer.pdb b/AdapterLayer/bin/Debug/net8.0/ApplicationLayer.pdb new file mode 100644 index 0000000..9010c71 Binary files /dev/null and b/AdapterLayer/bin/Debug/net8.0/ApplicationLayer.pdb differ diff --git a/AdapterLayer/bin/Debug/net8.0/DomainLayer.dll b/AdapterLayer/bin/Debug/net8.0/DomainLayer.dll new file mode 100644 index 0000000..8d246f2 Binary files /dev/null and b/AdapterLayer/bin/Debug/net8.0/DomainLayer.dll differ diff --git a/AdapterLayer/bin/Debug/net8.0/DomainLayer.pdb b/AdapterLayer/bin/Debug/net8.0/DomainLayer.pdb new file mode 100644 index 0000000..b102e03 Binary files /dev/null and b/AdapterLayer/bin/Debug/net8.0/DomainLayer.pdb differ diff --git a/AdapterLayer/obj/Adapter-Database.csproj.nuget.dgspec.json b/AdapterLayer/obj/Adapter-Database.csproj.nuget.dgspec.json new file mode 100644 index 0000000..ae1677a --- /dev/null +++ b/AdapterLayer/obj/Adapter-Database.csproj.nuget.dgspec.json @@ -0,0 +1,75 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\Adapter-Database\\Adapter-Database.csproj": {} + }, + "projects": { + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\Adapter-Database\\Adapter-Database.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\Adapter-Database\\Adapter-Database.csproj", + "projectName": "Adapter-Database", + "projectPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\Adapter-Database\\Adapter-Database.csproj", + "packagesPath": "C:\\Users\\caal13\\.nuget\\packages\\", + "outputPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\Adapter-Database\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\caal13\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "MongoDB.Driver": { + "target": "Package", + "version": "[3.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/AdapterLayer/obj/Adapter-Database.csproj.nuget.g.props b/AdapterLayer/obj/Adapter-Database.csproj.nuget.g.props new file mode 100644 index 0000000..632286f --- /dev/null +++ b/AdapterLayer/obj/Adapter-Database.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\caal13\.nuget\packages\ + PackageReference + 6.11.1 + + + + + \ No newline at end of file diff --git a/AdapterLayer/obj/Adapter-Database.csproj.nuget.g.targets b/AdapterLayer/obj/Adapter-Database.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/AdapterLayer/obj/Adapter-Database.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/AdapterLayer/obj/AdapterLayer.csproj.nuget.dgspec.json b/AdapterLayer/obj/AdapterLayer.csproj.nuget.dgspec.json new file mode 100644 index 0000000..2777c6a --- /dev/null +++ b/AdapterLayer/obj/AdapterLayer.csproj.nuget.dgspec.json @@ -0,0 +1,208 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\AdapterLayer\\AdapterLayer.csproj": {} + }, + "projects": { + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\AdapterLayer\\AdapterLayer.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\AdapterLayer\\AdapterLayer.csproj", + "projectName": "AdapterLayer", + "projectPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\AdapterLayer\\AdapterLayer.csproj", + "packagesPath": "C:\\Users\\caal13\\.nuget\\packages\\", + "outputPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\AdapterLayer\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\caal13\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\ApplicationLayer\\ApplicationLayer.csproj": { + "projectPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\ApplicationLayer\\ApplicationLayer.csproj" + }, + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\DomainLayer.csproj": { + "projectPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\DomainLayer.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "MongoDB.Driver": { + "target": "Package", + "version": "[3.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\ApplicationLayer\\ApplicationLayer.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\ApplicationLayer\\ApplicationLayer.csproj", + "projectName": "ApplicationLayer", + "projectPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\ApplicationLayer\\ApplicationLayer.csproj", + "packagesPath": "C:\\Users\\caal13\\.nuget\\packages\\", + "outputPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\ApplicationLayer\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\caal13\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\DomainLayer.csproj": { + "projectPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\DomainLayer.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\DomainLayer.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\DomainLayer.csproj", + "projectName": "DomainLayer", + "projectPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\DomainLayer.csproj", + "packagesPath": "C:\\Users\\caal13\\.nuget\\packages\\", + "outputPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\caal13\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/AdapterLayer/obj/AdapterLayer.csproj.nuget.g.props b/AdapterLayer/obj/AdapterLayer.csproj.nuget.g.props new file mode 100644 index 0000000..632286f --- /dev/null +++ b/AdapterLayer/obj/AdapterLayer.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\caal13\.nuget\packages\ + PackageReference + 6.11.1 + + + + + \ No newline at end of file diff --git a/AdapterLayer/obj/AdapterLayer.csproj.nuget.g.targets b/AdapterLayer/obj/AdapterLayer.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/AdapterLayer/obj/AdapterLayer.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/AdapterLayer/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/AdapterLayer/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/AdapterLayer/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/AdapterLayer/obj/Debug/net8.0/Adapter-Database.AssemblyInfo.cs b/AdapterLayer/obj/Debug/net8.0/Adapter-Database.AssemblyInfo.cs new file mode 100644 index 0000000..bfb2160 --- /dev/null +++ b/AdapterLayer/obj/Debug/net8.0/Adapter-Database.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Adapter-Database")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Adapter-Database")] +[assembly: System.Reflection.AssemblyTitleAttribute("Adapter-Database")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/AdapterLayer/obj/Debug/net8.0/Adapter-Database.AssemblyInfoInputs.cache b/AdapterLayer/obj/Debug/net8.0/Adapter-Database.AssemblyInfoInputs.cache new file mode 100644 index 0000000..7f2a204 --- /dev/null +++ b/AdapterLayer/obj/Debug/net8.0/Adapter-Database.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +f46edd0127292050baee0f38370490ee821ee9206c83f74ab2410d08ff48bd90 diff --git a/AdapterLayer/obj/Debug/net8.0/Adapter-Database.GeneratedMSBuildEditorConfig.editorconfig b/AdapterLayer/obj/Debug/net8.0/Adapter-Database.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..1e5f7fe --- /dev/null +++ b/AdapterLayer/obj/Debug/net8.0/Adapter-Database.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Adapter_Database +build_property.ProjectDir = C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\Adapter-Database\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/AdapterLayer/obj/Debug/net8.0/Adapter-Database.GlobalUsings.g.cs b/AdapterLayer/obj/Debug/net8.0/Adapter-Database.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/AdapterLayer/obj/Debug/net8.0/Adapter-Database.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/AdapterLayer/obj/Debug/net8.0/Adapter-Database.assets.cache b/AdapterLayer/obj/Debug/net8.0/Adapter-Database.assets.cache new file mode 100644 index 0000000..5b60c4c Binary files /dev/null and b/AdapterLayer/obj/Debug/net8.0/Adapter-Database.assets.cache differ diff --git a/AdapterLayer/obj/Debug/net8.0/Adapter-Database.csproj.AssemblyReference.cache b/AdapterLayer/obj/Debug/net8.0/Adapter-Database.csproj.AssemblyReference.cache new file mode 100644 index 0000000..bbcf2b4 Binary files /dev/null and b/AdapterLayer/obj/Debug/net8.0/Adapter-Database.csproj.AssemblyReference.cache differ diff --git a/AdapterLayer/obj/Debug/net8.0/AdapterL.48B0D095.Up2Date b/AdapterLayer/obj/Debug/net8.0/AdapterL.48B0D095.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/AdapterLayer/obj/Debug/net8.0/AdapterLayer.AssemblyInfo.cs b/AdapterLayer/obj/Debug/net8.0/AdapterLayer.AssemblyInfo.cs new file mode 100644 index 0000000..f8c31d3 --- /dev/null +++ b/AdapterLayer/obj/Debug/net8.0/AdapterLayer.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("AdapterLayer")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("AdapterLayer")] +[assembly: System.Reflection.AssemblyTitleAttribute("AdapterLayer")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/AdapterLayer/obj/Debug/net8.0/AdapterLayer.AssemblyInfoInputs.cache b/AdapterLayer/obj/Debug/net8.0/AdapterLayer.AssemblyInfoInputs.cache new file mode 100644 index 0000000..87cd8ee --- /dev/null +++ b/AdapterLayer/obj/Debug/net8.0/AdapterLayer.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +60319f8ff63cbce02e524179d47e0051b4f7c70be04f993aaced148f41d98761 diff --git a/AdapterLayer/obj/Debug/net8.0/AdapterLayer.GeneratedMSBuildEditorConfig.editorconfig b/AdapterLayer/obj/Debug/net8.0/AdapterLayer.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..58eb346 --- /dev/null +++ b/AdapterLayer/obj/Debug/net8.0/AdapterLayer.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = AdapterLayer +build_property.ProjectDir = C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\AdapterLayer\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/AdapterLayer/obj/Debug/net8.0/AdapterLayer.GlobalUsings.g.cs b/AdapterLayer/obj/Debug/net8.0/AdapterLayer.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/AdapterLayer/obj/Debug/net8.0/AdapterLayer.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/AdapterLayer/obj/Debug/net8.0/AdapterLayer.assets.cache b/AdapterLayer/obj/Debug/net8.0/AdapterLayer.assets.cache new file mode 100644 index 0000000..76a9226 Binary files /dev/null and b/AdapterLayer/obj/Debug/net8.0/AdapterLayer.assets.cache differ diff --git a/AdapterLayer/obj/Debug/net8.0/AdapterLayer.csproj.AssemblyReference.cache b/AdapterLayer/obj/Debug/net8.0/AdapterLayer.csproj.AssemblyReference.cache new file mode 100644 index 0000000..2d4335f Binary files /dev/null and b/AdapterLayer/obj/Debug/net8.0/AdapterLayer.csproj.AssemblyReference.cache differ diff --git a/AdapterLayer/obj/Debug/net8.0/AdapterLayer.csproj.BuildWithSkipAnalyzers b/AdapterLayer/obj/Debug/net8.0/AdapterLayer.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/AdapterLayer/obj/Debug/net8.0/AdapterLayer.csproj.CoreCompileInputs.cache b/AdapterLayer/obj/Debug/net8.0/AdapterLayer.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..e1aff75 --- /dev/null +++ b/AdapterLayer/obj/Debug/net8.0/AdapterLayer.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +70157bad14cc13725e4577b95cdc0f32106a61c2643cb49a4986b0edf35e56b6 diff --git a/AdapterLayer/obj/Debug/net8.0/AdapterLayer.csproj.FileListAbsolute.txt b/AdapterLayer/obj/Debug/net8.0/AdapterLayer.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..e87a470 --- /dev/null +++ b/AdapterLayer/obj/Debug/net8.0/AdapterLayer.csproj.FileListAbsolute.txt @@ -0,0 +1,34 @@ +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\Adapter-Database\bin\Debug\net8.0\AdapterLayer.deps.json +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\Adapter-Database\bin\Debug\net8.0\AdapterLayer.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\Adapter-Database\bin\Debug\net8.0\AdapterLayer.pdb +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\Adapter-Database\bin\Debug\net8.0\ApplicationLayer.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\Adapter-Database\bin\Debug\net8.0\DomainLayer.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\Adapter-Database\bin\Debug\net8.0\ApplicationLayer.pdb +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\Adapter-Database\bin\Debug\net8.0\DomainLayer.pdb +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\Adapter-Database\obj\Debug\net8.0\AdapterLayer.csproj.AssemblyReference.cache +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\Adapter-Database\obj\Debug\net8.0\AdapterLayer.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\Adapter-Database\obj\Debug\net8.0\AdapterLayer.AssemblyInfoInputs.cache +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\Adapter-Database\obj\Debug\net8.0\AdapterLayer.AssemblyInfo.cs +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\Adapter-Database\obj\Debug\net8.0\AdapterLayer.csproj.CoreCompileInputs.cache +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\Adapter-Database\obj\Debug\net8.0\AdapterL.48B0D095.Up2Date +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\Adapter-Database\obj\Debug\net8.0\AdapterLayer.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\Adapter-Database\obj\Debug\net8.0\refint\AdapterLayer.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\Adapter-Database\obj\Debug\net8.0\AdapterLayer.pdb +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\Adapter-Database\obj\Debug\net8.0\ref\AdapterLayer.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\AdapterLayer\bin\Debug\net8.0\AdapterLayer.deps.json +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\AdapterLayer\bin\Debug\net8.0\AdapterLayer.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\AdapterLayer\bin\Debug\net8.0\AdapterLayer.pdb +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\AdapterLayer\bin\Debug\net8.0\ApplicationLayer.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\AdapterLayer\bin\Debug\net8.0\DomainLayer.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\AdapterLayer\bin\Debug\net8.0\ApplicationLayer.pdb +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\AdapterLayer\bin\Debug\net8.0\DomainLayer.pdb +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\AdapterLayer\obj\Debug\net8.0\AdapterLayer.csproj.AssemblyReference.cache +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\AdapterLayer\obj\Debug\net8.0\AdapterLayer.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\AdapterLayer\obj\Debug\net8.0\AdapterLayer.AssemblyInfoInputs.cache +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\AdapterLayer\obj\Debug\net8.0\AdapterLayer.AssemblyInfo.cs +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\AdapterLayer\obj\Debug\net8.0\AdapterLayer.csproj.CoreCompileInputs.cache +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\AdapterLayer\obj\Debug\net8.0\AdapterL.48B0D095.Up2Date +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\AdapterLayer\obj\Debug\net8.0\AdapterLayer.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\AdapterLayer\obj\Debug\net8.0\refint\AdapterLayer.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\AdapterLayer\obj\Debug\net8.0\AdapterLayer.pdb +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\AdapterLayer\obj\Debug\net8.0\ref\AdapterLayer.dll diff --git a/AdapterLayer/obj/Debug/net8.0/AdapterLayer.dll b/AdapterLayer/obj/Debug/net8.0/AdapterLayer.dll new file mode 100644 index 0000000..19551d6 Binary files /dev/null and b/AdapterLayer/obj/Debug/net8.0/AdapterLayer.dll differ diff --git a/AdapterLayer/obj/Debug/net8.0/AdapterLayer.pdb b/AdapterLayer/obj/Debug/net8.0/AdapterLayer.pdb new file mode 100644 index 0000000..0509a13 Binary files /dev/null and b/AdapterLayer/obj/Debug/net8.0/AdapterLayer.pdb differ diff --git a/AdapterLayer/obj/Debug/net8.0/ref/AdapterLayer.dll b/AdapterLayer/obj/Debug/net8.0/ref/AdapterLayer.dll new file mode 100644 index 0000000..0ed5a0d Binary files /dev/null and b/AdapterLayer/obj/Debug/net8.0/ref/AdapterLayer.dll differ diff --git a/AdapterLayer/obj/Debug/net8.0/refint/AdapterLayer.dll b/AdapterLayer/obj/Debug/net8.0/refint/AdapterLayer.dll new file mode 100644 index 0000000..0ed5a0d Binary files /dev/null and b/AdapterLayer/obj/Debug/net8.0/refint/AdapterLayer.dll differ diff --git a/AdapterLayer/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/AdapterLayer/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/AdapterLayer/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/AdapterLayer/obj/Release/net8.0/AdapterLayer.AssemblyInfo.cs b/AdapterLayer/obj/Release/net8.0/AdapterLayer.AssemblyInfo.cs new file mode 100644 index 0000000..7edbd14 --- /dev/null +++ b/AdapterLayer/obj/Release/net8.0/AdapterLayer.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("AdapterLayer")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("AdapterLayer")] +[assembly: System.Reflection.AssemblyTitleAttribute("AdapterLayer")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/AdapterLayer/obj/Release/net8.0/AdapterLayer.AssemblyInfoInputs.cache b/AdapterLayer/obj/Release/net8.0/AdapterLayer.AssemblyInfoInputs.cache new file mode 100644 index 0000000..59cd877 --- /dev/null +++ b/AdapterLayer/obj/Release/net8.0/AdapterLayer.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +0454312ffcc0a1074ab0afb15d21c168edf50033c24e34eda5f8ce60e9b8ac4c diff --git a/AdapterLayer/obj/Release/net8.0/AdapterLayer.GeneratedMSBuildEditorConfig.editorconfig b/AdapterLayer/obj/Release/net8.0/AdapterLayer.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..58eb346 --- /dev/null +++ b/AdapterLayer/obj/Release/net8.0/AdapterLayer.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = AdapterLayer +build_property.ProjectDir = C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\AdapterLayer\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/AdapterLayer/obj/Release/net8.0/AdapterLayer.GlobalUsings.g.cs b/AdapterLayer/obj/Release/net8.0/AdapterLayer.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/AdapterLayer/obj/Release/net8.0/AdapterLayer.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/AdapterLayer/obj/Release/net8.0/AdapterLayer.assets.cache b/AdapterLayer/obj/Release/net8.0/AdapterLayer.assets.cache new file mode 100644 index 0000000..6eb670f Binary files /dev/null and b/AdapterLayer/obj/Release/net8.0/AdapterLayer.assets.cache differ diff --git a/AdapterLayer/obj/Release/net8.0/AdapterLayer.csproj.AssemblyReference.cache b/AdapterLayer/obj/Release/net8.0/AdapterLayer.csproj.AssemblyReference.cache new file mode 100644 index 0000000..bbcf2b4 Binary files /dev/null and b/AdapterLayer/obj/Release/net8.0/AdapterLayer.csproj.AssemblyReference.cache differ diff --git a/AdapterLayer/obj/project.assets.json b/AdapterLayer/obj/project.assets.json new file mode 100644 index 0000000..dce0807 --- /dev/null +++ b/AdapterLayer/obj/project.assets.json @@ -0,0 +1,713 @@ +{ + "version": 3, + "targets": { + "net8.0": { + "DnsClient/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "5.0.0" + }, + "compile": { + "lib/net5.0/DnsClient.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/DnsClient.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/2.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.Win32.Registry/5.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "MongoDB.Bson/3.0.0": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.5", + "System.Runtime.CompilerServices.Unsafe": "5.0.0" + }, + "compile": { + "lib/net6.0/MongoDB.Bson.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/MongoDB.Bson.dll": { + "related": ".xml" + } + } + }, + "MongoDB.Driver/3.0.0": { + "type": "package", + "dependencies": { + "DnsClient": "1.6.1", + "Microsoft.Extensions.Logging.Abstractions": "2.0.0", + "MongoDB.Bson": "3.0.0", + "SharpCompress": "0.30.1", + "Snappier": "1.0.0", + "System.Buffers": "4.5.1", + "ZstdSharp.Port": "0.7.3" + }, + "compile": { + "lib/net6.0/MongoDB.Driver.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/MongoDB.Driver.dll": { + "related": ".xml" + } + } + }, + "SharpCompress/0.30.1": { + "type": "package", + "compile": { + "lib/net5.0/SharpCompress.dll": {} + }, + "runtime": { + "lib/net5.0/SharpCompress.dll": {} + } + }, + "Snappier/1.0.0": { + "type": "package", + "compile": { + "lib/net5.0/Snappier.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Snappier.dll": { + "related": ".xml" + } + } + }, + "System.Buffers/4.5.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Memory/4.5.5": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Runtime.CompilerServices.Unsafe/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + } + }, + "System.Security.AccessControl/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "ZstdSharp.Port/0.7.3": { + "type": "package", + "compile": { + "lib/net7.0/ZstdSharp.dll": {} + }, + "runtime": { + "lib/net7.0/ZstdSharp.dll": {} + } + }, + "ApplicationLayer/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "DomainLayer": "1.0.0" + }, + "compile": { + "bin/placeholder/ApplicationLayer.dll": {} + }, + "runtime": { + "bin/placeholder/ApplicationLayer.dll": {} + } + }, + "DomainLayer/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "compile": { + "bin/placeholder/DomainLayer.dll": {} + }, + "runtime": { + "bin/placeholder/DomainLayer.dll": {} + } + } + } + }, + "libraries": { + "DnsClient/1.6.1": { + "sha512": "4H/f2uYJOZ+YObZjpY9ABrKZI+JNw3uizp6oMzTXwDw6F+2qIPhpRl/1t68O/6e98+vqNiYGu+lswmwdYUy3gg==", + "type": "package", + "path": "dnsclient/1.6.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dnsclient.1.6.1.nupkg.sha512", + "dnsclient.nuspec", + "icon.png", + "lib/net45/DnsClient.dll", + "lib/net45/DnsClient.xml", + "lib/net471/DnsClient.dll", + "lib/net471/DnsClient.xml", + "lib/net5.0/DnsClient.dll", + "lib/net5.0/DnsClient.xml", + "lib/netstandard1.3/DnsClient.dll", + "lib/netstandard1.3/DnsClient.xml", + "lib/netstandard2.0/DnsClient.dll", + "lib/netstandard2.0/DnsClient.xml", + "lib/netstandard2.1/DnsClient.dll", + "lib/netstandard2.1/DnsClient.xml" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/2.0.0": { + "sha512": "6ZCllUYGFukkymSTx3Yr0G/ajRxoNJp7/FqSxSB4fGISST54ifBhgu4Nc0ItGi3i6DqwuNd8SUyObmiC++AO2Q==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.2.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "type": "package", + "path": "microsoft.netcore.platforms/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.5.0.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.Registry/5.0.0": { + "sha512": "dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", + "type": "package", + "path": "microsoft.win32.registry/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.5.0.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "MongoDB.Bson/3.0.0": { + "sha512": "qnPRJ58HXDh7C4oxTf6YB7BJhlCGJIa6TMXhzImw6zk44lrAomQXTB6AtoQ5lNJbkyrgQcT7+smsKFMnXmLXhw==", + "type": "package", + "path": "mongodb.bson/3.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net472/MongoDB.Bson.dll", + "lib/net472/MongoDB.Bson.xml", + "lib/net6.0/MongoDB.Bson.dll", + "lib/net6.0/MongoDB.Bson.xml", + "lib/netstandard2.1/MongoDB.Bson.dll", + "lib/netstandard2.1/MongoDB.Bson.xml", + "mongodb.bson.3.0.0.nupkg.sha512", + "mongodb.bson.nuspec", + "packageIcon.png" + ] + }, + "MongoDB.Driver/3.0.0": { + "sha512": "udcP8rOhyuhLDn3sGVdNUgQSXfKGPaIP4w09XVKf4xdy66YSXinhkIuQSuOeZVHdTFsG2PpUbRx2wyFm7E0EMg==", + "type": "package", + "path": "mongodb.driver/3.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net472/MongoDB.Driver.dll", + "lib/net472/MongoDB.Driver.xml", + "lib/net6.0/MongoDB.Driver.dll", + "lib/net6.0/MongoDB.Driver.xml", + "lib/netstandard2.1/MongoDB.Driver.dll", + "lib/netstandard2.1/MongoDB.Driver.xml", + "mongodb.driver.3.0.0.nupkg.sha512", + "mongodb.driver.nuspec", + "packageIcon.png" + ] + }, + "SharpCompress/0.30.1": { + "sha512": "XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==", + "type": "package", + "path": "sharpcompress/0.30.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/SharpCompress.dll", + "lib/net5.0/SharpCompress.dll", + "lib/netcoreapp3.1/SharpCompress.dll", + "lib/netstandard2.0/SharpCompress.dll", + "lib/netstandard2.1/SharpCompress.dll", + "sharpcompress.0.30.1.nupkg.sha512", + "sharpcompress.nuspec" + ] + }, + "Snappier/1.0.0": { + "sha512": "rFtK2KEI9hIe8gtx3a0YDXdHOpedIf9wYCEYtBEmtlyiWVX3XlCNV03JrmmAi/Cdfn7dxK+k0sjjcLv4fpHnqA==", + "type": "package", + "path": "snappier/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "COPYING.txt", + "lib/net5.0/Snappier.dll", + "lib/net5.0/Snappier.xml", + "lib/netcoreapp3.0/Snappier.dll", + "lib/netcoreapp3.0/Snappier.xml", + "lib/netstandard2.0/Snappier.dll", + "lib/netstandard2.0/Snappier.xml", + "lib/netstandard2.1/Snappier.dll", + "lib/netstandard2.1/Snappier.xml", + "snappier.1.0.0.nupkg.sha512", + "snappier.nuspec" + ] + }, + "System.Buffers/4.5.1": { + "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "type": "package", + "path": "system.buffers/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Buffers.dll", + "lib/net461/System.Buffers.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.1/System.Buffers.dll", + "lib/netstandard1.1/System.Buffers.xml", + "lib/netstandard2.0/System.Buffers.dll", + "lib/netstandard2.0/System.Buffers.xml", + "lib/uap10.0.16299/_._", + "ref/net45/System.Buffers.dll", + "ref/net45/System.Buffers.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.1/System.Buffers.dll", + "ref/netstandard1.1/System.Buffers.xml", + "ref/netstandard2.0/System.Buffers.dll", + "ref/netstandard2.0/System.Buffers.xml", + "ref/uap10.0.16299/_._", + "system.buffers.4.5.1.nupkg.sha512", + "system.buffers.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Memory/4.5.5": { + "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", + "type": "package", + "path": "system.memory/4.5.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Memory.dll", + "lib/net461/System.Memory.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.5.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.CompilerServices.Unsafe/5.0.0": { + "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net45/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/net461/System.Runtime.CompilerServices.Unsafe.dll", + "ref/net461/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.AccessControl/5.0.0": { + "sha512": "dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", + "type": "package", + "path": "system.security.accesscontrol/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.xml", + "ref/netstandard1.3/System.Security.AccessControl.dll", + "ref/netstandard1.3/System.Security.AccessControl.xml", + "ref/netstandard1.3/de/System.Security.AccessControl.xml", + "ref/netstandard1.3/es/System.Security.AccessControl.xml", + "ref/netstandard1.3/fr/System.Security.AccessControl.xml", + "ref/netstandard1.3/it/System.Security.AccessControl.xml", + "ref/netstandard1.3/ja/System.Security.AccessControl.xml", + "ref/netstandard1.3/ko/System.Security.AccessControl.xml", + "ref/netstandard1.3/ru/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", + "ref/netstandard2.0/System.Security.AccessControl.dll", + "ref/netstandard2.0/System.Security.AccessControl.xml", + "ref/uap10.0.16299/_._", + "runtimes/win/lib/net46/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.5.0.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal.Windows/5.0.0": { + "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "type": "package", + "path": "system.security.principal.windows/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.5.0.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "ZstdSharp.Port/0.7.3": { + "sha512": "U9Ix4l4cl58Kzz1rJzj5hoVTjmbx1qGMwzAcbv1j/d3NzrFaESIurQyg+ow4mivCgkE3S413y+U9k4WdnEIkRA==", + "type": "package", + "path": "zstdsharp.port/0.7.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/ZstdSharp.dll", + "lib/net5.0/ZstdSharp.dll", + "lib/net6.0/ZstdSharp.dll", + "lib/net7.0/ZstdSharp.dll", + "lib/netcoreapp3.1/ZstdSharp.dll", + "lib/netstandard2.0/ZstdSharp.dll", + "lib/netstandard2.1/ZstdSharp.dll", + "zstdsharp.port.0.7.3.nupkg.sha512", + "zstdsharp.port.nuspec" + ] + }, + "ApplicationLayer/1.0.0": { + "type": "project", + "path": "../ApplicationLayer/ApplicationLayer.csproj", + "msbuildProject": "../ApplicationLayer/ApplicationLayer.csproj" + }, + "DomainLayer/1.0.0": { + "type": "project", + "path": "../DomainLayer/DomainLayer.csproj", + "msbuildProject": "../DomainLayer/DomainLayer.csproj" + } + }, + "projectFileDependencyGroups": { + "net8.0": [ + "ApplicationLayer >= 1.0.0", + "DomainLayer >= 1.0.0", + "MongoDB.Driver >= 3.0.0" + ] + }, + "packageFolders": { + "C:\\Users\\caal13\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\AdapterLayer\\AdapterLayer.csproj", + "projectName": "AdapterLayer", + "projectPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\AdapterLayer\\AdapterLayer.csproj", + "packagesPath": "C:\\Users\\caal13\\.nuget\\packages\\", + "outputPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\AdapterLayer\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\caal13\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\ApplicationLayer\\ApplicationLayer.csproj": { + "projectPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\ApplicationLayer\\ApplicationLayer.csproj" + }, + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\DomainLayer.csproj": { + "projectPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\DomainLayer.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "MongoDB.Driver": { + "target": "Package", + "version": "[3.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/AdapterLayer/obj/project.nuget.cache b/AdapterLayer/obj/project.nuget.cache new file mode 100644 index 0000000..07598f3 --- /dev/null +++ b/AdapterLayer/obj/project.nuget.cache @@ -0,0 +1,23 @@ +{ + "version": 2, + "dgSpecHash": "8MlqV7YQ474=", + "success": true, + "projectFilePath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\AdapterLayer\\AdapterLayer.csproj", + "expectedPackageFiles": [ + "C:\\Users\\caal13\\.nuget\\packages\\dnsclient\\1.6.1\\dnsclient.1.6.1.nupkg.sha512", + "C:\\Users\\caal13\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\2.0.0\\microsoft.extensions.logging.abstractions.2.0.0.nupkg.sha512", + "C:\\Users\\caal13\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512", + "C:\\Users\\caal13\\.nuget\\packages\\microsoft.win32.registry\\5.0.0\\microsoft.win32.registry.5.0.0.nupkg.sha512", + "C:\\Users\\caal13\\.nuget\\packages\\mongodb.bson\\3.0.0\\mongodb.bson.3.0.0.nupkg.sha512", + "C:\\Users\\caal13\\.nuget\\packages\\mongodb.driver\\3.0.0\\mongodb.driver.3.0.0.nupkg.sha512", + "C:\\Users\\caal13\\.nuget\\packages\\sharpcompress\\0.30.1\\sharpcompress.0.30.1.nupkg.sha512", + "C:\\Users\\caal13\\.nuget\\packages\\snappier\\1.0.0\\snappier.1.0.0.nupkg.sha512", + "C:\\Users\\caal13\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512", + "C:\\Users\\caal13\\.nuget\\packages\\system.memory\\4.5.5\\system.memory.4.5.5.nupkg.sha512", + "C:\\Users\\caal13\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\5.0.0\\system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512", + "C:\\Users\\caal13\\.nuget\\packages\\system.security.accesscontrol\\5.0.0\\system.security.accesscontrol.5.0.0.nupkg.sha512", + "C:\\Users\\caal13\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", + "C:\\Users\\caal13\\.nuget\\packages\\zstdsharp.port\\0.7.3\\zstdsharp.port.0.7.3.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/ApplicationLayer/ApplicationLayer.csproj b/ApplicationLayer/ApplicationLayer.csproj new file mode 100644 index 0000000..54ccca1 --- /dev/null +++ b/ApplicationLayer/ApplicationLayer.csproj @@ -0,0 +1,13 @@ + + + + net8.0 + enable + enable + + + + + + + diff --git a/ApplicationLayer/Interfaces/IRepository.cs b/ApplicationLayer/Interfaces/IRepository.cs new file mode 100644 index 0000000..92c1b20 --- /dev/null +++ b/ApplicationLayer/Interfaces/IRepository.cs @@ -0,0 +1,10 @@ +using DomainLayer; + +namespace ApplicationLayer.Interfaces +{ + public interface IRepository + { + Task> GetAllUsersAsync(); + Task AddUserAsync(T user); + } +} diff --git a/ApplicationLayer/UseCases/AddUser.cs b/ApplicationLayer/UseCases/AddUser.cs new file mode 100644 index 0000000..4e04550 --- /dev/null +++ b/ApplicationLayer/UseCases/AddUser.cs @@ -0,0 +1,19 @@ +using ApplicationLayer.Interfaces; + +namespace ApplicationLayer.UseCases +{ + public class AddUser + { + private readonly IRepository _gexRepository; + + public AddUser(IRepository repository) + { + _gexRepository = repository; + } + + public async Task ExecuteAsync(T user) + { + await _gexRepository.AddUserAsync(user); + } + } +} diff --git a/ApplicationLayer/UseCases/GetUsers.cs b/ApplicationLayer/UseCases/GetUsers.cs new file mode 100644 index 0000000..93b8640 --- /dev/null +++ b/ApplicationLayer/UseCases/GetUsers.cs @@ -0,0 +1,20 @@ +using ApplicationLayer.Interfaces; + +namespace ApplicationLayer.UseCases +{ + public class GetUsers + { + private readonly IRepository _gexRepository; + + public GetUsers(IRepository repository) + { + _gexRepository = repository; + } + + public async Task> ExecuteAsync() + { + return await _gexRepository.GetAllUsersAsync(); + } + + } +} diff --git a/ApplicationLayer/bin/Debug/net8.0/ApplicationLayer.deps.json b/ApplicationLayer/bin/Debug/net8.0/ApplicationLayer.deps.json new file mode 100644 index 0000000..a959df1 --- /dev/null +++ b/ApplicationLayer/bin/Debug/net8.0/ApplicationLayer.deps.json @@ -0,0 +1,39 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "ApplicationLayer/1.0.0": { + "dependencies": { + "DomainLayer": "1.0.0" + }, + "runtime": { + "ApplicationLayer.dll": {} + } + }, + "DomainLayer/1.0.0": { + "runtime": { + "DomainLayer.dll": { + "assemblyVersion": "1.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "ApplicationLayer/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "DomainLayer/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/ApplicationLayer/bin/Debug/net8.0/ApplicationLayer.dll b/ApplicationLayer/bin/Debug/net8.0/ApplicationLayer.dll new file mode 100644 index 0000000..784189f Binary files /dev/null and b/ApplicationLayer/bin/Debug/net8.0/ApplicationLayer.dll differ diff --git a/ApplicationLayer/bin/Debug/net8.0/ApplicationLayer.pdb b/ApplicationLayer/bin/Debug/net8.0/ApplicationLayer.pdb new file mode 100644 index 0000000..9010c71 Binary files /dev/null and b/ApplicationLayer/bin/Debug/net8.0/ApplicationLayer.pdb differ diff --git a/ApplicationLayer/bin/Debug/net8.0/DomainLayer.dll b/ApplicationLayer/bin/Debug/net8.0/DomainLayer.dll new file mode 100644 index 0000000..8d246f2 Binary files /dev/null and b/ApplicationLayer/bin/Debug/net8.0/DomainLayer.dll differ diff --git a/ApplicationLayer/bin/Debug/net8.0/DomainLayer.pdb b/ApplicationLayer/bin/Debug/net8.0/DomainLayer.pdb new file mode 100644 index 0000000..b102e03 Binary files /dev/null and b/ApplicationLayer/bin/Debug/net8.0/DomainLayer.pdb differ diff --git a/ApplicationLayer/obj/Application.csproj.nuget.dgspec.json b/ApplicationLayer/obj/Application.csproj.nuget.dgspec.json new file mode 100644 index 0000000..d80af59 --- /dev/null +++ b/ApplicationLayer/obj/Application.csproj.nuget.dgspec.json @@ -0,0 +1,69 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\ApplicationLayer\\Application.csproj": {} + }, + "projects": { + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\ApplicationLayer\\Application.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\ApplicationLayer\\Application.csproj", + "projectName": "Application", + "projectPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\ApplicationLayer\\Application.csproj", + "packagesPath": "C:\\Users\\caal13\\.nuget\\packages\\", + "outputPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\ApplicationLayer\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\caal13\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/ApplicationLayer/obj/Application.csproj.nuget.g.props b/ApplicationLayer/obj/Application.csproj.nuget.g.props new file mode 100644 index 0000000..632286f --- /dev/null +++ b/ApplicationLayer/obj/Application.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\caal13\.nuget\packages\ + PackageReference + 6.11.1 + + + + + \ No newline at end of file diff --git a/ApplicationLayer/obj/Application.csproj.nuget.g.targets b/ApplicationLayer/obj/Application.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/ApplicationLayer/obj/Application.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/ApplicationLayer/obj/ApplicationLayer.csproj.nuget.dgspec.json b/ApplicationLayer/obj/ApplicationLayer.csproj.nuget.dgspec.json new file mode 100644 index 0000000..f0a7754 --- /dev/null +++ b/ApplicationLayer/obj/ApplicationLayer.csproj.nuget.dgspec.json @@ -0,0 +1,134 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\ApplicationLayer\\ApplicationLayer.csproj": {} + }, + "projects": { + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\ApplicationLayer\\ApplicationLayer.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\ApplicationLayer\\ApplicationLayer.csproj", + "projectName": "ApplicationLayer", + "projectPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\ApplicationLayer\\ApplicationLayer.csproj", + "packagesPath": "C:\\Users\\caal13\\.nuget\\packages\\", + "outputPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\ApplicationLayer\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\caal13\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\DomainLayer.csproj": { + "projectPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\DomainLayer.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\DomainLayer.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\DomainLayer.csproj", + "projectName": "DomainLayer", + "projectPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\DomainLayer.csproj", + "packagesPath": "C:\\Users\\caal13\\.nuget\\packages\\", + "outputPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\caal13\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/ApplicationLayer/obj/ApplicationLayer.csproj.nuget.g.props b/ApplicationLayer/obj/ApplicationLayer.csproj.nuget.g.props new file mode 100644 index 0000000..632286f --- /dev/null +++ b/ApplicationLayer/obj/ApplicationLayer.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\caal13\.nuget\packages\ + PackageReference + 6.11.1 + + + + + \ No newline at end of file diff --git a/ApplicationLayer/obj/ApplicationLayer.csproj.nuget.g.targets b/ApplicationLayer/obj/ApplicationLayer.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/ApplicationLayer/obj/ApplicationLayer.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/ApplicationLayer/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/ApplicationLayer/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/ApplicationLayer/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/ApplicationLayer/obj/Debug/net8.0/Applicat.033E422A.Up2Date b/ApplicationLayer/obj/Debug/net8.0/Applicat.033E422A.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/ApplicationLayer/obj/Debug/net8.0/Application.AssemblyInfo.cs b/ApplicationLayer/obj/Debug/net8.0/Application.AssemblyInfo.cs new file mode 100644 index 0000000..ee1dfe7 --- /dev/null +++ b/ApplicationLayer/obj/Debug/net8.0/Application.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Application")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Application")] +[assembly: System.Reflection.AssemblyTitleAttribute("Application")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ApplicationLayer/obj/Debug/net8.0/Application.AssemblyInfoInputs.cache b/ApplicationLayer/obj/Debug/net8.0/Application.AssemblyInfoInputs.cache new file mode 100644 index 0000000..9696c5a --- /dev/null +++ b/ApplicationLayer/obj/Debug/net8.0/Application.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +2a4e5f5a0667b9cd53f41476d242e4588b36e9b8087ce5913d0c0c2c8bafbf9c diff --git a/ApplicationLayer/obj/Debug/net8.0/Application.GeneratedMSBuildEditorConfig.editorconfig b/ApplicationLayer/obj/Debug/net8.0/Application.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..390a00f --- /dev/null +++ b/ApplicationLayer/obj/Debug/net8.0/Application.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Application +build_property.ProjectDir = C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\ApplicationLayer\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/ApplicationLayer/obj/Debug/net8.0/Application.GlobalUsings.g.cs b/ApplicationLayer/obj/Debug/net8.0/Application.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/ApplicationLayer/obj/Debug/net8.0/Application.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/ApplicationLayer/obj/Debug/net8.0/Application.assets.cache b/ApplicationLayer/obj/Debug/net8.0/Application.assets.cache new file mode 100644 index 0000000..9428f1e Binary files /dev/null and b/ApplicationLayer/obj/Debug/net8.0/Application.assets.cache differ diff --git a/ApplicationLayer/obj/Debug/net8.0/ApplicationLayer.AssemblyInfo.cs b/ApplicationLayer/obj/Debug/net8.0/ApplicationLayer.AssemblyInfo.cs new file mode 100644 index 0000000..1470156 --- /dev/null +++ b/ApplicationLayer/obj/Debug/net8.0/ApplicationLayer.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ApplicationLayer")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ApplicationLayer")] +[assembly: System.Reflection.AssemblyTitleAttribute("ApplicationLayer")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ApplicationLayer/obj/Debug/net8.0/ApplicationLayer.AssemblyInfoInputs.cache b/ApplicationLayer/obj/Debug/net8.0/ApplicationLayer.AssemblyInfoInputs.cache new file mode 100644 index 0000000..cc6159a --- /dev/null +++ b/ApplicationLayer/obj/Debug/net8.0/ApplicationLayer.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +ec869c299dfdb3dd97b39d579381b0236171a98d52720dbd66daa4da15cdce23 diff --git a/ApplicationLayer/obj/Debug/net8.0/ApplicationLayer.GeneratedMSBuildEditorConfig.editorconfig b/ApplicationLayer/obj/Debug/net8.0/ApplicationLayer.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..a22b9ac --- /dev/null +++ b/ApplicationLayer/obj/Debug/net8.0/ApplicationLayer.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ApplicationLayer +build_property.ProjectDir = C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\ApplicationLayer\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/ApplicationLayer/obj/Debug/net8.0/ApplicationLayer.GlobalUsings.g.cs b/ApplicationLayer/obj/Debug/net8.0/ApplicationLayer.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/ApplicationLayer/obj/Debug/net8.0/ApplicationLayer.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/ApplicationLayer/obj/Debug/net8.0/ApplicationLayer.assets.cache b/ApplicationLayer/obj/Debug/net8.0/ApplicationLayer.assets.cache new file mode 100644 index 0000000..a9070b8 Binary files /dev/null and b/ApplicationLayer/obj/Debug/net8.0/ApplicationLayer.assets.cache differ diff --git a/ApplicationLayer/obj/Debug/net8.0/ApplicationLayer.csproj.AssemblyReference.cache b/ApplicationLayer/obj/Debug/net8.0/ApplicationLayer.csproj.AssemblyReference.cache new file mode 100644 index 0000000..d035569 Binary files /dev/null and b/ApplicationLayer/obj/Debug/net8.0/ApplicationLayer.csproj.AssemblyReference.cache differ diff --git a/ApplicationLayer/obj/Debug/net8.0/ApplicationLayer.csproj.BuildWithSkipAnalyzers b/ApplicationLayer/obj/Debug/net8.0/ApplicationLayer.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/ApplicationLayer/obj/Debug/net8.0/ApplicationLayer.csproj.CoreCompileInputs.cache b/ApplicationLayer/obj/Debug/net8.0/ApplicationLayer.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..482921d --- /dev/null +++ b/ApplicationLayer/obj/Debug/net8.0/ApplicationLayer.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +24ccd8ca5e355813172d32da6fd552f2e263fc5cdc954be915d2fc93b9abb0da diff --git a/ApplicationLayer/obj/Debug/net8.0/ApplicationLayer.csproj.FileListAbsolute.txt b/ApplicationLayer/obj/Debug/net8.0/ApplicationLayer.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..9f67e79 --- /dev/null +++ b/ApplicationLayer/obj/Debug/net8.0/ApplicationLayer.csproj.FileListAbsolute.txt @@ -0,0 +1,15 @@ +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\ApplicationLayer\bin\Debug\net8.0\ApplicationLayer.deps.json +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\ApplicationLayer\bin\Debug\net8.0\ApplicationLayer.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\ApplicationLayer\bin\Debug\net8.0\ApplicationLayer.pdb +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\ApplicationLayer\bin\Debug\net8.0\DomainLayer.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\ApplicationLayer\bin\Debug\net8.0\DomainLayer.pdb +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\ApplicationLayer\obj\Debug\net8.0\ApplicationLayer.csproj.AssemblyReference.cache +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\ApplicationLayer\obj\Debug\net8.0\ApplicationLayer.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\ApplicationLayer\obj\Debug\net8.0\ApplicationLayer.AssemblyInfoInputs.cache +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\ApplicationLayer\obj\Debug\net8.0\ApplicationLayer.AssemblyInfo.cs +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\ApplicationLayer\obj\Debug\net8.0\ApplicationLayer.csproj.CoreCompileInputs.cache +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\ApplicationLayer\obj\Debug\net8.0\Applicat.033E422A.Up2Date +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\ApplicationLayer\obj\Debug\net8.0\ApplicationLayer.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\ApplicationLayer\obj\Debug\net8.0\refint\ApplicationLayer.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\ApplicationLayer\obj\Debug\net8.0\ApplicationLayer.pdb +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\ApplicationLayer\obj\Debug\net8.0\ref\ApplicationLayer.dll diff --git a/ApplicationLayer/obj/Debug/net8.0/ApplicationLayer.dll b/ApplicationLayer/obj/Debug/net8.0/ApplicationLayer.dll new file mode 100644 index 0000000..784189f Binary files /dev/null and b/ApplicationLayer/obj/Debug/net8.0/ApplicationLayer.dll differ diff --git a/ApplicationLayer/obj/Debug/net8.0/ApplicationLayer.pdb b/ApplicationLayer/obj/Debug/net8.0/ApplicationLayer.pdb new file mode 100644 index 0000000..9010c71 Binary files /dev/null and b/ApplicationLayer/obj/Debug/net8.0/ApplicationLayer.pdb differ diff --git a/ApplicationLayer/obj/Debug/net8.0/ref/ApplicationLayer.dll b/ApplicationLayer/obj/Debug/net8.0/ref/ApplicationLayer.dll new file mode 100644 index 0000000..e4f8f5c Binary files /dev/null and b/ApplicationLayer/obj/Debug/net8.0/ref/ApplicationLayer.dll differ diff --git a/ApplicationLayer/obj/Debug/net8.0/refint/ApplicationLayer.dll b/ApplicationLayer/obj/Debug/net8.0/refint/ApplicationLayer.dll new file mode 100644 index 0000000..e4f8f5c Binary files /dev/null and b/ApplicationLayer/obj/Debug/net8.0/refint/ApplicationLayer.dll differ diff --git a/ApplicationLayer/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/ApplicationLayer/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/ApplicationLayer/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/ApplicationLayer/obj/Release/net8.0/ApplicationLayer.AssemblyInfo.cs b/ApplicationLayer/obj/Release/net8.0/ApplicationLayer.AssemblyInfo.cs new file mode 100644 index 0000000..3649026 --- /dev/null +++ b/ApplicationLayer/obj/Release/net8.0/ApplicationLayer.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ApplicationLayer")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("ApplicationLayer")] +[assembly: System.Reflection.AssemblyTitleAttribute("ApplicationLayer")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/ApplicationLayer/obj/Release/net8.0/ApplicationLayer.AssemblyInfoInputs.cache b/ApplicationLayer/obj/Release/net8.0/ApplicationLayer.AssemblyInfoInputs.cache new file mode 100644 index 0000000..0fe75e3 --- /dev/null +++ b/ApplicationLayer/obj/Release/net8.0/ApplicationLayer.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +a5d887093ea4e6c7950ca964e249c8eb39b8e9067adf64374656f621d1900acc diff --git a/ApplicationLayer/obj/Release/net8.0/ApplicationLayer.GeneratedMSBuildEditorConfig.editorconfig b/ApplicationLayer/obj/Release/net8.0/ApplicationLayer.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..a22b9ac --- /dev/null +++ b/ApplicationLayer/obj/Release/net8.0/ApplicationLayer.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = ApplicationLayer +build_property.ProjectDir = C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\ApplicationLayer\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/ApplicationLayer/obj/Release/net8.0/ApplicationLayer.GlobalUsings.g.cs b/ApplicationLayer/obj/Release/net8.0/ApplicationLayer.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/ApplicationLayer/obj/Release/net8.0/ApplicationLayer.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/ApplicationLayer/obj/Release/net8.0/ApplicationLayer.assets.cache b/ApplicationLayer/obj/Release/net8.0/ApplicationLayer.assets.cache new file mode 100644 index 0000000..128746e Binary files /dev/null and b/ApplicationLayer/obj/Release/net8.0/ApplicationLayer.assets.cache differ diff --git a/ApplicationLayer/obj/project.assets.json b/ApplicationLayer/obj/project.assets.json new file mode 100644 index 0000000..36e9cb2 --- /dev/null +++ b/ApplicationLayer/obj/project.assets.json @@ -0,0 +1,97 @@ +{ + "version": 3, + "targets": { + "net8.0": { + "DomainLayer/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "compile": { + "bin/placeholder/DomainLayer.dll": {} + }, + "runtime": { + "bin/placeholder/DomainLayer.dll": {} + } + } + } + }, + "libraries": { + "DomainLayer/1.0.0": { + "type": "project", + "path": "../DomainLayer/DomainLayer.csproj", + "msbuildProject": "../DomainLayer/DomainLayer.csproj" + } + }, + "projectFileDependencyGroups": { + "net8.0": [ + "DomainLayer >= 1.0.0" + ] + }, + "packageFolders": { + "C:\\Users\\caal13\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\ApplicationLayer\\ApplicationLayer.csproj", + "projectName": "ApplicationLayer", + "projectPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\ApplicationLayer\\ApplicationLayer.csproj", + "packagesPath": "C:\\Users\\caal13\\.nuget\\packages\\", + "outputPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\ApplicationLayer\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\caal13\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\DomainLayer.csproj": { + "projectPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\DomainLayer.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/ApplicationLayer/obj/project.nuget.cache b/ApplicationLayer/obj/project.nuget.cache new file mode 100644 index 0000000..038204b --- /dev/null +++ b/ApplicationLayer/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "cknKXLJOCCU=", + "success": true, + "projectFilePath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\ApplicationLayer\\ApplicationLayer.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..bec84cd --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build +WORKDIR /app +COPY . . +RUN dotnet publish ./GexBackendAPI/GexBackendAPI.csproj -o /publish + +FROM mcr.microsoft.com/dotnet/aspnet:8.0 +ENV DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=false +WORKDIR /app +COPY --from=build /publish . +ENV ASPNETCORE_URLS=http://+:7070 +ENTRYPOINT ["dotnet", "GexBackendAPI.dll"] \ No newline at end of file diff --git a/DomainLayer/DomainLayer.csproj b/DomainLayer/DomainLayer.csproj new file mode 100644 index 0000000..fa71b7a --- /dev/null +++ b/DomainLayer/DomainLayer.csproj @@ -0,0 +1,9 @@ + + + + net8.0 + enable + enable + + + diff --git a/DomainLayer/UserEntity.cs b/DomainLayer/UserEntity.cs new file mode 100644 index 0000000..5bf854d --- /dev/null +++ b/DomainLayer/UserEntity.cs @@ -0,0 +1,11 @@ +namespace DomainLayer +{ + public class UserEntity + { + public string nombre { get; set; } + public string apellidos { get; set; } + public string email { get; set; } + public string rol { get; set; } + + } +} diff --git a/DomainLayer/bin/Debug/net8.0/DomainLayer.deps.json b/DomainLayer/bin/Debug/net8.0/DomainLayer.deps.json new file mode 100644 index 0000000..74c66ab --- /dev/null +++ b/DomainLayer/bin/Debug/net8.0/DomainLayer.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "DomainLayer/1.0.0": { + "runtime": { + "DomainLayer.dll": {} + } + } + } + }, + "libraries": { + "DomainLayer/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/DomainLayer/bin/Debug/net8.0/DomainLayer.dll b/DomainLayer/bin/Debug/net8.0/DomainLayer.dll new file mode 100644 index 0000000..8d246f2 Binary files /dev/null and b/DomainLayer/bin/Debug/net8.0/DomainLayer.dll differ diff --git a/DomainLayer/bin/Debug/net8.0/DomainLayer.pdb b/DomainLayer/bin/Debug/net8.0/DomainLayer.pdb new file mode 100644 index 0000000..b102e03 Binary files /dev/null and b/DomainLayer/bin/Debug/net8.0/DomainLayer.pdb differ diff --git a/DomainLayer/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/DomainLayer/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/DomainLayer/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/DomainLayer/obj/Debug/net8.0/Domain.AssemblyInfo.cs b/DomainLayer/obj/Debug/net8.0/Domain.AssemblyInfo.cs new file mode 100644 index 0000000..1d8e988 --- /dev/null +++ b/DomainLayer/obj/Debug/net8.0/Domain.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Domain")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Domain")] +[assembly: System.Reflection.AssemblyTitleAttribute("Domain")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/DomainLayer/obj/Debug/net8.0/Domain.AssemblyInfoInputs.cache b/DomainLayer/obj/Debug/net8.0/Domain.AssemblyInfoInputs.cache new file mode 100644 index 0000000..ba3db52 --- /dev/null +++ b/DomainLayer/obj/Debug/net8.0/Domain.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +eb6384836eeddba624dcebc4a385bd4547341e335a11b2395d4902f86ff2ea58 diff --git a/DomainLayer/obj/Debug/net8.0/Domain.GeneratedMSBuildEditorConfig.editorconfig b/DomainLayer/obj/Debug/net8.0/Domain.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..aa764cc --- /dev/null +++ b/DomainLayer/obj/Debug/net8.0/Domain.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Domain +build_property.ProjectDir = C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\EnterpriseLayer\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/DomainLayer/obj/Debug/net8.0/Domain.GlobalUsings.g.cs b/DomainLayer/obj/Debug/net8.0/Domain.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/DomainLayer/obj/Debug/net8.0/Domain.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/DomainLayer/obj/Debug/net8.0/Domain.assets.cache b/DomainLayer/obj/Debug/net8.0/Domain.assets.cache new file mode 100644 index 0000000..d0c99f9 Binary files /dev/null and b/DomainLayer/obj/Debug/net8.0/Domain.assets.cache differ diff --git a/DomainLayer/obj/Debug/net8.0/DomainLayer.AssemblyInfo.cs b/DomainLayer/obj/Debug/net8.0/DomainLayer.AssemblyInfo.cs new file mode 100644 index 0000000..fc88800 --- /dev/null +++ b/DomainLayer/obj/Debug/net8.0/DomainLayer.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("DomainLayer")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("DomainLayer")] +[assembly: System.Reflection.AssemblyTitleAttribute("DomainLayer")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/DomainLayer/obj/Debug/net8.0/DomainLayer.AssemblyInfoInputs.cache b/DomainLayer/obj/Debug/net8.0/DomainLayer.AssemblyInfoInputs.cache new file mode 100644 index 0000000..b8329f9 --- /dev/null +++ b/DomainLayer/obj/Debug/net8.0/DomainLayer.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +6033b7ebcd55f3a0a5b9181dc32429cffa23dc55d29645eaf75002ad2dad9130 diff --git a/DomainLayer/obj/Debug/net8.0/DomainLayer.GeneratedMSBuildEditorConfig.editorconfig b/DomainLayer/obj/Debug/net8.0/DomainLayer.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..733b4f5 --- /dev/null +++ b/DomainLayer/obj/Debug/net8.0/DomainLayer.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = DomainLayer +build_property.ProjectDir = C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\DomainLayer\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/DomainLayer/obj/Debug/net8.0/DomainLayer.GlobalUsings.g.cs b/DomainLayer/obj/Debug/net8.0/DomainLayer.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/DomainLayer/obj/Debug/net8.0/DomainLayer.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/DomainLayer/obj/Debug/net8.0/DomainLayer.assets.cache b/DomainLayer/obj/Debug/net8.0/DomainLayer.assets.cache new file mode 100644 index 0000000..eb2968e Binary files /dev/null and b/DomainLayer/obj/Debug/net8.0/DomainLayer.assets.cache differ diff --git a/DomainLayer/obj/Debug/net8.0/DomainLayer.csproj.BuildWithSkipAnalyzers b/DomainLayer/obj/Debug/net8.0/DomainLayer.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/DomainLayer/obj/Debug/net8.0/DomainLayer.csproj.CoreCompileInputs.cache b/DomainLayer/obj/Debug/net8.0/DomainLayer.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..20fd174 --- /dev/null +++ b/DomainLayer/obj/Debug/net8.0/DomainLayer.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +95ca088b8dea93a78e98ed61f146cf2835c27f6099b581c688fa90c2184d9781 diff --git a/DomainLayer/obj/Debug/net8.0/DomainLayer.csproj.FileListAbsolute.txt b/DomainLayer/obj/Debug/net8.0/DomainLayer.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..caa367f --- /dev/null +++ b/DomainLayer/obj/Debug/net8.0/DomainLayer.csproj.FileListAbsolute.txt @@ -0,0 +1,22 @@ +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\EnterpriseLayer\bin\Debug\net8.0\DomainLayer.deps.json +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\EnterpriseLayer\bin\Debug\net8.0\DomainLayer.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\EnterpriseLayer\bin\Debug\net8.0\DomainLayer.pdb +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\EnterpriseLayer\obj\Debug\net8.0\DomainLayer.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\EnterpriseLayer\obj\Debug\net8.0\DomainLayer.AssemblyInfoInputs.cache +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\EnterpriseLayer\obj\Debug\net8.0\DomainLayer.AssemblyInfo.cs +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\EnterpriseLayer\obj\Debug\net8.0\DomainLayer.csproj.CoreCompileInputs.cache +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\EnterpriseLayer\obj\Debug\net8.0\DomainLayer.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\EnterpriseLayer\obj\Debug\net8.0\refint\DomainLayer.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\EnterpriseLayer\obj\Debug\net8.0\DomainLayer.pdb +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\EnterpriseLayer\obj\Debug\net8.0\ref\DomainLayer.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\DomainLayer\bin\Debug\net8.0\DomainLayer.deps.json +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\DomainLayer\bin\Debug\net8.0\DomainLayer.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\DomainLayer\bin\Debug\net8.0\DomainLayer.pdb +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\DomainLayer\obj\Debug\net8.0\DomainLayer.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\DomainLayer\obj\Debug\net8.0\DomainLayer.AssemblyInfoInputs.cache +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\DomainLayer\obj\Debug\net8.0\DomainLayer.AssemblyInfo.cs +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\DomainLayer\obj\Debug\net8.0\DomainLayer.csproj.CoreCompileInputs.cache +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\DomainLayer\obj\Debug\net8.0\DomainLayer.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\DomainLayer\obj\Debug\net8.0\refint\DomainLayer.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\DomainLayer\obj\Debug\net8.0\DomainLayer.pdb +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\DomainLayer\obj\Debug\net8.0\ref\DomainLayer.dll diff --git a/DomainLayer/obj/Debug/net8.0/DomainLayer.dll b/DomainLayer/obj/Debug/net8.0/DomainLayer.dll new file mode 100644 index 0000000..8d246f2 Binary files /dev/null and b/DomainLayer/obj/Debug/net8.0/DomainLayer.dll differ diff --git a/DomainLayer/obj/Debug/net8.0/DomainLayer.pdb b/DomainLayer/obj/Debug/net8.0/DomainLayer.pdb new file mode 100644 index 0000000..b102e03 Binary files /dev/null and b/DomainLayer/obj/Debug/net8.0/DomainLayer.pdb differ diff --git a/DomainLayer/obj/Debug/net8.0/EnterpriseLayer.AssemblyInfo.cs b/DomainLayer/obj/Debug/net8.0/EnterpriseLayer.AssemblyInfo.cs new file mode 100644 index 0000000..481cf4e --- /dev/null +++ b/DomainLayer/obj/Debug/net8.0/EnterpriseLayer.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("EnterpriseLayer")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("EnterpriseLayer")] +[assembly: System.Reflection.AssemblyTitleAttribute("EnterpriseLayer")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/DomainLayer/obj/Debug/net8.0/EnterpriseLayer.AssemblyInfoInputs.cache b/DomainLayer/obj/Debug/net8.0/EnterpriseLayer.AssemblyInfoInputs.cache new file mode 100644 index 0000000..888036d --- /dev/null +++ b/DomainLayer/obj/Debug/net8.0/EnterpriseLayer.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +68cc7baa263327c678026931bb97b83db3142576e645813f1eac9c55f4231ffb diff --git a/DomainLayer/obj/Debug/net8.0/EnterpriseLayer.GeneratedMSBuildEditorConfig.editorconfig b/DomainLayer/obj/Debug/net8.0/EnterpriseLayer.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..4641a1e --- /dev/null +++ b/DomainLayer/obj/Debug/net8.0/EnterpriseLayer.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = EnterpriseLayer +build_property.ProjectDir = C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\EnterpriseLayer\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/DomainLayer/obj/Debug/net8.0/EnterpriseLayer.GlobalUsings.g.cs b/DomainLayer/obj/Debug/net8.0/EnterpriseLayer.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/DomainLayer/obj/Debug/net8.0/EnterpriseLayer.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/DomainLayer/obj/Debug/net8.0/EnterpriseLayer.assets.cache b/DomainLayer/obj/Debug/net8.0/EnterpriseLayer.assets.cache new file mode 100644 index 0000000..0831a3e Binary files /dev/null and b/DomainLayer/obj/Debug/net8.0/EnterpriseLayer.assets.cache differ diff --git a/DomainLayer/obj/Debug/net8.0/ref/DomainLayer.dll b/DomainLayer/obj/Debug/net8.0/ref/DomainLayer.dll new file mode 100644 index 0000000..1dc716a Binary files /dev/null and b/DomainLayer/obj/Debug/net8.0/ref/DomainLayer.dll differ diff --git a/DomainLayer/obj/Debug/net8.0/refint/DomainLayer.dll b/DomainLayer/obj/Debug/net8.0/refint/DomainLayer.dll new file mode 100644 index 0000000..1dc716a Binary files /dev/null and b/DomainLayer/obj/Debug/net8.0/refint/DomainLayer.dll differ diff --git a/DomainLayer/obj/Domain.csproj.nuget.dgspec.json b/DomainLayer/obj/Domain.csproj.nuget.dgspec.json new file mode 100644 index 0000000..9a2dc19 --- /dev/null +++ b/DomainLayer/obj/Domain.csproj.nuget.dgspec.json @@ -0,0 +1,69 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\EnterpriseLayer\\Domain.csproj": {} + }, + "projects": { + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\EnterpriseLayer\\Domain.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\EnterpriseLayer\\Domain.csproj", + "projectName": "Domain", + "projectPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\EnterpriseLayer\\Domain.csproj", + "packagesPath": "C:\\Users\\caal13\\.nuget\\packages\\", + "outputPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\EnterpriseLayer\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\caal13\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/DomainLayer/obj/Domain.csproj.nuget.g.props b/DomainLayer/obj/Domain.csproj.nuget.g.props new file mode 100644 index 0000000..632286f --- /dev/null +++ b/DomainLayer/obj/Domain.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\caal13\.nuget\packages\ + PackageReference + 6.11.1 + + + + + \ No newline at end of file diff --git a/DomainLayer/obj/Domain.csproj.nuget.g.targets b/DomainLayer/obj/Domain.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/DomainLayer/obj/Domain.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/DomainLayer/obj/DomainLayer.csproj.nuget.dgspec.json b/DomainLayer/obj/DomainLayer.csproj.nuget.dgspec.json new file mode 100644 index 0000000..2b1ceee --- /dev/null +++ b/DomainLayer/obj/DomainLayer.csproj.nuget.dgspec.json @@ -0,0 +1,69 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\DomainLayer.csproj": {} + }, + "projects": { + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\DomainLayer.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\DomainLayer.csproj", + "projectName": "DomainLayer", + "projectPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\DomainLayer.csproj", + "packagesPath": "C:\\Users\\caal13\\.nuget\\packages\\", + "outputPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\caal13\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/DomainLayer/obj/DomainLayer.csproj.nuget.g.props b/DomainLayer/obj/DomainLayer.csproj.nuget.g.props new file mode 100644 index 0000000..632286f --- /dev/null +++ b/DomainLayer/obj/DomainLayer.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\caal13\.nuget\packages\ + PackageReference + 6.11.1 + + + + + \ No newline at end of file diff --git a/DomainLayer/obj/DomainLayer.csproj.nuget.g.targets b/DomainLayer/obj/DomainLayer.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/DomainLayer/obj/DomainLayer.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/DomainLayer/obj/EnterpriseLayer.csproj.nuget.dgspec.json b/DomainLayer/obj/EnterpriseLayer.csproj.nuget.dgspec.json new file mode 100644 index 0000000..d50a278 --- /dev/null +++ b/DomainLayer/obj/EnterpriseLayer.csproj.nuget.dgspec.json @@ -0,0 +1,69 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\EnterpriseLayer\\EnterpriseLayer.csproj": {} + }, + "projects": { + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\EnterpriseLayer\\EnterpriseLayer.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\EnterpriseLayer\\EnterpriseLayer.csproj", + "projectName": "EnterpriseLayer", + "projectPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\EnterpriseLayer\\EnterpriseLayer.csproj", + "packagesPath": "C:\\Users\\caal13\\.nuget\\packages\\", + "outputPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\EnterpriseLayer\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\caal13\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/DomainLayer/obj/EnterpriseLayer.csproj.nuget.g.props b/DomainLayer/obj/EnterpriseLayer.csproj.nuget.g.props new file mode 100644 index 0000000..632286f --- /dev/null +++ b/DomainLayer/obj/EnterpriseLayer.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\caal13\.nuget\packages\ + PackageReference + 6.11.1 + + + + + \ No newline at end of file diff --git a/DomainLayer/obj/EnterpriseLayer.csproj.nuget.g.targets b/DomainLayer/obj/EnterpriseLayer.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/DomainLayer/obj/EnterpriseLayer.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/DomainLayer/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/DomainLayer/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/DomainLayer/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/DomainLayer/obj/Release/net8.0/DomainLayer.AssemblyInfo.cs b/DomainLayer/obj/Release/net8.0/DomainLayer.AssemblyInfo.cs new file mode 100644 index 0000000..6d26819 --- /dev/null +++ b/DomainLayer/obj/Release/net8.0/DomainLayer.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("DomainLayer")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("DomainLayer")] +[assembly: System.Reflection.AssemblyTitleAttribute("DomainLayer")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/DomainLayer/obj/Release/net8.0/DomainLayer.AssemblyInfoInputs.cache b/DomainLayer/obj/Release/net8.0/DomainLayer.AssemblyInfoInputs.cache new file mode 100644 index 0000000..22fbb46 --- /dev/null +++ b/DomainLayer/obj/Release/net8.0/DomainLayer.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +c3d8902f2fb9883d8943dcda9709a72e4f2793fca03184a0c5c30b3bb9617414 diff --git a/DomainLayer/obj/Release/net8.0/DomainLayer.GeneratedMSBuildEditorConfig.editorconfig b/DomainLayer/obj/Release/net8.0/DomainLayer.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..43ff84a --- /dev/null +++ b/DomainLayer/obj/Release/net8.0/DomainLayer.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = DomainLayer +build_property.ProjectDir = C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\EnterpriseLayer\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/DomainLayer/obj/Release/net8.0/DomainLayer.GlobalUsings.g.cs b/DomainLayer/obj/Release/net8.0/DomainLayer.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/DomainLayer/obj/Release/net8.0/DomainLayer.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/DomainLayer/obj/Release/net8.0/DomainLayer.assets.cache b/DomainLayer/obj/Release/net8.0/DomainLayer.assets.cache new file mode 100644 index 0000000..4489c7d Binary files /dev/null and b/DomainLayer/obj/Release/net8.0/DomainLayer.assets.cache differ diff --git a/DomainLayer/obj/project.assets.json b/DomainLayer/obj/project.assets.json new file mode 100644 index 0000000..fd1d7cc --- /dev/null +++ b/DomainLayer/obj/project.assets.json @@ -0,0 +1,74 @@ +{ + "version": 3, + "targets": { + "net8.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net8.0": [] + }, + "packageFolders": { + "C:\\Users\\caal13\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\DomainLayer.csproj", + "projectName": "DomainLayer", + "projectPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\DomainLayer.csproj", + "packagesPath": "C:\\Users\\caal13\\.nuget\\packages\\", + "outputPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\caal13\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/DomainLayer/obj/project.nuget.cache b/DomainLayer/obj/project.nuget.cache new file mode 100644 index 0000000..a82e460 --- /dev/null +++ b/DomainLayer/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "tMZvMUfJNsY=", + "success": true, + "projectFilePath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\DomainLayer.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file diff --git a/GexBackend.sln b/GexBackend.sln new file mode 100644 index 0000000..34dd62a --- /dev/null +++ b/GexBackend.sln @@ -0,0 +1,43 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.11.35327.3 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DomainLayer", "DomainLayer\DomainLayer.csproj", "{A70FCE20-5830-49BB-A6BB-57AC901054D0}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ApplicationLayer", "ApplicationLayer\ApplicationLayer.csproj", "{9DFFC036-D8B4-4FCE-860A-BDC50B79D4B5}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AdapterLayer", "AdapterLayer\AdapterLayer.csproj", "{7195278F-8E18-47E8-B708-209C88518ED9}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GexBackendAPI", "GexBackendAPI\GexBackendAPI.csproj", "{56A46730-F3D5-4ED5-A13E-6F13C4F227C7}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {A70FCE20-5830-49BB-A6BB-57AC901054D0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A70FCE20-5830-49BB-A6BB-57AC901054D0}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A70FCE20-5830-49BB-A6BB-57AC901054D0}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A70FCE20-5830-49BB-A6BB-57AC901054D0}.Release|Any CPU.Build.0 = Release|Any CPU + {9DFFC036-D8B4-4FCE-860A-BDC50B79D4B5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {9DFFC036-D8B4-4FCE-860A-BDC50B79D4B5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {9DFFC036-D8B4-4FCE-860A-BDC50B79D4B5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {9DFFC036-D8B4-4FCE-860A-BDC50B79D4B5}.Release|Any CPU.Build.0 = Release|Any CPU + {7195278F-8E18-47E8-B708-209C88518ED9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {7195278F-8E18-47E8-B708-209C88518ED9}.Debug|Any CPU.Build.0 = Debug|Any CPU + {7195278F-8E18-47E8-B708-209C88518ED9}.Release|Any CPU.ActiveCfg = Release|Any CPU + {7195278F-8E18-47E8-B708-209C88518ED9}.Release|Any CPU.Build.0 = Release|Any CPU + {56A46730-F3D5-4ED5-A13E-6F13C4F227C7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {56A46730-F3D5-4ED5-A13E-6F13C4F227C7}.Debug|Any CPU.Build.0 = Debug|Any CPU + {56A46730-F3D5-4ED5-A13E-6F13C4F227C7}.Release|Any CPU.ActiveCfg = Release|Any CPU + {56A46730-F3D5-4ED5-A13E-6F13C4F227C7}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {F08CAD7D-C644-4DFE-BF29-5AB9E8C13F21} + EndGlobalSection +EndGlobal diff --git a/GexBackendAPI/GexBackendAPI.csproj b/GexBackendAPI/GexBackendAPI.csproj new file mode 100644 index 0000000..42306fc --- /dev/null +++ b/GexBackendAPI/GexBackendAPI.csproj @@ -0,0 +1,20 @@ + + + + net8.0 + enable + enable + + + + + + + + + + + + + + diff --git a/GexBackendAPI/GexBackendAPI.http b/GexBackendAPI/GexBackendAPI.http new file mode 100644 index 0000000..5fe6622 --- /dev/null +++ b/GexBackendAPI/GexBackendAPI.http @@ -0,0 +1,6 @@ +@GexBackendAPI_HostAddress = http://localhost:5017 + +GET {{GexBackendAPI_HostAddress}}/weatherforecast/ +Accept: application/json + +### diff --git a/GexBackendAPI/Program.cs b/GexBackendAPI/Program.cs new file mode 100644 index 0000000..b985552 --- /dev/null +++ b/GexBackendAPI/Program.cs @@ -0,0 +1,55 @@ +using ApplicationLayer.UseCases; +using AdapterLayer.Repository; +using AdapterLayer.MongoDb; +using ApplicationLayer.Interfaces; +using AdapterLayer.Models; +using AdapterLayer.DTOs; + +var builder = WebApplication.CreateBuilder(args); + +// Services +builder.Services.AddEndpointsApiExplorer(); +builder.Services.AddSwaggerGen(); + +// Dependencies +builder.Services.AddScoped(); +builder.Services.AddScoped(); +builder.Services.AddScoped, Repository>(); +builder.Services.AddScoped>(); +builder.Services.AddScoped>(); + +var app = builder.Build(); + +// Configure the HTTP request pipeline. +if (app.Environment.IsDevelopment()) +{ + app.UseSwagger(); + app.UseSwaggerUI(); +} + +app.UseHttpsRedirection(); + +app.MapGet("/api/users", async (GetUsers getUsers) => +{ + var usersCollection = await getUsers.ExecuteAsync(); + return usersCollection.Select(u => new UserView { + Id = u._id, + nombre = u.nombre, + apellidos = u.apellidos, + email = u.email, + rol = u.rol + }); + +}) +.WithName("GetAllUsers") +.WithOpenApi(); + +app.MapPost("/api/users", async (UserRequest request, UserMapper mapper, AddUser addUser) => +{ + var newUser = mapper.ToModel(request); + await addUser.ExecuteAsync(newUser); +}) +.WithName("InsertUser") +.WithOpenApi(); + +app.Run(); diff --git a/GexBackendAPI/Properties/launchSettings.json b/GexBackendAPI/Properties/launchSettings.json new file mode 100644 index 0000000..08e9d29 --- /dev/null +++ b/GexBackendAPI/Properties/launchSettings.json @@ -0,0 +1,41 @@ +{ + "$schema": "http://json.schemastore.org/launchsettings.json", + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:24364", + "sslPort": 44334 + } + }, + "profiles": { + "http": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "launchUrl": "swagger", + "applicationUrl": "http://localhost:5017", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "https": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "launchUrl": "swagger", + "applicationUrl": "https://localhost:7124;http://localhost:5017", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "launchUrl": "swagger", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/GexBackendAPI/appsettings.Development.json b/GexBackendAPI/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/GexBackendAPI/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/GexBackendAPI/appsettings.json b/GexBackendAPI/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/GexBackendAPI/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/GexBackendAPI/bin/Debug/net8.0/AdapterLayer.dll b/GexBackendAPI/bin/Debug/net8.0/AdapterLayer.dll new file mode 100644 index 0000000..19551d6 Binary files /dev/null and b/GexBackendAPI/bin/Debug/net8.0/AdapterLayer.dll differ diff --git a/GexBackendAPI/bin/Debug/net8.0/AdapterLayer.pdb b/GexBackendAPI/bin/Debug/net8.0/AdapterLayer.pdb new file mode 100644 index 0000000..0509a13 Binary files /dev/null and b/GexBackendAPI/bin/Debug/net8.0/AdapterLayer.pdb differ diff --git a/GexBackendAPI/bin/Debug/net8.0/ApplicationLayer.dll b/GexBackendAPI/bin/Debug/net8.0/ApplicationLayer.dll new file mode 100644 index 0000000..784189f Binary files /dev/null and b/GexBackendAPI/bin/Debug/net8.0/ApplicationLayer.dll differ diff --git a/GexBackendAPI/bin/Debug/net8.0/ApplicationLayer.pdb b/GexBackendAPI/bin/Debug/net8.0/ApplicationLayer.pdb new file mode 100644 index 0000000..9010c71 Binary files /dev/null and b/GexBackendAPI/bin/Debug/net8.0/ApplicationLayer.pdb differ diff --git a/GexBackendAPI/bin/Debug/net8.0/DnsClient.dll b/GexBackendAPI/bin/Debug/net8.0/DnsClient.dll new file mode 100644 index 0000000..39aa546 Binary files /dev/null and b/GexBackendAPI/bin/Debug/net8.0/DnsClient.dll differ diff --git a/GexBackendAPI/bin/Debug/net8.0/DomainLayer.dll b/GexBackendAPI/bin/Debug/net8.0/DomainLayer.dll new file mode 100644 index 0000000..8d246f2 Binary files /dev/null and b/GexBackendAPI/bin/Debug/net8.0/DomainLayer.dll differ diff --git a/GexBackendAPI/bin/Debug/net8.0/DomainLayer.pdb b/GexBackendAPI/bin/Debug/net8.0/DomainLayer.pdb new file mode 100644 index 0000000..b102e03 Binary files /dev/null and b/GexBackendAPI/bin/Debug/net8.0/DomainLayer.pdb differ diff --git a/GexBackendAPI/bin/Debug/net8.0/GexBackendAPI.deps.json b/GexBackendAPI/bin/Debug/net8.0/GexBackendAPI.deps.json new file mode 100644 index 0000000..a044e27 --- /dev/null +++ b/GexBackendAPI/bin/Debug/net8.0/GexBackendAPI.deps.json @@ -0,0 +1,364 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "GexBackendAPI/1.0.0": { + "dependencies": { + "AdapterLayer": "1.0.0", + "ApplicationLayer": "1.0.0", + "DomainLayer": "1.0.0", + "Microsoft.AspNetCore.OpenApi": "8.0.10", + "Swashbuckle.AspNetCore": "6.6.2" + }, + "runtime": { + "GexBackendAPI.dll": {} + } + }, + "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" + } + } + }, + "Microsoft.AspNetCore.OpenApi/8.0.10": { + "dependencies": { + "Microsoft.OpenApi": "1.6.14" + }, + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll": { + "assemblyVersion": "8.0.10.0", + "fileVersion": "8.0.1024.46804" + } + } + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": {}, + "Microsoft.Extensions.Logging.Abstractions/2.0.0": {}, + "Microsoft.NETCore.Platforms/5.0.0": {}, + "Microsoft.OpenApi/1.6.14": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.6.14.0", + "fileVersion": "1.6.14.0" + } + } + }, + "Microsoft.Win32.Registry/5.0.0": { + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "MongoDB.Bson/3.0.0": { + "dependencies": { + "System.Memory": "4.5.5", + "System.Runtime.CompilerServices.Unsafe": "5.0.0" + }, + "runtime": { + "lib/net6.0/MongoDB.Bson.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.0.0.0" + } + } + }, + "MongoDB.Driver/3.0.0": { + "dependencies": { + "DnsClient": "1.6.1", + "Microsoft.Extensions.Logging.Abstractions": "2.0.0", + "MongoDB.Bson": "3.0.0", + "SharpCompress": "0.30.1", + "Snappier": "1.0.0", + "System.Buffers": "4.5.1", + "ZstdSharp.Port": "0.7.3" + }, + "runtime": { + "lib/net6.0/MongoDB.Driver.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.0.0.0" + } + } + }, + "SharpCompress/0.30.1": { + "runtime": { + "lib/net5.0/SharpCompress.dll": { + "assemblyVersion": "0.30.1.0", + "fileVersion": "0.30.1.0" + } + } + }, + "Snappier/1.0.0": { + "runtime": { + "lib/net5.0/Snappier.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Swashbuckle.AspNetCore/6.6.2": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "6.0.5", + "Swashbuckle.AspNetCore.Swagger": "6.6.2", + "Swashbuckle.AspNetCore.SwaggerGen": "6.6.2", + "Swashbuckle.AspNetCore.SwaggerUI": "6.6.2" + } + }, + "Swashbuckle.AspNetCore.Swagger/6.6.2": { + "dependencies": { + "Microsoft.OpenApi": "1.6.14" + }, + "runtime": { + "lib/net8.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "6.6.2.0", + "fileVersion": "6.6.2.401" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.6.2": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.6.2" + }, + "runtime": { + "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "6.6.2.0", + "fileVersion": "6.6.2.401" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.6.2": { + "runtime": { + "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "6.6.2.0", + "fileVersion": "6.6.2.401" + } + } + }, + "System.Buffers/4.5.1": {}, + "System.Memory/4.5.5": {}, + "System.Runtime.CompilerServices.Unsafe/5.0.0": {}, + "System.Security.AccessControl/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "System.Security.Principal.Windows/5.0.0": {}, + "ZstdSharp.Port/0.7.3": { + "runtime": { + "lib/net7.0/ZstdSharp.dll": { + "assemblyVersion": "0.7.3.0", + "fileVersion": "0.7.3.0" + } + } + }, + "AdapterLayer/1.0.0": { + "dependencies": { + "ApplicationLayer": "1.0.0", + "DomainLayer": "1.0.0", + "MongoDB.Driver": "3.0.0" + }, + "runtime": { + "AdapterLayer.dll": { + "assemblyVersion": "1.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "ApplicationLayer/1.0.0": { + "dependencies": { + "DomainLayer": "1.0.0" + }, + "runtime": { + "ApplicationLayer.dll": { + "assemblyVersion": "1.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "DomainLayer/1.0.0": { + "runtime": { + "DomainLayer.dll": { + "assemblyVersion": "1.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "GexBackendAPI/1.0.0": { + "type": "project", + "serviceable": false, + "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" + }, + "Microsoft.AspNetCore.OpenApi/8.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kzYiW/IbSN0xittjplA8eN1wrNcRi3DMalYRrEuF2xyf2Y5u7cGCfgN1oNZ+g3aBQzMKTQwYsY1PeNmC+P0WnA==", + "path": "microsoft.aspnetcore.openapi/8.0.10", + "hashPath": "microsoft.aspnetcore.openapi.8.0.10.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.Logging.Abstractions/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6ZCllUYGFukkymSTx3Yr0G/ajRxoNJp7/FqSxSB4fGISST54ifBhgu4Nc0ItGi3i6DqwuNd8SUyObmiC++AO2Q==", + "path": "microsoft.extensions.logging.abstractions/2.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.2.0.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "path": "microsoft.netcore.platforms/5.0.0", + "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512" + }, + "Microsoft.OpenApi/1.6.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tTaBT8qjk3xINfESyOPE2rIellPvB7qpVqiWiyA/lACVvz+xOGiXhFUfohcx82NLbi5avzLW0lx+s6oAqQijfw==", + "path": "microsoft.openapi/1.6.14", + "hashPath": "microsoft.openapi.1.6.14.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/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qnPRJ58HXDh7C4oxTf6YB7BJhlCGJIa6TMXhzImw6zk44lrAomQXTB6AtoQ5lNJbkyrgQcT7+smsKFMnXmLXhw==", + "path": "mongodb.bson/3.0.0", + "hashPath": "mongodb.bson.3.0.0.nupkg.sha512" + }, + "MongoDB.Driver/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-udcP8rOhyuhLDn3sGVdNUgQSXfKGPaIP4w09XVKf4xdy66YSXinhkIuQSuOeZVHdTFsG2PpUbRx2wyFm7E0EMg==", + "path": "mongodb.driver/3.0.0", + "hashPath": "mongodb.driver.3.0.0.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.6.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+NB4UYVYN6AhDSjW0IJAd1AGD8V33gemFNLPaxKTtPkHB+HaKAKf9MGAEUPivEWvqeQfcKIw8lJaHq6LHljRuw==", + "path": "swashbuckle.aspnetcore/6.6.2", + "hashPath": "swashbuckle.aspnetcore.6.6.2.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/6.6.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ovgPTSYX83UrQUWiS5vzDcJ8TEX1MAxBgDFMK45rC24MorHEPQlZAHlaXj/yth4Zf6xcktpUgTEBvffRQVwDKA==", + "path": "swashbuckle.aspnetcore.swagger/6.6.2", + "hashPath": "swashbuckle.aspnetcore.swagger.6.6.2.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.6.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zv4ikn4AT1VYuOsDCpktLq4QDq08e7Utzbir86M5/ZkRaLXbCPF11E1/vTmOiDzRTl0zTZINQU2qLKwTcHgfrA==", + "path": "swashbuckle.aspnetcore.swaggergen/6.6.2", + "hashPath": "swashbuckle.aspnetcore.swaggergen.6.6.2.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.6.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mBBb+/8Hm2Q3Wygag+hu2jj69tZW5psuv0vMRXY07Wy+Rrj40vRP8ZTbKBhs91r45/HXT4aY4z0iSBYx1h6JvA==", + "path": "swashbuckle.aspnetcore.swaggerui/6.6.2", + "hashPath": "swashbuckle.aspnetcore.swaggerui.6.6.2.nupkg.sha512" + }, + "System.Buffers/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" + }, + "System.Memory/4.5.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", + "path": "system.memory/4.5.5", + "hashPath": "system.memory.4.5.5.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==", + "path": "system.runtime.compilerservices.unsafe/5.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512" + }, + "System.Security.AccessControl/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", + "path": "system.security.accesscontrol/5.0.0", + "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "path": "system.security.principal.windows/5.0.0", + "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" + }, + "ZstdSharp.Port/0.7.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U9Ix4l4cl58Kzz1rJzj5hoVTjmbx1qGMwzAcbv1j/d3NzrFaESIurQyg+ow4mivCgkE3S413y+U9k4WdnEIkRA==", + "path": "zstdsharp.port/0.7.3", + "hashPath": "zstdsharp.port.0.7.3.nupkg.sha512" + }, + "AdapterLayer/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "ApplicationLayer/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "DomainLayer/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/GexBackendAPI/bin/Debug/net8.0/GexBackendAPI.dll b/GexBackendAPI/bin/Debug/net8.0/GexBackendAPI.dll new file mode 100644 index 0000000..920c89d Binary files /dev/null and b/GexBackendAPI/bin/Debug/net8.0/GexBackendAPI.dll differ diff --git a/GexBackendAPI/bin/Debug/net8.0/GexBackendAPI.exe b/GexBackendAPI/bin/Debug/net8.0/GexBackendAPI.exe new file mode 100644 index 0000000..264744f Binary files /dev/null and b/GexBackendAPI/bin/Debug/net8.0/GexBackendAPI.exe differ diff --git a/GexBackendAPI/bin/Debug/net8.0/GexBackendAPI.pdb b/GexBackendAPI/bin/Debug/net8.0/GexBackendAPI.pdb new file mode 100644 index 0000000..c1fe0f1 Binary files /dev/null and b/GexBackendAPI/bin/Debug/net8.0/GexBackendAPI.pdb differ diff --git a/GexBackendAPI/bin/Debug/net8.0/GexBackendAPI.runtimeconfig.json b/GexBackendAPI/bin/Debug/net8.0/GexBackendAPI.runtimeconfig.json new file mode 100644 index 0000000..5e604c7 --- /dev/null +++ b/GexBackendAPI/bin/Debug/net8.0/GexBackendAPI.runtimeconfig.json @@ -0,0 +1,19 @@ +{ + "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.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/GexBackendAPI/bin/Debug/net8.0/Microsoft.AspNetCore.OpenApi.dll b/GexBackendAPI/bin/Debug/net8.0/Microsoft.AspNetCore.OpenApi.dll new file mode 100644 index 0000000..e7b22b5 Binary files /dev/null and b/GexBackendAPI/bin/Debug/net8.0/Microsoft.AspNetCore.OpenApi.dll differ diff --git a/GexBackendAPI/bin/Debug/net8.0/Microsoft.OpenApi.dll b/GexBackendAPI/bin/Debug/net8.0/Microsoft.OpenApi.dll new file mode 100644 index 0000000..aac9a6d Binary files /dev/null and b/GexBackendAPI/bin/Debug/net8.0/Microsoft.OpenApi.dll differ diff --git a/GexBackendAPI/bin/Debug/net8.0/MongoDB.Bson.dll b/GexBackendAPI/bin/Debug/net8.0/MongoDB.Bson.dll new file mode 100644 index 0000000..1d1ac27 Binary files /dev/null and b/GexBackendAPI/bin/Debug/net8.0/MongoDB.Bson.dll differ diff --git a/GexBackendAPI/bin/Debug/net8.0/MongoDB.Driver.dll b/GexBackendAPI/bin/Debug/net8.0/MongoDB.Driver.dll new file mode 100644 index 0000000..ecc8fa1 Binary files /dev/null and b/GexBackendAPI/bin/Debug/net8.0/MongoDB.Driver.dll differ diff --git a/GexBackendAPI/bin/Debug/net8.0/SharpCompress.dll b/GexBackendAPI/bin/Debug/net8.0/SharpCompress.dll new file mode 100644 index 0000000..c1a7f07 Binary files /dev/null and b/GexBackendAPI/bin/Debug/net8.0/SharpCompress.dll differ diff --git a/GexBackendAPI/bin/Debug/net8.0/Snappier.dll b/GexBackendAPI/bin/Debug/net8.0/Snappier.dll new file mode 100644 index 0000000..9b68e85 Binary files /dev/null and b/GexBackendAPI/bin/Debug/net8.0/Snappier.dll differ diff --git a/GexBackendAPI/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll b/GexBackendAPI/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll new file mode 100644 index 0000000..41e2fc2 Binary files /dev/null and b/GexBackendAPI/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll differ diff --git a/GexBackendAPI/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll b/GexBackendAPI/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll new file mode 100644 index 0000000..de7f45d Binary files /dev/null and b/GexBackendAPI/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll differ diff --git a/GexBackendAPI/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll b/GexBackendAPI/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll new file mode 100644 index 0000000..117b9f3 Binary files /dev/null and b/GexBackendAPI/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll differ diff --git a/GexBackendAPI/bin/Debug/net8.0/ZstdSharp.dll b/GexBackendAPI/bin/Debug/net8.0/ZstdSharp.dll new file mode 100644 index 0000000..5d93f7e Binary files /dev/null and b/GexBackendAPI/bin/Debug/net8.0/ZstdSharp.dll differ diff --git a/GexBackendAPI/bin/Debug/net8.0/appsettings.Development.json b/GexBackendAPI/bin/Debug/net8.0/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/GexBackendAPI/bin/Debug/net8.0/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/GexBackendAPI/bin/Debug/net8.0/appsettings.json b/GexBackendAPI/bin/Debug/net8.0/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/GexBackendAPI/bin/Debug/net8.0/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/GexBackendAPI/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/GexBackendAPI/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/GexBackendAPI/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/GexBackendAPI/obj/Debug/net8.0/ApiEndpoints.json b/GexBackendAPI/obj/Debug/net8.0/ApiEndpoints.json new file mode 100644 index 0000000..2a16ddc --- /dev/null +++ b/GexBackendAPI/obj/Debug/net8.0/ApiEndpoints.json @@ -0,0 +1,44 @@ +[ + { + "ContainingType": "Program\u002B\u003C\u003Ec", + "Method": "\u003C\u003CMain\u003E$\u003Eb__0_0", + "RelativePath": "api/users", + "HttpMethod": "GET", + "IsController": false, + "Order": 0, + "Parameters": [], + "ReturnTypes": [ + { + "Type": "System.Collections.Generic.IEnumerable\u00601[[AdapterLayer.Models.UserView, AdapterLayer, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]", + "MediaTypes": [ + "application/json" + ], + "StatusCode": 200 + } + ], + "EndpointName": "GetAllUsers" + }, + { + "ContainingType": "Program\u002B\u003C\u003Ec", + "Method": "\u003C\u003CMain\u003E$\u003Eb__0_1", + "RelativePath": "api/users", + "HttpMethod": "POST", + "IsController": false, + "Order": 0, + "Parameters": [ + { + "Name": "request", + "Type": "AdapterLayer.DTOs.UserRequest", + "IsRequired": true + } + ], + "ReturnTypes": [ + { + "Type": "System.Void", + "MediaTypes": [], + "StatusCode": 200 + } + ], + "EndpointName": "InsertUser" + } +] \ No newline at end of file diff --git a/GexBackendAPI/obj/Debug/net8.0/GexBacke.3EBE64E9.Up2Date b/GexBackendAPI/obj/Debug/net8.0/GexBacke.3EBE64E9.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.AssemblyInfo.cs b/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.AssemblyInfo.cs new file mode 100644 index 0000000..81ab923 --- /dev/null +++ b/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("GexBackendAPI")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("GexBackendAPI")] +[assembly: System.Reflection.AssemblyTitleAttribute("GexBackendAPI")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.AssemblyInfoInputs.cache b/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.AssemblyInfoInputs.cache new file mode 100644 index 0000000..f65fb14 --- /dev/null +++ b/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +bdb5ee78710228895b869a76755c3054c8ad94525907dde93c6e840197fd5188 diff --git a/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.GeneratedMSBuildEditorConfig.editorconfig b/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..35071ef --- /dev/null +++ b/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,19 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = GexBackendAPI +build_property.RootNamespace = GexBackendAPI +build_property.ProjectDir = C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 8.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI +build_property._RazorSourceGeneratorDebug = diff --git a/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.GlobalUsings.g.cs b/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.GlobalUsings.g.cs new file mode 100644 index 0000000..025530a --- /dev/null +++ b/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using global::Microsoft.AspNetCore.Builder; +global using global::Microsoft.AspNetCore.Hosting; +global using global::Microsoft.AspNetCore.Http; +global using global::Microsoft.AspNetCore.Routing; +global using global::Microsoft.Extensions.Configuration; +global using global::Microsoft.Extensions.DependencyInjection; +global using global::Microsoft.Extensions.Hosting; +global using global::Microsoft.Extensions.Logging; +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Net.Http.Json; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.MvcApplicationPartsAssemblyInfo.cache b/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.MvcApplicationPartsAssemblyInfo.cs b/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.MvcApplicationPartsAssemblyInfo.cs new file mode 100644 index 0000000..f9ccf61 --- /dev/null +++ b/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.MvcApplicationPartsAssemblyInfo.cs @@ -0,0 +1,18 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.OpenApi")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.assets.cache b/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.assets.cache new file mode 100644 index 0000000..1db837c Binary files /dev/null and b/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.assets.cache differ diff --git a/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.csproj.AssemblyReference.cache b/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.csproj.AssemblyReference.cache new file mode 100644 index 0000000..1447e9c Binary files /dev/null and b/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.csproj.AssemblyReference.cache differ diff --git a/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.csproj.BuildWithSkipAnalyzers b/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.csproj.CoreCompileInputs.cache b/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..985154f --- /dev/null +++ b/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +f8e58cb67a7acdbb88d64b27564c3570e8c55d9ce7b0786277305ae9bf0376f8 diff --git a/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.csproj.FileListAbsolute.txt b/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..a171c6f --- /dev/null +++ b/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.csproj.FileListAbsolute.txt @@ -0,0 +1,45 @@ +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\bin\Debug\net8.0\appsettings.Development.json +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\bin\Debug\net8.0\appsettings.json +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\bin\Debug\net8.0\GexBackendAPI.exe +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\bin\Debug\net8.0\GexBackendAPI.deps.json +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\bin\Debug\net8.0\GexBackendAPI.runtimeconfig.json +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\bin\Debug\net8.0\GexBackendAPI.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\bin\Debug\net8.0\GexBackendAPI.pdb +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\bin\Debug\net8.0\DnsClient.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\bin\Debug\net8.0\Microsoft.AspNetCore.OpenApi.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\bin\Debug\net8.0\Microsoft.OpenApi.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\bin\Debug\net8.0\MongoDB.Bson.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\bin\Debug\net8.0\MongoDB.Driver.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\bin\Debug\net8.0\SharpCompress.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\bin\Debug\net8.0\Snappier.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\bin\Debug\net8.0\Swashbuckle.AspNetCore.Swagger.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerGen.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerUI.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\bin\Debug\net8.0\ZstdSharp.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\bin\Debug\net8.0\AdapterLayer.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\bin\Debug\net8.0\ApplicationLayer.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\bin\Debug\net8.0\DomainLayer.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\bin\Debug\net8.0\AdapterLayer.pdb +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\bin\Debug\net8.0\ApplicationLayer.pdb +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\bin\Debug\net8.0\DomainLayer.pdb +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\obj\Debug\net8.0\GexBackendAPI.csproj.AssemblyReference.cache +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\obj\Debug\net8.0\GexBackendAPI.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\obj\Debug\net8.0\GexBackendAPI.AssemblyInfoInputs.cache +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\obj\Debug\net8.0\GexBackendAPI.AssemblyInfo.cs +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\obj\Debug\net8.0\GexBackendAPI.csproj.CoreCompileInputs.cache +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\obj\Debug\net8.0\GexBackendAPI.MvcApplicationPartsAssemblyInfo.cs +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\obj\Debug\net8.0\GexBackendAPI.MvcApplicationPartsAssemblyInfo.cache +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\obj\Debug\net8.0\staticwebassets.build.json +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\obj\Debug\net8.0\staticwebassets.development.json +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\obj\Debug\net8.0\staticwebassets\msbuild.GexBackendAPI.Microsoft.AspNetCore.StaticWebAssets.props +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\obj\Debug\net8.0\staticwebassets\msbuild.build.GexBackendAPI.props +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\obj\Debug\net8.0\staticwebassets\msbuild.buildMultiTargeting.GexBackendAPI.props +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\obj\Debug\net8.0\staticwebassets\msbuild.buildTransitive.GexBackendAPI.props +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\obj\Debug\net8.0\staticwebassets.pack.json +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\obj\Debug\net8.0\scopedcss\bundle\GexBackendAPI.styles.css +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\obj\Debug\net8.0\GexBacke.3EBE64E9.Up2Date +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\obj\Debug\net8.0\GexBackendAPI.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\obj\Debug\net8.0\refint\GexBackendAPI.dll +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\obj\Debug\net8.0\GexBackendAPI.pdb +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\obj\Debug\net8.0\GexBackendAPI.genruntimeconfig.cache +C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\obj\Debug\net8.0\ref\GexBackendAPI.dll diff --git a/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.dll b/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.dll new file mode 100644 index 0000000..920c89d Binary files /dev/null and b/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.dll differ diff --git a/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.genruntimeconfig.cache b/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.genruntimeconfig.cache new file mode 100644 index 0000000..a861433 --- /dev/null +++ b/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.genruntimeconfig.cache @@ -0,0 +1 @@ +cc6aeb2a66afff65cca1ba4444f060a85d99a64b98d0a1462b9646fce813c5a2 diff --git a/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.pdb b/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.pdb new file mode 100644 index 0000000..c1fe0f1 Binary files /dev/null and b/GexBackendAPI/obj/Debug/net8.0/GexBackendAPI.pdb differ diff --git a/GexBackendAPI/obj/Debug/net8.0/apphost.exe b/GexBackendAPI/obj/Debug/net8.0/apphost.exe new file mode 100644 index 0000000..264744f Binary files /dev/null and b/GexBackendAPI/obj/Debug/net8.0/apphost.exe differ diff --git a/GexBackendAPI/obj/Debug/net8.0/ref/GexBackendAPI.dll b/GexBackendAPI/obj/Debug/net8.0/ref/GexBackendAPI.dll new file mode 100644 index 0000000..6e0a669 Binary files /dev/null and b/GexBackendAPI/obj/Debug/net8.0/ref/GexBackendAPI.dll differ diff --git a/GexBackendAPI/obj/Debug/net8.0/refint/GexBackendAPI.dll b/GexBackendAPI/obj/Debug/net8.0/refint/GexBackendAPI.dll new file mode 100644 index 0000000..6e0a669 Binary files /dev/null and b/GexBackendAPI/obj/Debug/net8.0/refint/GexBackendAPI.dll differ diff --git a/GexBackendAPI/obj/Debug/net8.0/staticwebassets.build.json b/GexBackendAPI/obj/Debug/net8.0/staticwebassets.build.json new file mode 100644 index 0000000..9fa841a --- /dev/null +++ b/GexBackendAPI/obj/Debug/net8.0/staticwebassets.build.json @@ -0,0 +1,11 @@ +{ + "Version": 1, + "Hash": "WJzav498MD1Ie4O+4lCDORapYW7S8L1PfHn8/liPZrM=", + "Source": "GexBackendAPI", + "BasePath": "_content/GexBackendAPI", + "Mode": "Default", + "ManifestType": "Build", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [], + "Assets": [] +} \ No newline at end of file diff --git a/GexBackendAPI/obj/Debug/net8.0/staticwebassets/msbuild.build.GexBackendAPI.props b/GexBackendAPI/obj/Debug/net8.0/staticwebassets/msbuild.build.GexBackendAPI.props new file mode 100644 index 0000000..5a6032a --- /dev/null +++ b/GexBackendAPI/obj/Debug/net8.0/staticwebassets/msbuild.build.GexBackendAPI.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/GexBackendAPI/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.GexBackendAPI.props b/GexBackendAPI/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.GexBackendAPI.props new file mode 100644 index 0000000..e93a04b --- /dev/null +++ b/GexBackendAPI/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.GexBackendAPI.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/GexBackendAPI/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.GexBackendAPI.props b/GexBackendAPI/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.GexBackendAPI.props new file mode 100644 index 0000000..3245a55 --- /dev/null +++ b/GexBackendAPI/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.GexBackendAPI.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/GexBackendAPI/obj/GexBackendAPI.csproj.nuget.dgspec.json b/GexBackendAPI/obj/GexBackendAPI.csproj.nuget.dgspec.json new file mode 100644 index 0000000..79cc724 --- /dev/null +++ b/GexBackendAPI/obj/GexBackendAPI.csproj.nuget.dgspec.json @@ -0,0 +1,292 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\GexBackendAPI\\GexBackendAPI.csproj": {} + }, + "projects": { + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\AdapterLayer\\AdapterLayer.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\AdapterLayer\\AdapterLayer.csproj", + "projectName": "AdapterLayer", + "projectPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\AdapterLayer\\AdapterLayer.csproj", + "packagesPath": "C:\\Users\\caal13\\.nuget\\packages\\", + "outputPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\AdapterLayer\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\caal13\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\ApplicationLayer\\ApplicationLayer.csproj": { + "projectPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\ApplicationLayer\\ApplicationLayer.csproj" + }, + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\DomainLayer.csproj": { + "projectPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\DomainLayer.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "MongoDB.Driver": { + "target": "Package", + "version": "[3.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\ApplicationLayer\\ApplicationLayer.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\ApplicationLayer\\ApplicationLayer.csproj", + "projectName": "ApplicationLayer", + "projectPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\ApplicationLayer\\ApplicationLayer.csproj", + "packagesPath": "C:\\Users\\caal13\\.nuget\\packages\\", + "outputPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\ApplicationLayer\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\caal13\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\DomainLayer.csproj": { + "projectPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\DomainLayer.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\DomainLayer.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\DomainLayer.csproj", + "projectName": "DomainLayer", + "projectPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\DomainLayer.csproj", + "packagesPath": "C:\\Users\\caal13\\.nuget\\packages\\", + "outputPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\caal13\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json" + } + } + }, + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\GexBackendAPI\\GexBackendAPI.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\GexBackendAPI\\GexBackendAPI.csproj", + "projectName": "GexBackendAPI", + "projectPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\GexBackendAPI\\GexBackendAPI.csproj", + "packagesPath": "C:\\Users\\caal13\\.nuget\\packages\\", + "outputPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\GexBackendAPI\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\caal13\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\AdapterLayer\\AdapterLayer.csproj": { + "projectPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\AdapterLayer\\AdapterLayer.csproj" + }, + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\ApplicationLayer\\ApplicationLayer.csproj": { + "projectPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\ApplicationLayer\\ApplicationLayer.csproj" + }, + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\DomainLayer.csproj": { + "projectPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\DomainLayer.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Microsoft.AspNetCore.OpenApi": { + "target": "Package", + "version": "[8.0.10, )" + }, + "Swashbuckle.AspNetCore": { + "target": "Package", + "version": "[6.6.2, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/GexBackendAPI/obj/GexBackendAPI.csproj.nuget.g.props b/GexBackendAPI/obj/GexBackendAPI.csproj.nuget.g.props new file mode 100644 index 0000000..4eca2d0 --- /dev/null +++ b/GexBackendAPI/obj/GexBackendAPI.csproj.nuget.g.props @@ -0,0 +1,22 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\caal13\.nuget\packages\ + PackageReference + 6.11.1 + + + + + + + + + + C:\Users\caal13\.nuget\packages\microsoft.extensions.apidescription.server\6.0.5 + + \ No newline at end of file diff --git a/GexBackendAPI/obj/GexBackendAPI.csproj.nuget.g.targets b/GexBackendAPI/obj/GexBackendAPI.csproj.nuget.g.targets new file mode 100644 index 0000000..eea8d76 --- /dev/null +++ b/GexBackendAPI/obj/GexBackendAPI.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/GexBackendAPI/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/GexBackendAPI/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/GexBackendAPI/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/GexBackendAPI/obj/Release/net8.0/GexBackendAPI.AssemblyInfo.cs b/GexBackendAPI/obj/Release/net8.0/GexBackendAPI.AssemblyInfo.cs new file mode 100644 index 0000000..0fa4920 --- /dev/null +++ b/GexBackendAPI/obj/Release/net8.0/GexBackendAPI.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("GexBackendAPI")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("GexBackendAPI")] +[assembly: System.Reflection.AssemblyTitleAttribute("GexBackendAPI")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/GexBackendAPI/obj/Release/net8.0/GexBackendAPI.AssemblyInfoInputs.cache b/GexBackendAPI/obj/Release/net8.0/GexBackendAPI.AssemblyInfoInputs.cache new file mode 100644 index 0000000..2366bed --- /dev/null +++ b/GexBackendAPI/obj/Release/net8.0/GexBackendAPI.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +7faed2532e97f3f37c57d9b1e2dd58721ed6f23a40560ca737f6617ca49e7e68 diff --git a/GexBackendAPI/obj/Release/net8.0/GexBackendAPI.GeneratedMSBuildEditorConfig.editorconfig b/GexBackendAPI/obj/Release/net8.0/GexBackendAPI.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..35071ef --- /dev/null +++ b/GexBackendAPI/obj/Release/net8.0/GexBackendAPI.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,19 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = GexBackendAPI +build_property.RootNamespace = GexBackendAPI +build_property.ProjectDir = C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 8.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = C:\Users\caal13\SMS GROUP\TAIHEN\145 LEMONCODE -COLABORACION\01 PROYECTO -GEX\90 PLAYGROUND\GEX-BACKEND-NET\GexBackend\GexBackendAPI +build_property._RazorSourceGeneratorDebug = diff --git a/GexBackendAPI/obj/Release/net8.0/GexBackendAPI.GlobalUsings.g.cs b/GexBackendAPI/obj/Release/net8.0/GexBackendAPI.GlobalUsings.g.cs new file mode 100644 index 0000000..025530a --- /dev/null +++ b/GexBackendAPI/obj/Release/net8.0/GexBackendAPI.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using global::Microsoft.AspNetCore.Builder; +global using global::Microsoft.AspNetCore.Hosting; +global using global::Microsoft.AspNetCore.Http; +global using global::Microsoft.AspNetCore.Routing; +global using global::Microsoft.Extensions.Configuration; +global using global::Microsoft.Extensions.DependencyInjection; +global using global::Microsoft.Extensions.Hosting; +global using global::Microsoft.Extensions.Logging; +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Net.Http.Json; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/GexBackendAPI/obj/Release/net8.0/GexBackendAPI.assets.cache b/GexBackendAPI/obj/Release/net8.0/GexBackendAPI.assets.cache new file mode 100644 index 0000000..060a60a Binary files /dev/null and b/GexBackendAPI/obj/Release/net8.0/GexBackendAPI.assets.cache differ diff --git a/GexBackendAPI/obj/Release/net8.0/GexBackendAPI.csproj.AssemblyReference.cache b/GexBackendAPI/obj/Release/net8.0/GexBackendAPI.csproj.AssemblyReference.cache new file mode 100644 index 0000000..3d597cc Binary files /dev/null and b/GexBackendAPI/obj/Release/net8.0/GexBackendAPI.csproj.AssemblyReference.cache differ diff --git a/GexBackendAPI/obj/project.assets.json b/GexBackendAPI/obj/project.assets.json new file mode 100644 index 0000000..e76fc98 --- /dev/null +++ b/GexBackendAPI/obj/project.assets.json @@ -0,0 +1,1214 @@ +{ + "version": 3, + "targets": { + "net8.0": { + "DnsClient/1.6.1": { + "type": "package", + "dependencies": { + "Microsoft.Win32.Registry": "5.0.0" + }, + "compile": { + "lib/net5.0/DnsClient.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/DnsClient.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.OpenApi/8.0.10": { + "type": "package", + "dependencies": { + "Microsoft.OpenApi": "1.4.3" + }, + "compile": { + "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": { + "type": "package", + "build": { + "build/Microsoft.Extensions.ApiDescription.Server.props": {}, + "build/Microsoft.Extensions.ApiDescription.Server.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {}, + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/2.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.OpenApi/1.6.14": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Win32.Registry/5.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "MongoDB.Bson/3.0.0": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.5", + "System.Runtime.CompilerServices.Unsafe": "5.0.0" + }, + "compile": { + "lib/net6.0/MongoDB.Bson.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/MongoDB.Bson.dll": { + "related": ".xml" + } + } + }, + "MongoDB.Driver/3.0.0": { + "type": "package", + "dependencies": { + "DnsClient": "1.6.1", + "Microsoft.Extensions.Logging.Abstractions": "2.0.0", + "MongoDB.Bson": "3.0.0", + "SharpCompress": "0.30.1", + "Snappier": "1.0.0", + "System.Buffers": "4.5.1", + "ZstdSharp.Port": "0.7.3" + }, + "compile": { + "lib/net6.0/MongoDB.Driver.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/MongoDB.Driver.dll": { + "related": ".xml" + } + } + }, + "SharpCompress/0.30.1": { + "type": "package", + "compile": { + "lib/net5.0/SharpCompress.dll": {} + }, + "runtime": { + "lib/net5.0/SharpCompress.dll": {} + } + }, + "Snappier/1.0.0": { + "type": "package", + "compile": { + "lib/net5.0/Snappier.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/Snappier.dll": { + "related": ".xml" + } + } + }, + "Swashbuckle.AspNetCore/6.6.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "6.0.5", + "Swashbuckle.AspNetCore.Swagger": "6.6.2", + "Swashbuckle.AspNetCore.SwaggerGen": "6.6.2", + "Swashbuckle.AspNetCore.SwaggerUI": "6.6.2" + }, + "build": { + "build/Swashbuckle.AspNetCore.props": {} + } + }, + "Swashbuckle.AspNetCore.Swagger/6.6.2": { + "type": "package", + "dependencies": { + "Microsoft.OpenApi": "1.6.14" + }, + "compile": { + "lib/net8.0/Swashbuckle.AspNetCore.Swagger.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/Swashbuckle.AspNetCore.Swagger.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.6.2": { + "type": "package", + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.6.2" + }, + "compile": { + "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "related": ".pdb;.xml" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.6.2": { + "type": "package", + "compile": { + "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "System.Buffers/4.5.1": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Memory/4.5.5": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Runtime.CompilerServices.Unsafe/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + } + }, + "System.Security.AccessControl/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "ZstdSharp.Port/0.7.3": { + "type": "package", + "compile": { + "lib/net7.0/ZstdSharp.dll": {} + }, + "runtime": { + "lib/net7.0/ZstdSharp.dll": {} + } + }, + "AdapterLayer/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "ApplicationLayer": "1.0.0", + "DomainLayer": "1.0.0", + "MongoDB.Driver": "3.0.0" + }, + "compile": { + "bin/placeholder/AdapterLayer.dll": {} + }, + "runtime": { + "bin/placeholder/AdapterLayer.dll": {} + } + }, + "ApplicationLayer/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "DomainLayer": "1.0.0" + }, + "compile": { + "bin/placeholder/ApplicationLayer.dll": {} + }, + "runtime": { + "bin/placeholder/ApplicationLayer.dll": {} + } + }, + "DomainLayer/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "compile": { + "bin/placeholder/DomainLayer.dll": {} + }, + "runtime": { + "bin/placeholder/DomainLayer.dll": {} + } + } + } + }, + "libraries": { + "DnsClient/1.6.1": { + "sha512": "4H/f2uYJOZ+YObZjpY9ABrKZI+JNw3uizp6oMzTXwDw6F+2qIPhpRl/1t68O/6e98+vqNiYGu+lswmwdYUy3gg==", + "type": "package", + "path": "dnsclient/1.6.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dnsclient.1.6.1.nupkg.sha512", + "dnsclient.nuspec", + "icon.png", + "lib/net45/DnsClient.dll", + "lib/net45/DnsClient.xml", + "lib/net471/DnsClient.dll", + "lib/net471/DnsClient.xml", + "lib/net5.0/DnsClient.dll", + "lib/net5.0/DnsClient.xml", + "lib/netstandard1.3/DnsClient.dll", + "lib/netstandard1.3/DnsClient.xml", + "lib/netstandard2.0/DnsClient.dll", + "lib/netstandard2.0/DnsClient.xml", + "lib/netstandard2.1/DnsClient.dll", + "lib/netstandard2.1/DnsClient.xml" + ] + }, + "Microsoft.AspNetCore.OpenApi/8.0.10": { + "sha512": "kzYiW/IbSN0xittjplA8eN1wrNcRi3DMalYRrEuF2xyf2Y5u7cGCfgN1oNZ+g3aBQzMKTQwYsY1PeNmC+P0WnA==", + "type": "package", + "path": "microsoft.aspnetcore.openapi/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net8.0/Microsoft.AspNetCore.OpenApi.dll", + "lib/net8.0/Microsoft.AspNetCore.OpenApi.xml", + "microsoft.aspnetcore.openapi.8.0.10.nupkg.sha512", + "microsoft.aspnetcore.openapi.nuspec" + ] + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": { + "sha512": "Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==", + "type": "package", + "path": "microsoft.extensions.apidescription.server/6.0.5", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "build/Microsoft.Extensions.ApiDescription.Server.props", + "build/Microsoft.Extensions.ApiDescription.Server.targets", + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props", + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets", + "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512", + "microsoft.extensions.apidescription.server.nuspec", + "tools/Newtonsoft.Json.dll", + "tools/dotnet-getdocument.deps.json", + "tools/dotnet-getdocument.dll", + "tools/dotnet-getdocument.runtimeconfig.json", + "tools/net461-x86/GetDocument.Insider.exe", + "tools/net461-x86/GetDocument.Insider.exe.config", + "tools/net461-x86/Microsoft.Win32.Primitives.dll", + "tools/net461-x86/System.AppContext.dll", + "tools/net461-x86/System.Buffers.dll", + "tools/net461-x86/System.Collections.Concurrent.dll", + "tools/net461-x86/System.Collections.NonGeneric.dll", + "tools/net461-x86/System.Collections.Specialized.dll", + "tools/net461-x86/System.Collections.dll", + "tools/net461-x86/System.ComponentModel.EventBasedAsync.dll", + "tools/net461-x86/System.ComponentModel.Primitives.dll", + "tools/net461-x86/System.ComponentModel.TypeConverter.dll", + "tools/net461-x86/System.ComponentModel.dll", + "tools/net461-x86/System.Console.dll", + "tools/net461-x86/System.Data.Common.dll", + "tools/net461-x86/System.Diagnostics.Contracts.dll", + "tools/net461-x86/System.Diagnostics.Debug.dll", + "tools/net461-x86/System.Diagnostics.DiagnosticSource.dll", + "tools/net461-x86/System.Diagnostics.FileVersionInfo.dll", + "tools/net461-x86/System.Diagnostics.Process.dll", + "tools/net461-x86/System.Diagnostics.StackTrace.dll", + "tools/net461-x86/System.Diagnostics.TextWriterTraceListener.dll", + "tools/net461-x86/System.Diagnostics.Tools.dll", + "tools/net461-x86/System.Diagnostics.TraceSource.dll", + "tools/net461-x86/System.Diagnostics.Tracing.dll", + "tools/net461-x86/System.Drawing.Primitives.dll", + "tools/net461-x86/System.Dynamic.Runtime.dll", + "tools/net461-x86/System.Globalization.Calendars.dll", + "tools/net461-x86/System.Globalization.Extensions.dll", + "tools/net461-x86/System.Globalization.dll", + "tools/net461-x86/System.IO.Compression.ZipFile.dll", + "tools/net461-x86/System.IO.Compression.dll", + "tools/net461-x86/System.IO.FileSystem.DriveInfo.dll", + "tools/net461-x86/System.IO.FileSystem.Primitives.dll", + "tools/net461-x86/System.IO.FileSystem.Watcher.dll", + "tools/net461-x86/System.IO.FileSystem.dll", + "tools/net461-x86/System.IO.IsolatedStorage.dll", + "tools/net461-x86/System.IO.MemoryMappedFiles.dll", + "tools/net461-x86/System.IO.Pipes.dll", + "tools/net461-x86/System.IO.UnmanagedMemoryStream.dll", + "tools/net461-x86/System.IO.dll", + "tools/net461-x86/System.Linq.Expressions.dll", + "tools/net461-x86/System.Linq.Parallel.dll", + "tools/net461-x86/System.Linq.Queryable.dll", + "tools/net461-x86/System.Linq.dll", + "tools/net461-x86/System.Memory.dll", + "tools/net461-x86/System.Net.Http.dll", + "tools/net461-x86/System.Net.NameResolution.dll", + "tools/net461-x86/System.Net.NetworkInformation.dll", + "tools/net461-x86/System.Net.Ping.dll", + "tools/net461-x86/System.Net.Primitives.dll", + "tools/net461-x86/System.Net.Requests.dll", + "tools/net461-x86/System.Net.Security.dll", + "tools/net461-x86/System.Net.Sockets.dll", + "tools/net461-x86/System.Net.WebHeaderCollection.dll", + "tools/net461-x86/System.Net.WebSockets.Client.dll", + "tools/net461-x86/System.Net.WebSockets.dll", + "tools/net461-x86/System.Numerics.Vectors.dll", + "tools/net461-x86/System.ObjectModel.dll", + "tools/net461-x86/System.Reflection.Extensions.dll", + "tools/net461-x86/System.Reflection.Primitives.dll", + "tools/net461-x86/System.Reflection.dll", + "tools/net461-x86/System.Resources.Reader.dll", + "tools/net461-x86/System.Resources.ResourceManager.dll", + "tools/net461-x86/System.Resources.Writer.dll", + "tools/net461-x86/System.Runtime.CompilerServices.Unsafe.dll", + "tools/net461-x86/System.Runtime.CompilerServices.VisualC.dll", + "tools/net461-x86/System.Runtime.Extensions.dll", + "tools/net461-x86/System.Runtime.Handles.dll", + "tools/net461-x86/System.Runtime.InteropServices.RuntimeInformation.dll", + "tools/net461-x86/System.Runtime.InteropServices.dll", + "tools/net461-x86/System.Runtime.Numerics.dll", + "tools/net461-x86/System.Runtime.Serialization.Formatters.dll", + "tools/net461-x86/System.Runtime.Serialization.Json.dll", + "tools/net461-x86/System.Runtime.Serialization.Primitives.dll", + "tools/net461-x86/System.Runtime.Serialization.Xml.dll", + "tools/net461-x86/System.Runtime.dll", + "tools/net461-x86/System.Security.Claims.dll", + "tools/net461-x86/System.Security.Cryptography.Algorithms.dll", + "tools/net461-x86/System.Security.Cryptography.Csp.dll", + "tools/net461-x86/System.Security.Cryptography.Encoding.dll", + "tools/net461-x86/System.Security.Cryptography.Primitives.dll", + "tools/net461-x86/System.Security.Cryptography.X509Certificates.dll", + "tools/net461-x86/System.Security.Principal.dll", + "tools/net461-x86/System.Security.SecureString.dll", + "tools/net461-x86/System.Text.Encoding.Extensions.dll", + "tools/net461-x86/System.Text.Encoding.dll", + "tools/net461-x86/System.Text.RegularExpressions.dll", + "tools/net461-x86/System.Threading.Overlapped.dll", + "tools/net461-x86/System.Threading.Tasks.Parallel.dll", + "tools/net461-x86/System.Threading.Tasks.dll", + "tools/net461-x86/System.Threading.Thread.dll", + "tools/net461-x86/System.Threading.ThreadPool.dll", + "tools/net461-x86/System.Threading.Timer.dll", + "tools/net461-x86/System.Threading.dll", + "tools/net461-x86/System.ValueTuple.dll", + "tools/net461-x86/System.Xml.ReaderWriter.dll", + "tools/net461-x86/System.Xml.XDocument.dll", + "tools/net461-x86/System.Xml.XPath.XDocument.dll", + "tools/net461-x86/System.Xml.XPath.dll", + "tools/net461-x86/System.Xml.XmlDocument.dll", + "tools/net461-x86/System.Xml.XmlSerializer.dll", + "tools/net461-x86/netstandard.dll", + "tools/net461/GetDocument.Insider.exe", + "tools/net461/GetDocument.Insider.exe.config", + "tools/net461/Microsoft.Win32.Primitives.dll", + "tools/net461/System.AppContext.dll", + "tools/net461/System.Buffers.dll", + "tools/net461/System.Collections.Concurrent.dll", + "tools/net461/System.Collections.NonGeneric.dll", + "tools/net461/System.Collections.Specialized.dll", + "tools/net461/System.Collections.dll", + "tools/net461/System.ComponentModel.EventBasedAsync.dll", + "tools/net461/System.ComponentModel.Primitives.dll", + "tools/net461/System.ComponentModel.TypeConverter.dll", + "tools/net461/System.ComponentModel.dll", + "tools/net461/System.Console.dll", + "tools/net461/System.Data.Common.dll", + "tools/net461/System.Diagnostics.Contracts.dll", + "tools/net461/System.Diagnostics.Debug.dll", + "tools/net461/System.Diagnostics.DiagnosticSource.dll", + "tools/net461/System.Diagnostics.FileVersionInfo.dll", + "tools/net461/System.Diagnostics.Process.dll", + "tools/net461/System.Diagnostics.StackTrace.dll", + "tools/net461/System.Diagnostics.TextWriterTraceListener.dll", + "tools/net461/System.Diagnostics.Tools.dll", + "tools/net461/System.Diagnostics.TraceSource.dll", + "tools/net461/System.Diagnostics.Tracing.dll", + "tools/net461/System.Drawing.Primitives.dll", + "tools/net461/System.Dynamic.Runtime.dll", + "tools/net461/System.Globalization.Calendars.dll", + "tools/net461/System.Globalization.Extensions.dll", + "tools/net461/System.Globalization.dll", + "tools/net461/System.IO.Compression.ZipFile.dll", + "tools/net461/System.IO.Compression.dll", + "tools/net461/System.IO.FileSystem.DriveInfo.dll", + "tools/net461/System.IO.FileSystem.Primitives.dll", + "tools/net461/System.IO.FileSystem.Watcher.dll", + "tools/net461/System.IO.FileSystem.dll", + "tools/net461/System.IO.IsolatedStorage.dll", + "tools/net461/System.IO.MemoryMappedFiles.dll", + "tools/net461/System.IO.Pipes.dll", + "tools/net461/System.IO.UnmanagedMemoryStream.dll", + "tools/net461/System.IO.dll", + "tools/net461/System.Linq.Expressions.dll", + "tools/net461/System.Linq.Parallel.dll", + "tools/net461/System.Linq.Queryable.dll", + "tools/net461/System.Linq.dll", + "tools/net461/System.Memory.dll", + "tools/net461/System.Net.Http.dll", + "tools/net461/System.Net.NameResolution.dll", + "tools/net461/System.Net.NetworkInformation.dll", + "tools/net461/System.Net.Ping.dll", + "tools/net461/System.Net.Primitives.dll", + "tools/net461/System.Net.Requests.dll", + "tools/net461/System.Net.Security.dll", + "tools/net461/System.Net.Sockets.dll", + "tools/net461/System.Net.WebHeaderCollection.dll", + "tools/net461/System.Net.WebSockets.Client.dll", + "tools/net461/System.Net.WebSockets.dll", + "tools/net461/System.Numerics.Vectors.dll", + "tools/net461/System.ObjectModel.dll", + "tools/net461/System.Reflection.Extensions.dll", + "tools/net461/System.Reflection.Primitives.dll", + "tools/net461/System.Reflection.dll", + "tools/net461/System.Resources.Reader.dll", + "tools/net461/System.Resources.ResourceManager.dll", + "tools/net461/System.Resources.Writer.dll", + "tools/net461/System.Runtime.CompilerServices.Unsafe.dll", + "tools/net461/System.Runtime.CompilerServices.VisualC.dll", + "tools/net461/System.Runtime.Extensions.dll", + "tools/net461/System.Runtime.Handles.dll", + "tools/net461/System.Runtime.InteropServices.RuntimeInformation.dll", + "tools/net461/System.Runtime.InteropServices.dll", + "tools/net461/System.Runtime.Numerics.dll", + "tools/net461/System.Runtime.Serialization.Formatters.dll", + "tools/net461/System.Runtime.Serialization.Json.dll", + "tools/net461/System.Runtime.Serialization.Primitives.dll", + "tools/net461/System.Runtime.Serialization.Xml.dll", + "tools/net461/System.Runtime.dll", + "tools/net461/System.Security.Claims.dll", + "tools/net461/System.Security.Cryptography.Algorithms.dll", + "tools/net461/System.Security.Cryptography.Csp.dll", + "tools/net461/System.Security.Cryptography.Encoding.dll", + "tools/net461/System.Security.Cryptography.Primitives.dll", + "tools/net461/System.Security.Cryptography.X509Certificates.dll", + "tools/net461/System.Security.Principal.dll", + "tools/net461/System.Security.SecureString.dll", + "tools/net461/System.Text.Encoding.Extensions.dll", + "tools/net461/System.Text.Encoding.dll", + "tools/net461/System.Text.RegularExpressions.dll", + "tools/net461/System.Threading.Overlapped.dll", + "tools/net461/System.Threading.Tasks.Parallel.dll", + "tools/net461/System.Threading.Tasks.dll", + "tools/net461/System.Threading.Thread.dll", + "tools/net461/System.Threading.ThreadPool.dll", + "tools/net461/System.Threading.Timer.dll", + "tools/net461/System.Threading.dll", + "tools/net461/System.ValueTuple.dll", + "tools/net461/System.Xml.ReaderWriter.dll", + "tools/net461/System.Xml.XDocument.dll", + "tools/net461/System.Xml.XPath.XDocument.dll", + "tools/net461/System.Xml.XPath.dll", + "tools/net461/System.Xml.XmlDocument.dll", + "tools/net461/System.Xml.XmlSerializer.dll", + "tools/net461/netstandard.dll", + "tools/netcoreapp2.1/GetDocument.Insider.deps.json", + "tools/netcoreapp2.1/GetDocument.Insider.dll", + "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json", + "tools/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/2.0.0": { + "sha512": "6ZCllUYGFukkymSTx3Yr0G/ajRxoNJp7/FqSxSB4fGISST54ifBhgu4Nc0ItGi3i6DqwuNd8SUyObmiC++AO2Q==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.2.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "type": "package", + "path": "microsoft.netcore.platforms/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.5.0.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.OpenApi/1.6.14": { + "sha512": "tTaBT8qjk3xINfESyOPE2rIellPvB7qpVqiWiyA/lACVvz+xOGiXhFUfohcx82NLbi5avzLW0lx+s6oAqQijfw==", + "type": "package", + "path": "microsoft.openapi/1.6.14", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/netstandard2.0/Microsoft.OpenApi.dll", + "lib/netstandard2.0/Microsoft.OpenApi.pdb", + "lib/netstandard2.0/Microsoft.OpenApi.xml", + "microsoft.openapi.1.6.14.nupkg.sha512", + "microsoft.openapi.nuspec" + ] + }, + "Microsoft.Win32.Registry/5.0.0": { + "sha512": "dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", + "type": "package", + "path": "microsoft.win32.registry/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.dll", + "lib/net461/Microsoft.Win32.Registry.xml", + "lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "microsoft.win32.registry.5.0.0.nupkg.sha512", + "microsoft.win32.registry.nuspec", + "ref/net46/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.dll", + "ref/net461/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/Microsoft.Win32.Registry.dll", + "ref/netstandard1.3/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/de/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/es/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/fr/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/it/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ja/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ko/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/ru/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hans/Microsoft.Win32.Registry.xml", + "ref/netstandard1.3/zh-hant/Microsoft.Win32.Registry.xml", + "ref/netstandard2.0/Microsoft.Win32.Registry.dll", + "ref/netstandard2.0/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/net46/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/net461/Microsoft.Win32.Registry.xml", + "runtimes/win/lib/netstandard1.3/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "MongoDB.Bson/3.0.0": { + "sha512": "qnPRJ58HXDh7C4oxTf6YB7BJhlCGJIa6TMXhzImw6zk44lrAomQXTB6AtoQ5lNJbkyrgQcT7+smsKFMnXmLXhw==", + "type": "package", + "path": "mongodb.bson/3.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net472/MongoDB.Bson.dll", + "lib/net472/MongoDB.Bson.xml", + "lib/net6.0/MongoDB.Bson.dll", + "lib/net6.0/MongoDB.Bson.xml", + "lib/netstandard2.1/MongoDB.Bson.dll", + "lib/netstandard2.1/MongoDB.Bson.xml", + "mongodb.bson.3.0.0.nupkg.sha512", + "mongodb.bson.nuspec", + "packageIcon.png" + ] + }, + "MongoDB.Driver/3.0.0": { + "sha512": "udcP8rOhyuhLDn3sGVdNUgQSXfKGPaIP4w09XVKf4xdy66YSXinhkIuQSuOeZVHdTFsG2PpUbRx2wyFm7E0EMg==", + "type": "package", + "path": "mongodb.driver/3.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net472/MongoDB.Driver.dll", + "lib/net472/MongoDB.Driver.xml", + "lib/net6.0/MongoDB.Driver.dll", + "lib/net6.0/MongoDB.Driver.xml", + "lib/netstandard2.1/MongoDB.Driver.dll", + "lib/netstandard2.1/MongoDB.Driver.xml", + "mongodb.driver.3.0.0.nupkg.sha512", + "mongodb.driver.nuspec", + "packageIcon.png" + ] + }, + "SharpCompress/0.30.1": { + "sha512": "XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==", + "type": "package", + "path": "sharpcompress/0.30.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/SharpCompress.dll", + "lib/net5.0/SharpCompress.dll", + "lib/netcoreapp3.1/SharpCompress.dll", + "lib/netstandard2.0/SharpCompress.dll", + "lib/netstandard2.1/SharpCompress.dll", + "sharpcompress.0.30.1.nupkg.sha512", + "sharpcompress.nuspec" + ] + }, + "Snappier/1.0.0": { + "sha512": "rFtK2KEI9hIe8gtx3a0YDXdHOpedIf9wYCEYtBEmtlyiWVX3XlCNV03JrmmAi/Cdfn7dxK+k0sjjcLv4fpHnqA==", + "type": "package", + "path": "snappier/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "COPYING.txt", + "lib/net5.0/Snappier.dll", + "lib/net5.0/Snappier.xml", + "lib/netcoreapp3.0/Snappier.dll", + "lib/netcoreapp3.0/Snappier.xml", + "lib/netstandard2.0/Snappier.dll", + "lib/netstandard2.0/Snappier.xml", + "lib/netstandard2.1/Snappier.dll", + "lib/netstandard2.1/Snappier.xml", + "snappier.1.0.0.nupkg.sha512", + "snappier.nuspec" + ] + }, + "Swashbuckle.AspNetCore/6.6.2": { + "sha512": "+NB4UYVYN6AhDSjW0IJAd1AGD8V33gemFNLPaxKTtPkHB+HaKAKf9MGAEUPivEWvqeQfcKIw8lJaHq6LHljRuw==", + "type": "package", + "path": "swashbuckle.aspnetcore/6.6.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Swashbuckle.AspNetCore.props", + "swashbuckle.aspnetcore.6.6.2.nupkg.sha512", + "swashbuckle.aspnetcore.nuspec" + ] + }, + "Swashbuckle.AspNetCore.Swagger/6.6.2": { + "sha512": "ovgPTSYX83UrQUWiS5vzDcJ8TEX1MAxBgDFMK45rC24MorHEPQlZAHlaXj/yth4Zf6xcktpUgTEBvffRQVwDKA==", + "type": "package", + "path": "swashbuckle.aspnetcore.swagger/6.6.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/net7.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/net7.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/net8.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/net8.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/net8.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml", + "package-readme.md", + "swashbuckle.aspnetcore.swagger.6.6.2.nupkg.sha512", + "swashbuckle.aspnetcore.swagger.nuspec" + ] + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.6.2": { + "sha512": "zv4ikn4AT1VYuOsDCpktLq4QDq08e7Utzbir86M5/ZkRaLXbCPF11E1/vTmOiDzRTl0zTZINQU2qLKwTcHgfrA==", + "type": "package", + "path": "swashbuckle.aspnetcore.swaggergen/6.6.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "package-readme.md", + "swashbuckle.aspnetcore.swaggergen.6.6.2.nupkg.sha512", + "swashbuckle.aspnetcore.swaggergen.nuspec" + ] + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.6.2": { + "sha512": "mBBb+/8Hm2Q3Wygag+hu2jj69tZW5psuv0vMRXY07Wy+Rrj40vRP8ZTbKBhs91r45/HXT4aY4z0iSBYx1h6JvA==", + "type": "package", + "path": "swashbuckle.aspnetcore.swaggerui/6.6.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "package-readme.md", + "swashbuckle.aspnetcore.swaggerui.6.6.2.nupkg.sha512", + "swashbuckle.aspnetcore.swaggerui.nuspec" + ] + }, + "System.Buffers/4.5.1": { + "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "type": "package", + "path": "system.buffers/4.5.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Buffers.dll", + "lib/net461/System.Buffers.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.1/System.Buffers.dll", + "lib/netstandard1.1/System.Buffers.xml", + "lib/netstandard2.0/System.Buffers.dll", + "lib/netstandard2.0/System.Buffers.xml", + "lib/uap10.0.16299/_._", + "ref/net45/System.Buffers.dll", + "ref/net45/System.Buffers.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.1/System.Buffers.dll", + "ref/netstandard1.1/System.Buffers.xml", + "ref/netstandard2.0/System.Buffers.dll", + "ref/netstandard2.0/System.Buffers.xml", + "ref/uap10.0.16299/_._", + "system.buffers.4.5.1.nupkg.sha512", + "system.buffers.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Memory/4.5.5": { + "sha512": "XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", + "type": "package", + "path": "system.memory/4.5.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Memory.dll", + "lib/net461/System.Memory.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.5.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Runtime.CompilerServices.Unsafe/5.0.0": { + "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net45/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/net461/System.Runtime.CompilerServices.Unsafe.dll", + "ref/net461/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll", + "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.AccessControl/5.0.0": { + "sha512": "dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", + "type": "package", + "path": "system.security.accesscontrol/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.xml", + "ref/netstandard1.3/System.Security.AccessControl.dll", + "ref/netstandard1.3/System.Security.AccessControl.xml", + "ref/netstandard1.3/de/System.Security.AccessControl.xml", + "ref/netstandard1.3/es/System.Security.AccessControl.xml", + "ref/netstandard1.3/fr/System.Security.AccessControl.xml", + "ref/netstandard1.3/it/System.Security.AccessControl.xml", + "ref/netstandard1.3/ja/System.Security.AccessControl.xml", + "ref/netstandard1.3/ko/System.Security.AccessControl.xml", + "ref/netstandard1.3/ru/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", + "ref/netstandard2.0/System.Security.AccessControl.dll", + "ref/netstandard2.0/System.Security.AccessControl.xml", + "ref/uap10.0.16299/_._", + "runtimes/win/lib/net46/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.5.0.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal.Windows/5.0.0": { + "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "type": "package", + "path": "system.security.principal.windows/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.5.0.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "ZstdSharp.Port/0.7.3": { + "sha512": "U9Ix4l4cl58Kzz1rJzj5hoVTjmbx1qGMwzAcbv1j/d3NzrFaESIurQyg+ow4mivCgkE3S413y+U9k4WdnEIkRA==", + "type": "package", + "path": "zstdsharp.port/0.7.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/ZstdSharp.dll", + "lib/net5.0/ZstdSharp.dll", + "lib/net6.0/ZstdSharp.dll", + "lib/net7.0/ZstdSharp.dll", + "lib/netcoreapp3.1/ZstdSharp.dll", + "lib/netstandard2.0/ZstdSharp.dll", + "lib/netstandard2.1/ZstdSharp.dll", + "zstdsharp.port.0.7.3.nupkg.sha512", + "zstdsharp.port.nuspec" + ] + }, + "AdapterLayer/1.0.0": { + "type": "project", + "path": "../AdapterLayer/AdapterLayer.csproj", + "msbuildProject": "../AdapterLayer/AdapterLayer.csproj" + }, + "ApplicationLayer/1.0.0": { + "type": "project", + "path": "../ApplicationLayer/ApplicationLayer.csproj", + "msbuildProject": "../ApplicationLayer/ApplicationLayer.csproj" + }, + "DomainLayer/1.0.0": { + "type": "project", + "path": "../DomainLayer/DomainLayer.csproj", + "msbuildProject": "../DomainLayer/DomainLayer.csproj" + } + }, + "projectFileDependencyGroups": { + "net8.0": [ + "AdapterLayer >= 1.0.0", + "ApplicationLayer >= 1.0.0", + "DomainLayer >= 1.0.0", + "Microsoft.AspNetCore.OpenApi >= 8.0.10", + "Swashbuckle.AspNetCore >= 6.6.2" + ] + }, + "packageFolders": { + "C:\\Users\\caal13\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\GexBackendAPI\\GexBackendAPI.csproj", + "projectName": "GexBackendAPI", + "projectPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\GexBackendAPI\\GexBackendAPI.csproj", + "packagesPath": "C:\\Users\\caal13\\.nuget\\packages\\", + "outputPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\GexBackendAPI\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\caal13\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\AdapterLayer\\AdapterLayer.csproj": { + "projectPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\AdapterLayer\\AdapterLayer.csproj" + }, + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\ApplicationLayer\\ApplicationLayer.csproj": { + "projectPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\ApplicationLayer\\ApplicationLayer.csproj" + }, + "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\DomainLayer.csproj": { + "projectPath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\DomainLayer\\DomainLayer.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Microsoft.AspNetCore.OpenApi": { + "target": "Package", + "version": "[8.0.10, )" + }, + "Swashbuckle.AspNetCore": { + "target": "Package", + "version": "[6.6.2, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.403/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/GexBackendAPI/obj/project.nuget.cache b/GexBackendAPI/obj/project.nuget.cache new file mode 100644 index 0000000..beb6455 --- /dev/null +++ b/GexBackendAPI/obj/project.nuget.cache @@ -0,0 +1,30 @@ +{ + "version": 2, + "dgSpecHash": "NGpvQih4HcU=", + "success": true, + "projectFilePath": "C:\\Users\\caal13\\SMS GROUP\\TAIHEN\\145 LEMONCODE -COLABORACION\\01 PROYECTO -GEX\\90 PLAYGROUND\\GEX-BACKEND-NET\\GexBackend\\GexBackendAPI\\GexBackendAPI.csproj", + "expectedPackageFiles": [ + "C:\\Users\\caal13\\.nuget\\packages\\dnsclient\\1.6.1\\dnsclient.1.6.1.nupkg.sha512", + "C:\\Users\\caal13\\.nuget\\packages\\microsoft.aspnetcore.openapi\\8.0.10\\microsoft.aspnetcore.openapi.8.0.10.nupkg.sha512", + "C:\\Users\\caal13\\.nuget\\packages\\microsoft.extensions.apidescription.server\\6.0.5\\microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512", + "C:\\Users\\caal13\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\2.0.0\\microsoft.extensions.logging.abstractions.2.0.0.nupkg.sha512", + "C:\\Users\\caal13\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512", + "C:\\Users\\caal13\\.nuget\\packages\\microsoft.openapi\\1.6.14\\microsoft.openapi.1.6.14.nupkg.sha512", + "C:\\Users\\caal13\\.nuget\\packages\\microsoft.win32.registry\\5.0.0\\microsoft.win32.registry.5.0.0.nupkg.sha512", + "C:\\Users\\caal13\\.nuget\\packages\\mongodb.bson\\3.0.0\\mongodb.bson.3.0.0.nupkg.sha512", + "C:\\Users\\caal13\\.nuget\\packages\\mongodb.driver\\3.0.0\\mongodb.driver.3.0.0.nupkg.sha512", + "C:\\Users\\caal13\\.nuget\\packages\\sharpcompress\\0.30.1\\sharpcompress.0.30.1.nupkg.sha512", + "C:\\Users\\caal13\\.nuget\\packages\\snappier\\1.0.0\\snappier.1.0.0.nupkg.sha512", + "C:\\Users\\caal13\\.nuget\\packages\\swashbuckle.aspnetcore\\6.6.2\\swashbuckle.aspnetcore.6.6.2.nupkg.sha512", + "C:\\Users\\caal13\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.6.2\\swashbuckle.aspnetcore.swagger.6.6.2.nupkg.sha512", + "C:\\Users\\caal13\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.6.2\\swashbuckle.aspnetcore.swaggergen.6.6.2.nupkg.sha512", + "C:\\Users\\caal13\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.6.2\\swashbuckle.aspnetcore.swaggerui.6.6.2.nupkg.sha512", + "C:\\Users\\caal13\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512", + "C:\\Users\\caal13\\.nuget\\packages\\system.memory\\4.5.5\\system.memory.4.5.5.nupkg.sha512", + "C:\\Users\\caal13\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\5.0.0\\system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512", + "C:\\Users\\caal13\\.nuget\\packages\\system.security.accesscontrol\\5.0.0\\system.security.accesscontrol.5.0.0.nupkg.sha512", + "C:\\Users\\caal13\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", + "C:\\Users\\caal13\\.nuget\\packages\\zstdsharp.port\\0.7.3\\zstdsharp.port.0.7.3.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/README.md b/README.md index 535a172..cb4f5fc 100644 --- a/README.md +++ b/README.md @@ -1 +1,100 @@ -# gex-back-net \ No newline at end of file +# _Gex Backend .Net_ + +### _This is a proposal for a Backend application for managing prucurement electronic files which supports the goals of the `"Administracion General del Estado y sus Organismos Autonomos"` to encompass all the information and documentation in a unified manner_ + +## `Requirements` + +- .Net 8.0 +- MongoDB.Driver +- ASP.Net +- Docker + +## `Software Architecture` + +The application is developed based on a **_Clean Architucture_** pattern which helps to split the different concers and/or responsabilities in specific layers with the main objective to isolate the domain rules from any details that are not related. + +The use of thise architecture, it also improves testability and simplifies changes which improves maintainability. + +

+ca-diagram +
+Gex Backend Application - Software Layers Implemented +

+
+ +The backend application implements 4 layers: + +- **Domain Layer:** Implements the business rules of the application. +- **Application Layer:** Implements the use cases of the application. +- **Adapter Layer:** Implements the interfaces with external systems to support data transformation to be consumed by the application and external systems. +- **Framework Layer:** This layer allows to expose the application throughout a standard interface such as REST-API. The framework ASP.Net is used for this purpose. + +## `How to Run the Application` + +To simplify this process avoiding the setup of a local environment, the application has been _containerized_. + +

+app-dockerized +
+Gex Backend - Containerized +

+
+ +### `Installation` + +1. Clone the repository or download the code in a local folder. +2. Open a terminal and navigate inside the local folder where the code resides. + **_NB: For the next steps it is required that Docker or Docker Desktop is installed in your local system_** +3. Create a docker image using the `Dockerfile` provided runing the next command. + +```bash +docker build . --tag gex-backend:0.0.1 +``` + +4. Download the mongo-db image from Docker Hub running the next command. + +```bash +docker pull mongo:8.0.3 +``` + +5. Verify that both images appear in the local resgistry running the next command. + +```bash +docker image ls +``` + +### `Running the Application` + +A `docker-compose.yaml` is used to launch the application. From the terminal, and being sure you are in the local folder where the code resides, run the next command. + +```bash +docker compose up -d +``` + +### `Testing the Application` + +The application expose a _Swagger Interface_ which is accessed thru the next _URL_. + +```bash +http://localhost:7070/swagger +``` + +

+swagger +
+Gex Backend - Swagger +

+
+ +The interface is displayed typing the _URL_ on any web browser. The interface shows all the API endpoints and those can be tested using the next procedure. + +

+procedure +
+Swagger Operation +

+
+ +1. Expand the _action_ that you want to perform, and click on the **_"Try it out"_** button. +2. The interface will show the command button to **Execute** the operation. _Be aware that maybe more information should be provided to execute the operation._ +3. Verify the results of the operation. diff --git a/Static/CLEAN-ARCHITECTURE.png b/Static/CLEAN-ARCHITECTURE.png new file mode 100644 index 0000000..f9d50b2 Binary files /dev/null and b/Static/CLEAN-ARCHITECTURE.png differ diff --git a/Static/CONTAINERIZED-APPLICATION.png b/Static/CONTAINERIZED-APPLICATION.png new file mode 100644 index 0000000..fee015f Binary files /dev/null and b/Static/CONTAINERIZED-APPLICATION.png differ diff --git a/Static/SWAGGER-OPERATION.png b/Static/SWAGGER-OPERATION.png new file mode 100644 index 0000000..d41bc09 Binary files /dev/null and b/Static/SWAGGER-OPERATION.png differ diff --git a/Static/SWAGGER-UI.png b/Static/SWAGGER-UI.png new file mode 100644 index 0000000..58780a5 Binary files /dev/null and b/Static/SWAGGER-UI.png differ diff --git a/docker-compose.yaml b/docker-compose.yaml new file mode 100644 index 0000000..5e1ad2a --- /dev/null +++ b/docker-compose.yaml @@ -0,0 +1,25 @@ +services: + gex-store: + container_name: gex-store + image: mongo:8.0.3 + volumes: + - mongo-data:/data/db + networks: + - gex-network + + gex-backend: + container_name: gex-backend + image: gex-backend:0.0.1 + environment: + - MONGO_URL=mongodb://gex-store:27017 + - MONGO_DB=gex-api + networks: + - gex-network + ports: + - 7070:7070 + +volumes: + mongo-data: + +networks: + gex-network: