コード例 #1
0
ファイル: Startup.cs プロジェクト: MonsterGameDev/Budget
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IHostingEnvironment env, BudgetDbContext budgetDbContext)
        {
            if (env.IsDevelopment())
            {
                app.UseDeveloperExceptionPage();
            }
            app.UseCors("CorsPolicyBudgetApi");
            budgetDbContext.EnsureSeedDataForContext();

            app.UseMvc();


            // Status message
            app.Run(async(context) =>
            {
                await context.Response.WriteAsync("WebApi Up and Spinning...");
            });
        }