1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- using System;
- using System.Collections.Generic;
- using Microsoft.AspNetCore.Builder;
- using Microsoft.AspNetCore.Hosting;
- using Microsoft.Extensions.DependencyInjection;
- using Microsoft.Extensions.Hosting;
- using VCommon.VAspNetCoreExample.VApp.Example;
- using VCommon.VOpenApi.VAspNetCore;
- using VCommon.VSwaggerUI;
- using VCommon.VSwaggerUI.VAspNetCore;
- namespace VCommon.VAspNetCoreExample
- {
- 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)
- {
- var dbg = false;
- if (env.IsDevelopment())
- {
- app.UseDeveloperExceptionPage();
- dbg = true;
- }
- app.UseSwaggerUiMiddleware(SwaggerUiResourceProvider.Version1);
- ApiMiddleware.Init(new Dictionary<string, Type>
- {
- { "Example", typeof(IExampleService) }
- },
- docGen: true, title: "Example API Set",
- isDebuggingEnabled: dbg);
- app.UseMiddleware<ApiMiddleware>();
- }
- }
- }
|