diff --git a/DemoApi/Program.cs b/DemoApi/Program.cs index ee9d65d..7ab608f 100644 --- a/DemoApi/Program.cs +++ b/DemoApi/Program.cs @@ -14,6 +14,24 @@ app.UseHttpsRedirection(); +app.MapGet("/secret-demo", (IConfiguration configuration) => +{ + var configuredSecret = configuration["DemoSettings:Secret"] ?? "not-configured"; + var source = string.IsNullOrWhiteSpace(Environment.GetEnvironmentVariable("DemoSettings__Secret")) + ? "appsettings" + : "environment"; + + return Results.Ok(new + { + source, + secretLength = configuredSecret.Length, + preview = configuredSecret.Length <= 4 + ? "****" + : $"{configuredSecret[..2]}***{configuredSecret[^2..]}" + }); +}) +.WithName("GetSecretDemo"); + var summaries = new[] { "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" diff --git a/DemoApi/appsettings.Development.json b/DemoApi/appsettings.Development.json index 0c208ae..8087fc1 100644 --- a/DemoApi/appsettings.Development.json +++ b/DemoApi/appsettings.Development.json @@ -4,5 +4,8 @@ "Default": "Information", "Microsoft.AspNetCore": "Warning" } + }, + "DemoSettings": { + "Secret": "dev-local-secret" } } diff --git a/DemoApi/appsettings.json b/DemoApi/appsettings.json index 10f68b8..144a241 100644 --- a/DemoApi/appsettings.json +++ b/DemoApi/appsettings.json @@ -5,5 +5,8 @@ "Microsoft.AspNetCore": "Warning" } }, + "DemoSettings": { + "Secret": "local-default-secret" + }, "AllowedHosts": "*" } diff --git a/DemoApi/bin/Debug/net10.0/DemoApi b/DemoApi/bin/Debug/net10.0/DemoApi new file mode 100755 index 0000000..723e271 Binary files /dev/null and b/DemoApi/bin/Debug/net10.0/DemoApi differ diff --git a/DemoApi/bin/Debug/net10.0/DemoApi.deps.json b/DemoApi/bin/Debug/net10.0/DemoApi.deps.json new file mode 100644 index 0000000..e8b5317 --- /dev/null +++ b/DemoApi/bin/Debug/net10.0/DemoApi.deps.json @@ -0,0 +1,59 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "DemoApi/1.0.0": { + "dependencies": { + "Microsoft.AspNetCore.OpenApi": "10.0.0" + }, + "runtime": { + "DemoApi.dll": {} + } + }, + "Microsoft.AspNetCore.OpenApi/10.0.0": { + "dependencies": { + "Microsoft.OpenApi": "2.0.0" + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.OpenApi.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.OpenApi/2.0.0": { + "runtime": { + "lib/net8.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + } + } + }, + "libraries": { + "DemoApi/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.OpenApi/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0aqIF1t+sA2T62LIeMtXGSiaV7keGQaJnvwwmu+htQdjCaKYARfXAeqp4nHH9y2etpilyZ/tnQzZg4Ilmo/c4Q==", + "path": "microsoft.aspnetcore.openapi/10.0.0", + "hashPath": "microsoft.aspnetcore.openapi.10.0.0.nupkg.sha512" + }, + "Microsoft.OpenApi/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GGYLfzV/G/ct80OZ45JxnWP7NvMX1BCugn/lX7TH5o0lcVaviavsLMTxmFV2AybXWjbi3h6FF1vgZiTK6PXndw==", + "path": "microsoft.openapi/2.0.0", + "hashPath": "microsoft.openapi.2.0.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/DemoApi/bin/Debug/net10.0/DemoApi.dll b/DemoApi/bin/Debug/net10.0/DemoApi.dll new file mode 100644 index 0000000..20f45ab Binary files /dev/null and b/DemoApi/bin/Debug/net10.0/DemoApi.dll differ diff --git a/DemoApi/bin/Debug/net10.0/DemoApi.pdb b/DemoApi/bin/Debug/net10.0/DemoApi.pdb new file mode 100644 index 0000000..25890f0 Binary files /dev/null and b/DemoApi/bin/Debug/net10.0/DemoApi.pdb differ diff --git a/DemoApi/bin/Debug/net10.0/DemoApi.runtimeconfig.json b/DemoApi/bin/Debug/net10.0/DemoApi.runtimeconfig.json new file mode 100644 index 0000000..ed5401a --- /dev/null +++ b/DemoApi/bin/Debug/net10.0/DemoApi.runtimeconfig.json @@ -0,0 +1,19 @@ +{ + "runtimeOptions": { + "tfm": "net10.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "10.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "10.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/DemoApi/bin/Debug/net10.0/DemoApi.staticwebassets.endpoints.json b/DemoApi/bin/Debug/net10.0/DemoApi.staticwebassets.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/DemoApi/bin/Debug/net10.0/DemoApi.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/DemoApi/bin/Debug/net10.0/Microsoft.AspNetCore.OpenApi.dll b/DemoApi/bin/Debug/net10.0/Microsoft.AspNetCore.OpenApi.dll new file mode 100755 index 0000000..f58ce81 Binary files /dev/null and b/DemoApi/bin/Debug/net10.0/Microsoft.AspNetCore.OpenApi.dll differ diff --git a/DemoApi/bin/Debug/net10.0/Microsoft.OpenApi.dll b/DemoApi/bin/Debug/net10.0/Microsoft.OpenApi.dll new file mode 100755 index 0000000..96cb5dc Binary files /dev/null and b/DemoApi/bin/Debug/net10.0/Microsoft.OpenApi.dll differ diff --git a/DemoApi/bin/Debug/net10.0/appsettings.Development.json b/DemoApi/bin/Debug/net10.0/appsettings.Development.json new file mode 100644 index 0000000..8087fc1 --- /dev/null +++ b/DemoApi/bin/Debug/net10.0/appsettings.Development.json @@ -0,0 +1,11 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "DemoSettings": { + "Secret": "dev-local-secret" + } +} diff --git a/DemoApi/bin/Debug/net10.0/appsettings.json b/DemoApi/bin/Debug/net10.0/appsettings.json new file mode 100644 index 0000000..144a241 --- /dev/null +++ b/DemoApi/bin/Debug/net10.0/appsettings.json @@ -0,0 +1,12 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "DemoSettings": { + "Secret": "local-default-secret" + }, + "AllowedHosts": "*" +} diff --git a/DemoApi/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/DemoApi/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/DemoApi/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/DemoApi/obj/Debug/net10.0/DemoApi.AssemblyInfo.cs b/DemoApi/obj/Debug/net10.0/DemoApi.AssemblyInfo.cs new file mode 100644 index 0000000..5ab4e75 --- /dev/null +++ b/DemoApi/obj/Debug/net10.0/DemoApi.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("DemoApi")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+853a82396999a800147fd583cd6801c3ca180bf2")] +[assembly: System.Reflection.AssemblyProductAttribute("DemoApi")] +[assembly: System.Reflection.AssemblyTitleAttribute("DemoApi")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/DemoApi/obj/Debug/net10.0/DemoApi.AssemblyInfoInputs.cache b/DemoApi/obj/Debug/net10.0/DemoApi.AssemblyInfoInputs.cache new file mode 100644 index 0000000..f77719a --- /dev/null +++ b/DemoApi/obj/Debug/net10.0/DemoApi.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +53b726edf629bb8d8eab7067563f0c4a6bb2cbd8ebd661738131de13c29c8803 diff --git a/DemoApi/obj/Debug/net10.0/DemoApi.GeneratedMSBuildEditorConfig.editorconfig b/DemoApi/obj/Debug/net10.0/DemoApi.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..13a7ab5 --- /dev/null +++ b/DemoApi/obj/Debug/net10.0/DemoApi.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,23 @@ +is_global = true +build_property.TargetFramework = net10.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.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 = DemoApi +build_property.RootNamespace = DemoApi +build_property.ProjectDir = /Users/tojiddinhamidov/Projects/cicd/DemoApi/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = /Users/tojiddinhamidov/Projects/cicd/DemoApi +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = diff --git a/DemoApi/obj/Debug/net10.0/DemoApi.GlobalUsings.g.cs b/DemoApi/obj/Debug/net10.0/DemoApi.GlobalUsings.g.cs new file mode 100644 index 0000000..5e6145d --- /dev/null +++ b/DemoApi/obj/Debug/net10.0/DemoApi.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using Microsoft.AspNetCore.Builder; +global using Microsoft.AspNetCore.Hosting; +global using Microsoft.AspNetCore.Http; +global using Microsoft.AspNetCore.Routing; +global using Microsoft.Extensions.Configuration; +global using Microsoft.Extensions.DependencyInjection; +global using Microsoft.Extensions.Hosting; +global using Microsoft.Extensions.Logging; +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Net.Http.Json; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/DemoApi/obj/Debug/net10.0/DemoApi.MvcApplicationPartsAssemblyInfo.cache b/DemoApi/obj/Debug/net10.0/DemoApi.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/DemoApi/obj/Debug/net10.0/DemoApi.MvcApplicationPartsAssemblyInfo.cs b/DemoApi/obj/Debug/net10.0/DemoApi.MvcApplicationPartsAssemblyInfo.cs new file mode 100644 index 0000000..1c3041b --- /dev/null +++ b/DemoApi/obj/Debug/net10.0/DemoApi.MvcApplicationPartsAssemblyInfo.cs @@ -0,0 +1,16 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.OpenApi")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/DemoApi/obj/Debug/net10.0/DemoApi.assets.cache b/DemoApi/obj/Debug/net10.0/DemoApi.assets.cache new file mode 100644 index 0000000..18c5632 Binary files /dev/null and b/DemoApi/obj/Debug/net10.0/DemoApi.assets.cache differ diff --git a/DemoApi/obj/Debug/net10.0/DemoApi.csproj.AssemblyReference.cache b/DemoApi/obj/Debug/net10.0/DemoApi.csproj.AssemblyReference.cache new file mode 100644 index 0000000..7af84c5 Binary files /dev/null and b/DemoApi/obj/Debug/net10.0/DemoApi.csproj.AssemblyReference.cache differ diff --git a/DemoApi/obj/Debug/net10.0/DemoApi.csproj.CoreCompileInputs.cache b/DemoApi/obj/Debug/net10.0/DemoApi.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..23ea59f --- /dev/null +++ b/DemoApi/obj/Debug/net10.0/DemoApi.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +553d4b3df0083653ed9f4daa91dc9d9e9db440dc0219bccfcb297ba9ccad8fb9 diff --git a/DemoApi/obj/Debug/net10.0/DemoApi.csproj.FileListAbsolute.txt b/DemoApi/obj/Debug/net10.0/DemoApi.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..6e94bcb --- /dev/null +++ b/DemoApi/obj/Debug/net10.0/DemoApi.csproj.FileListAbsolute.txt @@ -0,0 +1,34 @@ +/Users/tojiddinhamidov/Projects/cicd/DemoApi/bin/Debug/net10.0/appsettings.Development.json +/Users/tojiddinhamidov/Projects/cicd/DemoApi/bin/Debug/net10.0/appsettings.json +/Users/tojiddinhamidov/Projects/cicd/DemoApi/bin/Debug/net10.0/DemoApi.staticwebassets.endpoints.json +/Users/tojiddinhamidov/Projects/cicd/DemoApi/bin/Debug/net10.0/DemoApi +/Users/tojiddinhamidov/Projects/cicd/DemoApi/bin/Debug/net10.0/DemoApi.deps.json +/Users/tojiddinhamidov/Projects/cicd/DemoApi/bin/Debug/net10.0/DemoApi.runtimeconfig.json +/Users/tojiddinhamidov/Projects/cicd/DemoApi/bin/Debug/net10.0/DemoApi.dll +/Users/tojiddinhamidov/Projects/cicd/DemoApi/bin/Debug/net10.0/DemoApi.pdb +/Users/tojiddinhamidov/Projects/cicd/DemoApi/bin/Debug/net10.0/Microsoft.AspNetCore.OpenApi.dll +/Users/tojiddinhamidov/Projects/cicd/DemoApi/bin/Debug/net10.0/Microsoft.OpenApi.dll +/Users/tojiddinhamidov/Projects/cicd/DemoApi/obj/Debug/net10.0/DemoApi.csproj.AssemblyReference.cache +/Users/tojiddinhamidov/Projects/cicd/DemoApi/obj/Debug/net10.0/rpswa.dswa.cache.json +/Users/tojiddinhamidov/Projects/cicd/DemoApi/obj/Debug/net10.0/DemoApi.GeneratedMSBuildEditorConfig.editorconfig +/Users/tojiddinhamidov/Projects/cicd/DemoApi/obj/Debug/net10.0/DemoApi.AssemblyInfoInputs.cache +/Users/tojiddinhamidov/Projects/cicd/DemoApi/obj/Debug/net10.0/DemoApi.AssemblyInfo.cs +/Users/tojiddinhamidov/Projects/cicd/DemoApi/obj/Debug/net10.0/DemoApi.csproj.CoreCompileInputs.cache +/Users/tojiddinhamidov/Projects/cicd/DemoApi/obj/Debug/net10.0/DemoApi.MvcApplicationPartsAssemblyInfo.cs +/Users/tojiddinhamidov/Projects/cicd/DemoApi/obj/Debug/net10.0/DemoApi.MvcApplicationPartsAssemblyInfo.cache +/Users/tojiddinhamidov/Projects/cicd/DemoApi/obj/Debug/net10.0/DemoApi.sourcelink.json +/Users/tojiddinhamidov/Projects/cicd/DemoApi/obj/Debug/net10.0/rjimswa.dswa.cache.json +/Users/tojiddinhamidov/Projects/cicd/DemoApi/obj/Debug/net10.0/rjsmrazor.dswa.cache.json +/Users/tojiddinhamidov/Projects/cicd/DemoApi/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json +/Users/tojiddinhamidov/Projects/cicd/DemoApi/obj/Debug/net10.0/scopedcss/bundle/DemoApi.styles.css +/Users/tojiddinhamidov/Projects/cicd/DemoApi/obj/Debug/net10.0/staticwebassets.build.json +/Users/tojiddinhamidov/Projects/cicd/DemoApi/obj/Debug/net10.0/staticwebassets.build.json.cache +/Users/tojiddinhamidov/Projects/cicd/DemoApi/obj/Debug/net10.0/staticwebassets.development.json +/Users/tojiddinhamidov/Projects/cicd/DemoApi/obj/Debug/net10.0/staticwebassets.build.endpoints.json +/Users/tojiddinhamidov/Projects/cicd/DemoApi/obj/Debug/net10.0/swae.build.ex.cache +/Users/tojiddinhamidov/Projects/cicd/DemoApi/obj/Debug/net10.0/DemoApi.csproj.Up2Date +/Users/tojiddinhamidov/Projects/cicd/DemoApi/obj/Debug/net10.0/DemoApi.dll +/Users/tojiddinhamidov/Projects/cicd/DemoApi/obj/Debug/net10.0/refint/DemoApi.dll +/Users/tojiddinhamidov/Projects/cicd/DemoApi/obj/Debug/net10.0/DemoApi.pdb +/Users/tojiddinhamidov/Projects/cicd/DemoApi/obj/Debug/net10.0/DemoApi.genruntimeconfig.cache +/Users/tojiddinhamidov/Projects/cicd/DemoApi/obj/Debug/net10.0/ref/DemoApi.dll diff --git a/DemoApi/obj/Debug/net10.0/DemoApi.csproj.Up2Date b/DemoApi/obj/Debug/net10.0/DemoApi.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/DemoApi/obj/Debug/net10.0/DemoApi.dll b/DemoApi/obj/Debug/net10.0/DemoApi.dll new file mode 100644 index 0000000..20f45ab Binary files /dev/null and b/DemoApi/obj/Debug/net10.0/DemoApi.dll differ diff --git a/DemoApi/obj/Debug/net10.0/DemoApi.genruntimeconfig.cache b/DemoApi/obj/Debug/net10.0/DemoApi.genruntimeconfig.cache new file mode 100644 index 0000000..ec166a3 --- /dev/null +++ b/DemoApi/obj/Debug/net10.0/DemoApi.genruntimeconfig.cache @@ -0,0 +1 @@ +91aa11c3bd9d755f1b561d13cc3739deabe5a51458d72e3075073ac03ae66bd1 diff --git a/DemoApi/obj/Debug/net10.0/DemoApi.pdb b/DemoApi/obj/Debug/net10.0/DemoApi.pdb new file mode 100644 index 0000000..25890f0 Binary files /dev/null and b/DemoApi/obj/Debug/net10.0/DemoApi.pdb differ diff --git a/DemoApi/obj/Debug/net10.0/DemoApi.sourcelink.json b/DemoApi/obj/Debug/net10.0/DemoApi.sourcelink.json new file mode 100644 index 0000000..56eaea0 --- /dev/null +++ b/DemoApi/obj/Debug/net10.0/DemoApi.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"/Users/tojiddinhamidov/Projects/cicd/*":"https://raw.githubusercontent.com/Tojiddin20/ci-cd/853a82396999a800147fd583cd6801c3ca180bf2/*"}} \ No newline at end of file diff --git a/DemoApi/obj/Debug/net10.0/apphost b/DemoApi/obj/Debug/net10.0/apphost new file mode 100755 index 0000000..723e271 Binary files /dev/null and b/DemoApi/obj/Debug/net10.0/apphost differ diff --git a/DemoApi/obj/Debug/net10.0/ref/DemoApi.dll b/DemoApi/obj/Debug/net10.0/ref/DemoApi.dll new file mode 100644 index 0000000..b1e7ec6 Binary files /dev/null and b/DemoApi/obj/Debug/net10.0/ref/DemoApi.dll differ diff --git a/DemoApi/obj/Debug/net10.0/refint/DemoApi.dll b/DemoApi/obj/Debug/net10.0/refint/DemoApi.dll new file mode 100644 index 0000000..b1e7ec6 Binary files /dev/null and b/DemoApi/obj/Debug/net10.0/refint/DemoApi.dll differ diff --git a/DemoApi/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json b/DemoApi/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json new file mode 100644 index 0000000..79fffc3 --- /dev/null +++ b/DemoApi/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"TGMbgIwi7ejgNtbppfCy5YhsX8SdAKiJA30FnmfHSGY=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["kC20jjsuPn5\u002B8bgTU8mXfsQ61QGNL7B9CJCOKy54JRU=","n0iejb0dRLPHIWnKsih\u002BfJXHLUX4riG4yZlVrXGA5Zc=","4MvDc1JcjyVUaFpKbZBs5TOj/FkayG229tur8bP5RZc=","3W4iB1AeVG0qBd6h1l8uDSZzhcfRu33FrxSsquSE9AU=","21GHyiZIY1ubXPGCbgeQJza9bQJtm/4FlOzi/ok9ZBo="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/DemoApi/obj/Debug/net10.0/rjsmrazor.dswa.cache.json b/DemoApi/obj/Debug/net10.0/rjsmrazor.dswa.cache.json new file mode 100644 index 0000000..bf94eb1 --- /dev/null +++ b/DemoApi/obj/Debug/net10.0/rjsmrazor.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"x7ufmtsWrleiHnm94c0YN9ndqo2XDPNafm0L75AbX2g=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["kC20jjsuPn5\u002B8bgTU8mXfsQ61QGNL7B9CJCOKy54JRU=","n0iejb0dRLPHIWnKsih\u002BfJXHLUX4riG4yZlVrXGA5Zc=","4MvDc1JcjyVUaFpKbZBs5TOj/FkayG229tur8bP5RZc=","3W4iB1AeVG0qBd6h1l8uDSZzhcfRu33FrxSsquSE9AU=","21GHyiZIY1ubXPGCbgeQJza9bQJtm/4FlOzi/ok9ZBo="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/DemoApi/obj/Debug/net10.0/rpswa.dswa.cache.json b/DemoApi/obj/Debug/net10.0/rpswa.dswa.cache.json new file mode 100644 index 0000000..3bd21a2 --- /dev/null +++ b/DemoApi/obj/Debug/net10.0/rpswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"e8cf649hXLuIZqDjs8FUdhLp52xuCD4JMdaDWYsc0O0=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["kC20jjsuPn5\u002B8bgTU8mXfsQ61QGNL7B9CJCOKy54JRU=","n0iejb0dRLPHIWnKsih\u002BfJXHLUX4riG4yZlVrXGA5Zc="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/DemoApi/obj/Debug/net10.0/staticwebassets.build.endpoints.json b/DemoApi/obj/Debug/net10.0/staticwebassets.build.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/DemoApi/obj/Debug/net10.0/staticwebassets.build.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/DemoApi/obj/Debug/net10.0/staticwebassets.build.json b/DemoApi/obj/Debug/net10.0/staticwebassets.build.json new file mode 100644 index 0000000..0e59102 --- /dev/null +++ b/DemoApi/obj/Debug/net10.0/staticwebassets.build.json @@ -0,0 +1 @@ +{"Version":1,"Hash":"hskAn++7s/NIhChn4k0UNHM05nxE3dcdrilOQXtBcRc=","Source":"DemoApi","BasePath":"/","Mode":"Root","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[],"Assets":[],"Endpoints":[]} \ No newline at end of file diff --git a/DemoApi/obj/Debug/net10.0/staticwebassets.build.json.cache b/DemoApi/obj/Debug/net10.0/staticwebassets.build.json.cache new file mode 100644 index 0000000..17c1fcb --- /dev/null +++ b/DemoApi/obj/Debug/net10.0/staticwebassets.build.json.cache @@ -0,0 +1 @@ +hskAn++7s/NIhChn4k0UNHM05nxE3dcdrilOQXtBcRc= \ No newline at end of file diff --git a/DemoApi/obj/Debug/net10.0/swae.build.ex.cache b/DemoApi/obj/Debug/net10.0/swae.build.ex.cache new file mode 100644 index 0000000..e69de29