commit 60a4b4bfb4eff4ff7a667e829eb3842f072a748a Author: 威勝 張 Date: Sun Jan 19 09:50:17 2025 +0800 UP diff --git a/TCM_API/.dockerignore b/TCM_API/.dockerignore new file mode 100644 index 0000000..fe1152b --- /dev/null +++ b/TCM_API/.dockerignore @@ -0,0 +1,30 @@ +**/.classpath +**/.dockerignore +**/.env +**/.git +**/.gitignore +**/.project +**/.settings +**/.toolstarget +**/.vs +**/.vscode +**/*.*proj.user +**/*.dbmdl +**/*.jfm +**/azds.yaml +**/bin +**/charts +**/docker-compose* +**/Dockerfile* +**/node_modules +**/npm-debug.log +**/obj +**/secrets.dev.yaml +**/values.dev.yaml +LICENSE +README.md +!**/.gitignore +!.git/HEAD +!.git/config +!.git/packed-refs +!.git/refs/heads/** \ No newline at end of file diff --git a/TCM_API/TCM_API.sln b/TCM_API/TCM_API.sln new file mode 100644 index 0000000..6003c44 --- /dev/null +++ b/TCM_API/TCM_API.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.9.34728.123 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TCM_API", "TCM_API\TCM_API.csproj", "{DB530787-F8A3-40D7-833F-0A7A9940E52C}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {DB530787-F8A3-40D7-833F-0A7A9940E52C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DB530787-F8A3-40D7-833F-0A7A9940E52C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DB530787-F8A3-40D7-833F-0A7A9940E52C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DB530787-F8A3-40D7-833F-0A7A9940E52C}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {76FA0356-8019-4761-B625-C7E084F29225} + EndGlobalSection +EndGlobal diff --git a/TCM_API/TCM_API/Controllers/WeatherForecastController.cs b/TCM_API/TCM_API/Controllers/WeatherForecastController.cs new file mode 100644 index 0000000..3c28625 --- /dev/null +++ b/TCM_API/TCM_API/Controllers/WeatherForecastController.cs @@ -0,0 +1,33 @@ +using Microsoft.AspNetCore.Mvc; + +namespace TCM_API.Controllers +{ + [ApiController] + [Route("[controller]")] + public class WeatherForecastController : ControllerBase + { + private static readonly string[] Summaries = new[] + { + "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" + }; + + private readonly ILogger _logger; + + public WeatherForecastController(ILogger logger) + { + _logger = logger; + } + + [HttpGet(Name = "GetWeatherForecast")] + public IEnumerable Get() + { + return Enumerable.Range(1, 5).Select(index => new WeatherForecast + { + Date = DateOnly.FromDateTime(DateTime.Now.AddDays(index)), + TemperatureC = Random.Shared.Next(-20, 55), + Summary = Summaries[Random.Shared.Next(Summaries.Length)] + }) + .ToArray(); + } + } +} diff --git a/TCM_API/TCM_API/Dockerfile b/TCM_API/TCM_API/Dockerfile new file mode 100644 index 0000000..e4d04ab --- /dev/null +++ b/TCM_API/TCM_API/Dockerfile @@ -0,0 +1,25 @@ +#See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging. + +FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base +USER app +WORKDIR /app +EXPOSE 8080 +EXPOSE 8081 + +FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build +ARG BUILD_CONFIGURATION=Release +WORKDIR /src +COPY ["TCM_API/TCM_API.csproj", "TCM_API/"] +RUN dotnet restore "./TCM_API/TCM_API.csproj" +COPY . . +WORKDIR "/src/TCM_API" +RUN dotnet build "./TCM_API.csproj" -c $BUILD_CONFIGURATION -o /app/build + +FROM build AS publish +ARG BUILD_CONFIGURATION=Release +RUN dotnet publish "./TCM_API.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false + +FROM base AS final +WORKDIR /app +COPY --from=publish /app/publish . +ENTRYPOINT ["dotnet", "TCM_API.dll"] \ No newline at end of file diff --git a/TCM_API/TCM_API/Program.cs b/TCM_API/TCM_API/Program.cs new file mode 100644 index 0000000..48863a6 --- /dev/null +++ b/TCM_API/TCM_API/Program.cs @@ -0,0 +1,25 @@ +var builder = WebApplication.CreateBuilder(args); + +// Add services to the container. + +builder.Services.AddControllers(); +// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle +builder.Services.AddEndpointsApiExplorer(); +builder.Services.AddSwaggerGen(); + +var app = builder.Build(); + +// Configure the HTTP request pipeline. +if (app.Environment.IsDevelopment()) +{ + app.UseSwagger(); + app.UseSwaggerUI(); +} + +app.UseHttpsRedirection(); + +app.UseAuthorization(); + +app.MapControllers(); + +app.Run(); diff --git a/TCM_API/TCM_API/Properties/launchSettings.json b/TCM_API/TCM_API/Properties/launchSettings.json new file mode 100644 index 0000000..f40ede0 --- /dev/null +++ b/TCM_API/TCM_API/Properties/launchSettings.json @@ -0,0 +1,52 @@ +{ + "profiles": { + "http": { + "commandName": "Project", + "launchBrowser": true, + "launchUrl": "swagger", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "dotnetRunMessages": true, + "applicationUrl": "http://localhost:5291" + }, + "https": { + "commandName": "Project", + "launchBrowser": true, + "launchUrl": "swagger", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "dotnetRunMessages": true, + "applicationUrl": "https://localhost:7226;http://localhost:5291" + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "launchUrl": "swagger", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "Container (Dockerfile)": { + "commandName": "Docker", + "launchBrowser": true, + "launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}/swagger", + "environmentVariables": { + "ASPNETCORE_HTTPS_PORTS": "8081", + "ASPNETCORE_HTTP_PORTS": "8080" + }, + "publishAllPorts": true, + "useSSL": true + } + }, + "$schema": "http://json.schemastore.org/launchsettings.json", + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:9106", + "sslPort": 44325 + } + } +} \ No newline at end of file diff --git a/TCM_API/TCM_API/TCM_API.csproj b/TCM_API/TCM_API/TCM_API.csproj new file mode 100644 index 0000000..5b63163 --- /dev/null +++ b/TCM_API/TCM_API/TCM_API.csproj @@ -0,0 +1,16 @@ + + + + net8.0 + enable + enable + 6b0f798d-70cd-4d60-b552-6e6488f58399 + Linux + + + + + + + + diff --git a/TCM_API/TCM_API/TCM_API.csproj.user b/TCM_API/TCM_API/TCM_API.csproj.user new file mode 100644 index 0000000..983ecfc --- /dev/null +++ b/TCM_API/TCM_API/TCM_API.csproj.user @@ -0,0 +1,9 @@ + + + + http + + + ProjectDebugger + + \ No newline at end of file diff --git a/TCM_API/TCM_API/TCM_API.http b/TCM_API/TCM_API/TCM_API.http new file mode 100644 index 0000000..37ee123 --- /dev/null +++ b/TCM_API/TCM_API/TCM_API.http @@ -0,0 +1,6 @@ +@TCM_API_HostAddress = http://localhost:5291 + +GET {{TCM_API_HostAddress}}/weatherforecast/ +Accept: application/json + +### diff --git a/TCM_API/TCM_API/WeatherForecast.cs b/TCM_API/TCM_API/WeatherForecast.cs new file mode 100644 index 0000000..efb0d12 --- /dev/null +++ b/TCM_API/TCM_API/WeatherForecast.cs @@ -0,0 +1,13 @@ +namespace TCM_API +{ + public class WeatherForecast + { + public DateOnly Date { get; set; } + + public int TemperatureC { get; set; } + + public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); + + public string? Summary { get; set; } + } +} diff --git a/TCM_API/TCM_API/appsettings.Development.json b/TCM_API/TCM_API/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/TCM_API/TCM_API/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/TCM_API/TCM_API/appsettings.json b/TCM_API/TCM_API/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/TCM_API/TCM_API/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.OpenApi.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.OpenApi.dll new file mode 100644 index 0000000..14f3ded Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.OpenApi.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll new file mode 100644 index 0000000..e9b8cf7 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll new file mode 100644 index 0000000..68e38a2 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll new file mode 100644 index 0000000..9c52aed Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/TCM_API.deps.json b/TCM_API/TCM_API/bin/Debug/net8.0/TCM_API.deps.json new file mode 100644 index 0000000..9873371 --- /dev/null +++ b/TCM_API/TCM_API/bin/Debug/net8.0/TCM_API.deps.json @@ -0,0 +1,124 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "TCM_API/1.0.0": { + "dependencies": { + "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": "1.19.6", + "Swashbuckle.AspNetCore": "6.4.0" + }, + "runtime": { + "TCM_API.dll": {} + } + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": {}, + "Microsoft.OpenApi/1.2.3": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.2.3.0", + "fileVersion": "1.2.3.0" + } + } + }, + "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.19.6": {}, + "Swashbuckle.AspNetCore/6.4.0": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "6.0.5", + "Swashbuckle.AspNetCore.Swagger": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerGen": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerUI": "6.4.0" + } + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.4.0" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + } + } + }, + "libraries": { + "TCM_API/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==", + "path": "microsoft.extensions.apidescription.server/6.0.5", + "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512" + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "path": "microsoft.openapi/1.2.3", + "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" + }, + "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.19.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7GOQdMzQcH7o/bPFL/I2kQEgMnq2pYZ+exhGb9nNqs624K9w2jB2zieh4sOH9+a01i/G9iTWfeUI3IGMF7SKNg==", + "path": "microsoft.visualstudio.azure.containers.tools.targets/1.19.6", + "hashPath": "microsoft.visualstudio.azure.containers.tools.targets.1.19.6.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eUBr4TW0up6oKDA5Xwkul289uqSMgY0xGN4pnbOIBqCcN9VKGGaPvHX3vWaG/hvocfGDP+MGzMA0bBBKz2fkmQ==", + "path": "swashbuckle.aspnetcore/6.4.0", + "hashPath": "swashbuckle.aspnetcore.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nl4SBgGM+cmthUcpwO/w1lUjevdDHAqRvfUoe4Xp/Uvuzt9mzGUwyFCqa3ODBAcZYBiFoKvrYwz0rabslJvSmQ==", + "path": "swashbuckle.aspnetcore.swagger/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lXhcUBVqKrPFAQF7e/ZeDfb5PMgE8n5t6L5B6/BQSpiwxgHzmBcx8Msu42zLYFTvR5PIqE9Q9lZvSQAcwCxJjw==", + "path": "swashbuckle.aspnetcore.swaggergen/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Hh3atb3pi8c+v7n4/3N80Jj8RvLOXgWxzix6w3OZhB7zBGRwsy7FWr4e3hwgPweSBpwfElqj4V4nkjYabH9nQ==", + "path": "swashbuckle.aspnetcore.swaggerui/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/TCM_API.dll b/TCM_API/TCM_API/bin/Debug/net8.0/TCM_API.dll new file mode 100644 index 0000000..ea65fc0 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/TCM_API.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/TCM_API.exe b/TCM_API/TCM_API/bin/Debug/net8.0/TCM_API.exe new file mode 100644 index 0000000..dd47893 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/TCM_API.exe differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/TCM_API.pdb b/TCM_API/TCM_API/bin/Debug/net8.0/TCM_API.pdb new file mode 100644 index 0000000..00fccf9 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/TCM_API.pdb differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/TCM_API.runtimeconfig.json b/TCM_API/TCM_API/bin/Debug/net8.0/TCM_API.runtimeconfig.json new file mode 100644 index 0000000..5e604c7 --- /dev/null +++ b/TCM_API/TCM_API/bin/Debug/net8.0/TCM_API.runtimeconfig.json @@ -0,0 +1,19 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "8.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/appsettings.Development.json b/TCM_API/TCM_API/bin/Debug/net8.0/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/TCM_API/TCM_API/bin/Debug/net8.0/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/appsettings.json b/TCM_API/TCM_API/bin/Debug/net8.0/appsettings.json new file mode 100644 index 0000000..10f68b8 --- /dev/null +++ b/TCM_API/TCM_API/bin/Debug/net8.0/appsettings.json @@ -0,0 +1,9 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/TCM_API/TCM_API/obj/Container/ContainerDevelopmentMode.cache b/TCM_API/TCM_API/obj/Container/ContainerDevelopmentMode.cache new file mode 100644 index 0000000..e69de29 diff --git a/TCM_API/TCM_API/obj/Container/ContainerId.cache b/TCM_API/TCM_API/obj/Container/ContainerId.cache new file mode 100644 index 0000000..e69de29 diff --git a/TCM_API/TCM_API/obj/Container/ContainerName.cache b/TCM_API/TCM_API/obj/Container/ContainerName.cache new file mode 100644 index 0000000..e69de29 diff --git a/TCM_API/TCM_API/obj/Container/ContainerRunContext.cache b/TCM_API/TCM_API/obj/Container/ContainerRunContext.cache new file mode 100644 index 0000000..e69de29 diff --git a/TCM_API/TCM_API/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/TCM_API/TCM_API/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/TCM_API/TCM_API/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.AssemblyInfo.cs b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.AssemblyInfo.cs new file mode 100644 index 0000000..d04e277 --- /dev/null +++ b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.AssemblyInfo.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// 這段程式碼是由工具產生的。 +// 執行階段版本:4.0.30319.42000 +// +// 對這個檔案所做的變更可能會造成錯誤的行為,而且如果重新產生程式碼, +// 變更將會遺失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute("6b0f798d-70cd-4d60-b552-6e6488f58399")] +[assembly: System.Reflection.AssemblyCompanyAttribute("TCM_API")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("TCM_API")] +[assembly: System.Reflection.AssemblyTitleAttribute("TCM_API")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 類別產生。 + diff --git a/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.AssemblyInfoInputs.cache b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.AssemblyInfoInputs.cache new file mode 100644 index 0000000..2674ca3 --- /dev/null +++ b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +027734028a5e98fff43de3e3a5bb09604a9a47e6066729a96750565c8228e7e1 diff --git a/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.GeneratedMSBuildEditorConfig.editorconfig b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..2a1f90d --- /dev/null +++ b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,19 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = TCM_API +build_property.RootNamespace = TCM_API +build_property.ProjectDir = D:\Code\Project\TCM\Backend\TCM_API\TCM_API\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 8.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = D:\Code\Project\TCM\Backend\TCM_API\TCM_API +build_property._RazorSourceGeneratorDebug = diff --git a/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.GlobalUsings.g.cs b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.GlobalUsings.g.cs new file mode 100644 index 0000000..025530a --- /dev/null +++ b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.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/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.MvcApplicationPartsAssemblyInfo.cache b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.MvcApplicationPartsAssemblyInfo.cs b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.MvcApplicationPartsAssemblyInfo.cs new file mode 100644 index 0000000..d1ab61a --- /dev/null +++ b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.MvcApplicationPartsAssemblyInfo.cs @@ -0,0 +1,17 @@ +//------------------------------------------------------------------------------ +// +// 這段程式碼是由工具產生的。 +// 執行階段版本:4.0.30319.42000 +// +// 對這個檔案所做的變更可能會造成錯誤的行為,而且如果重新產生程式碼, +// 變更將會遺失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] + +// 由 MSBuild WriteCodeFragment 類別產生。 + diff --git a/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.assets.cache b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.assets.cache new file mode 100644 index 0000000..56423ae Binary files /dev/null and b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.assets.cache differ diff --git a/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.csproj.AssemblyReference.cache b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.csproj.AssemblyReference.cache new file mode 100644 index 0000000..5c76e1d Binary files /dev/null and b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.csproj.AssemblyReference.cache differ diff --git a/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.csproj.BuildWithSkipAnalyzers b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.csproj.CoreCompileInputs.cache b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..a459cf6 --- /dev/null +++ b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +028982f786b4456cc6569f0f050ce84a1aadbdc1e17b3ee626eb7b211c9afb00 diff --git a/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.csproj.FileListAbsolute.txt b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..fd66e91 --- /dev/null +++ b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.csproj.FileListAbsolute.txt @@ -0,0 +1,32 @@ +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\appsettings.Development.json +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\appsettings.json +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\TCM_API.exe +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\TCM_API.deps.json +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\TCM_API.runtimeconfig.json +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\TCM_API.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\TCM_API.pdb +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.OpenApi.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Swashbuckle.AspNetCore.Swagger.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerGen.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerUI.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Debug\net8.0\TCM_API.csproj.AssemblyReference.cache +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Debug\net8.0\TCM_API.GeneratedMSBuildEditorConfig.editorconfig +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Debug\net8.0\TCM_API.AssemblyInfoInputs.cache +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Debug\net8.0\TCM_API.AssemblyInfo.cs +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Debug\net8.0\TCM_API.csproj.CoreCompileInputs.cache +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Debug\net8.0\TCM_API.MvcApplicationPartsAssemblyInfo.cs +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Debug\net8.0\TCM_API.MvcApplicationPartsAssemblyInfo.cache +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Debug\net8.0\staticwebassets.build.json +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Debug\net8.0\staticwebassets.development.json +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Debug\net8.0\staticwebassets\msbuild.TCM_API.Microsoft.AspNetCore.StaticWebAssets.props +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Debug\net8.0\staticwebassets\msbuild.build.TCM_API.props +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Debug\net8.0\staticwebassets\msbuild.buildMultiTargeting.TCM_API.props +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Debug\net8.0\staticwebassets\msbuild.buildTransitive.TCM_API.props +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Debug\net8.0\staticwebassets.pack.json +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Debug\net8.0\scopedcss\bundle\TCM_API.styles.css +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Debug\net8.0\TCM_API.csproj.Up2Date +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Debug\net8.0\TCM_API.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Debug\net8.0\refint\TCM_API.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Debug\net8.0\TCM_API.pdb +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Debug\net8.0\TCM_API.genruntimeconfig.cache +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Debug\net8.0\ref\TCM_API.dll diff --git a/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.csproj.Up2Date b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.dll b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.dll new file mode 100644 index 0000000..ea65fc0 Binary files /dev/null and b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.dll differ diff --git a/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.genruntimeconfig.cache b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.genruntimeconfig.cache new file mode 100644 index 0000000..dd4b8f4 --- /dev/null +++ b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.genruntimeconfig.cache @@ -0,0 +1 @@ +aad3036ebf0979a73a3abdcc0f35cad8978ee55bcfa12e9ced35126867139ad7 diff --git a/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.pdb b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.pdb new file mode 100644 index 0000000..00fccf9 Binary files /dev/null and b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.pdb differ diff --git a/TCM_API/TCM_API/obj/Debug/net8.0/apphost.exe b/TCM_API/TCM_API/obj/Debug/net8.0/apphost.exe new file mode 100644 index 0000000..dd47893 Binary files /dev/null and b/TCM_API/TCM_API/obj/Debug/net8.0/apphost.exe differ diff --git a/TCM_API/TCM_API/obj/Debug/net8.0/ref/TCM_API.dll b/TCM_API/TCM_API/obj/Debug/net8.0/ref/TCM_API.dll new file mode 100644 index 0000000..df275b2 Binary files /dev/null and b/TCM_API/TCM_API/obj/Debug/net8.0/ref/TCM_API.dll differ diff --git a/TCM_API/TCM_API/obj/Debug/net8.0/refint/TCM_API.dll b/TCM_API/TCM_API/obj/Debug/net8.0/refint/TCM_API.dll new file mode 100644 index 0000000..df275b2 Binary files /dev/null and b/TCM_API/TCM_API/obj/Debug/net8.0/refint/TCM_API.dll differ diff --git a/TCM_API/TCM_API/obj/Debug/net8.0/staticwebassets.build.json b/TCM_API/TCM_API/obj/Debug/net8.0/staticwebassets.build.json new file mode 100644 index 0000000..29d2fac --- /dev/null +++ b/TCM_API/TCM_API/obj/Debug/net8.0/staticwebassets.build.json @@ -0,0 +1,11 @@ +{ + "Version": 1, + "Hash": "HGrw+IZkjRyKa3+VM487wmOPJHbtFr1RkF2O61RLy7M=", + "Source": "TCM_API", + "BasePath": "_content/TCM_API", + "Mode": "Default", + "ManifestType": "Build", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [], + "Assets": [] +} \ No newline at end of file diff --git a/TCM_API/TCM_API/obj/Debug/net8.0/staticwebassets/msbuild.build.TCM_API.props b/TCM_API/TCM_API/obj/Debug/net8.0/staticwebassets/msbuild.build.TCM_API.props new file mode 100644 index 0000000..5a6032a --- /dev/null +++ b/TCM_API/TCM_API/obj/Debug/net8.0/staticwebassets/msbuild.build.TCM_API.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/TCM_API/TCM_API/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.TCM_API.props b/TCM_API/TCM_API/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.TCM_API.props new file mode 100644 index 0000000..a039015 --- /dev/null +++ b/TCM_API/TCM_API/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.TCM_API.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/TCM_API/TCM_API/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.TCM_API.props b/TCM_API/TCM_API/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.TCM_API.props new file mode 100644 index 0000000..f826b10 --- /dev/null +++ b/TCM_API/TCM_API/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.TCM_API.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/TCM_API/TCM_API/obj/TCM_API.csproj.nuget.dgspec.json b/TCM_API/TCM_API/obj/TCM_API.csproj.nuget.dgspec.json new file mode 100644 index 0000000..276c584 --- /dev/null +++ b/TCM_API/TCM_API/obj/TCM_API.csproj.nuget.dgspec.json @@ -0,0 +1,86 @@ +{ + "format": 1, + "restore": { + "D:\\Code\\Project\\TCM\\Backend\\TCM_API\\TCM_API\\TCM_API.csproj": {} + }, + "projects": { + "D:\\Code\\Project\\TCM\\Backend\\TCM_API\\TCM_API\\TCM_API.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Code\\Project\\TCM\\Backend\\TCM_API\\TCM_API\\TCM_API.csproj", + "projectName": "TCM_API", + "projectPath": "D:\\Code\\Project\\TCM\\Backend\\TCM_API\\TCM_API\\TCM_API.csproj", + "packagesPath": "C:\\Users\\Leo\\.nuget\\packages\\", + "outputPath": "D:\\Code\\Project\\TCM\\Backend\\TCM_API\\TCM_API\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Leo\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": { + "target": "Package", + "version": "[1.19.6, )" + }, + "Swashbuckle.AspNetCore": { + "target": "Package", + "version": "[6.4.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.204/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/TCM_API/TCM_API/obj/TCM_API.csproj.nuget.g.props b/TCM_API/TCM_API/obj/TCM_API.csproj.nuget.g.props new file mode 100644 index 0000000..aba8ef2 --- /dev/null +++ b/TCM_API/TCM_API/obj/TCM_API.csproj.nuget.g.props @@ -0,0 +1,25 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\Leo\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.9.2 + + + + + + + + + + + + C:\Users\Leo\.nuget\packages\microsoft.extensions.apidescription.server\6.0.5 + C:\Users\Leo\.nuget\packages\microsoft.visualstudio.azure.containers.tools.targets\1.19.6 + + \ No newline at end of file diff --git a/TCM_API/TCM_API/obj/TCM_API.csproj.nuget.g.targets b/TCM_API/TCM_API/obj/TCM_API.csproj.nuget.g.targets new file mode 100644 index 0000000..ded1a87 --- /dev/null +++ b/TCM_API/TCM_API/obj/TCM_API.csproj.nuget.g.targets @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/TCM_API/TCM_API/obj/project.assets.json b/TCM_API/TCM_API/obj/project.assets.json new file mode 100644 index 0000000..35de33c --- /dev/null +++ b/TCM_API/TCM_API/obj/project.assets.json @@ -0,0 +1,601 @@ +{ + "version": 3, + "targets": { + "net8.0": { + "Microsoft.Extensions.ApiDescription.Server/6.0.5": { + "type": "package", + "build": { + "build/Microsoft.Extensions.ApiDescription.Server.props": {}, + "build/Microsoft.Extensions.ApiDescription.Server.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {}, + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {} + } + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.19.6": { + "type": "package", + "build": { + "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props": {}, + "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets": {} + } + }, + "Swashbuckle.AspNetCore/6.4.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "6.0.5", + "Swashbuckle.AspNetCore.Swagger": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerGen": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerUI": "6.4.0" + }, + "build": { + "build/Swashbuckle.AspNetCore.props": {} + } + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "type": "package", + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "type": "package", + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.4.0" + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "related": ".pdb;.xml" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "type": "package", + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + } + } + }, + "libraries": { + "Microsoft.Extensions.ApiDescription.Server/6.0.5": { + "sha512": "Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==", + "type": "package", + "path": "microsoft.extensions.apidescription.server/6.0.5", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "build/Microsoft.Extensions.ApiDescription.Server.props", + "build/Microsoft.Extensions.ApiDescription.Server.targets", + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props", + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets", + "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512", + "microsoft.extensions.apidescription.server.nuspec", + "tools/Newtonsoft.Json.dll", + "tools/dotnet-getdocument.deps.json", + "tools/dotnet-getdocument.dll", + "tools/dotnet-getdocument.runtimeconfig.json", + "tools/net461-x86/GetDocument.Insider.exe", + "tools/net461-x86/GetDocument.Insider.exe.config", + "tools/net461-x86/Microsoft.Win32.Primitives.dll", + "tools/net461-x86/System.AppContext.dll", + "tools/net461-x86/System.Buffers.dll", + "tools/net461-x86/System.Collections.Concurrent.dll", + "tools/net461-x86/System.Collections.NonGeneric.dll", + "tools/net461-x86/System.Collections.Specialized.dll", + "tools/net461-x86/System.Collections.dll", + "tools/net461-x86/System.ComponentModel.EventBasedAsync.dll", + "tools/net461-x86/System.ComponentModel.Primitives.dll", + "tools/net461-x86/System.ComponentModel.TypeConverter.dll", + "tools/net461-x86/System.ComponentModel.dll", + "tools/net461-x86/System.Console.dll", + "tools/net461-x86/System.Data.Common.dll", + "tools/net461-x86/System.Diagnostics.Contracts.dll", + "tools/net461-x86/System.Diagnostics.Debug.dll", + "tools/net461-x86/System.Diagnostics.DiagnosticSource.dll", + "tools/net461-x86/System.Diagnostics.FileVersionInfo.dll", + "tools/net461-x86/System.Diagnostics.Process.dll", + "tools/net461-x86/System.Diagnostics.StackTrace.dll", + "tools/net461-x86/System.Diagnostics.TextWriterTraceListener.dll", + "tools/net461-x86/System.Diagnostics.Tools.dll", + "tools/net461-x86/System.Diagnostics.TraceSource.dll", + "tools/net461-x86/System.Diagnostics.Tracing.dll", + "tools/net461-x86/System.Drawing.Primitives.dll", + "tools/net461-x86/System.Dynamic.Runtime.dll", + "tools/net461-x86/System.Globalization.Calendars.dll", + "tools/net461-x86/System.Globalization.Extensions.dll", + "tools/net461-x86/System.Globalization.dll", + "tools/net461-x86/System.IO.Compression.ZipFile.dll", + "tools/net461-x86/System.IO.Compression.dll", + "tools/net461-x86/System.IO.FileSystem.DriveInfo.dll", + "tools/net461-x86/System.IO.FileSystem.Primitives.dll", + "tools/net461-x86/System.IO.FileSystem.Watcher.dll", + "tools/net461-x86/System.IO.FileSystem.dll", + "tools/net461-x86/System.IO.IsolatedStorage.dll", + "tools/net461-x86/System.IO.MemoryMappedFiles.dll", + "tools/net461-x86/System.IO.Pipes.dll", + "tools/net461-x86/System.IO.UnmanagedMemoryStream.dll", + "tools/net461-x86/System.IO.dll", + "tools/net461-x86/System.Linq.Expressions.dll", + "tools/net461-x86/System.Linq.Parallel.dll", + "tools/net461-x86/System.Linq.Queryable.dll", + "tools/net461-x86/System.Linq.dll", + "tools/net461-x86/System.Memory.dll", + "tools/net461-x86/System.Net.Http.dll", + "tools/net461-x86/System.Net.NameResolution.dll", + "tools/net461-x86/System.Net.NetworkInformation.dll", + "tools/net461-x86/System.Net.Ping.dll", + "tools/net461-x86/System.Net.Primitives.dll", + "tools/net461-x86/System.Net.Requests.dll", + "tools/net461-x86/System.Net.Security.dll", + "tools/net461-x86/System.Net.Sockets.dll", + "tools/net461-x86/System.Net.WebHeaderCollection.dll", + "tools/net461-x86/System.Net.WebSockets.Client.dll", + "tools/net461-x86/System.Net.WebSockets.dll", + "tools/net461-x86/System.Numerics.Vectors.dll", + "tools/net461-x86/System.ObjectModel.dll", + "tools/net461-x86/System.Reflection.Extensions.dll", + "tools/net461-x86/System.Reflection.Primitives.dll", + "tools/net461-x86/System.Reflection.dll", + "tools/net461-x86/System.Resources.Reader.dll", + "tools/net461-x86/System.Resources.ResourceManager.dll", + "tools/net461-x86/System.Resources.Writer.dll", + "tools/net461-x86/System.Runtime.CompilerServices.Unsafe.dll", + "tools/net461-x86/System.Runtime.CompilerServices.VisualC.dll", + "tools/net461-x86/System.Runtime.Extensions.dll", + "tools/net461-x86/System.Runtime.Handles.dll", + "tools/net461-x86/System.Runtime.InteropServices.RuntimeInformation.dll", + "tools/net461-x86/System.Runtime.InteropServices.dll", + "tools/net461-x86/System.Runtime.Numerics.dll", + "tools/net461-x86/System.Runtime.Serialization.Formatters.dll", + "tools/net461-x86/System.Runtime.Serialization.Json.dll", + "tools/net461-x86/System.Runtime.Serialization.Primitives.dll", + "tools/net461-x86/System.Runtime.Serialization.Xml.dll", + "tools/net461-x86/System.Runtime.dll", + "tools/net461-x86/System.Security.Claims.dll", + "tools/net461-x86/System.Security.Cryptography.Algorithms.dll", + "tools/net461-x86/System.Security.Cryptography.Csp.dll", + "tools/net461-x86/System.Security.Cryptography.Encoding.dll", + "tools/net461-x86/System.Security.Cryptography.Primitives.dll", + "tools/net461-x86/System.Security.Cryptography.X509Certificates.dll", + "tools/net461-x86/System.Security.Principal.dll", + "tools/net461-x86/System.Security.SecureString.dll", + "tools/net461-x86/System.Text.Encoding.Extensions.dll", + "tools/net461-x86/System.Text.Encoding.dll", + "tools/net461-x86/System.Text.RegularExpressions.dll", + "tools/net461-x86/System.Threading.Overlapped.dll", + "tools/net461-x86/System.Threading.Tasks.Parallel.dll", + "tools/net461-x86/System.Threading.Tasks.dll", + "tools/net461-x86/System.Threading.Thread.dll", + "tools/net461-x86/System.Threading.ThreadPool.dll", + "tools/net461-x86/System.Threading.Timer.dll", + "tools/net461-x86/System.Threading.dll", + "tools/net461-x86/System.ValueTuple.dll", + "tools/net461-x86/System.Xml.ReaderWriter.dll", + "tools/net461-x86/System.Xml.XDocument.dll", + "tools/net461-x86/System.Xml.XPath.XDocument.dll", + "tools/net461-x86/System.Xml.XPath.dll", + "tools/net461-x86/System.Xml.XmlDocument.dll", + "tools/net461-x86/System.Xml.XmlSerializer.dll", + "tools/net461-x86/netstandard.dll", + "tools/net461/GetDocument.Insider.exe", + "tools/net461/GetDocument.Insider.exe.config", + "tools/net461/Microsoft.Win32.Primitives.dll", + "tools/net461/System.AppContext.dll", + "tools/net461/System.Buffers.dll", + "tools/net461/System.Collections.Concurrent.dll", + "tools/net461/System.Collections.NonGeneric.dll", + "tools/net461/System.Collections.Specialized.dll", + "tools/net461/System.Collections.dll", + "tools/net461/System.ComponentModel.EventBasedAsync.dll", + "tools/net461/System.ComponentModel.Primitives.dll", + "tools/net461/System.ComponentModel.TypeConverter.dll", + "tools/net461/System.ComponentModel.dll", + "tools/net461/System.Console.dll", + "tools/net461/System.Data.Common.dll", + "tools/net461/System.Diagnostics.Contracts.dll", + "tools/net461/System.Diagnostics.Debug.dll", + "tools/net461/System.Diagnostics.DiagnosticSource.dll", + "tools/net461/System.Diagnostics.FileVersionInfo.dll", + "tools/net461/System.Diagnostics.Process.dll", + "tools/net461/System.Diagnostics.StackTrace.dll", + "tools/net461/System.Diagnostics.TextWriterTraceListener.dll", + "tools/net461/System.Diagnostics.Tools.dll", + "tools/net461/System.Diagnostics.TraceSource.dll", + "tools/net461/System.Diagnostics.Tracing.dll", + "tools/net461/System.Drawing.Primitives.dll", + "tools/net461/System.Dynamic.Runtime.dll", + "tools/net461/System.Globalization.Calendars.dll", + "tools/net461/System.Globalization.Extensions.dll", + "tools/net461/System.Globalization.dll", + "tools/net461/System.IO.Compression.ZipFile.dll", + "tools/net461/System.IO.Compression.dll", + "tools/net461/System.IO.FileSystem.DriveInfo.dll", + "tools/net461/System.IO.FileSystem.Primitives.dll", + "tools/net461/System.IO.FileSystem.Watcher.dll", + "tools/net461/System.IO.FileSystem.dll", + "tools/net461/System.IO.IsolatedStorage.dll", + "tools/net461/System.IO.MemoryMappedFiles.dll", + "tools/net461/System.IO.Pipes.dll", + "tools/net461/System.IO.UnmanagedMemoryStream.dll", + "tools/net461/System.IO.dll", + "tools/net461/System.Linq.Expressions.dll", + "tools/net461/System.Linq.Parallel.dll", + "tools/net461/System.Linq.Queryable.dll", + "tools/net461/System.Linq.dll", + "tools/net461/System.Memory.dll", + "tools/net461/System.Net.Http.dll", + "tools/net461/System.Net.NameResolution.dll", + "tools/net461/System.Net.NetworkInformation.dll", + "tools/net461/System.Net.Ping.dll", + "tools/net461/System.Net.Primitives.dll", + "tools/net461/System.Net.Requests.dll", + "tools/net461/System.Net.Security.dll", + "tools/net461/System.Net.Sockets.dll", + "tools/net461/System.Net.WebHeaderCollection.dll", + "tools/net461/System.Net.WebSockets.Client.dll", + "tools/net461/System.Net.WebSockets.dll", + "tools/net461/System.Numerics.Vectors.dll", + "tools/net461/System.ObjectModel.dll", + "tools/net461/System.Reflection.Extensions.dll", + "tools/net461/System.Reflection.Primitives.dll", + "tools/net461/System.Reflection.dll", + "tools/net461/System.Resources.Reader.dll", + "tools/net461/System.Resources.ResourceManager.dll", + "tools/net461/System.Resources.Writer.dll", + "tools/net461/System.Runtime.CompilerServices.Unsafe.dll", + "tools/net461/System.Runtime.CompilerServices.VisualC.dll", + "tools/net461/System.Runtime.Extensions.dll", + "tools/net461/System.Runtime.Handles.dll", + "tools/net461/System.Runtime.InteropServices.RuntimeInformation.dll", + "tools/net461/System.Runtime.InteropServices.dll", + "tools/net461/System.Runtime.Numerics.dll", + "tools/net461/System.Runtime.Serialization.Formatters.dll", + "tools/net461/System.Runtime.Serialization.Json.dll", + "tools/net461/System.Runtime.Serialization.Primitives.dll", + "tools/net461/System.Runtime.Serialization.Xml.dll", + "tools/net461/System.Runtime.dll", + "tools/net461/System.Security.Claims.dll", + "tools/net461/System.Security.Cryptography.Algorithms.dll", + "tools/net461/System.Security.Cryptography.Csp.dll", + "tools/net461/System.Security.Cryptography.Encoding.dll", + "tools/net461/System.Security.Cryptography.Primitives.dll", + "tools/net461/System.Security.Cryptography.X509Certificates.dll", + "tools/net461/System.Security.Principal.dll", + "tools/net461/System.Security.SecureString.dll", + "tools/net461/System.Text.Encoding.Extensions.dll", + "tools/net461/System.Text.Encoding.dll", + "tools/net461/System.Text.RegularExpressions.dll", + "tools/net461/System.Threading.Overlapped.dll", + "tools/net461/System.Threading.Tasks.Parallel.dll", + "tools/net461/System.Threading.Tasks.dll", + "tools/net461/System.Threading.Thread.dll", + "tools/net461/System.Threading.ThreadPool.dll", + "tools/net461/System.Threading.Timer.dll", + "tools/net461/System.Threading.dll", + "tools/net461/System.ValueTuple.dll", + "tools/net461/System.Xml.ReaderWriter.dll", + "tools/net461/System.Xml.XDocument.dll", + "tools/net461/System.Xml.XPath.XDocument.dll", + "tools/net461/System.Xml.XPath.dll", + "tools/net461/System.Xml.XmlDocument.dll", + "tools/net461/System.Xml.XmlSerializer.dll", + "tools/net461/netstandard.dll", + "tools/netcoreapp2.1/GetDocument.Insider.deps.json", + "tools/netcoreapp2.1/GetDocument.Insider.dll", + "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json", + "tools/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll" + ] + }, + "Microsoft.OpenApi/1.2.3": { + "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "type": "package", + "path": "microsoft.openapi/1.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net46/Microsoft.OpenApi.dll", + "lib/net46/Microsoft.OpenApi.pdb", + "lib/net46/Microsoft.OpenApi.xml", + "lib/netstandard2.0/Microsoft.OpenApi.dll", + "lib/netstandard2.0/Microsoft.OpenApi.pdb", + "lib/netstandard2.0/Microsoft.OpenApi.xml", + "microsoft.openapi.1.2.3.nupkg.sha512", + "microsoft.openapi.nuspec" + ] + }, + "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.19.6": { + "sha512": "7GOQdMzQcH7o/bPFL/I2kQEgMnq2pYZ+exhGb9nNqs624K9w2jB2zieh4sOH9+a01i/G9iTWfeUI3IGMF7SKNg==", + "type": "package", + "path": "microsoft.visualstudio.azure.containers.tools.targets/1.19.6", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "EULA.md", + "ThirdPartyNotices.txt", + "build/Container.props", + "build/Container.targets", + "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props", + "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets", + "build/Rules/GeneralBrowseObject.xaml", + "build/Rules/cs-CZ/GeneralBrowseObject.xaml", + "build/Rules/de-DE/GeneralBrowseObject.xaml", + "build/Rules/es-ES/GeneralBrowseObject.xaml", + "build/Rules/fr-FR/GeneralBrowseObject.xaml", + "build/Rules/it-IT/GeneralBrowseObject.xaml", + "build/Rules/ja-JP/GeneralBrowseObject.xaml", + "build/Rules/ko-KR/GeneralBrowseObject.xaml", + "build/Rules/pl-PL/GeneralBrowseObject.xaml", + "build/Rules/pt-BR/GeneralBrowseObject.xaml", + "build/Rules/ru-RU/GeneralBrowseObject.xaml", + "build/Rules/tr-TR/GeneralBrowseObject.xaml", + "build/Rules/zh-CN/GeneralBrowseObject.xaml", + "build/Rules/zh-TW/GeneralBrowseObject.xaml", + "build/ToolsTarget.props", + "build/ToolsTarget.targets", + "icon.png", + "microsoft.visualstudio.azure.containers.tools.targets.1.19.6.nupkg.sha512", + "microsoft.visualstudio.azure.containers.tools.targets.nuspec", + "tools/Microsoft.VisualStudio.Containers.Tools.Common.dll", + "tools/Microsoft.VisualStudio.Containers.Tools.Shared.dll", + "tools/Microsoft.VisualStudio.Containers.Tools.Tasks.dll", + "tools/Newtonsoft.Json.dll", + "tools/System.Security.Principal.Windows.dll", + "tools/cs/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/cs/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/cs/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", + "tools/de/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/de/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/de/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", + "tools/es/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/es/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/es/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", + "tools/fr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/fr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/fr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", + "tools/it/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/it/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/it/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", + "tools/ja/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/ja/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/ja/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", + "tools/ko/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/ko/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/ko/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", + "tools/pl/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/pl/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/pl/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", + "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", + "tools/ru/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/ru/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/ru/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", + "tools/tr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/tr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/tr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", + "tools/utils/KillProcess.exe", + "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", + "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", + "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", + "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll" + ] + }, + "Swashbuckle.AspNetCore/6.4.0": { + "sha512": "eUBr4TW0up6oKDA5Xwkul289uqSMgY0xGN4pnbOIBqCcN9VKGGaPvHX3vWaG/hvocfGDP+MGzMA0bBBKz2fkmQ==", + "type": "package", + "path": "swashbuckle.aspnetcore/6.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Swashbuckle.AspNetCore.props", + "swashbuckle.aspnetcore.6.4.0.nupkg.sha512", + "swashbuckle.aspnetcore.nuspec" + ] + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "sha512": "nl4SBgGM+cmthUcpwO/w1lUjevdDHAqRvfUoe4Xp/Uvuzt9mzGUwyFCqa3ODBAcZYBiFoKvrYwz0rabslJvSmQ==", + "type": "package", + "path": "swashbuckle.aspnetcore.swagger/6.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml", + "swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512", + "swashbuckle.aspnetcore.swagger.nuspec" + ] + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "sha512": "lXhcUBVqKrPFAQF7e/ZeDfb5PMgE8n5t6L5B6/BQSpiwxgHzmBcx8Msu42zLYFTvR5PIqE9Q9lZvSQAcwCxJjw==", + "type": "package", + "path": "swashbuckle.aspnetcore.swaggergen/6.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512", + "swashbuckle.aspnetcore.swaggergen.nuspec" + ] + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "sha512": "1Hh3atb3pi8c+v7n4/3N80Jj8RvLOXgWxzix6w3OZhB7zBGRwsy7FWr4e3hwgPweSBpwfElqj4V4nkjYabH9nQ==", + "type": "package", + "path": "swashbuckle.aspnetcore.swaggerui/6.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512", + "swashbuckle.aspnetcore.swaggerui.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "net8.0": [ + "Microsoft.VisualStudio.Azure.Containers.Tools.Targets >= 1.19.6", + "Swashbuckle.AspNetCore >= 6.4.0" + ] + }, + "packageFolders": { + "C:\\Users\\Leo\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "D:\\Code\\Project\\TCM\\Backend\\TCM_API\\TCM_API\\TCM_API.csproj", + "projectName": "TCM_API", + "projectPath": "D:\\Code\\Project\\TCM\\Backend\\TCM_API\\TCM_API\\TCM_API.csproj", + "packagesPath": "C:\\Users\\Leo\\.nuget\\packages\\", + "outputPath": "D:\\Code\\Project\\TCM\\Backend\\TCM_API\\TCM_API\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\Leo\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": { + "target": "Package", + "version": "[1.19.6, )" + }, + "Swashbuckle.AspNetCore": { + "target": "Package", + "version": "[6.4.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.204/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/TCM_API/TCM_API/obj/project.nuget.cache b/TCM_API/TCM_API/obj/project.nuget.cache new file mode 100644 index 0000000..87f1423 --- /dev/null +++ b/TCM_API/TCM_API/obj/project.nuget.cache @@ -0,0 +1,16 @@ +{ + "version": 2, + "dgSpecHash": "1+cmBZzmwIgdStUVpLUP8y9VaQlg+olZk2AFmFA8oM3gaRpZOF+Q+3Qq/vwo6kZaq4TqEMGHxU78jdxQNzpNyg==", + "success": true, + "projectFilePath": "D:\\Code\\Project\\TCM\\Backend\\TCM_API\\TCM_API\\TCM_API.csproj", + "expectedPackageFiles": [ + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.extensions.apidescription.server\\6.0.5\\microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.visualstudio.azure.containers.tools.targets\\1.19.6\\microsoft.visualstudio.azure.containers.tools.targets.1.19.6.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\swashbuckle.aspnetcore\\6.4.0\\swashbuckle.aspnetcore.6.4.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.4.0\\swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.4.0\\swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.4.0\\swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file