1234567891011121314151617181920212223242526272829303132333435 |
- using AdService.Service;
- var builder = WebApplication.CreateBuilder(args);
- // Add services to the container.
- builder.Services.AddControllers();
- // Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
- builder.Services.AddEndpointsApiExplorer();
- builder.Services.AddSwaggerGen();
- builder.Services.AddHostedService<AdReportService>();
- var app = builder.Build();
- // Configure the HTTP request pipeline.
- if (app.Environment.IsDevelopment())
- {
- app.UseSwagger();
- app.UseSwaggerUI();
- }
- app.UseHttpsRedirection();
- app.UseAuthorization();
- app.MapControllers();
- app.Run();
- /*WebApiHelper.Start(_localPort: 7011,
- dtoXmlName: "02.DW5S.DTO.xml",
- controllerXmlName: "AdService.Controller.xml",
- dllKey: "DW5S");*/
|