123456789101112131415161718192021222324 |
- var builder = WebApplication.CreateBuilder(args);
- // Add services to the container.
- builder.Services.AddDaprClient();
- builder.Services.AddRazorPages();
- //builder.WebHost.UseUrls("http://*:50112");
- var app = builder.Build();
- // Configure the HTTP request pipeline.
- //if (!app.Environment.IsDevelopment())
- //{
- app.UseExceptionHandler("/Error");
- //}
- app.UseStaticFiles();
- app.UseRouting();
- app.UseAuthorization();
- app.MapRazorPages();
- app.Run();
|