- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/FinkiChattery/FinkiChattery.Identity/Startup.cs
r2b66157 re6a6d9a 28 28 services.AddControllersWithViews(); 29 29 30 string connectionString = "DefaultConnection";31 #if DEBUG_DOCKER32 connectionString = "DefaultConnectionDocker";33 #endif34 35 30 services.AddDbContextPool<ApplicationDbContext<ApplicationUser>>(options => 36 options.UseSqlServer(Configuration.GetConnectionString( connectionString)));31 options.UseSqlServer(Configuration.GetConnectionString("DefaultConnection"))); 37 32 38 33 services.AddIdentityServerAndIdentityProvider(AppSettings);
Note:
See TracChangeset
for help on using the changeset viewer.