├── ASP.NET-Hello-World.sln ├── Program.cs ├── Properties └── launchSettings.json ├── appsettings.Development.json ├── appsettings.json ├── bin └── Debug │ └── net8.0 │ ├── appsettings.Development.json │ ├── appsettings.json │ ├── helloworld.deps.json │ ├── helloworld.dll │ ├── helloworld.exe │ ├── helloworld.pdb │ └── helloworld.runtimeconfig.json ├── helloworld.csproj ├── obj ├── Debug │ └── net8.0 │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ ├── apphost.exe │ │ ├── helloworld.AssemblyInfo.cs │ │ ├── helloworld.AssemblyInfoInputs.cache │ │ ├── helloworld.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── helloworld.GlobalUsings.g.cs │ │ ├── helloworld.MvcApplicationPartsAssemblyInfo.cache │ │ ├── helloworld.assets.cache │ │ ├── helloworld.csproj.CoreCompileInputs.cache │ │ ├── helloworld.csproj.FileListAbsolute.txt │ │ ├── helloworld.dll │ │ ├── helloworld.genruntimeconfig.cache │ │ ├── helloworld.pdb │ │ ├── ref │ │ └── helloworld.dll │ │ ├── refint │ │ └── helloworld.dll │ │ ├── staticwebassets.build.json │ │ └── staticwebassets │ │ ├── msbuild.build.helloworld.props │ │ ├── msbuild.buildMultiTargeting.helloworld.props │ │ └── msbuild.buildTransitive.helloworld.props ├── helloworld.csproj.nuget.dgspec.json ├── helloworld.csproj.nuget.g.props ├── helloworld.csproj.nuget.g.targets ├── project.assets.json └── project.nuget.cache └── readme.md /ASP.NET-Hello-World.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.5.002.0 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "helloworld", "helloworld.csproj", "{61F24AF6-7B8A-4D36-9DA8-C2814BF5FAF0}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {61F24AF6-7B8A-4D36-9DA8-C2814BF5FAF0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {61F24AF6-7B8A-4D36-9DA8-C2814BF5FAF0}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {61F24AF6-7B8A-4D36-9DA8-C2814BF5FAF0}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {61F24AF6-7B8A-4D36-9DA8-C2814BF5FAF0}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {2C50849D-D6BA-421B-9273-D3A52EA164AE} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- 1 | var builder = WebApplication.CreateBuilder(args); 2 | var app = builder.Build(); 3 | 4 | app.MapGet("/", () => "Hello World!"); 5 | 6 | app.Run(); 7 | -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "http://json.schemastore.org/launchsettings.json", 3 | "iisSettings": { 4 | "windowsAuthentication": false, 5 | "anonymousAuthentication": true, 6 | "iisExpress": { 7 | "applicationUrl": "http://localhost:3914", 8 | "sslPort": 44301 9 | } 10 | }, 11 | "profiles": { 12 | "http": { 13 | "commandName": "Project", 14 | "dotnetRunMessages": true, 15 | "launchBrowser": true, 16 | "applicationUrl": "http://localhost:5087", 17 | "environmentVariables": { 18 | "ASPNETCORE_ENVIRONMENT": "Development" 19 | } 20 | }, 21 | "https": { 22 | "commandName": "Project", 23 | "dotnetRunMessages": true, 24 | "launchBrowser": true, 25 | "applicationUrl": "https://localhost:7060;http://localhost:5087", 26 | "environmentVariables": { 27 | "ASPNETCORE_ENVIRONMENT": "Development" 28 | } 29 | }, 30 | "IIS Express": { 31 | "commandName": "IISExpress", 32 | "launchBrowser": true, 33 | "environmentVariables": { 34 | "ASPNETCORE_ENVIRONMENT": "Development" 35 | } 36 | } 37 | } 38 | } 39 | -------------------------------------------------------------------------------- /appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | }, 8 | "AllowedHosts": "*" 9 | } 10 | -------------------------------------------------------------------------------- /bin/Debug/net8.0/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /bin/Debug/net8.0/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | }, 8 | "AllowedHosts": "*" 9 | } 10 | -------------------------------------------------------------------------------- /bin/Debug/net8.0/helloworld.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v8.0", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v8.0": { 9 | "helloworld/1.0.0": { 10 | "runtime": { 11 | "helloworld.dll": {} 12 | } 13 | } 14 | } 15 | }, 16 | "libraries": { 17 | "helloworld/1.0.0": { 18 | "type": "project", 19 | "serviceable": false, 20 | "sha512": "" 21 | } 22 | } 23 | } -------------------------------------------------------------------------------- /bin/Debug/net8.0/helloworld.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topi-debug/ASP.NET-Project/f6b66fab4598c8e16b3c386a3d258722e69621c5/bin/Debug/net8.0/helloworld.dll -------------------------------------------------------------------------------- /bin/Debug/net8.0/helloworld.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topi-debug/ASP.NET-Project/f6b66fab4598c8e16b3c386a3d258722e69621c5/bin/Debug/net8.0/helloworld.exe -------------------------------------------------------------------------------- /bin/Debug/net8.0/helloworld.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topi-debug/ASP.NET-Project/f6b66fab4598c8e16b3c386a3d258722e69621c5/bin/Debug/net8.0/helloworld.pdb -------------------------------------------------------------------------------- /bin/Debug/net8.0/helloworld.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "net8.0", 4 | "frameworks": [ 5 | { 6 | "name": "Microsoft.NETCore.App", 7 | "version": "8.0.0" 8 | }, 9 | { 10 | "name": "Microsoft.AspNetCore.App", 11 | "version": "8.0.0" 12 | } 13 | ], 14 | "configProperties": { 15 | "System.GC.Server": true, 16 | "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false 17 | } 18 | } 19 | } -------------------------------------------------------------------------------- /helloworld.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net8.0 5 | enable 6 | enable 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /obj/Debug/net8.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topi-debug/ASP.NET-Project/f6b66fab4598c8e16b3c386a3d258722e69621c5/obj/Debug/net8.0/apphost.exe -------------------------------------------------------------------------------- /obj/Debug/net8.0/helloworld.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // 5 | // Changes to this file may cause incorrect behavior and will be lost if 6 | // the code is regenerated. 7 | // 8 | //------------------------------------------------------------------------------ 9 | 10 | using System; 11 | using System.Reflection; 12 | 13 | [assembly: System.Reflection.AssemblyCompanyAttribute("helloworld")] 14 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 15 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 16 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+03efddf696a30000ec134c0aec979d8934b39ccf")] 17 | [assembly: System.Reflection.AssemblyProductAttribute("helloworld")] 18 | [assembly: System.Reflection.AssemblyTitleAttribute("helloworld")] 19 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 20 | 21 | // Generated by the MSBuild WriteCodeFragment class. 22 | 23 | -------------------------------------------------------------------------------- /obj/Debug/net8.0/helloworld.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 2a46dcd764e678031ce65fb5050692e32d6a07d9259a220be95ea99ad28c9027 2 | -------------------------------------------------------------------------------- /obj/Debug/net8.0/helloworld.GeneratedMSBuildEditorConfig.editorconfig: -------------------------------------------------------------------------------- 1 | is_global = true 2 | build_property.TargetFramework = net8.0 3 | build_property.TargetPlatformMinVersion = 4 | build_property.UsingMicrosoftNETSdkWeb = true 5 | build_property.ProjectTypeGuids = 6 | build_property.InvariantGlobalization = 7 | build_property.PlatformNeutralAssembly = 8 | build_property.EnforceExtendedAnalyzerRules = 9 | build_property._SupportedPlatformList = Linux,macOS,Windows 10 | build_property.RootNamespace = helloworld 11 | build_property.RootNamespace = helloworld 12 | build_property.ProjectDir = C:\Users\Administrator\Documents\GitHub\ASP.NET-Hello-World\ 13 | build_property.EnableComHosting = 14 | build_property.EnableGeneratedComInterfaceComImportInterop = 15 | build_property.RazorLangVersion = 8.0 16 | build_property.SupportLocalizedComponentNames = 17 | build_property.GenerateRazorMetadataSourceChecksumAttributes = 18 | build_property.MSBuildProjectDirectory = C:\Users\Administrator\Documents\GitHub\ASP.NET-Hello-World 19 | build_property._RazorSourceGeneratorDebug = 20 | -------------------------------------------------------------------------------- /obj/Debug/net8.0/helloworld.GlobalUsings.g.cs: -------------------------------------------------------------------------------- 1 | // 2 | global using global::Microsoft.AspNetCore.Builder; 3 | global using global::Microsoft.AspNetCore.Hosting; 4 | global using global::Microsoft.AspNetCore.Http; 5 | global using global::Microsoft.AspNetCore.Routing; 6 | global using global::Microsoft.Extensions.Configuration; 7 | global using global::Microsoft.Extensions.DependencyInjection; 8 | global using global::Microsoft.Extensions.Hosting; 9 | global using global::Microsoft.Extensions.Logging; 10 | global using global::System; 11 | global using global::System.Collections.Generic; 12 | global using global::System.IO; 13 | global using global::System.Linq; 14 | global using global::System.Net.Http; 15 | global using global::System.Net.Http.Json; 16 | global using global::System.Threading; 17 | global using global::System.Threading.Tasks; 18 | -------------------------------------------------------------------------------- /obj/Debug/net8.0/helloworld.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topi-debug/ASP.NET-Project/f6b66fab4598c8e16b3c386a3d258722e69621c5/obj/Debug/net8.0/helloworld.MvcApplicationPartsAssemblyInfo.cache -------------------------------------------------------------------------------- /obj/Debug/net8.0/helloworld.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topi-debug/ASP.NET-Project/f6b66fab4598c8e16b3c386a3d258722e69621c5/obj/Debug/net8.0/helloworld.assets.cache -------------------------------------------------------------------------------- /obj/Debug/net8.0/helloworld.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 8fad98cf2f68edf485bb4dff51b84349d5c460b2d44a416ca21f24ae473fc4c1 2 | -------------------------------------------------------------------------------- /obj/Debug/net8.0/helloworld.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | D:\Work\ASP.NET\helloworld\bin\Debug\net8.0\appsettings.Development.json 2 | D:\Work\ASP.NET\helloworld\bin\Debug\net8.0\appsettings.json 3 | D:\Work\ASP.NET\helloworld\bin\Debug\net8.0\helloworld.exe 4 | D:\Work\ASP.NET\helloworld\bin\Debug\net8.0\helloworld.deps.json 5 | D:\Work\ASP.NET\helloworld\bin\Debug\net8.0\helloworld.runtimeconfig.json 6 | D:\Work\ASP.NET\helloworld\bin\Debug\net8.0\helloworld.dll 7 | D:\Work\ASP.NET\helloworld\bin\Debug\net8.0\helloworld.pdb 8 | D:\Work\ASP.NET\helloworld\obj\Debug\net8.0\helloworld.GeneratedMSBuildEditorConfig.editorconfig 9 | D:\Work\ASP.NET\helloworld\obj\Debug\net8.0\helloworld.AssemblyInfoInputs.cache 10 | D:\Work\ASP.NET\helloworld\obj\Debug\net8.0\helloworld.AssemblyInfo.cs 11 | D:\Work\ASP.NET\helloworld\obj\Debug\net8.0\helloworld.csproj.CoreCompileInputs.cache 12 | D:\Work\ASP.NET\helloworld\obj\Debug\net8.0\helloworld.MvcApplicationPartsAssemblyInfo.cache 13 | D:\Work\ASP.NET\helloworld\obj\Debug\net8.0\staticwebassets.build.json 14 | D:\Work\ASP.NET\helloworld\obj\Debug\net8.0\staticwebassets.development.json 15 | D:\Work\ASP.NET\helloworld\obj\Debug\net8.0\staticwebassets\msbuild.helloworld.Microsoft.AspNetCore.StaticWebAssets.props 16 | D:\Work\ASP.NET\helloworld\obj\Debug\net8.0\staticwebassets\msbuild.build.helloworld.props 17 | D:\Work\ASP.NET\helloworld\obj\Debug\net8.0\staticwebassets\msbuild.buildMultiTargeting.helloworld.props 18 | D:\Work\ASP.NET\helloworld\obj\Debug\net8.0\staticwebassets\msbuild.buildTransitive.helloworld.props 19 | D:\Work\ASP.NET\helloworld\obj\Debug\net8.0\staticwebassets.pack.json 20 | D:\Work\ASP.NET\helloworld\obj\Debug\net8.0\scopedcss\bundle\helloworld.styles.css 21 | D:\Work\ASP.NET\helloworld\obj\Debug\net8.0\helloworld.dll 22 | D:\Work\ASP.NET\helloworld\obj\Debug\net8.0\refint\helloworld.dll 23 | D:\Work\ASP.NET\helloworld\obj\Debug\net8.0\helloworld.pdb 24 | D:\Work\ASP.NET\helloworld\obj\Debug\net8.0\helloworld.genruntimeconfig.cache 25 | D:\Work\ASP.NET\helloworld\obj\Debug\net8.0\ref\helloworld.dll 26 | -------------------------------------------------------------------------------- /obj/Debug/net8.0/helloworld.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topi-debug/ASP.NET-Project/f6b66fab4598c8e16b3c386a3d258722e69621c5/obj/Debug/net8.0/helloworld.dll -------------------------------------------------------------------------------- /obj/Debug/net8.0/helloworld.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 149b3e21533f955b233b214d7600aa9d16ba5efe55a83cc4ea7edbe75ce9a9ac 2 | -------------------------------------------------------------------------------- /obj/Debug/net8.0/helloworld.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topi-debug/ASP.NET-Project/f6b66fab4598c8e16b3c386a3d258722e69621c5/obj/Debug/net8.0/helloworld.pdb -------------------------------------------------------------------------------- /obj/Debug/net8.0/ref/helloworld.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topi-debug/ASP.NET-Project/f6b66fab4598c8e16b3c386a3d258722e69621c5/obj/Debug/net8.0/ref/helloworld.dll -------------------------------------------------------------------------------- /obj/Debug/net8.0/refint/helloworld.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/topi-debug/ASP.NET-Project/f6b66fab4598c8e16b3c386a3d258722e69621c5/obj/Debug/net8.0/refint/helloworld.dll -------------------------------------------------------------------------------- /obj/Debug/net8.0/staticwebassets.build.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": 1, 3 | "Hash": "/Kjus1t86l/sh64Kmw4G5wlQFlyMw4Dsi/t91ghqzss=", 4 | "Source": "helloworld", 5 | "BasePath": "_content/helloworld", 6 | "Mode": "Default", 7 | "ManifestType": "Build", 8 | "ReferencedProjectsConfiguration": [], 9 | "DiscoveryPatterns": [], 10 | "Assets": [] 11 | } -------------------------------------------------------------------------------- /obj/Debug/net8.0/staticwebassets/msbuild.build.helloworld.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.helloworld.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.helloworld.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /obj/helloworld.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "C:\\Users\\Administrator\\Documents\\GitHub\\ASP.NET-Hello-World\\helloworld.csproj": {} 5 | }, 6 | "projects": { 7 | "C:\\Users\\Administrator\\Documents\\GitHub\\ASP.NET-Hello-World\\helloworld.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "C:\\Users\\Administrator\\Documents\\GitHub\\ASP.NET-Hello-World\\helloworld.csproj", 11 | "projectName": "helloworld", 12 | "projectPath": "C:\\Users\\Administrator\\Documents\\GitHub\\ASP.NET-Hello-World\\helloworld.csproj", 13 | "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", 14 | "outputPath": "C:\\Users\\Administrator\\Documents\\GitHub\\ASP.NET-Hello-World\\obj\\", 15 | "projectStyle": "PackageReference", 16 | "configFilePaths": [ 17 | "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config" 18 | ], 19 | "originalTargetFrameworks": [ 20 | "net8.0" 21 | ], 22 | "sources": { 23 | "C:\\Program Files\\dotnet\\library-packs": {}, 24 | "https://api.nuget.org/v3/index.json": {} 25 | }, 26 | "frameworks": { 27 | "net8.0": { 28 | "targetAlias": "net8.0", 29 | "projectReferences": {} 30 | } 31 | }, 32 | "warningProperties": { 33 | "warnAsError": [ 34 | "NU1605" 35 | ] 36 | }, 37 | "restoreAuditProperties": { 38 | "enableAudit": "true", 39 | "auditLevel": "low", 40 | "auditMode": "direct" 41 | } 42 | }, 43 | "frameworks": { 44 | "net8.0": { 45 | "targetAlias": "net8.0", 46 | "imports": [ 47 | "net461", 48 | "net462", 49 | "net47", 50 | "net471", 51 | "net472", 52 | "net48", 53 | "net481" 54 | ], 55 | "assetTargetFallback": true, 56 | "warn": true, 57 | "frameworkReferences": { 58 | "Microsoft.AspNetCore.App": { 59 | "privateAssets": "none" 60 | }, 61 | "Microsoft.NETCore.App": { 62 | "privateAssets": "all" 63 | } 64 | }, 65 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.203/PortableRuntimeIdentifierGraph.json" 66 | } 67 | } 68 | } 69 | } 70 | } -------------------------------------------------------------------------------- /obj/helloworld.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\Administrator\.nuget\packages\ 9 | PackageReference 10 | 6.9.1 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /obj/helloworld.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /obj/project.assets.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": 3, 3 | "targets": { 4 | "net8.0": {} 5 | }, 6 | "libraries": {}, 7 | "projectFileDependencyGroups": { 8 | "net8.0": [] 9 | }, 10 | "packageFolders": { 11 | "C:\\Users\\Administrator\\.nuget\\packages\\": {} 12 | }, 13 | "project": { 14 | "version": "1.0.0", 15 | "restore": { 16 | "projectUniqueName": "C:\\Users\\Administrator\\Documents\\GitHub\\ASP.NET-Hello-World\\helloworld.csproj", 17 | "projectName": "helloworld", 18 | "projectPath": "C:\\Users\\Administrator\\Documents\\GitHub\\ASP.NET-Hello-World\\helloworld.csproj", 19 | "packagesPath": "C:\\Users\\Administrator\\.nuget\\packages\\", 20 | "outputPath": "C:\\Users\\Administrator\\Documents\\GitHub\\ASP.NET-Hello-World\\obj\\", 21 | "projectStyle": "PackageReference", 22 | "configFilePaths": [ 23 | "C:\\Users\\Administrator\\AppData\\Roaming\\NuGet\\NuGet.Config" 24 | ], 25 | "originalTargetFrameworks": [ 26 | "net8.0" 27 | ], 28 | "sources": { 29 | "C:\\Program Files\\dotnet\\library-packs": {}, 30 | "https://api.nuget.org/v3/index.json": {} 31 | }, 32 | "frameworks": { 33 | "net8.0": { 34 | "targetAlias": "net8.0", 35 | "projectReferences": {} 36 | } 37 | }, 38 | "warningProperties": { 39 | "warnAsError": [ 40 | "NU1605" 41 | ] 42 | }, 43 | "restoreAuditProperties": { 44 | "enableAudit": "true", 45 | "auditLevel": "low", 46 | "auditMode": "direct" 47 | } 48 | }, 49 | "frameworks": { 50 | "net8.0": { 51 | "targetAlias": "net8.0", 52 | "imports": [ 53 | "net461", 54 | "net462", 55 | "net47", 56 | "net471", 57 | "net472", 58 | "net48", 59 | "net481" 60 | ], 61 | "assetTargetFallback": true, 62 | "warn": true, 63 | "frameworkReferences": { 64 | "Microsoft.AspNetCore.App": { 65 | "privateAssets": "none" 66 | }, 67 | "Microsoft.NETCore.App": { 68 | "privateAssets": "all" 69 | } 70 | }, 71 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.203/PortableRuntimeIdentifierGraph.json" 72 | } 73 | } 74 | } 75 | } -------------------------------------------------------------------------------- /obj/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "M/Y+vNjawGZ+LmuZg0Xjk/MtpUn8MGegGQtv7/erYeOS2DnVGwvi0FsvtGobQGjr7KNLQtsyhQ0YeD+ubAoaaA==", 4 | "success": true, 5 | "projectFilePath": "C:\\Users\\Administrator\\Documents\\GitHub\\ASP.NET-Hello-World\\helloworld.csproj", 6 | "expectedPackageFiles": [], 7 | "logs": [] 8 | } -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | readme update 2 | createdev & updatedev 3 | 4 | --------------------------------------------------------------------------------