You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
828 B
C#
37 lines
828 B
C#
using Microsoft.Extensions.Options;
|
|
using Microsoft.OpenApi.Models;
|
|
using SqlSugar;
|
|
using System.ComponentModel;
|
|
using Txgy.RBS.IServices;
|
|
using Txgy.RBS.Server.WebApi.Register;
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
// Add services to the container.
|
|
|
|
builder.Register(); //业务逻辑层的注册
|
|
//支持Automapper映射
|
|
builder.Services.AddAutoMapper(typeof(AutoMapObject));
|
|
|
|
builder.Services.AddControllers();
|
|
// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle
|
|
builder.Services.AddEndpointsApiExplorer();
|
|
builder.Services.AddSwaggerGen();
|
|
|
|
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();
|