-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
33 lines (25 loc) · 933 Bytes
/
Copy pathProgram.cs
File metadata and controls
33 lines (25 loc) · 933 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
using AzureUdemy;
using Azure.Storage.Blobs;
using AzureUdemy.Services;
new StartupBuilder(WebApplication.CreateBuilder(args)).ConfigureServices((IServiceCollection services, ConfigurationManager config) =>
{
services.AddControllersWithViews();
services.AddSingleton(_ => new BlobServiceClient(config.GetValue<string>("BlobConnection")));
services.AddSingleton<IContainerService, ContainerService>();
services.AddSingleton<IBlobService, BlobService>();
}).ConfigureApp((WebApplication app) =>
{
if (app.Environment.IsDevelopment())
{
app.UseExceptionHandler("/Home/Error");
app.UseHsts();
}
app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseDefaultFiles();
app.UseRouting();
app.UseAuthorization();
app.MapControllerRoute(
name: "default",
pattern: "{controller=Home}/{action=Index}/{id?}");
}).Run();