using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; using Vault.Demo.hashicorp.Console; using Vault.Demo.hashicorp.Console.Handler; using Vault.Demo.hashicorp.Console.Helper; using VaultSharp; var builder = Host.CreateDefaultBuilder(args); builder.ConfigureServices(s => { s.AddSingleton(); s.AddSingleton(); s.AddSingleton(); }); using var app = builder.Build(); using var scope = app.Services.CreateScope(); var application = scope.ServiceProvider.GetRequiredService(); await application.Run(["C:\\Users\\SENTIENTGEEKS\\Desktop\\New_folder_(2)\\Acme.BookStore"]);