From fcd48342b5b50412e6cfa61bbc65e2e3a3cf57bb Mon Sep 17 00:00:00 2001 From: Pat Hartl Date: Tue, 8 Aug 2023 20:32:56 -0500 Subject: [PATCH] Remove unused connection string reference --- LANCommander/Program.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/LANCommander/Program.cs b/LANCommander/Program.cs index be41c0a0..edfd75e3 100644 --- a/LANCommander/Program.cs +++ b/LANCommander/Program.cs @@ -15,7 +15,6 @@ var builder = WebApplication.CreateBuilder(args); ConfigurationManager configuration = builder.Configuration; // Add services to the container. -var connectionString = builder.Configuration.GetConnectionString("DefaultConnection"); var settings = SettingService.GetSettings(); builder.Services.AddMvc(options => options.EnableEndpointRouting = false);