commit 535ca7665262914680b04bc98cda2e66ed787bb8 Author: Helri Date: Fri Jun 5 21:35:35 2026 +0200 first commit diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 0000000..fe1152b --- /dev/null +++ b/.dockerignore @@ -0,0 +1,30 @@ +**/.classpath +**/.dockerignore +**/.env +**/.git +**/.gitignore +**/.project +**/.settings +**/.toolstarget +**/.vs +**/.vscode +**/*.*proj.user +**/*.dbmdl +**/*.jfm +**/azds.yaml +**/bin +**/charts +**/docker-compose* +**/Dockerfile* +**/node_modules +**/npm-debug.log +**/obj +**/secrets.dev.yaml +**/values.dev.yaml +LICENSE +README.md +!**/.gitignore +!.git/HEAD +!.git/config +!.git/packed-refs +!.git/refs/heads/** \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4a231e0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +################################################################################ +# This .gitignore file was automatically created by Microsoft(R) Visual Studio. +################################################################################ + +/.env diff --git a/GestionBanqueApi.slnx b/GestionBanqueApi.slnx new file mode 100644 index 0000000..0e4a8a0 --- /dev/null +++ b/GestionBanqueApi.slnx @@ -0,0 +1,3 @@ + + + diff --git a/GestionBanqueApi/Controllers/FilesToolsController.cs b/GestionBanqueApi/Controllers/FilesToolsController.cs new file mode 100644 index 0000000..cebd05f --- /dev/null +++ b/GestionBanqueApi/Controllers/FilesToolsController.cs @@ -0,0 +1,66 @@ +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; + +namespace GestionBanqueApi.Controllers +{ + [Route("api/[controller]")] + [ApiController] + public class FilesToolsController : ControllerBase + { + /// + /// Méthode d'upload du fichier + /// + /// + /// + [HttpPost] + public async Task UploadFile(IFormFile csvFile) + { + + #region vérification fichier + if (csvFile == null || csvFile.Length == 0) + { + return BadRequest("Aucun fichier fourni."); + } + + // Vérification de l'extension + var extension = Path.GetExtension(csvFile.FileName); + + if (!string.Equals(extension, ".csv", StringComparison.OrdinalIgnoreCase)) + { + return BadRequest("Le fichier doit être au format CSV."); + } + + // Vérification du type MIME (optionnelle) + var allowedContentTypes = new[] + { + "text/csv", + "application/csv", + "application/vnd.ms-excel" + }; + + if (!allowedContentTypes.Contains(csvFile.ContentType)) + { + return BadRequest("Type de fichier invalide."); + } + + // Lecture du contenu + using var reader = new StreamReader(csvFile.OpenReadStream()); + var firstLine = await reader.ReadLineAsync(); + + if (string.IsNullOrWhiteSpace(firstLine)) + { + return BadRequest("Le fichier CSV est vide."); + } + #endregion + + + //Ici mettre le traitement de la bdd + //****** + //****** + //****** + + return Ok(); + + } + } +} diff --git a/GestionBanqueApi/Controllers/WeatherForecastController.cs b/GestionBanqueApi/Controllers/WeatherForecastController.cs new file mode 100644 index 0000000..7ec73d3 --- /dev/null +++ b/GestionBanqueApi/Controllers/WeatherForecastController.cs @@ -0,0 +1,33 @@ +using Microsoft.AspNetCore.Mvc; + +namespace GestionBanqueApi.Controllers +{ + [ApiController] + [Route("[controller]")] + public class WeatherForecastController : ControllerBase + { + private static readonly string[] Summaries = new[] + { + "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" + }; + + private readonly ILogger _logger; + + public WeatherForecastController(ILogger logger) + { + _logger = logger; + } + + [HttpGet(Name = "GetWeatherForecast")] + public IEnumerable Get() + { + return Enumerable.Range(1, 5).Select(index => new WeatherForecast + { + Date = DateOnly.FromDateTime(DateTime.Now.AddDays(index)), + TemperatureC = Random.Shared.Next(-20, 55), + Summary = Summaries[Random.Shared.Next(Summaries.Length)] + }) + .ToArray(); + } + } +} diff --git a/GestionBanqueApi/Dockerfile b/GestionBanqueApi/Dockerfile new file mode 100644 index 0000000..774f4b1 --- /dev/null +++ b/GestionBanqueApi/Dockerfile @@ -0,0 +1,30 @@ +# See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging. + +# This stage is used when running from VS in fast mode (Default for Debug configuration) +FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base +USER $APP_UID +WORKDIR /app +EXPOSE 8080 +EXPOSE 8081 + + +# This stage is used to build the service project +FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build +ARG BUILD_CONFIGURATION=Release +WORKDIR /src +COPY ["GestionBanqueApi/GestionBanqueApi.csproj", "GestionBanqueApi/"] +RUN dotnet restore "./GestionBanqueApi/GestionBanqueApi.csproj" +COPY . . +WORKDIR "/src/GestionBanqueApi" +RUN dotnet build "./GestionBanqueApi.csproj" -c $BUILD_CONFIGURATION -o /app/build + +# This stage is used to publish the service project to be copied to the final stage +FROM build AS publish +ARG BUILD_CONFIGURATION=Release +RUN dotnet publish "./GestionBanqueApi.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false + +# This stage is used in production or when running from VS in regular mode (Default when not using the Debug configuration) +FROM base AS final +WORKDIR /app +COPY --from=publish /app/publish . +ENTRYPOINT ["dotnet", "GestionBanqueApi.dll"] \ No newline at end of file diff --git a/GestionBanqueApi/GestionBanqueApi.csproj b/GestionBanqueApi/GestionBanqueApi.csproj new file mode 100644 index 0000000..234500d --- /dev/null +++ b/GestionBanqueApi/GestionBanqueApi.csproj @@ -0,0 +1,16 @@ + + + + net8.0 + enable + enable + b0a5ca43-55e4-47e5-97b0-3611311825a7 + Linux + + + + + + + + diff --git a/GestionBanqueApi/GestionBanqueApi.csproj.user b/GestionBanqueApi/GestionBanqueApi.csproj.user new file mode 100644 index 0000000..2dab572 --- /dev/null +++ b/GestionBanqueApi/GestionBanqueApi.csproj.user @@ -0,0 +1,11 @@ + + + + IIS Express + ApiControllerEmptyScaffolder + root/Common/Api + + + ProjectDebugger + + \ No newline at end of file diff --git a/GestionBanqueApi/GestionBanqueApi.http b/GestionBanqueApi/GestionBanqueApi.http new file mode 100644 index 0000000..1a16d23 --- /dev/null +++ b/GestionBanqueApi/GestionBanqueApi.http @@ -0,0 +1,6 @@ +@GestionBanqueApi_HostAddress = http://localhost:5118 + +GET {{GestionBanqueApi_HostAddress}}/weatherforecast/ +Accept: application/json + +### diff --git a/GestionBanqueApi/Program.cs b/GestionBanqueApi/Program.cs new file mode 100644 index 0000000..48863a6 --- /dev/null +++ b/GestionBanqueApi/Program.cs @@ -0,0 +1,25 @@ +var builder = WebApplication.CreateBuilder(args); + +// Add services to the container. + +builder.Services.AddControllers(); +// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle +builder.Services.AddEndpointsApiExplorer(); +builder.Services.AddSwaggerGen(); + +var app = builder.Build(); + +// Configure the HTTP request pipeline. +if (app.Environment.IsDevelopment()) +{ + app.UseSwagger(); + app.UseSwaggerUI(); +} + +app.UseHttpsRedirection(); + +app.UseAuthorization(); + +app.MapControllers(); + +app.Run(); diff --git a/GestionBanqueApi/Properties/launchSettings.json b/GestionBanqueApi/Properties/launchSettings.json new file mode 100644 index 0000000..e1ac8f4 --- /dev/null +++ b/GestionBanqueApi/Properties/launchSettings.json @@ -0,0 +1,52 @@ +{ + "profiles": { + "http": { + "commandName": "Project", + "launchBrowser": true, + "launchUrl": "swagger", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "dotnetRunMessages": true, + "applicationUrl": "http://localhost:5118" + }, + "https": { + "commandName": "Project", + "launchBrowser": true, + "launchUrl": "swagger", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "dotnetRunMessages": true, + "applicationUrl": "https://localhost:7268;http://localhost:5118" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "launchUrl": "swagger", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "Container (Dockerfile)": { + "commandName": "Docker", + "launchBrowser": true, + "launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}/swagger", + "environmentVariables": { + "ASPNETCORE_HTTPS_PORTS": "8081", + "ASPNETCORE_HTTP_PORTS": "8080" + }, + "publishAllPorts": true, + "useSSL": true + } + }, + "$schema": "http://json.schemastore.org/launchsettings.json", + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:36890", + "sslPort": 44331 + } + } +} \ No newline at end of file diff --git a/GestionBanqueApi/WeatherForecast.cs b/GestionBanqueApi/WeatherForecast.cs new file mode 100644 index 0000000..0c43866 --- /dev/null +++ b/GestionBanqueApi/WeatherForecast.cs @@ -0,0 +1,13 @@ +namespace GestionBanqueApi +{ + public class WeatherForecast + { + public DateOnly Date { get; set; } + + public int TemperatureC { get; set; } + + public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); + + public string? Summary { get; set; } + } +} diff --git a/GestionBanqueApi/appsettings.Development.json b/GestionBanqueApi/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/GestionBanqueApi/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/GestionBanqueApi/appsettings.json b/GestionBanqueApi/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/GestionBanqueApi/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/GestionBanqueApi/bin/Debug/net8.0/GestionBanqueApi.deps.json b/GestionBanqueApi/bin/Debug/net8.0/GestionBanqueApi.deps.json new file mode 100644 index 0000000..5c47fdd --- /dev/null +++ b/GestionBanqueApi/bin/Debug/net8.0/GestionBanqueApi.deps.json @@ -0,0 +1,106 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "GestionBanqueApi/1.0.0": { + "dependencies": { + "Swashbuckle.AspNetCore": "6.6.2" + }, + "runtime": { + "GestionBanqueApi.dll": {} + } + }, + "Microsoft.OpenApi/1.6.14": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.6.14.0", + "fileVersion": "1.6.14.0" + } + } + }, + "Swashbuckle.AspNetCore/6.6.2": { + "dependencies": { + "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" + } + } + } + } + }, + "libraries": { + "GestionBanqueApi/1.0.0": { + "type": "project", + "serviceable": false, + "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" + }, + "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" + } + } +} \ No newline at end of file diff --git a/GestionBanqueApi/bin/Debug/net8.0/GestionBanqueApi.dll b/GestionBanqueApi/bin/Debug/net8.0/GestionBanqueApi.dll new file mode 100644 index 0000000..d105c1c Binary files /dev/null and b/GestionBanqueApi/bin/Debug/net8.0/GestionBanqueApi.dll differ diff --git a/GestionBanqueApi/bin/Debug/net8.0/GestionBanqueApi.exe b/GestionBanqueApi/bin/Debug/net8.0/GestionBanqueApi.exe new file mode 100644 index 0000000..3f233ea Binary files /dev/null and b/GestionBanqueApi/bin/Debug/net8.0/GestionBanqueApi.exe differ diff --git a/GestionBanqueApi/bin/Debug/net8.0/GestionBanqueApi.pdb b/GestionBanqueApi/bin/Debug/net8.0/GestionBanqueApi.pdb new file mode 100644 index 0000000..e8539a6 Binary files /dev/null and b/GestionBanqueApi/bin/Debug/net8.0/GestionBanqueApi.pdb differ diff --git a/GestionBanqueApi/bin/Debug/net8.0/GestionBanqueApi.runtimeconfig.json b/GestionBanqueApi/bin/Debug/net8.0/GestionBanqueApi.runtimeconfig.json new file mode 100644 index 0000000..5e604c7 --- /dev/null +++ b/GestionBanqueApi/bin/Debug/net8.0/GestionBanqueApi.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/GestionBanqueApi/bin/Debug/net8.0/GestionBanqueApi.staticwebassets.endpoints.json b/GestionBanqueApi/bin/Debug/net8.0/GestionBanqueApi.staticwebassets.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/GestionBanqueApi/bin/Debug/net8.0/GestionBanqueApi.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/GestionBanqueApi/bin/Debug/net8.0/Microsoft.OpenApi.dll b/GestionBanqueApi/bin/Debug/net8.0/Microsoft.OpenApi.dll new file mode 100644 index 0000000..aac9a6d Binary files /dev/null and b/GestionBanqueApi/bin/Debug/net8.0/Microsoft.OpenApi.dll differ diff --git a/GestionBanqueApi/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll b/GestionBanqueApi/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll new file mode 100644 index 0000000..41e2fc2 Binary files /dev/null and b/GestionBanqueApi/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll differ diff --git a/GestionBanqueApi/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll b/GestionBanqueApi/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll new file mode 100644 index 0000000..de7f45d Binary files /dev/null and b/GestionBanqueApi/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll differ diff --git a/GestionBanqueApi/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll b/GestionBanqueApi/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll new file mode 100644 index 0000000..117b9f3 Binary files /dev/null and b/GestionBanqueApi/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll differ diff --git a/GestionBanqueApi/bin/Debug/net8.0/appsettings.Development.json b/GestionBanqueApi/bin/Debug/net8.0/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/GestionBanqueApi/bin/Debug/net8.0/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/GestionBanqueApi/bin/Debug/net8.0/appsettings.json b/GestionBanqueApi/bin/Debug/net8.0/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/GestionBanqueApi/bin/Debug/net8.0/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/GestionBanqueApi/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/GestionBanqueApi/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/GestionBanqueApi/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/GestionBanqueApi/obj/Debug/net8.0/ApiEndpoints.json b/GestionBanqueApi/obj/Debug/net8.0/ApiEndpoints.json new file mode 100644 index 0000000..2f02612 --- /dev/null +++ b/GestionBanqueApi/obj/Debug/net8.0/ApiEndpoints.json @@ -0,0 +1,39 @@ +[ + { + "ContainingType": "GestionBanqueApi.Controllers.FilesToolsController", + "Method": "UploadFile", + "RelativePath": "api/FilesTools", + "HttpMethod": "POST", + "IsController": true, + "Order": 0, + "Parameters": [ + { + "Name": "csvFile", + "Type": "Microsoft.AspNetCore.Http.IFormFile", + "IsRequired": false + } + ], + "ReturnTypes": [] + }, + { + "ContainingType": "GestionBanqueApi.Controllers.WeatherForecastController", + "Method": "Get", + "RelativePath": "WeatherForecast", + "HttpMethod": "GET", + "IsController": true, + "Order": 0, + "Parameters": [], + "ReturnTypes": [ + { + "Type": "System.Collections.Generic.IEnumerable\u00601[[GestionBanqueApi.WeatherForecast, GestionBanqueApi, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]", + "MediaTypes": [ + "text/plain", + "application/json", + "text/json" + ], + "StatusCode": 200 + } + ], + "EndpointName": "GetWeatherForecast" + } +] \ No newline at end of file diff --git a/GestionBanqueApi/obj/Debug/net8.0/EndpointInfo/GestionBanqueApi.OpenApiFiles.cache b/GestionBanqueApi/obj/Debug/net8.0/EndpointInfo/GestionBanqueApi.OpenApiFiles.cache new file mode 100644 index 0000000..01747de --- /dev/null +++ b/GestionBanqueApi/obj/Debug/net8.0/EndpointInfo/GestionBanqueApi.OpenApiFiles.cache @@ -0,0 +1 @@ +GestionBanqueApi.json diff --git a/GestionBanqueApi/obj/Debug/net8.0/EndpointInfo/GestionBanqueApi.json b/GestionBanqueApi/obj/Debug/net8.0/EndpointInfo/GestionBanqueApi.json new file mode 100644 index 0000000..53f958b --- /dev/null +++ b/GestionBanqueApi/obj/Debug/net8.0/EndpointInfo/GestionBanqueApi.json @@ -0,0 +1,107 @@ +{ + "openapi": "3.0.1", + "info": { + "title": "GestionBanqueApi", + "version": "1.0" + }, + "paths": { + "/api/FilesTools": { + "post": { + "tags": [ + "FilesTools" + ], + "requestBody": { + "content": { + "multipart/form-data": { + "schema": { + "type": "object", + "properties": { + "csvFile": { + "type": "string", + "format": "binary" + } + } + }, + "encoding": { + "csvFile": { + "style": "form" + } + } + } + } + }, + "responses": { + "200": { + "description": "OK" + } + } + } + }, + "/WeatherForecast": { + "get": { + "tags": [ + "WeatherForecast" + ], + "operationId": "GetWeatherForecast", + "responses": { + "200": { + "description": "OK", + "content": { + "text/plain": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/WeatherForecast" + } + } + }, + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/WeatherForecast" + } + } + }, + "text/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/WeatherForecast" + } + } + } + } + } + } + } + } + }, + "components": { + "schemas": { + "WeatherForecast": { + "type": "object", + "properties": { + "date": { + "type": "string", + "format": "date" + }, + "temperatureC": { + "type": "integer", + "format": "int32" + }, + "temperatureF": { + "type": "integer", + "format": "int32", + "readOnly": true + }, + "summary": { + "type": "string", + "nullable": true + } + }, + "additionalProperties": false + } + } + } +} \ No newline at end of file diff --git a/GestionBanqueApi/obj/Debug/net8.0/GestionB.45AB60A1.Up2Date b/GestionBanqueApi/obj/Debug/net8.0/GestionB.45AB60A1.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.AssemblyInfo.cs b/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.AssemblyInfo.cs new file mode 100644 index 0000000..c0bc212 --- /dev/null +++ b/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.AssemblyInfo.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// 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.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute("b0a5ca43-55e4-47e5-97b0-3611311825a7")] +[assembly: System.Reflection.AssemblyCompanyAttribute("GestionBanqueApi")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("GestionBanqueApi")] +[assembly: System.Reflection.AssemblyTitleAttribute("GestionBanqueApi")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.AssemblyInfoInputs.cache b/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.AssemblyInfoInputs.cache new file mode 100644 index 0000000..af35b5e --- /dev/null +++ b/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +268e4c08632cd207085f98f4b8b9a19d7f53f05a08a00d6052d13a92847b3c80 diff --git a/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.GeneratedMSBuildEditorConfig.editorconfig b/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..cbdea82 --- /dev/null +++ b/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,24 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property.EntryPointFilePath = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = GestionBanqueApi +build_property.RootNamespace = GestionBanqueApi +build_property.ProjectDir = C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 8.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 8.0 +build_property.EnableCodeStyleSeverity = diff --git a/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.GlobalUsings.g.cs b/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.GlobalUsings.g.cs new file mode 100644 index 0000000..5e6145d --- /dev/null +++ b/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using Microsoft.AspNetCore.Builder; +global using Microsoft.AspNetCore.Hosting; +global using Microsoft.AspNetCore.Http; +global using Microsoft.AspNetCore.Routing; +global using Microsoft.Extensions.Configuration; +global using Microsoft.Extensions.DependencyInjection; +global using Microsoft.Extensions.Hosting; +global using Microsoft.Extensions.Logging; +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Net.Http.Json; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.MvcApplicationPartsAssemblyInfo.cache b/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.MvcApplicationPartsAssemblyInfo.cs b/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.MvcApplicationPartsAssemblyInfo.cs new file mode 100644 index 0000000..43d96a6 --- /dev/null +++ b/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.MvcApplicationPartsAssemblyInfo.cs @@ -0,0 +1,17 @@ +//------------------------------------------------------------------------------ +// +// 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("Swashbuckle.AspNetCore.SwaggerGen")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.assets.cache b/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.assets.cache new file mode 100644 index 0000000..0fe8d0d Binary files /dev/null and b/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.assets.cache differ diff --git a/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.csproj.AssemblyReference.cache b/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.csproj.AssemblyReference.cache new file mode 100644 index 0000000..e615f8c Binary files /dev/null and b/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.csproj.AssemblyReference.cache differ diff --git a/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.csproj.BuildWithSkipAnalyzers b/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.csproj.CoreCompileInputs.cache b/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..9a59feb --- /dev/null +++ b/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +6677cd0c74696dd6d46ff6899ea53a6e24d5535c2ac4756fcb4fd35fa7a1825e diff --git a/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.csproj.FileListAbsolute.txt b/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..fff63d8 --- /dev/null +++ b/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.csproj.FileListAbsolute.txt @@ -0,0 +1,36 @@ +C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\bin\Debug\net8.0\appsettings.Development.json +C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\bin\Debug\net8.0\appsettings.json +C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\bin\Debug\net8.0\GestionBanqueApi.staticwebassets.endpoints.json +C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\bin\Debug\net8.0\GestionBanqueApi.exe +C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\bin\Debug\net8.0\GestionBanqueApi.deps.json +C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\bin\Debug\net8.0\GestionBanqueApi.runtimeconfig.json +C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\bin\Debug\net8.0\GestionBanqueApi.dll +C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\bin\Debug\net8.0\GestionBanqueApi.pdb +C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\bin\Debug\net8.0\Microsoft.OpenApi.dll +C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\bin\Debug\net8.0\Swashbuckle.AspNetCore.Swagger.dll +C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerGen.dll +C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerUI.dll +C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\obj\Debug\net8.0\GestionBanqueApi.csproj.AssemblyReference.cache +C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\obj\Debug\net8.0\rpswa.dswa.cache.json +C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\obj\Debug\net8.0\GestionBanqueApi.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\obj\Debug\net8.0\GestionBanqueApi.AssemblyInfoInputs.cache +C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\obj\Debug\net8.0\GestionBanqueApi.AssemblyInfo.cs +C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\obj\Debug\net8.0\GestionBanqueApi.csproj.CoreCompileInputs.cache +C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\obj\Debug\net8.0\GestionBanqueApi.MvcApplicationPartsAssemblyInfo.cs +C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\obj\Debug\net8.0\GestionBanqueApi.MvcApplicationPartsAssemblyInfo.cache +C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\obj\Debug\net8.0\rjimswa.dswa.cache.json +C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\obj\Debug\net8.0\rjsmrazor.dswa.cache.json +C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\obj\Debug\net8.0\rjsmcshtml.dswa.cache.json +C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\obj\Debug\net8.0\scopedcss\bundle\GestionBanqueApi.styles.css +C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\obj\Debug\net8.0\staticwebassets.build.json +C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\obj\Debug\net8.0\staticwebassets.build.json.cache +C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\obj\Debug\net8.0\staticwebassets.development.json +C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\obj\Debug\net8.0\staticwebassets.build.endpoints.json +C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\obj\Debug\net8.0\swae.build.ex.cache +C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\obj\Debug\net8.0\staticwebassets.upToDateCheck.txt +C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\obj\Debug\net8.0\GestionB.45AB60A1.Up2Date +C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\obj\Debug\net8.0\GestionBanqueApi.dll +C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\obj\Debug\net8.0\refint\GestionBanqueApi.dll +C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\obj\Debug\net8.0\GestionBanqueApi.pdb +C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\obj\Debug\net8.0\GestionBanqueApi.genruntimeconfig.cache +C:\Users\Helri\source\repos\GestionBanqueApi\GestionBanqueApi\obj\Debug\net8.0\ref\GestionBanqueApi.dll diff --git a/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.dll b/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.dll new file mode 100644 index 0000000..d105c1c Binary files /dev/null and b/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.dll differ diff --git a/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.genruntimeconfig.cache b/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.genruntimeconfig.cache new file mode 100644 index 0000000..2b77cac --- /dev/null +++ b/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.genruntimeconfig.cache @@ -0,0 +1 @@ +6508de4fb7ad00068152b0a4963ac634dbdc6f7a2887ebe247364b8ca5ccbe73 diff --git a/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.pdb b/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.pdb new file mode 100644 index 0000000..e8539a6 Binary files /dev/null and b/GestionBanqueApi/obj/Debug/net8.0/GestionBanqueApi.pdb differ diff --git a/GestionBanqueApi/obj/Debug/net8.0/apphost.exe b/GestionBanqueApi/obj/Debug/net8.0/apphost.exe new file mode 100644 index 0000000..3f233ea Binary files /dev/null and b/GestionBanqueApi/obj/Debug/net8.0/apphost.exe differ diff --git a/GestionBanqueApi/obj/Debug/net8.0/ref/GestionBanqueApi.dll b/GestionBanqueApi/obj/Debug/net8.0/ref/GestionBanqueApi.dll new file mode 100644 index 0000000..88dbc76 Binary files /dev/null and b/GestionBanqueApi/obj/Debug/net8.0/ref/GestionBanqueApi.dll differ diff --git a/GestionBanqueApi/obj/Debug/net8.0/refint/GestionBanqueApi.dll b/GestionBanqueApi/obj/Debug/net8.0/refint/GestionBanqueApi.dll new file mode 100644 index 0000000..88dbc76 Binary files /dev/null and b/GestionBanqueApi/obj/Debug/net8.0/refint/GestionBanqueApi.dll differ diff --git a/GestionBanqueApi/obj/Debug/net8.0/rjsmcshtml.dswa.cache.json b/GestionBanqueApi/obj/Debug/net8.0/rjsmcshtml.dswa.cache.json new file mode 100644 index 0000000..283facd --- /dev/null +++ b/GestionBanqueApi/obj/Debug/net8.0/rjsmcshtml.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"ScqJ39yGAEB1CT/amJf52/5/kCOkK2W+ybmcOJtiRmU=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["DAr9uWc\u002BchnmnPR\u002BbVjd3VTpqKYQeVqm0Xi2it56\u002BWc=","Z1Gcxu2oTwNIgYVFSTpkVq5UpFg25J7WUXCcbbqu3Zk=","7aC26DR/zQvojHfatsR3OdfGZBMr9xRnOdVFacG8ShE=","wiANdxyzElsQhy4REkbLeI4YEvMbHGSDW4n1p9jCdSo=","7godGQ6k8jWcSPF79P7bKOvx02v7qgDODhs4/Wul1Ag=","GnQ72gIxQx6A3Ozp1xaQ1lTH/\u002BPjoOu8rkh7nTDjzu4=","fnuhsGkgtOZe4B/x5Al/BMvQ6jqHQhmD47pZOSA5vsU="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/GestionBanqueApi/obj/Debug/net8.0/rjsmrazor.dswa.cache.json b/GestionBanqueApi/obj/Debug/net8.0/rjsmrazor.dswa.cache.json new file mode 100644 index 0000000..1e9f67a --- /dev/null +++ b/GestionBanqueApi/obj/Debug/net8.0/rjsmrazor.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"Ky818AvidfutMf0WxDErA2/klp57c73sewYN3HaYrbw=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["DAr9uWc\u002BchnmnPR\u002BbVjd3VTpqKYQeVqm0Xi2it56\u002BWc=","Z1Gcxu2oTwNIgYVFSTpkVq5UpFg25J7WUXCcbbqu3Zk=","7aC26DR/zQvojHfatsR3OdfGZBMr9xRnOdVFacG8ShE=","wiANdxyzElsQhy4REkbLeI4YEvMbHGSDW4n1p9jCdSo=","7godGQ6k8jWcSPF79P7bKOvx02v7qgDODhs4/Wul1Ag=","GnQ72gIxQx6A3Ozp1xaQ1lTH/\u002BPjoOu8rkh7nTDjzu4=","fnuhsGkgtOZe4B/x5Al/BMvQ6jqHQhmD47pZOSA5vsU="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/GestionBanqueApi/obj/Debug/net8.0/rpswa.dswa.cache.json b/GestionBanqueApi/obj/Debug/net8.0/rpswa.dswa.cache.json new file mode 100644 index 0000000..ac60245 --- /dev/null +++ b/GestionBanqueApi/obj/Debug/net8.0/rpswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"sSNT2JDQQwzalpahsEuTxba+ThAewySYkvfH6fVfxXc=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["DAr9uWc\u002BchnmnPR\u002BbVjd3VTpqKYQeVqm0Xi2it56\u002BWc=","Z1Gcxu2oTwNIgYVFSTpkVq5UpFg25J7WUXCcbbqu3Zk="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/GestionBanqueApi/obj/Debug/net8.0/staticwebassets.build.endpoints.json b/GestionBanqueApi/obj/Debug/net8.0/staticwebassets.build.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/GestionBanqueApi/obj/Debug/net8.0/staticwebassets.build.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/GestionBanqueApi/obj/Debug/net8.0/staticwebassets.build.json b/GestionBanqueApi/obj/Debug/net8.0/staticwebassets.build.json new file mode 100644 index 0000000..0500535 --- /dev/null +++ b/GestionBanqueApi/obj/Debug/net8.0/staticwebassets.build.json @@ -0,0 +1 @@ +{"Version":1,"Hash":"+mxGZ/2/p6cHvigVDquxkfnaNCYg/Z6Lr/ksDalzVOI=","Source":"GestionBanqueApi","BasePath":"/","Mode":"Root","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[],"Assets":[],"Endpoints":[]} \ No newline at end of file diff --git a/GestionBanqueApi/obj/Debug/net8.0/staticwebassets.build.json.cache b/GestionBanqueApi/obj/Debug/net8.0/staticwebassets.build.json.cache new file mode 100644 index 0000000..9e57d68 --- /dev/null +++ b/GestionBanqueApi/obj/Debug/net8.0/staticwebassets.build.json.cache @@ -0,0 +1 @@ ++mxGZ/2/p6cHvigVDquxkfnaNCYg/Z6Lr/ksDalzVOI= \ No newline at end of file diff --git a/GestionBanqueApi/obj/Debug/net8.0/staticwebassets.references.upToDateCheck.txt b/GestionBanqueApi/obj/Debug/net8.0/staticwebassets.references.upToDateCheck.txt new file mode 100644 index 0000000..e69de29 diff --git a/GestionBanqueApi/obj/Debug/net8.0/staticwebassets.removed.txt b/GestionBanqueApi/obj/Debug/net8.0/staticwebassets.removed.txt new file mode 100644 index 0000000..e69de29 diff --git a/GestionBanqueApi/obj/Debug/net8.0/swae.build.ex.cache b/GestionBanqueApi/obj/Debug/net8.0/swae.build.ex.cache new file mode 100644 index 0000000..e69de29 diff --git a/GestionBanqueApi/obj/GestionBanqueApi.csproj.nuget.dgspec.json b/GestionBanqueApi/obj/GestionBanqueApi.csproj.nuget.dgspec.json new file mode 100644 index 0000000..29059de --- /dev/null +++ b/GestionBanqueApi/obj/GestionBanqueApi.csproj.nuget.dgspec.json @@ -0,0 +1,88 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\Helri\\source\\repos\\GestionBanqueApi\\GestionBanqueApi\\GestionBanqueApi.csproj": {} + }, + "projects": { + "C:\\Users\\Helri\\source\\repos\\GestionBanqueApi\\GestionBanqueApi\\GestionBanqueApi.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Helri\\source\\repos\\GestionBanqueApi\\GestionBanqueApi\\GestionBanqueApi.csproj", + "projectName": "GestionBanqueApi", + "projectPath": "C:\\Users\\Helri\\source\\repos\\GestionBanqueApi\\GestionBanqueApi\\GestionBanqueApi.csproj", + "packagesPath": "C:\\Users\\Helri\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Helri\\source\\repos\\GestionBanqueApi\\GestionBanqueApi\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Helri\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "framework": "net8.0", + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "10.0.300" + }, + "frameworks": { + "net8.0": { + "framework": "net8.0", + "targetAlias": "net8.0", + "dependencies": { + "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": { + "target": "Package", + "version": "[1.23.0, )" + }, + "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\\10.0.300/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/GestionBanqueApi/obj/GestionBanqueApi.csproj.nuget.g.props b/GestionBanqueApi/obj/GestionBanqueApi.csproj.nuget.g.props new file mode 100644 index 0000000..91df824 --- /dev/null +++ b/GestionBanqueApi/obj/GestionBanqueApi.csproj.nuget.g.props @@ -0,0 +1,25 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Helri\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 7.0.0 + + + + + + + + + + + + C:\Users\Helri\.nuget\packages\microsoft.extensions.apidescription.server\6.0.5 + C:\Users\Helri\.nuget\packages\microsoft.visualstudio.azure.containers.tools.targets\1.23.0 + + \ No newline at end of file diff --git a/GestionBanqueApi/obj/GestionBanqueApi.csproj.nuget.g.targets b/GestionBanqueApi/obj/GestionBanqueApi.csproj.nuget.g.targets new file mode 100644 index 0000000..b5a2344 --- /dev/null +++ b/GestionBanqueApi/obj/GestionBanqueApi.csproj.nuget.g.targets @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/GestionBanqueApi/obj/project.assets.json b/GestionBanqueApi/obj/project.assets.json new file mode 100644 index 0000000..de7c8a3 --- /dev/null +++ b/GestionBanqueApi/obj/project.assets.json @@ -0,0 +1,621 @@ +{ + "version": 4, + "targets": { + "net8.0": { + "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.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.VisualStudio.Azure.Containers.Tools.Targets/1.23.0": { + "type": "package", + "build": { + "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props": {}, + "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets": {} + } + }, + "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" + ] + } + } + }, + "libraries": { + "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.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.VisualStudio.Azure.Containers.Tools.Targets/1.23.0": { + "sha512": "2wDnb4umupJZ/1ikgWozFVpggH1mlHQFc0odXVv2ZagL3RYwXgW9zmC15fiqIBzmaC0vLZUnLGwDY+p8ZR7Syw==", + "type": "package", + "path": "microsoft.visualstudio.azure.containers.tools.targets/1.23.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "EULA.md", + "ThirdPartyNotices.txt", + "build/Container.props", + "build/Container.targets", + "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props", + "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets", + "build/Rules/GeneralBrowseObject.xaml", + "build/Rules/cs-CZ/GeneralBrowseObject.xaml", + "build/Rules/de-DE/GeneralBrowseObject.xaml", + "build/Rules/es-ES/GeneralBrowseObject.xaml", + "build/Rules/fr-FR/GeneralBrowseObject.xaml", + "build/Rules/it-IT/GeneralBrowseObject.xaml", + "build/Rules/ja-JP/GeneralBrowseObject.xaml", + "build/Rules/ko-KR/GeneralBrowseObject.xaml", + "build/Rules/pl-PL/GeneralBrowseObject.xaml", + "build/Rules/pt-BR/GeneralBrowseObject.xaml", + "build/Rules/ru-RU/GeneralBrowseObject.xaml", + "build/Rules/tr-TR/GeneralBrowseObject.xaml", + "build/Rules/zh-CN/GeneralBrowseObject.xaml", + "build/Rules/zh-TW/GeneralBrowseObject.xaml", + "build/ToolsTarget.props", + "build/ToolsTarget.targets", + "icon.png", + "microsoft.visualstudio.azure.containers.tools.targets.1.23.0.nupkg.sha512", + "microsoft.visualstudio.azure.containers.tools.targets.nuspec", + "tools/Microsoft.VisualStudio.Containers.Tools.Common.dll", + "tools/Microsoft.VisualStudio.Containers.Tools.Shared.dll", + "tools/Microsoft.VisualStudio.Containers.Tools.Tasks.dll", + "tools/Newtonsoft.Json.dll", + "tools/System.Security.Principal.Windows.dll", + "tools/cs/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/cs/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/cs/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", + "tools/de/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/de/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/de/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", + "tools/es/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/es/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/es/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", + "tools/fr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/fr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/fr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", + "tools/it/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/it/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/it/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", + "tools/ja/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/ja/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/ja/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", + "tools/ko/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/ko/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/ko/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", + "tools/pl/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/pl/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/pl/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", + "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", + "tools/ru/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/ru/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/ru/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", + "tools/tr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/tr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/tr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", + "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", + "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll" + ] + }, + "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" + ] + } + }, + "projectFileDependencyGroups": { + "net8.0": [ + "Microsoft.VisualStudio.Azure.Containers.Tools.Targets >= 1.23.0", + "Swashbuckle.AspNetCore >= 6.6.2" + ] + }, + "packageFolders": { + "C:\\Users\\Helri\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Helri\\source\\repos\\GestionBanqueApi\\GestionBanqueApi\\GestionBanqueApi.csproj", + "projectName": "GestionBanqueApi", + "projectPath": "C:\\Users\\Helri\\source\\repos\\GestionBanqueApi\\GestionBanqueApi\\GestionBanqueApi.csproj", + "packagesPath": "C:\\Users\\Helri\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Helri\\source\\repos\\GestionBanqueApi\\GestionBanqueApi\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Helri\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "framework": "net8.0", + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "10.0.300" + }, + "frameworks": { + "net8.0": { + "framework": "net8.0", + "targetAlias": "net8.0", + "dependencies": { + "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": { + "target": "Package", + "version": "[1.23.0, )" + }, + "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\\10.0.300/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/GestionBanqueApi/obj/project.nuget.cache b/GestionBanqueApi/obj/project.nuget.cache new file mode 100644 index 0000000..e7a3094 --- /dev/null +++ b/GestionBanqueApi/obj/project.nuget.cache @@ -0,0 +1,16 @@ +{ + "version": 2, + "dgSpecHash": "3z8NLj4pfUY=", + "success": true, + "projectFilePath": "C:\\Users\\Helri\\source\\repos\\GestionBanqueApi\\GestionBanqueApi\\GestionBanqueApi.csproj", + "expectedPackageFiles": [ + "C:\\Users\\Helri\\.nuget\\packages\\microsoft.extensions.apidescription.server\\6.0.5\\microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512", + "C:\\Users\\Helri\\.nuget\\packages\\microsoft.openapi\\1.6.14\\microsoft.openapi.1.6.14.nupkg.sha512", + "C:\\Users\\Helri\\.nuget\\packages\\microsoft.visualstudio.azure.containers.tools.targets\\1.23.0\\microsoft.visualstudio.azure.containers.tools.targets.1.23.0.nupkg.sha512", + "C:\\Users\\Helri\\.nuget\\packages\\swashbuckle.aspnetcore\\6.6.2\\swashbuckle.aspnetcore.6.6.2.nupkg.sha512", + "C:\\Users\\Helri\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.6.2\\swashbuckle.aspnetcore.swagger.6.6.2.nupkg.sha512", + "C:\\Users\\Helri\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.6.2\\swashbuckle.aspnetcore.swaggergen.6.6.2.nupkg.sha512", + "C:\\Users\\Helri\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.6.2\\swashbuckle.aspnetcore.swaggerui.6.6.2.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file