diff --git a/tutorials/scalable-razor-apps/end/Program.cs b/tutorials/scalable-razor-apps/end/Program.cs index 880ab2a..5c31e83 100644 --- a/tutorials/scalable-razor-apps/end/Program.cs +++ b/tutorials/scalable-razor-apps/end/Program.cs @@ -1,8 +1,7 @@ -// +// using Azure.Identity; using Microsoft.AspNetCore.DataProtection; using Microsoft.Extensions.Azure; -// var builder = WebApplication.CreateBuilder(args); var BlobStorageUri = builder.Configuration["AzureURIs:BlobStorage"]; @@ -12,7 +11,6 @@ builder.Services.AddRazorPages(); builder.Services.AddHttpClient(); builder.Services.AddServerSideBlazor(); -// builder.Services.AddAzureClientsCore(); builder.Services.AddDataProtection() @@ -20,7 +18,6 @@ builder.Services.AddDataProtection() new DefaultAzureCredential()) .ProtectKeysWithAzureKeyVault(new Uri(KeyVaultURI), new DefaultAzureCredential()); -// var app = builder.Build(); if (!app.Environment.IsDevelopment()) @@ -39,3 +36,4 @@ app.UseAuthorization(); app.MapRazorPages(); app.Run(); +// \ No newline at end of file