hello world
Posted 诺贝尔
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hello world相关的知识,希望对你有一定的参考价值。
using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using System.Text.Encodings.Web; using System.Text.Unicode; using Microsoft.Extensions.FileProviders; using System.IO; using Microsoft.AspNetCore.Http; namespace WebApplication1 { public class Startup { public Startup(IHostingEnvironment env) { var builder = new ConfigurationBuilder() .SetBasePath(env.ContentRootPath) .AddJsonFile("appsettings.json", optional: true, reloadOnChange: true) .AddJsonFile($"appsettings.{env.EnvironmentName}.json", optional: true) .AddEnvironmentVariables(); Configuration = builder.Build(); } public IConfigurationRoot Configuration { get; } // This method gets called by the runtime. Use this method to add services to the container. public void ConfigureServices(IServiceCollection services) { // Add framework services. services.AddMvc(); //正确处理汉字 //services.AddSingleton(htmlEncoder.Create(UnicodeRanges.All)); services.AddDirectoryBrowser(); } // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory) { loggerFactory.AddConsole(Configuration.GetSection("Logging")); loggerFactory.AddDebug(); if (env.IsDevelopment()) { app.UseDeveloperExceptionPage(); app.UseBrowserLink(); } else { app.UseExceptionHandler("/Home/Error"); } app.UseStaticFiles(); app.UseDirectoryBrowser(new DirectoryBrowserOptions() { FileProvider = new PhysicalFileProvider( Path.Combine(Directory.GetCurrentDirectory(), @"wwwroot\\images")), RequestPath = new PathString("/images") }); app.UseMvc(routes => { routes.MapRoute( name: "default", template: "{controller=Hello}/{action=Index}/{id?}"); }); } } }
以上是关于hello world的主要内容,如果未能解决你的问题,请参考以下文章