commit 843ef87da82fcb660dfba03b3dbcab48720db7bd Author: V1ck3s Date: Sat Sep 20 16:42:46 2025 +0200 initial commit diff --git a/octo-fiesta/Controllers/WeatherForecastController.cs b/octo-fiesta/Controllers/WeatherForecastController.cs new file mode 100644 index 0000000..fdbabd4 --- /dev/null +++ b/octo-fiesta/Controllers/WeatherForecastController.cs @@ -0,0 +1,32 @@ +using Microsoft.AspNetCore.Mvc; + +namespace octo_fiesta.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(); + } +} \ No newline at end of file diff --git a/octo-fiesta/Program.cs b/octo-fiesta/Program.cs new file mode 100644 index 0000000..db45ed1 --- /dev/null +++ b/octo-fiesta/Program.cs @@ -0,0 +1,24 @@ +var builder = WebApplication.CreateBuilder(args); + +// Add services to the container. + +builder.Services.AddControllers(); +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(); \ No newline at end of file diff --git a/octo-fiesta/Properties/launchSettings.json b/octo-fiesta/Properties/launchSettings.json new file mode 100644 index 0000000..ababe98 --- /dev/null +++ b/octo-fiesta/Properties/launchSettings.json @@ -0,0 +1,25 @@ +{ + "$schema": "https://json.schemastore.org/launchsettings.json", + "profiles": { + "http": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "launchUrl": "swagger", + "applicationUrl": "http://localhost:5274", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "https": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "launchUrl": "swagger", + "applicationUrl": "https://localhost:7248;http://localhost:5274", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/octo-fiesta/WeatherForecast.cs b/octo-fiesta/WeatherForecast.cs new file mode 100644 index 0000000..4f4442f --- /dev/null +++ b/octo-fiesta/WeatherForecast.cs @@ -0,0 +1,12 @@ +namespace octo_fiesta; + +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; } +} \ No newline at end of file diff --git a/octo-fiesta/appsettings.Development.json b/octo-fiesta/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/octo-fiesta/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/octo-fiesta/appsettings.json b/octo-fiesta/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/octo-fiesta/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/octo-fiesta/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll b/octo-fiesta/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll new file mode 100644 index 0000000..81cb94f Binary files /dev/null and b/octo-fiesta/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll differ diff --git a/octo-fiesta/bin/Debug/net9.0/Microsoft.OpenApi.dll b/octo-fiesta/bin/Debug/net9.0/Microsoft.OpenApi.dll new file mode 100644 index 0000000..6fd0d6d Binary files /dev/null and b/octo-fiesta/bin/Debug/net9.0/Microsoft.OpenApi.dll differ diff --git a/octo-fiesta/bin/Debug/net9.0/Swashbuckle.AspNetCore.Swagger.dll b/octo-fiesta/bin/Debug/net9.0/Swashbuckle.AspNetCore.Swagger.dll new file mode 100644 index 0000000..118995f Binary files /dev/null and b/octo-fiesta/bin/Debug/net9.0/Swashbuckle.AspNetCore.Swagger.dll differ diff --git a/octo-fiesta/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll b/octo-fiesta/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll new file mode 100644 index 0000000..7337679 Binary files /dev/null and b/octo-fiesta/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll differ diff --git a/octo-fiesta/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll b/octo-fiesta/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll new file mode 100644 index 0000000..9274ccf Binary files /dev/null and b/octo-fiesta/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll differ diff --git a/octo-fiesta/bin/Debug/net9.0/appsettings.Development.json b/octo-fiesta/bin/Debug/net9.0/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/octo-fiesta/bin/Debug/net9.0/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/octo-fiesta/bin/Debug/net9.0/appsettings.json b/octo-fiesta/bin/Debug/net9.0/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/octo-fiesta/bin/Debug/net9.0/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/octo-fiesta/bin/Debug/net9.0/octo-fiesta.deps.json b/octo-fiesta/bin/Debug/net9.0/octo-fiesta.deps.json new file mode 100644 index 0000000..d30a76c --- /dev/null +++ b/octo-fiesta/bin/Debug/net9.0/octo-fiesta.deps.json @@ -0,0 +1,134 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "octo-fiesta/1.0.0": { + "dependencies": { + "Microsoft.AspNetCore.OpenApi": "9.0.4", + "Swashbuckle.AspNetCore": "9.0.4" + }, + "runtime": { + "octo-fiesta.dll": {} + } + }, + "Microsoft.AspNetCore.OpenApi/9.0.4": { + "dependencies": { + "Microsoft.OpenApi": "1.6.25" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll": { + "assemblyVersion": "9.0.4.0", + "fileVersion": "9.0.425.16403" + } + } + }, + "Microsoft.Extensions.ApiDescription.Server/9.0.0": {}, + "Microsoft.OpenApi/1.6.25": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.6.25.0", + "fileVersion": "1.6.25.0" + } + } + }, + "Swashbuckle.AspNetCore/9.0.4": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "9.0.0", + "Swashbuckle.AspNetCore.Swagger": "9.0.4", + "Swashbuckle.AspNetCore.SwaggerGen": "9.0.4", + "Swashbuckle.AspNetCore.SwaggerUI": "9.0.4" + } + }, + "Swashbuckle.AspNetCore.Swagger/9.0.4": { + "dependencies": { + "Microsoft.OpenApi": "1.6.25" + }, + "runtime": { + "lib/net9.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "9.0.4.0", + "fileVersion": "9.0.4.1727" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/9.0.4": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "9.0.4" + }, + "runtime": { + "lib/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "9.0.4.0", + "fileVersion": "9.0.4.1727" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/9.0.4": { + "runtime": { + "lib/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "9.0.4.0", + "fileVersion": "9.0.4.1727" + } + } + } + } + }, + "libraries": { + "octo-fiesta/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.OpenApi/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GfZWPbZz1aAtEO3wGCkpeyRc0gzr/+VRHnUgY/YjqVPDlHbeKWCXw3IxKarQdo9myC2O1QBf652Mo50QqbXYRg==", + "path": "microsoft.aspnetcore.openapi/9.0.4", + "hashPath": "microsoft.aspnetcore.openapi.9.0.4.nupkg.sha512" + }, + "Microsoft.Extensions.ApiDescription.Server/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Kzzf7pRey40VaUkHN9/uWxrKVkLu2AQjt+GVeeKLLpiEHAJ1xZRsLSh4ZZYEnyS7Kt2OBOPmsXNdU+wbcOl5w==", + "path": "microsoft.extensions.apidescription.server/9.0.0", + "hashPath": "microsoft.extensions.apidescription.server.9.0.0.nupkg.sha512" + }, + "Microsoft.OpenApi/1.6.25": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZahSqNGtNV7N0JBYS/IYXPkLVexL/AZFxo6pqxv6A7Uli7Q7zfitNjkaqIcsV73Ukzxi4IlJdyDgcQiMXiH8cw==", + "path": "microsoft.openapi/1.6.25", + "hashPath": "microsoft.openapi.1.6.25.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4hghaogMoS87Ivjj8s7aGuGsxrsjXZpjNvahLsN+zSLrZQcV8zQyiBweBd9AXC1sGkeNYb9/hbeS1EXrZ/hKjQ==", + "path": "swashbuckle.aspnetcore/9.0.4", + "hashPath": "swashbuckle.aspnetcore.9.0.4.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-syU8U4Eg3DfhU+BBeDUh66erwDsYOhp82InXbrOsqWP3qoOfQbBtePcTetkLNanovYHYX40alZBE6gQQFtBZkQ==", + "path": "swashbuckle.aspnetcore.swagger/9.0.4", + "hashPath": "swashbuckle.aspnetcore.swagger.9.0.4.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GnCikaq7kagEckGGsrVnKl2icRQebyr14/7s3T/rQQO7edOIXkxtjTOJZqbazOxaTXBDCDdSInMiYbMQhFnE5Q==", + "path": "swashbuckle.aspnetcore.swaggergen/9.0.4", + "hashPath": "swashbuckle.aspnetcore.swaggergen.9.0.4.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2ugT2OvZsKHqk/2rMDmuqDuFmtix0NvzlXxAfnfHROVMTovbx7Z0UsOQHZa462DBTgdBFnR2Ss6wm4fypfymdA==", + "path": "swashbuckle.aspnetcore.swaggerui/9.0.4", + "hashPath": "swashbuckle.aspnetcore.swaggerui.9.0.4.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/octo-fiesta/bin/Debug/net9.0/octo-fiesta.dll b/octo-fiesta/bin/Debug/net9.0/octo-fiesta.dll new file mode 100644 index 0000000..9b9995b Binary files /dev/null and b/octo-fiesta/bin/Debug/net9.0/octo-fiesta.dll differ diff --git a/octo-fiesta/bin/Debug/net9.0/octo-fiesta.exe b/octo-fiesta/bin/Debug/net9.0/octo-fiesta.exe new file mode 100644 index 0000000..55a8f6a Binary files /dev/null and b/octo-fiesta/bin/Debug/net9.0/octo-fiesta.exe differ diff --git a/octo-fiesta/bin/Debug/net9.0/octo-fiesta.pdb b/octo-fiesta/bin/Debug/net9.0/octo-fiesta.pdb new file mode 100644 index 0000000..067719f Binary files /dev/null and b/octo-fiesta/bin/Debug/net9.0/octo-fiesta.pdb differ diff --git a/octo-fiesta/bin/Debug/net9.0/octo-fiesta.runtimeconfig.json b/octo-fiesta/bin/Debug/net9.0/octo-fiesta.runtimeconfig.json new file mode 100644 index 0000000..6925b65 --- /dev/null +++ b/octo-fiesta/bin/Debug/net9.0/octo-fiesta.runtimeconfig.json @@ -0,0 +1,19 @@ +{ + "runtimeOptions": { + "tfm": "net9.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "9.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "9.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/octo-fiesta/bin/Debug/net9.0/octo-fiesta.staticwebassets.endpoints.json b/octo-fiesta/bin/Debug/net9.0/octo-fiesta.staticwebassets.endpoints.json new file mode 100644 index 0000000..2b6c535 --- /dev/null +++ b/octo-fiesta/bin/Debug/net9.0/octo-fiesta.staticwebassets.endpoints.json @@ -0,0 +1,5 @@ +{ + "Version": 1, + "ManifestType": "Build", + "Endpoints": [] +} \ No newline at end of file diff --git a/octo-fiesta/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/octo-fiesta/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs new file mode 100644 index 0000000..feda5e9 --- /dev/null +++ b/octo-fiesta/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")] diff --git a/octo-fiesta/obj/Debug/net9.0/apphost.exe b/octo-fiesta/obj/Debug/net9.0/apphost.exe new file mode 100644 index 0000000..55a8f6a Binary files /dev/null and b/octo-fiesta/obj/Debug/net9.0/apphost.exe differ diff --git a/octo-fiesta/obj/Debug/net9.0/octo-fie.510670EC.Up2Date b/octo-fiesta/obj/Debug/net9.0/octo-fie.510670EC.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/octo-fiesta/obj/Debug/net9.0/octo-fiesta.AssemblyInfo.cs b/octo-fiesta/obj/Debug/net9.0/octo-fiesta.AssemblyInfo.cs new file mode 100644 index 0000000..41e51ac --- /dev/null +++ b/octo-fiesta/obj/Debug/net9.0/octo-fiesta.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("octo-fiesta")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("octo-fiesta")] +[assembly: System.Reflection.AssemblyTitleAttribute("octo-fiesta")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Généré par la classe MSBuild WriteCodeFragment. + diff --git a/octo-fiesta/obj/Debug/net9.0/octo-fiesta.AssemblyInfoInputs.cache b/octo-fiesta/obj/Debug/net9.0/octo-fiesta.AssemblyInfoInputs.cache new file mode 100644 index 0000000..4318c30 --- /dev/null +++ b/octo-fiesta/obj/Debug/net9.0/octo-fiesta.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +ce5341d486a29e205999496dd85836454c006be724ac60f1110cd43fd4179831 diff --git a/octo-fiesta/obj/Debug/net9.0/octo-fiesta.GeneratedMSBuildEditorConfig.editorconfig b/octo-fiesta/obj/Debug/net9.0/octo-fiesta.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..135ba5a --- /dev/null +++ b/octo-fiesta/obj/Debug/net9.0/octo-fiesta.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,21 @@ +is_global = true +build_property.TargetFramework = net9.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 = octo_fiesta +build_property.RootNamespace = octo_fiesta +build_property.ProjectDir = C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = diff --git a/octo-fiesta/obj/Debug/net9.0/octo-fiesta.GlobalUsings.g.cs b/octo-fiesta/obj/Debug/net9.0/octo-fiesta.GlobalUsings.g.cs new file mode 100644 index 0000000..025530a --- /dev/null +++ b/octo-fiesta/obj/Debug/net9.0/octo-fiesta.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/octo-fiesta/obj/Debug/net9.0/octo-fiesta.MvcApplicationPartsAssemblyInfo.cache b/octo-fiesta/obj/Debug/net9.0/octo-fiesta.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/octo-fiesta/obj/Debug/net9.0/octo-fiesta.MvcApplicationPartsAssemblyInfo.cs b/octo-fiesta/obj/Debug/net9.0/octo-fiesta.MvcApplicationPartsAssemblyInfo.cs new file mode 100644 index 0000000..cc2455e --- /dev/null +++ b/octo-fiesta/obj/Debug/net9.0/octo-fiesta.MvcApplicationPartsAssemblyInfo.cs @@ -0,0 +1,17 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.OpenApi")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] + +// Généré par la classe MSBuild WriteCodeFragment. + diff --git a/octo-fiesta/obj/Debug/net9.0/octo-fiesta.assets.cache b/octo-fiesta/obj/Debug/net9.0/octo-fiesta.assets.cache new file mode 100644 index 0000000..78cccaf Binary files /dev/null and b/octo-fiesta/obj/Debug/net9.0/octo-fiesta.assets.cache differ diff --git a/octo-fiesta/obj/Debug/net9.0/octo-fiesta.csproj.AssemblyReference.cache b/octo-fiesta/obj/Debug/net9.0/octo-fiesta.csproj.AssemblyReference.cache new file mode 100644 index 0000000..9d3e716 Binary files /dev/null and b/octo-fiesta/obj/Debug/net9.0/octo-fiesta.csproj.AssemblyReference.cache differ diff --git a/octo-fiesta/obj/Debug/net9.0/octo-fiesta.csproj.CoreCompileInputs.cache b/octo-fiesta/obj/Debug/net9.0/octo-fiesta.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..0d88c57 --- /dev/null +++ b/octo-fiesta/obj/Debug/net9.0/octo-fiesta.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +df0e321daaad39f2b562f556658aafb1804176a8758cfc1f3e5f3773b6d1eaef diff --git a/octo-fiesta/obj/Debug/net9.0/octo-fiesta.csproj.FileListAbsolute.txt b/octo-fiesta/obj/Debug/net9.0/octo-fiesta.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..d1ac2dc --- /dev/null +++ b/octo-fiesta/obj/Debug/net9.0/octo-fiesta.csproj.FileListAbsolute.txt @@ -0,0 +1,36 @@ +C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\bin\Debug\net9.0\appsettings.Development.json +C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\bin\Debug\net9.0\appsettings.json +C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\bin\Debug\net9.0\octo-fiesta.staticwebassets.endpoints.json +C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\bin\Debug\net9.0\octo-fiesta.exe +C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\bin\Debug\net9.0\octo-fiesta.deps.json +C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\bin\Debug\net9.0\octo-fiesta.runtimeconfig.json +C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\bin\Debug\net9.0\octo-fiesta.dll +C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\bin\Debug\net9.0\octo-fiesta.pdb +C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\bin\Debug\net9.0\Microsoft.AspNetCore.OpenApi.dll +C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\bin\Debug\net9.0\Microsoft.OpenApi.dll +C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\obj\Debug\net9.0\octo-fiesta.csproj.AssemblyReference.cache +C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\obj\Debug\net9.0\octo-fiesta.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\obj\Debug\net9.0\octo-fiesta.AssemblyInfoInputs.cache +C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\obj\Debug\net9.0\octo-fiesta.AssemblyInfo.cs +C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\obj\Debug\net9.0\octo-fiesta.csproj.CoreCompileInputs.cache +C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\obj\Debug\net9.0\octo-fiesta.MvcApplicationPartsAssemblyInfo.cs +C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\obj\Debug\net9.0\octo-fiesta.MvcApplicationPartsAssemblyInfo.cache +C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\obj\Debug\net9.0\scopedcss\bundle\octo-fiesta.styles.css +C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\obj\Debug\net9.0\staticwebassets.build.json +C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\obj\Debug\net9.0\staticwebassets.development.json +C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\obj\Debug\net9.0\staticwebassets.build.endpoints.json +C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\obj\Debug\net9.0\staticwebassets\msbuild.octo-fiesta.Microsoft.AspNetCore.StaticWebAssets.props +C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\obj\Debug\net9.0\staticwebassets\msbuild.octo-fiesta.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\obj\Debug\net9.0\staticwebassets\msbuild.build.octo-fiesta.props +C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\obj\Debug\net9.0\staticwebassets\msbuild.buildMultiTargeting.octo-fiesta.props +C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\obj\Debug\net9.0\staticwebassets\msbuild.buildTransitive.octo-fiesta.props +C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\obj\Debug\net9.0\staticwebassets.pack.json +C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\obj\Debug\net9.0\octo-fie.510670EC.Up2Date +C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\obj\Debug\net9.0\octo-fiesta.dll +C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\obj\Debug\net9.0\refint\octo-fiesta.dll +C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\obj\Debug\net9.0\octo-fiesta.pdb +C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\obj\Debug\net9.0\octo-fiesta.genruntimeconfig.cache +C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\obj\Debug\net9.0\ref\octo-fiesta.dll +C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\bin\Debug\net9.0\Swashbuckle.AspNetCore.Swagger.dll +C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\bin\Debug\net9.0\Swashbuckle.AspNetCore.SwaggerGen.dll +C:\Users\Victor\Documents\projects\octo-fiesta\octo-fiesta\bin\Debug\net9.0\Swashbuckle.AspNetCore.SwaggerUI.dll diff --git a/octo-fiesta/obj/Debug/net9.0/octo-fiesta.dll b/octo-fiesta/obj/Debug/net9.0/octo-fiesta.dll new file mode 100644 index 0000000..9b9995b Binary files /dev/null and b/octo-fiesta/obj/Debug/net9.0/octo-fiesta.dll differ diff --git a/octo-fiesta/obj/Debug/net9.0/octo-fiesta.genruntimeconfig.cache b/octo-fiesta/obj/Debug/net9.0/octo-fiesta.genruntimeconfig.cache new file mode 100644 index 0000000..9d102db --- /dev/null +++ b/octo-fiesta/obj/Debug/net9.0/octo-fiesta.genruntimeconfig.cache @@ -0,0 +1 @@ +80efe50815896e89402658160845d980946fa08c1f429c9ace3f2f9f143e3b64 diff --git a/octo-fiesta/obj/Debug/net9.0/octo-fiesta.pdb b/octo-fiesta/obj/Debug/net9.0/octo-fiesta.pdb new file mode 100644 index 0000000..067719f Binary files /dev/null and b/octo-fiesta/obj/Debug/net9.0/octo-fiesta.pdb differ diff --git a/octo-fiesta/obj/Debug/net9.0/ref/octo-fiesta.dll b/octo-fiesta/obj/Debug/net9.0/ref/octo-fiesta.dll new file mode 100644 index 0000000..0121079 Binary files /dev/null and b/octo-fiesta/obj/Debug/net9.0/ref/octo-fiesta.dll differ diff --git a/octo-fiesta/obj/Debug/net9.0/refint/octo-fiesta.dll b/octo-fiesta/obj/Debug/net9.0/refint/octo-fiesta.dll new file mode 100644 index 0000000..0121079 Binary files /dev/null and b/octo-fiesta/obj/Debug/net9.0/refint/octo-fiesta.dll differ diff --git a/octo-fiesta/obj/Debug/net9.0/staticwebassets.build.endpoints.json b/octo-fiesta/obj/Debug/net9.0/staticwebassets.build.endpoints.json new file mode 100644 index 0000000..2b6c535 --- /dev/null +++ b/octo-fiesta/obj/Debug/net9.0/staticwebassets.build.endpoints.json @@ -0,0 +1,5 @@ +{ + "Version": 1, + "ManifestType": "Build", + "Endpoints": [] +} \ No newline at end of file diff --git a/octo-fiesta/obj/Debug/net9.0/staticwebassets.build.json b/octo-fiesta/obj/Debug/net9.0/staticwebassets.build.json new file mode 100644 index 0000000..0bae3ee --- /dev/null +++ b/octo-fiesta/obj/Debug/net9.0/staticwebassets.build.json @@ -0,0 +1,12 @@ +{ + "Version": 1, + "Hash": "R69aFV2g96Dko1xR2uMlRQ/KG4ubPk7t1dVWHtQjSqo=", + "Source": "octo-fiesta", + "BasePath": "_content/octo-fiesta", + "Mode": "Default", + "ManifestType": "Build", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [], + "Assets": [], + "Endpoints": [] +} \ No newline at end of file diff --git a/octo-fiesta/obj/Debug/net9.0/staticwebassets/msbuild.build.octo-fiesta.props b/octo-fiesta/obj/Debug/net9.0/staticwebassets/msbuild.build.octo-fiesta.props new file mode 100644 index 0000000..ddaed44 --- /dev/null +++ b/octo-fiesta/obj/Debug/net9.0/staticwebassets/msbuild.build.octo-fiesta.props @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/octo-fiesta/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.octo-fiesta.props b/octo-fiesta/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.octo-fiesta.props new file mode 100644 index 0000000..9db89ef --- /dev/null +++ b/octo-fiesta/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.octo-fiesta.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/octo-fiesta/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.octo-fiesta.props b/octo-fiesta/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.octo-fiesta.props new file mode 100644 index 0000000..2ff04db --- /dev/null +++ b/octo-fiesta/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.octo-fiesta.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/octo-fiesta/obj/octo-fiesta.csproj.nuget.dgspec.json b/octo-fiesta/obj/octo-fiesta.csproj.nuget.dgspec.json new file mode 100644 index 0000000..b6a3b62 --- /dev/null +++ b/octo-fiesta/obj/octo-fiesta.csproj.nuget.dgspec.json @@ -0,0 +1,81 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\Victor\\Documents\\projects\\octo-fiesta\\octo-fiesta\\octo-fiesta.csproj": {} + }, + "projects": { + "C:\\Users\\Victor\\Documents\\projects\\octo-fiesta\\octo-fiesta\\octo-fiesta.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Victor\\Documents\\projects\\octo-fiesta\\octo-fiesta\\octo-fiesta.csproj", + "projectName": "octo-fiesta", + "projectPath": "C:\\Users\\Victor\\Documents\\projects\\octo-fiesta\\octo-fiesta\\octo-fiesta.csproj", + "packagesPath": "C:\\Users\\Victor\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Victor\\Documents\\projects\\octo-fiesta\\octo-fiesta\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\Victor\\AppData\\Roaming\\NuGet\\NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.200" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "Microsoft.AspNetCore.OpenApi": { + "target": "Package", + "version": "[9.0.4, )" + }, + "Swashbuckle.AspNetCore": { + "target": "Package", + "version": "[9.0.4, )" + } + }, + "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\\9.0.203/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/octo-fiesta/obj/octo-fiesta.csproj.nuget.g.props b/octo-fiesta/obj/octo-fiesta.csproj.nuget.g.props new file mode 100644 index 0000000..ebce5c1 --- /dev/null +++ b/octo-fiesta/obj/octo-fiesta.csproj.nuget.g.props @@ -0,0 +1,22 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Victor\.nuget\packages\ + PackageReference + 6.14.0 + + + + + + + + + + C:\Users\Victor\.nuget\packages\microsoft.extensions.apidescription.server\9.0.0 + + \ No newline at end of file diff --git a/octo-fiesta/obj/octo-fiesta.csproj.nuget.g.targets b/octo-fiesta/obj/octo-fiesta.csproj.nuget.g.targets new file mode 100644 index 0000000..3e01208 --- /dev/null +++ b/octo-fiesta/obj/octo-fiesta.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/octo-fiesta/obj/project.assets.json b/octo-fiesta/obj/project.assets.json new file mode 100644 index 0000000..b1fa043 --- /dev/null +++ b/octo-fiesta/obj/project.assets.json @@ -0,0 +1,556 @@ +{ + "version": 3, + "targets": { + "net9.0": { + "Microsoft.AspNetCore.OpenApi/9.0.4": { + "type": "package", + "dependencies": { + "Microsoft.OpenApi": "1.6.17" + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.Extensions.ApiDescription.Server/9.0.0": { + "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.25": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + } + }, + "Swashbuckle.AspNetCore/9.0.4": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "9.0.0", + "Swashbuckle.AspNetCore.Swagger": "9.0.4", + "Swashbuckle.AspNetCore.SwaggerGen": "9.0.4", + "Swashbuckle.AspNetCore.SwaggerUI": "9.0.4" + }, + "build": { + "build/Swashbuckle.AspNetCore.props": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Swashbuckle.AspNetCore.props": {} + } + }, + "Swashbuckle.AspNetCore.Swagger/9.0.4": { + "type": "package", + "dependencies": { + "Microsoft.OpenApi": "1.6.25" + }, + "compile": { + "lib/net9.0/Swashbuckle.AspNetCore.Swagger.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Swashbuckle.AspNetCore.Swagger.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Swashbuckle.AspNetCore.SwaggerGen/9.0.4": { + "type": "package", + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "9.0.4" + }, + "compile": { + "lib/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "related": ".pdb;.xml" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/9.0.4": { + "type": "package", + "compile": { + "lib/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + } + } + }, + "libraries": { + "Microsoft.AspNetCore.OpenApi/9.0.4": { + "sha512": "GfZWPbZz1aAtEO3wGCkpeyRc0gzr/+VRHnUgY/YjqVPDlHbeKWCXw3IxKarQdo9myC2O1QBf652Mo50QqbXYRg==", + "type": "package", + "path": "microsoft.aspnetcore.openapi/9.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll", + "lib/net9.0/Microsoft.AspNetCore.OpenApi.xml", + "microsoft.aspnetcore.openapi.9.0.4.nupkg.sha512", + "microsoft.aspnetcore.openapi.nuspec" + ] + }, + "Microsoft.Extensions.ApiDescription.Server/9.0.0": { + "sha512": "1Kzzf7pRey40VaUkHN9/uWxrKVkLu2AQjt+GVeeKLLpiEHAJ1xZRsLSh4ZZYEnyS7Kt2OBOPmsXNdU+wbcOl5w==", + "type": "package", + "path": "microsoft.extensions.apidescription.server/9.0.0", + "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.9.0.0.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/net462-x86/GetDocument.Insider.exe", + "tools/net462-x86/GetDocument.Insider.exe.config", + "tools/net462-x86/Microsoft.OpenApi.dll", + "tools/net462-x86/Microsoft.Win32.Primitives.dll", + "tools/net462-x86/System.AppContext.dll", + "tools/net462-x86/System.Buffers.dll", + "tools/net462-x86/System.Collections.Concurrent.dll", + "tools/net462-x86/System.Collections.NonGeneric.dll", + "tools/net462-x86/System.Collections.Specialized.dll", + "tools/net462-x86/System.Collections.dll", + "tools/net462-x86/System.ComponentModel.EventBasedAsync.dll", + "tools/net462-x86/System.ComponentModel.Primitives.dll", + "tools/net462-x86/System.ComponentModel.TypeConverter.dll", + "tools/net462-x86/System.ComponentModel.dll", + "tools/net462-x86/System.Console.dll", + "tools/net462-x86/System.Data.Common.dll", + "tools/net462-x86/System.Diagnostics.Contracts.dll", + "tools/net462-x86/System.Diagnostics.Debug.dll", + "tools/net462-x86/System.Diagnostics.DiagnosticSource.dll", + "tools/net462-x86/System.Diagnostics.FileVersionInfo.dll", + "tools/net462-x86/System.Diagnostics.Process.dll", + "tools/net462-x86/System.Diagnostics.StackTrace.dll", + "tools/net462-x86/System.Diagnostics.TextWriterTraceListener.dll", + "tools/net462-x86/System.Diagnostics.Tools.dll", + "tools/net462-x86/System.Diagnostics.TraceSource.dll", + "tools/net462-x86/System.Diagnostics.Tracing.dll", + "tools/net462-x86/System.Drawing.Primitives.dll", + "tools/net462-x86/System.Dynamic.Runtime.dll", + "tools/net462-x86/System.Globalization.Calendars.dll", + "tools/net462-x86/System.Globalization.Extensions.dll", + "tools/net462-x86/System.Globalization.dll", + "tools/net462-x86/System.IO.Compression.ZipFile.dll", + "tools/net462-x86/System.IO.Compression.dll", + "tools/net462-x86/System.IO.FileSystem.DriveInfo.dll", + "tools/net462-x86/System.IO.FileSystem.Primitives.dll", + "tools/net462-x86/System.IO.FileSystem.Watcher.dll", + "tools/net462-x86/System.IO.FileSystem.dll", + "tools/net462-x86/System.IO.IsolatedStorage.dll", + "tools/net462-x86/System.IO.MemoryMappedFiles.dll", + "tools/net462-x86/System.IO.Pipes.dll", + "tools/net462-x86/System.IO.UnmanagedMemoryStream.dll", + "tools/net462-x86/System.IO.dll", + "tools/net462-x86/System.Linq.Expressions.dll", + "tools/net462-x86/System.Linq.Parallel.dll", + "tools/net462-x86/System.Linq.Queryable.dll", + "tools/net462-x86/System.Linq.dll", + "tools/net462-x86/System.Memory.dll", + "tools/net462-x86/System.Net.Http.dll", + "tools/net462-x86/System.Net.NameResolution.dll", + "tools/net462-x86/System.Net.NetworkInformation.dll", + "tools/net462-x86/System.Net.Ping.dll", + "tools/net462-x86/System.Net.Primitives.dll", + "tools/net462-x86/System.Net.Requests.dll", + "tools/net462-x86/System.Net.Security.dll", + "tools/net462-x86/System.Net.Sockets.dll", + "tools/net462-x86/System.Net.WebHeaderCollection.dll", + "tools/net462-x86/System.Net.WebSockets.Client.dll", + "tools/net462-x86/System.Net.WebSockets.dll", + "tools/net462-x86/System.Numerics.Vectors.dll", + "tools/net462-x86/System.ObjectModel.dll", + "tools/net462-x86/System.Reflection.Extensions.dll", + "tools/net462-x86/System.Reflection.Primitives.dll", + "tools/net462-x86/System.Reflection.dll", + "tools/net462-x86/System.Resources.Reader.dll", + "tools/net462-x86/System.Resources.ResourceManager.dll", + "tools/net462-x86/System.Resources.Writer.dll", + "tools/net462-x86/System.Runtime.CompilerServices.Unsafe.dll", + "tools/net462-x86/System.Runtime.CompilerServices.VisualC.dll", + "tools/net462-x86/System.Runtime.Extensions.dll", + "tools/net462-x86/System.Runtime.Handles.dll", + "tools/net462-x86/System.Runtime.InteropServices.RuntimeInformation.dll", + "tools/net462-x86/System.Runtime.InteropServices.dll", + "tools/net462-x86/System.Runtime.Numerics.dll", + "tools/net462-x86/System.Runtime.Serialization.Formatters.dll", + "tools/net462-x86/System.Runtime.Serialization.Json.dll", + "tools/net462-x86/System.Runtime.Serialization.Primitives.dll", + "tools/net462-x86/System.Runtime.Serialization.Xml.dll", + "tools/net462-x86/System.Runtime.dll", + "tools/net462-x86/System.Security.Claims.dll", + "tools/net462-x86/System.Security.Cryptography.Algorithms.dll", + "tools/net462-x86/System.Security.Cryptography.Csp.dll", + "tools/net462-x86/System.Security.Cryptography.Encoding.dll", + "tools/net462-x86/System.Security.Cryptography.Primitives.dll", + "tools/net462-x86/System.Security.Cryptography.X509Certificates.dll", + "tools/net462-x86/System.Security.Principal.dll", + "tools/net462-x86/System.Security.SecureString.dll", + "tools/net462-x86/System.Text.Encoding.Extensions.dll", + "tools/net462-x86/System.Text.Encoding.dll", + "tools/net462-x86/System.Text.RegularExpressions.dll", + "tools/net462-x86/System.Threading.Overlapped.dll", + "tools/net462-x86/System.Threading.Tasks.Parallel.dll", + "tools/net462-x86/System.Threading.Tasks.dll", + "tools/net462-x86/System.Threading.Thread.dll", + "tools/net462-x86/System.Threading.ThreadPool.dll", + "tools/net462-x86/System.Threading.Timer.dll", + "tools/net462-x86/System.Threading.dll", + "tools/net462-x86/System.ValueTuple.dll", + "tools/net462-x86/System.Xml.ReaderWriter.dll", + "tools/net462-x86/System.Xml.XDocument.dll", + "tools/net462-x86/System.Xml.XPath.XDocument.dll", + "tools/net462-x86/System.Xml.XPath.dll", + "tools/net462-x86/System.Xml.XmlDocument.dll", + "tools/net462-x86/System.Xml.XmlSerializer.dll", + "tools/net462-x86/netstandard.dll", + "tools/net462/GetDocument.Insider.exe", + "tools/net462/GetDocument.Insider.exe.config", + "tools/net462/Microsoft.OpenApi.dll", + "tools/net462/Microsoft.Win32.Primitives.dll", + "tools/net462/System.AppContext.dll", + "tools/net462/System.Buffers.dll", + "tools/net462/System.Collections.Concurrent.dll", + "tools/net462/System.Collections.NonGeneric.dll", + "tools/net462/System.Collections.Specialized.dll", + "tools/net462/System.Collections.dll", + "tools/net462/System.ComponentModel.EventBasedAsync.dll", + "tools/net462/System.ComponentModel.Primitives.dll", + "tools/net462/System.ComponentModel.TypeConverter.dll", + "tools/net462/System.ComponentModel.dll", + "tools/net462/System.Console.dll", + "tools/net462/System.Data.Common.dll", + "tools/net462/System.Diagnostics.Contracts.dll", + "tools/net462/System.Diagnostics.Debug.dll", + "tools/net462/System.Diagnostics.DiagnosticSource.dll", + "tools/net462/System.Diagnostics.FileVersionInfo.dll", + "tools/net462/System.Diagnostics.Process.dll", + "tools/net462/System.Diagnostics.StackTrace.dll", + "tools/net462/System.Diagnostics.TextWriterTraceListener.dll", + "tools/net462/System.Diagnostics.Tools.dll", + "tools/net462/System.Diagnostics.TraceSource.dll", + "tools/net462/System.Diagnostics.Tracing.dll", + "tools/net462/System.Drawing.Primitives.dll", + "tools/net462/System.Dynamic.Runtime.dll", + "tools/net462/System.Globalization.Calendars.dll", + "tools/net462/System.Globalization.Extensions.dll", + "tools/net462/System.Globalization.dll", + "tools/net462/System.IO.Compression.ZipFile.dll", + "tools/net462/System.IO.Compression.dll", + "tools/net462/System.IO.FileSystem.DriveInfo.dll", + "tools/net462/System.IO.FileSystem.Primitives.dll", + "tools/net462/System.IO.FileSystem.Watcher.dll", + "tools/net462/System.IO.FileSystem.dll", + "tools/net462/System.IO.IsolatedStorage.dll", + "tools/net462/System.IO.MemoryMappedFiles.dll", + "tools/net462/System.IO.Pipes.dll", + "tools/net462/System.IO.UnmanagedMemoryStream.dll", + "tools/net462/System.IO.dll", + "tools/net462/System.Linq.Expressions.dll", + "tools/net462/System.Linq.Parallel.dll", + "tools/net462/System.Linq.Queryable.dll", + "tools/net462/System.Linq.dll", + "tools/net462/System.Memory.dll", + "tools/net462/System.Net.Http.dll", + "tools/net462/System.Net.NameResolution.dll", + "tools/net462/System.Net.NetworkInformation.dll", + "tools/net462/System.Net.Ping.dll", + "tools/net462/System.Net.Primitives.dll", + "tools/net462/System.Net.Requests.dll", + "tools/net462/System.Net.Security.dll", + "tools/net462/System.Net.Sockets.dll", + "tools/net462/System.Net.WebHeaderCollection.dll", + "tools/net462/System.Net.WebSockets.Client.dll", + "tools/net462/System.Net.WebSockets.dll", + "tools/net462/System.Numerics.Vectors.dll", + "tools/net462/System.ObjectModel.dll", + "tools/net462/System.Reflection.Extensions.dll", + "tools/net462/System.Reflection.Primitives.dll", + "tools/net462/System.Reflection.dll", + "tools/net462/System.Resources.Reader.dll", + "tools/net462/System.Resources.ResourceManager.dll", + "tools/net462/System.Resources.Writer.dll", + "tools/net462/System.Runtime.CompilerServices.Unsafe.dll", + "tools/net462/System.Runtime.CompilerServices.VisualC.dll", + "tools/net462/System.Runtime.Extensions.dll", + "tools/net462/System.Runtime.Handles.dll", + "tools/net462/System.Runtime.InteropServices.RuntimeInformation.dll", + "tools/net462/System.Runtime.InteropServices.dll", + "tools/net462/System.Runtime.Numerics.dll", + "tools/net462/System.Runtime.Serialization.Formatters.dll", + "tools/net462/System.Runtime.Serialization.Json.dll", + "tools/net462/System.Runtime.Serialization.Primitives.dll", + "tools/net462/System.Runtime.Serialization.Xml.dll", + "tools/net462/System.Runtime.dll", + "tools/net462/System.Security.Claims.dll", + "tools/net462/System.Security.Cryptography.Algorithms.dll", + "tools/net462/System.Security.Cryptography.Csp.dll", + "tools/net462/System.Security.Cryptography.Encoding.dll", + "tools/net462/System.Security.Cryptography.Primitives.dll", + "tools/net462/System.Security.Cryptography.X509Certificates.dll", + "tools/net462/System.Security.Principal.dll", + "tools/net462/System.Security.SecureString.dll", + "tools/net462/System.Text.Encoding.Extensions.dll", + "tools/net462/System.Text.Encoding.dll", + "tools/net462/System.Text.RegularExpressions.dll", + "tools/net462/System.Threading.Overlapped.dll", + "tools/net462/System.Threading.Tasks.Parallel.dll", + "tools/net462/System.Threading.Tasks.dll", + "tools/net462/System.Threading.Thread.dll", + "tools/net462/System.Threading.ThreadPool.dll", + "tools/net462/System.Threading.Timer.dll", + "tools/net462/System.Threading.dll", + "tools/net462/System.ValueTuple.dll", + "tools/net462/System.Xml.ReaderWriter.dll", + "tools/net462/System.Xml.XDocument.dll", + "tools/net462/System.Xml.XPath.XDocument.dll", + "tools/net462/System.Xml.XPath.dll", + "tools/net462/System.Xml.XmlDocument.dll", + "tools/net462/System.Xml.XmlSerializer.dll", + "tools/net462/netstandard.dll", + "tools/net9.0/GetDocument.Insider.deps.json", + "tools/net9.0/GetDocument.Insider.dll", + "tools/net9.0/GetDocument.Insider.exe", + "tools/net9.0/GetDocument.Insider.runtimeconfig.json", + "tools/net9.0/Microsoft.AspNetCore.Connections.Abstractions.dll", + "tools/net9.0/Microsoft.AspNetCore.Connections.Abstractions.xml", + "tools/net9.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll", + "tools/net9.0/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml", + "tools/net9.0/Microsoft.AspNetCore.Http.Features.dll", + "tools/net9.0/Microsoft.AspNetCore.Http.Features.xml", + "tools/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "tools/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "tools/net9.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "tools/net9.0/Microsoft.Extensions.Features.dll", + "tools/net9.0/Microsoft.Extensions.Features.xml", + "tools/net9.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "tools/net9.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "tools/net9.0/Microsoft.Extensions.Logging.Abstractions.dll", + "tools/net9.0/Microsoft.Extensions.Options.dll", + "tools/net9.0/Microsoft.Extensions.Primitives.dll", + "tools/net9.0/Microsoft.Net.Http.Headers.dll", + "tools/net9.0/Microsoft.Net.Http.Headers.xml", + "tools/net9.0/Microsoft.OpenApi.dll", + "tools/netcoreapp2.1/GetDocument.Insider.deps.json", + "tools/netcoreapp2.1/GetDocument.Insider.dll", + "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json", + "tools/netcoreapp2.1/Microsoft.OpenApi.dll", + "tools/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll" + ] + }, + "Microsoft.OpenApi/1.6.25": { + "sha512": "ZahSqNGtNV7N0JBYS/IYXPkLVexL/AZFxo6pqxv6A7Uli7Q7zfitNjkaqIcsV73Ukzxi4IlJdyDgcQiMXiH8cw==", + "type": "package", + "path": "microsoft.openapi/1.6.25", + "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.25.nupkg.sha512", + "microsoft.openapi.nuspec" + ] + }, + "Swashbuckle.AspNetCore/9.0.4": { + "sha512": "4hghaogMoS87Ivjj8s7aGuGsxrsjXZpjNvahLsN+zSLrZQcV8zQyiBweBd9AXC1sGkeNYb9/hbeS1EXrZ/hKjQ==", + "type": "package", + "path": "swashbuckle.aspnetcore/9.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Swashbuckle.AspNetCore.props", + "buildMultiTargeting/Swashbuckle.AspNetCore.props", + "docs/package-readme.md", + "swashbuckle.aspnetcore.9.0.4.nupkg.sha512", + "swashbuckle.aspnetcore.nuspec" + ] + }, + "Swashbuckle.AspNetCore.Swagger/9.0.4": { + "sha512": "syU8U4Eg3DfhU+BBeDUh66erwDsYOhp82InXbrOsqWP3qoOfQbBtePcTetkLNanovYHYX40alZBE6gQQFtBZkQ==", + "type": "package", + "path": "swashbuckle.aspnetcore.swagger/9.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net8.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/net8.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/net8.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/net9.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/net9.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/net9.0/Swashbuckle.AspNetCore.Swagger.xml", + "package-readme.md", + "swashbuckle.aspnetcore.swagger.9.0.4.nupkg.sha512", + "swashbuckle.aspnetcore.swagger.nuspec" + ] + }, + "Swashbuckle.AspNetCore.SwaggerGen/9.0.4": { + "sha512": "GnCikaq7kagEckGGsrVnKl2icRQebyr14/7s3T/rQQO7edOIXkxtjTOJZqbazOxaTXBDCDdSInMiYbMQhFnE5Q==", + "type": "package", + "path": "swashbuckle.aspnetcore.swaggergen/9.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/net8.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/net9.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/net9.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "package-readme.md", + "swashbuckle.aspnetcore.swaggergen.9.0.4.nupkg.sha512", + "swashbuckle.aspnetcore.swaggergen.nuspec" + ] + }, + "Swashbuckle.AspNetCore.SwaggerUI/9.0.4": { + "sha512": "2ugT2OvZsKHqk/2rMDmuqDuFmtix0NvzlXxAfnfHROVMTovbx7Z0UsOQHZa462DBTgdBFnR2Ss6wm4fypfymdA==", + "type": "package", + "path": "swashbuckle.aspnetcore.swaggerui/9.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/net8.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/net9.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/net9.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "package-readme.md", + "swashbuckle.aspnetcore.swaggerui.9.0.4.nupkg.sha512", + "swashbuckle.aspnetcore.swaggerui.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "net9.0": [ + "Microsoft.AspNetCore.OpenApi >= 9.0.4", + "Swashbuckle.AspNetCore >= 9.0.4" + ] + }, + "packageFolders": { + "C:\\Users\\Victor\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\Victor\\Documents\\projects\\octo-fiesta\\octo-fiesta\\octo-fiesta.csproj", + "projectName": "octo-fiesta", + "projectPath": "C:\\Users\\Victor\\Documents\\projects\\octo-fiesta\\octo-fiesta\\octo-fiesta.csproj", + "packagesPath": "C:\\Users\\Victor\\.nuget\\packages\\", + "outputPath": "C:\\Users\\Victor\\Documents\\projects\\octo-fiesta\\octo-fiesta\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\Victor\\AppData\\Roaming\\NuGet\\NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.200" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "Microsoft.AspNetCore.OpenApi": { + "target": "Package", + "version": "[9.0.4, )" + }, + "Swashbuckle.AspNetCore": { + "target": "Package", + "version": "[9.0.4, )" + } + }, + "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\\9.0.203/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/octo-fiesta/obj/project.nuget.cache b/octo-fiesta/obj/project.nuget.cache new file mode 100644 index 0000000..72a2696 --- /dev/null +++ b/octo-fiesta/obj/project.nuget.cache @@ -0,0 +1,16 @@ +{ + "version": 2, + "dgSpecHash": "HpRD5uaxHU4=", + "success": true, + "projectFilePath": "C:\\Users\\Victor\\Documents\\projects\\octo-fiesta\\octo-fiesta\\octo-fiesta.csproj", + "expectedPackageFiles": [ + "C:\\Users\\Victor\\.nuget\\packages\\microsoft.aspnetcore.openapi\\9.0.4\\microsoft.aspnetcore.openapi.9.0.4.nupkg.sha512", + "C:\\Users\\Victor\\.nuget\\packages\\microsoft.extensions.apidescription.server\\9.0.0\\microsoft.extensions.apidescription.server.9.0.0.nupkg.sha512", + "C:\\Users\\Victor\\.nuget\\packages\\microsoft.openapi\\1.6.25\\microsoft.openapi.1.6.25.nupkg.sha512", + "C:\\Users\\Victor\\.nuget\\packages\\swashbuckle.aspnetcore\\9.0.4\\swashbuckle.aspnetcore.9.0.4.nupkg.sha512", + "C:\\Users\\Victor\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\9.0.4\\swashbuckle.aspnetcore.swagger.9.0.4.nupkg.sha512", + "C:\\Users\\Victor\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\9.0.4\\swashbuckle.aspnetcore.swaggergen.9.0.4.nupkg.sha512", + "C:\\Users\\Victor\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\9.0.4\\swashbuckle.aspnetcore.swaggerui.9.0.4.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/octo-fiesta/obj/project.packagespec.json b/octo-fiesta/obj/project.packagespec.json new file mode 100644 index 0000000..4383bd8 --- /dev/null +++ b/octo-fiesta/obj/project.packagespec.json @@ -0,0 +1 @@ +"restore":{"projectUniqueName":"C:\\Users\\Victor\\Documents\\projects\\octo-fiesta\\octo-fiesta\\octo-fiesta.csproj","projectName":"octo-fiesta","projectPath":"C:\\Users\\Victor\\Documents\\projects\\octo-fiesta\\octo-fiesta\\octo-fiesta.csproj","outputPath":"C:\\Users\\Victor\\Documents\\projects\\octo-fiesta\\octo-fiesta\\obj\\","projectStyle":"PackageReference","originalTargetFrameworks":["net9.0"],"sources":{"C:\\Program Files\\dotnet\\library-packs":{},"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net9.0":{"targetAlias":"net9.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"},"SdkAnalysisLevel":"9.0.200"}"frameworks":{"net9.0":{"targetAlias":"net9.0","dependencies":{"Microsoft.AspNetCore.OpenApi":{"target":"Package","version":"[9.0.4, )"},"Swashbuckle.AspNetCore":{"target":"Package","version":"[9.0.4, )"}},"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\\9.0.203/PortableRuntimeIdentifierGraph.json"}} \ No newline at end of file diff --git a/octo-fiesta/obj/rider.project.model.nuget.info b/octo-fiesta/obj/rider.project.model.nuget.info new file mode 100644 index 0000000..e18e8cf --- /dev/null +++ b/octo-fiesta/obj/rider.project.model.nuget.info @@ -0,0 +1 @@ +17583786952894334 \ No newline at end of file diff --git a/octo-fiesta/obj/rider.project.restore.info b/octo-fiesta/obj/rider.project.restore.info new file mode 100644 index 0000000..616acd0 --- /dev/null +++ b/octo-fiesta/obj/rider.project.restore.info @@ -0,0 +1 @@ +17583786961960178 \ No newline at end of file diff --git a/octo-fiesta/octo-fiesta.csproj b/octo-fiesta/octo-fiesta.csproj new file mode 100644 index 0000000..8986156 --- /dev/null +++ b/octo-fiesta/octo-fiesta.csproj @@ -0,0 +1,15 @@ + + + + net9.0 + enable + enable + octo_fiesta + + + + + + + + diff --git a/octo-fiesta/octo-fiesta.http b/octo-fiesta/octo-fiesta.http new file mode 100644 index 0000000..2af47a5 --- /dev/null +++ b/octo-fiesta/octo-fiesta.http @@ -0,0 +1,6 @@ +@octo_fiesta_HostAddress = http://localhost:5274 + +GET {{octo_fiesta_HostAddress}}/weatherforecast/ +Accept: application/json + +###