コード例 #1
0
ファイル: Startup.cs プロジェクト: LICH010/benchmark
        // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
        public void Configure(IApplicationBuilder app, IHostingEnvironment env)
        {
            app.UseStaticFiles();

            app.UseDeveloperExceptionPage();

            appConfigurator.UseMvcAndConfigureRoutes(app);

            app.UseAuthentication();
        }