mirror of
https://github.com/SoPat712/allstarr.git
synced 2026-02-09 23:55:10 -05:00
initial commit
This commit is contained in:
32
octo-fiesta/Controllers/WeatherForecastController.cs
Normal file
32
octo-fiesta/Controllers/WeatherForecastController.cs
Normal file
@@ -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<WeatherForecastController> _logger;
|
||||
|
||||
public WeatherForecastController(ILogger<WeatherForecastController> logger)
|
||||
{
|
||||
_logger = logger;
|
||||
}
|
||||
|
||||
[HttpGet(Name = "GetWeatherForecast")]
|
||||
public IEnumerable<WeatherForecast> 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();
|
||||
}
|
||||
}
|
||||
24
octo-fiesta/Program.cs
Normal file
24
octo-fiesta/Program.cs
Normal file
@@ -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();
|
||||
25
octo-fiesta/Properties/launchSettings.json
Normal file
25
octo-fiesta/Properties/launchSettings.json
Normal file
@@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
12
octo-fiesta/WeatherForecast.cs
Normal file
12
octo-fiesta/WeatherForecast.cs
Normal file
@@ -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; }
|
||||
}
|
||||
8
octo-fiesta/appsettings.Development.json
Normal file
8
octo-fiesta/appsettings.Development.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
}
|
||||
}
|
||||
9
octo-fiesta/appsettings.json
Normal file
9
octo-fiesta/appsettings.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*"
|
||||
}
|
||||
BIN
octo-fiesta/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll
Normal file
BIN
octo-fiesta/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll
Normal file
Binary file not shown.
BIN
octo-fiesta/bin/Debug/net9.0/Microsoft.OpenApi.dll
Normal file
BIN
octo-fiesta/bin/Debug/net9.0/Microsoft.OpenApi.dll
Normal file
Binary file not shown.
BIN
octo-fiesta/bin/Debug/net9.0/Swashbuckle.AspNetCore.Swagger.dll
Normal file
BIN
octo-fiesta/bin/Debug/net9.0/Swashbuckle.AspNetCore.Swagger.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
}
|
||||
}
|
||||
9
octo-fiesta/bin/Debug/net9.0/appsettings.json
Normal file
9
octo-fiesta/bin/Debug/net9.0/appsettings.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"Logging": {
|
||||
"LogLevel": {
|
||||
"Default": "Information",
|
||||
"Microsoft.AspNetCore": "Warning"
|
||||
}
|
||||
},
|
||||
"AllowedHosts": "*"
|
||||
}
|
||||
134
octo-fiesta/bin/Debug/net9.0/octo-fiesta.deps.json
Normal file
134
octo-fiesta/bin/Debug/net9.0/octo-fiesta.deps.json
Normal file
@@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
octo-fiesta/bin/Debug/net9.0/octo-fiesta.dll
Normal file
BIN
octo-fiesta/bin/Debug/net9.0/octo-fiesta.dll
Normal file
Binary file not shown.
BIN
octo-fiesta/bin/Debug/net9.0/octo-fiesta.exe
Normal file
BIN
octo-fiesta/bin/Debug/net9.0/octo-fiesta.exe
Normal file
Binary file not shown.
BIN
octo-fiesta/bin/Debug/net9.0/octo-fiesta.pdb
Normal file
BIN
octo-fiesta/bin/Debug/net9.0/octo-fiesta.pdb
Normal file
Binary file not shown.
19
octo-fiesta/bin/Debug/net9.0/octo-fiesta.runtimeconfig.json
Normal file
19
octo-fiesta/bin/Debug/net9.0/octo-fiesta.runtimeconfig.json
Normal file
@@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"ManifestType": "Build",
|
||||
"Endpoints": []
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")]
|
||||
BIN
octo-fiesta/obj/Debug/net9.0/apphost.exe
Normal file
BIN
octo-fiesta/obj/Debug/net9.0/apphost.exe
Normal file
Binary file not shown.
22
octo-fiesta/obj/Debug/net9.0/octo-fiesta.AssemblyInfo.cs
Normal file
22
octo-fiesta/obj/Debug/net9.0/octo-fiesta.AssemblyInfo.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
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.
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
ce5341d486a29e205999496dd85836454c006be724ac60f1110cd43fd4179831
|
||||
@@ -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 =
|
||||
17
octo-fiesta/obj/Debug/net9.0/octo-fiesta.GlobalUsings.g.cs
Normal file
17
octo-fiesta/obj/Debug/net9.0/octo-fiesta.GlobalUsings.g.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
// <auto-generated/>
|
||||
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;
|
||||
@@ -0,0 +1,17 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
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.
|
||||
|
||||
BIN
octo-fiesta/obj/Debug/net9.0/octo-fiesta.assets.cache
Normal file
BIN
octo-fiesta/obj/Debug/net9.0/octo-fiesta.assets.cache
Normal file
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
df0e321daaad39f2b562f556658aafb1804176a8758cfc1f3e5f3773b6d1eaef
|
||||
@@ -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
|
||||
BIN
octo-fiesta/obj/Debug/net9.0/octo-fiesta.dll
Normal file
BIN
octo-fiesta/obj/Debug/net9.0/octo-fiesta.dll
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
||||
80efe50815896e89402658160845d980946fa08c1f429c9ace3f2f9f143e3b64
|
||||
BIN
octo-fiesta/obj/Debug/net9.0/octo-fiesta.pdb
Normal file
BIN
octo-fiesta/obj/Debug/net9.0/octo-fiesta.pdb
Normal file
Binary file not shown.
BIN
octo-fiesta/obj/Debug/net9.0/ref/octo-fiesta.dll
Normal file
BIN
octo-fiesta/obj/Debug/net9.0/ref/octo-fiesta.dll
Normal file
Binary file not shown.
BIN
octo-fiesta/obj/Debug/net9.0/refint/octo-fiesta.dll
Normal file
BIN
octo-fiesta/obj/Debug/net9.0/refint/octo-fiesta.dll
Normal file
Binary file not shown.
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"ManifestType": "Build",
|
||||
"Endpoints": []
|
||||
}
|
||||
12
octo-fiesta/obj/Debug/net9.0/staticwebassets.build.json
Normal file
12
octo-fiesta/obj/Debug/net9.0/staticwebassets.build.json
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"Version": 1,
|
||||
"Hash": "R69aFV2g96Dko1xR2uMlRQ/KG4ubPk7t1dVWHtQjSqo=",
|
||||
"Source": "octo-fiesta",
|
||||
"BasePath": "_content/octo-fiesta",
|
||||
"Mode": "Default",
|
||||
"ManifestType": "Build",
|
||||
"ReferencedProjectsConfiguration": [],
|
||||
"DiscoveryPatterns": [],
|
||||
"Assets": [],
|
||||
"Endpoints": []
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
<Project>
|
||||
<Import Project="Microsoft.AspNetCore.StaticWebAssetEndpoints.props" />
|
||||
<Import Project="Microsoft.AspNetCore.StaticWebAssets.props" />
|
||||
</Project>
|
||||
@@ -0,0 +1,3 @@
|
||||
<Project>
|
||||
<Import Project="..\build\octo-fiesta.props" />
|
||||
</Project>
|
||||
@@ -0,0 +1,3 @@
|
||||
<Project>
|
||||
<Import Project="..\buildMultiTargeting\octo-fiesta.props" />
|
||||
</Project>
|
||||
81
octo-fiesta/obj/octo-fiesta.csproj.nuget.dgspec.json
Normal file
81
octo-fiesta/obj/octo-fiesta.csproj.nuget.dgspec.json
Normal file
@@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
22
octo-fiesta/obj/octo-fiesta.csproj.nuget.g.props
Normal file
22
octo-fiesta/obj/octo-fiesta.csproj.nuget.g.props
Normal file
@@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Victor\.nuget\packages\</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.14.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\Victor\.nuget\packages\" />
|
||||
</ItemGroup>
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.apidescription.server\9.0.0\build\Microsoft.Extensions.ApiDescription.Server.props" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.apidescription.server\9.0.0\build\Microsoft.Extensions.ApiDescription.Server.props')" />
|
||||
<Import Project="$(NuGetPackageRoot)swashbuckle.aspnetcore\9.0.4\build\Swashbuckle.AspNetCore.props" Condition="Exists('$(NuGetPackageRoot)swashbuckle.aspnetcore\9.0.4\build\Swashbuckle.AspNetCore.props')" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<PkgMicrosoft_Extensions_ApiDescription_Server Condition=" '$(PkgMicrosoft_Extensions_ApiDescription_Server)' == '' ">C:\Users\Victor\.nuget\packages\microsoft.extensions.apidescription.server\9.0.0</PkgMicrosoft_Extensions_ApiDescription_Server>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
6
octo-fiesta/obj/octo-fiesta.csproj.nuget.g.targets
Normal file
6
octo-fiesta/obj/octo-fiesta.csproj.nuget.g.targets
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.apidescription.server\9.0.0\build\Microsoft.Extensions.ApiDescription.Server.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.apidescription.server\9.0.0\build\Microsoft.Extensions.ApiDescription.Server.targets')" />
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
556
octo-fiesta/obj/project.assets.json
Normal file
556
octo-fiesta/obj/project.assets.json
Normal file
@@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
16
octo-fiesta/obj/project.nuget.cache
Normal file
16
octo-fiesta/obj/project.nuget.cache
Normal file
@@ -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": []
|
||||
}
|
||||
1
octo-fiesta/obj/project.packagespec.json
Normal file
1
octo-fiesta/obj/project.packagespec.json
Normal file
@@ -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"}}
|
||||
1
octo-fiesta/obj/rider.project.model.nuget.info
Normal file
1
octo-fiesta/obj/rider.project.model.nuget.info
Normal file
@@ -0,0 +1 @@
|
||||
17583786952894334
|
||||
1
octo-fiesta/obj/rider.project.restore.info
Normal file
1
octo-fiesta/obj/rider.project.restore.info
Normal file
@@ -0,0 +1 @@
|
||||
17583786961960178
|
||||
15
octo-fiesta/octo-fiesta.csproj
Normal file
15
octo-fiesta/octo-fiesta.csproj
Normal file
@@ -0,0 +1,15 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net9.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<RootNamespace>octo_fiesta</RootNamespace>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.4" />
|
||||
<PackageReference Include="Swashbuckle.AspNetCore" Version="9.0.4" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
6
octo-fiesta/octo-fiesta.http
Normal file
6
octo-fiesta/octo-fiesta.http
Normal file
@@ -0,0 +1,6 @@
|
||||
@octo_fiesta_HostAddress = http://localhost:5274
|
||||
|
||||
GET {{octo_fiesta_HostAddress}}/weatherforecast/
|
||||
Accept: application/json
|
||||
|
||||
###
|
||||
Reference in New Issue
Block a user