var builder = WebApplication.CreateBuilder(args);
var app = builder.Build();
app.MapGet("/", () => "Hello ASP.NET Core World!");
app.Run();
7
[新しいプロジェクトを追加]ダイアログが表示されます。
上部の検索ボックスで"ASP.NET Core"で検索します。 ASP.NET Coreのプロジェクトの一覧が右側のリストに表示されます。"ASP.NET Core Web アプリケーション"の項目をクリックして選択します。C#以外の言語の項目も表示されますが、今回はC#の。"ASP.NET Core Web アプリケーション" を選択します。選択後ダイアログ右下の[次へ]ボタンをクリックします。
[新しいプロジェクトを構成します]ダイアログが表示されます。プロジェクト名とプロジェクトの保存場所を設定します。設定後ダイアログ右下の[作成]ボタンをクリックします。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
namespace SimpleMiddleWare
{
public class Startup
{
// This method gets called by the runtime. Use this method to add services to the container.
// For more information on how to configure your application, visit https://go.microsoft.com/fwlink/?LinkID=398940
public void ConfigureServices(IServiceCollection services)
{
}
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
if (env.IsDevelopment()) {
app.UseDeveloperExceptionPage();
}
app.UseRouting();
app.UseEndpoints(endpoints =>
{
endpoints.MapGet("/", async context =>
{
await context.Response.WriteAsync("Hello World!");
});
});
}
}
}