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.
+
+
+
+
+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_.
+
+
+
+
+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
+```
+
+
+
+
+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.
+
+
+
+
+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: