Before Ignore

This commit is contained in:
GuiNerd
2019-09-24 18:18:31 -03:00
parent d3201f9bd3
commit 2aa78d43c5
43 changed files with 317 additions and 602 deletions

View File

@ -34,9 +34,9 @@ namespace GerenciaProjetos
services.AddRouting(options => options.LowercaseUrls = true);
//services.AddDbContext<GerenciaContext>(options => options.UseMySql(Configuration.GetConnectionString("DefaultConnection")));
services.AddDbContext<GerenciaContext>(options => options.UseMySql(Configuration.GetConnectionString("DefaultConnection")));
services.AddDbContext<GerenciaContext>(options => options.UseMySql(Configuration.GetConnectionString("LaboratConnection")));
//services.AddDbContext<GerenciaContext>(options => options.UseMySql(Configuration.GetConnectionString("LaboratConnection")));
services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2);
}