diff --git a/.vs/GerenciaProjetos/v15/.suo b/.vs/GerenciaProjetos/v15/.suo index dce5c05..099f312 100644 Binary files a/.vs/GerenciaProjetos/v15/.suo and b/.vs/GerenciaProjetos/v15/.suo differ diff --git a/.vs/GerenciaProjetos/v15/Server/sqlite3/storage.ide b/.vs/GerenciaProjetos/v15/Server/sqlite3/storage.ide index 483cc7b..bde42bf 100644 Binary files a/.vs/GerenciaProjetos/v15/Server/sqlite3/storage.ide and b/.vs/GerenciaProjetos/v15/Server/sqlite3/storage.ide differ diff --git a/.vs/GerenciaProjetos/v15/Server/sqlite3/storage.ide-shm b/.vs/GerenciaProjetos/v15/Server/sqlite3/storage.ide-shm index 1e6e0d8..2a19127 100644 Binary files a/.vs/GerenciaProjetos/v15/Server/sqlite3/storage.ide-shm and b/.vs/GerenciaProjetos/v15/Server/sqlite3/storage.ide-shm differ diff --git a/.vs/GerenciaProjetos/v15/Server/sqlite3/storage.ide-wal b/.vs/GerenciaProjetos/v15/Server/sqlite3/storage.ide-wal index 2a53600..906b9ca 100644 Binary files a/.vs/GerenciaProjetos/v15/Server/sqlite3/storage.ide-wal and b/.vs/GerenciaProjetos/v15/Server/sqlite3/storage.ide-wal differ diff --git a/GerenciaProjetos/Controllers/BugsController.cs b/GerenciaProjetos/Controllers/BugsController.cs index f3ba4ac..c8839c4 100644 --- a/GerenciaProjetos/Controllers/BugsController.cs +++ b/GerenciaProjetos/Controllers/BugsController.cs @@ -55,7 +55,7 @@ namespace GerenciaProjetos.Controllers ctx.Bugs.Add(bug); ctx.SaveChanges(); - return RedirectToAction("Index", "Home"); + return RedirectToAction("Index", "Dashboard"); } else { @@ -87,7 +87,7 @@ namespace GerenciaProjetos.Controllers } else { - return RedirectToAction("Index", "Home"); + return RedirectToAction("Index", "Dashboard"); } } @@ -97,7 +97,8 @@ namespace GerenciaProjetos.Controllers { if (ModelState.IsValid) { - ctx.Entry(bug).Property(r => r.DesenvolvedorId).IsModified = true; + ctx.Entry(bug).Property(r => r.CriadorId).IsModified = true; + ctx.Entry(bug).Property(r => r.SolucionadorId).IsModified = true; ctx.Entry(bug).Property(r => r.RequisitoId).IsModified = true; ctx.Entry(bug).Property(r => r.FoiResolvido).IsModified = true; ctx.Entry(bug).Property(r => r.Descricao).IsModified = true; @@ -105,7 +106,7 @@ namespace GerenciaProjetos.Controllers ctx.SaveChanges(); - return RedirectToAction("Index", "Home"); + return RedirectToAction("Index", "Dashboard"); } else { @@ -123,7 +124,7 @@ namespace GerenciaProjetos.Controllers ctx.SaveChanges(); } - return RedirectToAction("Index", "Home"); + return RedirectToAction("Index", "Dashboard"); } } } \ No newline at end of file diff --git a/GerenciaProjetos/Controllers/DashboardController.cs b/GerenciaProjetos/Controllers/DashboardController.cs new file mode 100644 index 0000000..5e92a07 --- /dev/null +++ b/GerenciaProjetos/Controllers/DashboardController.cs @@ -0,0 +1,29 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using GerenciaProjetos.Data; +using Microsoft.AspNetCore.Mvc; + +namespace GerenciaProjetos.Controllers +{ + public class DashboardController : Controller + { + private GerenciaContext ctx; + + public DashboardController(GerenciaContext ctx) + { + this.ctx = ctx; + } + + public IActionResult Index() + { + ViewBag.Desenvolvedores = ctx.Desenvolvedores; + ViewBag.Projetos = ctx.Projetos; + ViewBag.Requisitos = ctx.Requisitos; + ViewBag.Bugs = ctx.Bugs; + + return View(); + } + } +} \ No newline at end of file diff --git a/GerenciaProjetos/Controllers/DesenvolvedoresController.cs b/GerenciaProjetos/Controllers/DesenvolvedoresController.cs index a1c599d..3b99e31 100644 --- a/GerenciaProjetos/Controllers/DesenvolvedoresController.cs +++ b/GerenciaProjetos/Controllers/DesenvolvedoresController.cs @@ -40,7 +40,7 @@ namespace GerenciaProjetos.Controllers ctx.Desenvolvedores.Add(dev); ctx.SaveChanges(); - return RedirectToAction("Index", "Home"); + return RedirectToAction("Index", "Dashboard"); } else { @@ -60,7 +60,7 @@ namespace GerenciaProjetos.Controllers } else { - return RedirectToAction("Index", "Home"); + return RedirectToAction("Index", "Dashboard"); } } @@ -73,7 +73,7 @@ namespace GerenciaProjetos.Controllers ctx.Desenvolvedores.Update(dev); ctx.SaveChanges(); - return RedirectToAction("Index", "Home"); + return RedirectToAction("Index", "Dashboard"); } else { @@ -91,7 +91,7 @@ namespace GerenciaProjetos.Controllers ctx.SaveChanges(); } - return RedirectToAction("Index", "Home"); + return RedirectToAction("Index", "Dashboard"); } } } \ No newline at end of file diff --git a/GerenciaProjetos/Controllers/HomeController.cs b/GerenciaProjetos/Controllers/HomeController.cs index a73519e..be8ce78 100644 --- a/GerenciaProjetos/Controllers/HomeController.cs +++ b/GerenciaProjetos/Controllers/HomeController.cs @@ -6,6 +6,7 @@ using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; using GerenciaProjetos.Models; using GerenciaContext = GerenciaProjetos.Data.GerenciaContext; +using Microsoft.AspNetCore.Http; namespace GerenciaProjetos.Controllers { @@ -20,14 +21,52 @@ namespace GerenciaProjetos.Controllers public IActionResult Index() { - ViewBag.Desenvolvedores = ctx.Desenvolvedores; - ViewBag.Projetos = ctx.Projetos; - ViewBag.Requisitos = ctx.Requisitos; - ViewBag.Bugs = ctx.Bugs; - return View(); } + [HttpPost] + public IActionResult Index(Desenvolvedor dev) + { + Desenvolvedor desenvolvedor = ctx.Desenvolvedores.Where(a => a.Email == dev.Email && a.Senha == dev.Senha).FirstOrDefault(); + if (desenvolvedor != null) + { + HttpContext.Session.SetInt32("Id", desenvolvedor.Id); + HttpContext.Session.SetString("Email", desenvolvedor.Email); + HttpContext.Session.SetInt32("EAdmin", desenvolvedor.EAdmin ? 1 : 0); + + ViewBag.Projeto = ctx.Projetos; + + return RedirectToAction("Index", "Dashboard"); + } + else + { + ViewBag.Mensagem = "Usuario não encontrado!"; + + return View(); + } + } + + public IActionResult Cadastro() + { + return View(); + } + + [HttpPost] + public IActionResult Cadastro(Desenvolvedor dev) + { + if (ModelState.IsValid) + { + ctx.Desenvolvedores.Add(dev); + ctx.SaveChanges(); + + return RedirectToAction("Index", "Dashboard"); + } + else + { + return View("Form", dev); + } + } + public IActionResult Privacy() { return View(); diff --git a/GerenciaProjetos/Controllers/ProjetosController.cs b/GerenciaProjetos/Controllers/ProjetosController.cs index 9c2ef34..4daab66 100644 --- a/GerenciaProjetos/Controllers/ProjetosController.cs +++ b/GerenciaProjetos/Controllers/ProjetosController.cs @@ -40,7 +40,7 @@ namespace GerenciaProjetos.Controllers ctx.Projetos.Add(proj); ctx.SaveChanges(); - return RedirectToAction("Index", "Home"); + return RedirectToAction("Index", "Dashboard"); } else { @@ -60,7 +60,7 @@ namespace GerenciaProjetos.Controllers } else { - return RedirectToAction("Index", "Home"); + return RedirectToAction("Index", "Dashboard"); } } @@ -73,7 +73,7 @@ namespace GerenciaProjetos.Controllers ctx.Projetos.Update(proj); ctx.SaveChanges(); - return RedirectToAction("Index", "Home"); + return RedirectToAction("Index", "Dashboard"); } else { @@ -91,7 +91,7 @@ namespace GerenciaProjetos.Controllers ctx.SaveChanges(); } - return RedirectToAction("Index", "Home"); + return RedirectToAction("Index", "Dashboard"); } } } \ No newline at end of file diff --git a/GerenciaProjetos/Controllers/RequisitosController.cs b/GerenciaProjetos/Controllers/RequisitosController.cs index cf9fbab..fc6bf51 100644 --- a/GerenciaProjetos/Controllers/RequisitosController.cs +++ b/GerenciaProjetos/Controllers/RequisitosController.cs @@ -49,7 +49,7 @@ namespace GerenciaProjetos.Controllers ctx.Requisitos.Add(req); ctx.SaveChanges(); - return RedirectToAction("Index", "Home"); + return RedirectToAction("Index", "Dashboard"); } else { @@ -75,7 +75,7 @@ namespace GerenciaProjetos.Controllers } else { - return RedirectToAction("Index", "Home"); + return RedirectToAction("Index", "Dashboard"); } } @@ -94,7 +94,7 @@ namespace GerenciaProjetos.Controllers ctx.SaveChanges(); - return RedirectToAction("Index", "Home"); + return RedirectToAction("Index", "Dashboard"); } else { @@ -112,7 +112,7 @@ namespace GerenciaProjetos.Controllers ctx.SaveChanges(); } - return RedirectToAction("Index", "Home"); + return RedirectToAction("Index", "Dashboard"); } } } \ No newline at end of file diff --git a/GerenciaProjetos/Filters/LoginFilterAttribute.cs b/GerenciaProjetos/Filters/LoginFilterAttribute.cs new file mode 100644 index 0000000..bf18a15 --- /dev/null +++ b/GerenciaProjetos/Filters/LoginFilterAttribute.cs @@ -0,0 +1,38 @@ +using Microsoft.AspNetCore.Http; +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Mvc.Filters; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace GerenciaProjetos.Filters +{ + public class LoginFilterAttribute : Attribute, IActionFilter + { + public bool Restrito { get; set; } + + public void OnActionExecuted(ActionExecutedContext context) + { + int? IdUsuario = context.HttpContext.Session.GetInt32("Id"); + + if (IdUsuario == null) + { + context.Result = new RedirectToRouteResult(new { controller = "Home", action = "Index" }); + } + else if (context.HttpContext.Session.GetInt32("EAdmin") != 1 && Restrito) + { + context.Result = new RedirectToRouteResult(new + { + controller = "Dashboard", + action = "Index" + }); + } + } + + public void OnActionExecuting(ActionExecutingContext context) + { + + } + } +} diff --git a/GerenciaProjetos/Migrations/20190924211432_1.Designer.cs b/GerenciaProjetos/Migrations/20191130154458_1.Designer.cs similarity index 92% rename from GerenciaProjetos/Migrations/20190924211432_1.Designer.cs rename to GerenciaProjetos/Migrations/20191130154458_1.Designer.cs index 4c1de7f..0f2654d 100644 --- a/GerenciaProjetos/Migrations/20190924211432_1.Designer.cs +++ b/GerenciaProjetos/Migrations/20191130154458_1.Designer.cs @@ -9,7 +9,7 @@ using Microsoft.EntityFrameworkCore.Storage.ValueConversion; namespace GerenciaProjetos.Migrations { [DbContext(typeof(GerenciaContext))] - [Migration("20190924211432_1")] + [Migration("20191130154458_1")] partial class _1 { protected override void BuildTargetModel(ModelBuilder modelBuilder) @@ -24,14 +24,14 @@ namespace GerenciaProjetos.Migrations b.Property("Id") .ValueGeneratedOnAdd(); + b.Property("CriadorId"); + b.Property("DataCadastro"); b.Property("Descricao") .IsRequired() .HasMaxLength(100); - b.Property("DesenvolvedorId"); - b.Property("FoiResolvido"); b.Property("Prioridade") @@ -39,12 +39,16 @@ namespace GerenciaProjetos.Migrations b.Property("RequisitoId"); + b.Property("SolucionadorId"); + b.HasKey("Id"); - b.HasIndex("DesenvolvedorId"); + b.HasIndex("CriadorId"); b.HasIndex("RequisitoId"); + b.HasIndex("SolucionadorId"); + b.ToTable("Bugs"); }); @@ -149,15 +153,20 @@ namespace GerenciaProjetos.Migrations modelBuilder.Entity("GerenciaProjetos.Models.Bug", b => { - b.HasOne("GerenciaProjetos.Models.Desenvolvedor", "Desenvolvedor") + b.HasOne("GerenciaProjetos.Models.Desenvolvedor", "Criador") .WithMany() - .HasForeignKey("DesenvolvedorId") + .HasForeignKey("CriadorId") .OnDelete(DeleteBehavior.Cascade); b.HasOne("GerenciaProjetos.Models.Requisito", "Requisito") - .WithMany() + .WithMany("Bugs") .HasForeignKey("RequisitoId") .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("GerenciaProjetos.Models.Desenvolvedor", "Solucionador") + .WithMany() + .HasForeignKey("SolucionadorId") + .OnDelete(DeleteBehavior.Cascade); }); modelBuilder.Entity("GerenciaProjetos.Models.DesenvolvedorProjeto", b => diff --git a/GerenciaProjetos/Migrations/20190924211432_1.cs b/GerenciaProjetos/Migrations/20191130154458_1.cs similarity index 90% rename from GerenciaProjetos/Migrations/20190924211432_1.cs rename to GerenciaProjetos/Migrations/20191130154458_1.cs index f464519..a65c885 100644 --- a/GerenciaProjetos/Migrations/20190924211432_1.cs +++ b/GerenciaProjetos/Migrations/20191130154458_1.cs @@ -93,7 +93,8 @@ namespace GerenciaProjetos.Migrations { Id = table.Column(nullable: false) .Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn), - DesenvolvedorId = table.Column(nullable: false), + CriadorId = table.Column(nullable: false), + SolucionadorId = table.Column(nullable: false), RequisitoId = table.Column(nullable: false), Descricao = table.Column(maxLength: 100, nullable: false), Prioridade = table.Column(maxLength: 25, nullable: true), @@ -104,8 +105,8 @@ namespace GerenciaProjetos.Migrations { table.PrimaryKey("PK_Bugs", x => x.Id); table.ForeignKey( - name: "FK_Bugs_Desenvolvedores_DesenvolvedorId", - column: x => x.DesenvolvedorId, + name: "FK_Bugs_Desenvolvedores_CriadorId", + column: x => x.CriadorId, principalTable: "Desenvolvedores", principalColumn: "Id", onDelete: ReferentialAction.Cascade); @@ -115,6 +116,12 @@ namespace GerenciaProjetos.Migrations principalTable: "Requisitos", principalColumn: "Id", onDelete: ReferentialAction.Cascade); + table.ForeignKey( + name: "FK_Bugs_Desenvolvedores_SolucionadorId", + column: x => x.SolucionadorId, + principalTable: "Desenvolvedores", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateTable( @@ -143,15 +150,20 @@ namespace GerenciaProjetos.Migrations }); migrationBuilder.CreateIndex( - name: "IX_Bugs_DesenvolvedorId", + name: "IX_Bugs_CriadorId", table: "Bugs", - column: "DesenvolvedorId"); + column: "CriadorId"); migrationBuilder.CreateIndex( name: "IX_Bugs_RequisitoId", table: "Bugs", column: "RequisitoId"); + migrationBuilder.CreateIndex( + name: "IX_Bugs_SolucionadorId", + table: "Bugs", + column: "SolucionadorId"); + migrationBuilder.CreateIndex( name: "IX_DesenvolvedorProjeto_ProjetoId", table: "DesenvolvedorProjeto", diff --git a/GerenciaProjetos/Migrations/GerenciaContextModelSnapshot.cs b/GerenciaProjetos/Migrations/GerenciaContextModelSnapshot.cs index 4524f18..37bce99 100644 --- a/GerenciaProjetos/Migrations/GerenciaContextModelSnapshot.cs +++ b/GerenciaProjetos/Migrations/GerenciaContextModelSnapshot.cs @@ -22,14 +22,14 @@ namespace GerenciaProjetos.Migrations b.Property("Id") .ValueGeneratedOnAdd(); + b.Property("CriadorId"); + b.Property("DataCadastro"); b.Property("Descricao") .IsRequired() .HasMaxLength(100); - b.Property("DesenvolvedorId"); - b.Property("FoiResolvido"); b.Property("Prioridade") @@ -37,12 +37,16 @@ namespace GerenciaProjetos.Migrations b.Property("RequisitoId"); + b.Property("SolucionadorId"); + b.HasKey("Id"); - b.HasIndex("DesenvolvedorId"); + b.HasIndex("CriadorId"); b.HasIndex("RequisitoId"); + b.HasIndex("SolucionadorId"); + b.ToTable("Bugs"); }); @@ -147,15 +151,20 @@ namespace GerenciaProjetos.Migrations modelBuilder.Entity("GerenciaProjetos.Models.Bug", b => { - b.HasOne("GerenciaProjetos.Models.Desenvolvedor", "Desenvolvedor") + b.HasOne("GerenciaProjetos.Models.Desenvolvedor", "Criador") .WithMany() - .HasForeignKey("DesenvolvedorId") + .HasForeignKey("CriadorId") .OnDelete(DeleteBehavior.Cascade); b.HasOne("GerenciaProjetos.Models.Requisito", "Requisito") - .WithMany() + .WithMany("Bugs") .HasForeignKey("RequisitoId") .OnDelete(DeleteBehavior.Cascade); + + b.HasOne("GerenciaProjetos.Models.Desenvolvedor", "Solucionador") + .WithMany() + .HasForeignKey("SolucionadorId") + .OnDelete(DeleteBehavior.Cascade); }); modelBuilder.Entity("GerenciaProjetos.Models.DesenvolvedorProjeto", b => diff --git a/GerenciaProjetos/Models/Bug.cs b/GerenciaProjetos/Models/Bug.cs index 8a48602..5b1f943 100644 --- a/GerenciaProjetos/Models/Bug.cs +++ b/GerenciaProjetos/Models/Bug.cs @@ -12,9 +12,12 @@ namespace GerenciaProjetos.Models [Key] public int Id { get; set; } - public int DesenvolvedorId { get; set; } - public Desenvolvedor Desenvolvedor { get; set; } - + public int CriadorId { get; set; } + public Desenvolvedor Criador { get; set; } + + public int SolucionadorId { get; set; } + public Desenvolvedor Solucionador { get; set; } + public int RequisitoId { get; set; } public Requisito Requisito { get; set; } diff --git a/GerenciaProjetos/Models/Desenvolvedor.cs b/GerenciaProjetos/Models/Desenvolvedor.cs index e0859ae..298a5a2 100644 --- a/GerenciaProjetos/Models/Desenvolvedor.cs +++ b/GerenciaProjetos/Models/Desenvolvedor.cs @@ -28,6 +28,11 @@ namespace GerenciaProjetos.Models [DataType(DataType.Password)] public string Senha { get; set; } + [NotMapped] + [Required(ErrorMessage = "Este campo é obrigatório.")] + [Compare("Senha", ErrorMessage = "As senhas não combinam.")] + public string ConfirmarSenha { get; set; } + public bool EAdmin { get; set; } } } diff --git a/GerenciaProjetos/Models/Requisito.cs b/GerenciaProjetos/Models/Requisito.cs index bbbaa70..64bc7ed 100644 --- a/GerenciaProjetos/Models/Requisito.cs +++ b/GerenciaProjetos/Models/Requisito.cs @@ -31,5 +31,7 @@ namespace GerenciaProjetos.Models public int ProjetoId { get; set; } public Projeto Projeto { get; set; } + + public IEnumerable Bugs { get; set; } } } diff --git a/GerenciaProjetos/Startup.cs b/GerenciaProjetos/Startup.cs index 3aa13f0..6c07a9a 100644 --- a/GerenciaProjetos/Startup.cs +++ b/GerenciaProjetos/Startup.cs @@ -39,6 +39,11 @@ namespace GerenciaProjetos //services.AddDbContext(options => options.UseMySql(Configuration.GetConnectionString("LaboratConnection"))); services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2); + + services.AddSession(options => { + options.IdleTimeout = TimeSpan.FromMinutes(10); + options.Cookie.HttpOnly = true; + }); } // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. @@ -51,10 +56,13 @@ namespace GerenciaProjetos else { app.UseExceptionHandler("/Home/Error"); + app.UseHsts(); } + app.UseHttpsRedirection(); app.UseStaticFiles(); app.UseCookiePolicy(); + app.UseSession(); app.UseMvc(routes => { diff --git a/GerenciaProjetos/Views/Bugs/Form.cshtml b/GerenciaProjetos/Views/Bugs/Form.cshtml index 6a5a64f..41a89cc 100644 --- a/GerenciaProjetos/Views/Bugs/Form.cshtml +++ b/GerenciaProjetos/Views/Bugs/Form.cshtml @@ -13,7 +13,13 @@
- + + +
+
+ +
diff --git a/GerenciaProjetos/Views/Dashboard/Index.cshtml b/GerenciaProjetos/Views/Dashboard/Index.cshtml new file mode 100644 index 0000000..7d557ac --- /dev/null +++ b/GerenciaProjetos/Views/Dashboard/Index.cshtml @@ -0,0 +1,207 @@ +@{ + ViewData["Title"] = "Dashboard"; +} + +

@ViewData["Title"]

+ +
+
+
+
+ +
+
+ + + +
+
+
+
+ + + + + + + + + + + + @foreach (Desenvolvedor d in ViewBag.Desenvolvedores) + { + + + + + + + + } + +
#NomeEmailÉ AdminOpções
@d.Id@d.Nome@d.Email@d.EAdmin + + + + + + +
+
+
+ +
+
+
+
+
+ Projetos +
+
+
+ + + +
+
+
+
+ + + + + + + + + + + + @foreach (Projeto p in ViewBag.Projetos) + { + + + + + + + + } + +
#NomeData de EntregaSolicitanteOpções
@p.Id@p.Nome@p.DataEntrega@p.Solicitante + + + + + + +
+
+
+ +
+
+
+
+ +
+
+ + + +
+
+
+
+ + + + + + + + + + + + + + @foreach (Requisito r in ViewBag.Requisitos) + { + + + + + + + + + + } + +
#DescriçãoObservaçõesÉ FuncionalData de CadastroData de EntregaOpções
@r.Id@r.Descricao@r.Observacoes@r.EFuncional@r.DataCadastro@r.DataEntrega + + + + + + +
+
+
+ +
+
+
+
+
+ Bugs +
+
+
+ + + +
+
+
+
+ + + + + + + + + + + + + @foreach (Bug b in ViewBag.Bugs) + { + + + + + + + + + } + +
#DescriçãoFoi ResolvidoData de CadastroPrioridadeOpções
@b.Id@b.Descricao@b.FoiResolvido@b.DataCadastro@b.Prioridade + + + + + + +
+
+
\ No newline at end of file diff --git a/GerenciaProjetos/Views/Desenvolvedores/Form.cshtml b/GerenciaProjetos/Views/Desenvolvedores/Form.cshtml index edaef92..98c41b3 100644 --- a/GerenciaProjetos/Views/Desenvolvedores/Form.cshtml +++ b/GerenciaProjetos/Views/Desenvolvedores/Form.cshtml @@ -29,6 +29,10 @@ +
+ + +
Cancelar diff --git a/GerenciaProjetos/Views/Home/Cadastro.cshtml b/GerenciaProjetos/Views/Home/Cadastro.cshtml new file mode 100644 index 0000000..876d984 --- /dev/null +++ b/GerenciaProjetos/Views/Home/Cadastro.cshtml @@ -0,0 +1,42 @@ +@{ + ViewData["Title"] = "Cadastro"; +} + +@model GerenciaProjetos.Models.Desenvolvedor + +

@ViewData["Title"]

+ +
+
+
+ +
+ + +
+
+ + +
+
+
+ + +
+
+
+ + +
+
+ + +
+
+ Cancelar + +
+ +
+
+
\ No newline at end of file diff --git a/GerenciaProjetos/Views/Home/Index.cshtml b/GerenciaProjetos/Views/Home/Index.cshtml index 7d557ac..6bb6938 100644 --- a/GerenciaProjetos/Views/Home/Index.cshtml +++ b/GerenciaProjetos/Views/Home/Index.cshtml @@ -1,207 +1,28 @@ @{ - ViewData["Title"] = "Dashboard"; + ViewData["Title"] = "Entrar"; } +@model GerenciaProjetos.Models.Desenvolvedor +

@ViewData["Title"]

-
-
-
- Desenvolvedores +
+
+
+ +
-
-
- - - -
+
+ +
-
+
+ Cadastrar + +
+
- - - - - - - - - - - - @foreach (Desenvolvedor d in ViewBag.Desenvolvedores) - { - - - - - - - - } - -
#NomeEmailÉ AdminOpções
@d.Id@d.Nome@d.Email@d.EAdmin - - - - - - -
-
-
- -
-
-
-
-
- Projetos -
-
-
- - - -
-
-
-
- - - - - - - - - - - - @foreach (Projeto p in ViewBag.Projetos) - { - - - - - - - - } - -
#NomeData de EntregaSolicitanteOpções
@p.Id@p.Nome@p.DataEntrega@p.Solicitante - - - - - - -
-
-
- -
-
-
-
- -
-
- - - -
-
-
-
- - - - - - - - - - - - - - @foreach (Requisito r in ViewBag.Requisitos) - { - - - - - - - - - - } - -
#DescriçãoObservaçõesÉ FuncionalData de CadastroData de EntregaOpções
@r.Id@r.Descricao@r.Observacoes@r.EFuncional@r.DataCadastro@r.DataEntrega - - - - - - -
-
-
- -
-
-
-
-
- Bugs -
-
-
- - - -
-
-
-
- - - - - - - - - - - - - @foreach (Bug b in ViewBag.Bugs) - { - - - - - - - - - } - -
#DescriçãoFoi ResolvidoData de CadastroPrioridadeOpções
@b.Id@b.Descricao@b.FoiResolvido@b.DataCadastro@b.Prioridade - - - - - - -
\ No newline at end of file diff --git a/GerenciaProjetos/Views/Shared/_Layout.cshtml b/GerenciaProjetos/Views/Shared/_Layout.cshtml index c176b54..80797bb 100644 --- a/GerenciaProjetos/Views/Shared/_Layout.cshtml +++ b/GerenciaProjetos/Views/Shared/_Layout.cshtml @@ -35,6 +35,9 @@ +
@@ -51,92 +54,12 @@
-
    - @if (true) - { -
  • - - - -
  • - } - @if (true) - { -
  • - - - -
  • - } - @if (true) - { -
  • - - - -
  • - } - @if (false) - { -
  • - - - -
  • - } - @if (false) - { -
  • - - - -
  • - } - @if (true) - { -
  • - - - -
  • - } - @if (true) - { -
  • - - - -
  • - } - @if (true) - { -
  • - - - -
  • - } - @if (false) - { -
  • - - - -
  • - } + - @if (true) - { - - Copyright © TribuFu @DateTime.Now.Year - } + Copyright © TribuFu @DateTime.Now.Year
diff --git a/GerenciaProjetos/bin/Debug/netcoreapp2.2/GerenciaProjetos.Views.dll b/GerenciaProjetos/bin/Debug/netcoreapp2.2/GerenciaProjetos.Views.dll index 13858ef..98b17c1 100644 Binary files a/GerenciaProjetos/bin/Debug/netcoreapp2.2/GerenciaProjetos.Views.dll and b/GerenciaProjetos/bin/Debug/netcoreapp2.2/GerenciaProjetos.Views.dll differ diff --git a/GerenciaProjetos/bin/Debug/netcoreapp2.2/GerenciaProjetos.Views.pdb b/GerenciaProjetos/bin/Debug/netcoreapp2.2/GerenciaProjetos.Views.pdb index dd13274..ebf79bb 100644 Binary files a/GerenciaProjetos/bin/Debug/netcoreapp2.2/GerenciaProjetos.Views.pdb and b/GerenciaProjetos/bin/Debug/netcoreapp2.2/GerenciaProjetos.Views.pdb differ diff --git a/GerenciaProjetos/bin/Debug/netcoreapp2.2/GerenciaProjetos.dll b/GerenciaProjetos/bin/Debug/netcoreapp2.2/GerenciaProjetos.dll index 145abe1..12371b7 100644 Binary files a/GerenciaProjetos/bin/Debug/netcoreapp2.2/GerenciaProjetos.dll and b/GerenciaProjetos/bin/Debug/netcoreapp2.2/GerenciaProjetos.dll differ diff --git a/GerenciaProjetos/bin/Debug/netcoreapp2.2/GerenciaProjetos.pdb b/GerenciaProjetos/bin/Debug/netcoreapp2.2/GerenciaProjetos.pdb index a0a3b47..c759561 100644 Binary files a/GerenciaProjetos/bin/Debug/netcoreapp2.2/GerenciaProjetos.pdb and b/GerenciaProjetos/bin/Debug/netcoreapp2.2/GerenciaProjetos.pdb differ diff --git a/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.RazorCoreGenerate.cache b/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.RazorCoreGenerate.cache index e6f7130..1ebb8cb 100644 --- a/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.RazorCoreGenerate.cache +++ b/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.RazorCoreGenerate.cache @@ -1 +1 @@ -c7b3bbeab81fcd814f53f806904f8bea8e240001 +e345506f56e8e3924c1a8730bf6938104fc7f0c5 diff --git a/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.Views.dll b/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.Views.dll index 13858ef..98b17c1 100644 Binary files a/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.Views.dll and b/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.Views.dll differ diff --git a/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.Views.pdb b/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.Views.pdb index dd13274..ebf79bb 100644 Binary files a/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.Views.pdb and b/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.Views.pdb differ diff --git a/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.csproj.CoreCompileInputs.cache b/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.csproj.CoreCompileInputs.cache index 0e87581..dc32aeb 100644 --- a/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.csproj.CoreCompileInputs.cache +++ b/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -a0be7241ff088d48749db13841b45fcab8e9bc86 +0f38f3ffe37e5ffbf0d2fcb9a5f0792be8005505 diff --git a/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.csproj.FileListAbsolute.txt b/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.csproj.FileListAbsolute.txt index bcf19af..8b36fd5 100644 --- a/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.csproj.FileListAbsolute.txt +++ b/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.csproj.FileListAbsolute.txt @@ -74,3 +74,5 @@ C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\Debug\ne C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\GerenciaProjetos.dll C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\GerenciaProjetos.pdb C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\GerenciaProjetos.csproj.CopyComplete +C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Home\Cadastro.g.cshtml.cs +C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Dashboard\Index.g.cshtml.cs diff --git a/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.dll b/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.dll index 145abe1..12371b7 100644 Binary files a/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.dll and b/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.dll differ diff --git a/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.pdb b/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.pdb index a0a3b47..c759561 100644 Binary files a/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.pdb and b/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.pdb differ diff --git a/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Bugs/Form.g.cshtml.cs b/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Bugs/Form.g.cshtml.cs index f61da79..0b0f481 100644 --- a/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Bugs/Form.g.cshtml.cs +++ b/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Bugs/Form.g.cshtml.cs @@ -1,4 +1,4 @@ -#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "6ba75510b52d1237801a16dc7ede78708cc53c20" +#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "7dbec80bd92901b9d77581ceedc5814622882f32" // #pragma warning disable 1591 [assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Bugs_Form), @"mvc.1.0.view", @"/Views/Bugs/Form.cshtml")] @@ -23,7 +23,7 @@ using GerenciaProjetos.Models; #line default #line hidden - [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"6ba75510b52d1237801a16dc7ede78708cc53c20", @"/Views/Bugs/Form.cshtml")] + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"7dbec80bd92901b9d77581ceedc5814622882f32", @"/Views/Bugs/Form.cshtml")] [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"4e94bb8cdb3ef35824e862096b8a713c8ba822eb", @"/Views/_ViewImports.cshtml")] public class Views_Bugs_Form : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage { @@ -91,18 +91,18 @@ Write(ViewData["Title"]); BeginContext(118, 102, true); WriteLiteral("\r\n\r\n
\r\n
\r\n
\r\n "); EndContext(); - BeginContext(220, 1851, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6ba75510b52d1237801a16dc7ede78708cc53c208405", async() => { + BeginContext(220, 2147, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "7dbec80bd92901b9d77581ceedc5814622882f328405", async() => { BeginContext(240, 114, true); WriteLiteral("\r\n
\r\n \r\n "); EndContext(); - BeginContext(354, 165, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("select", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6ba75510b52d1237801a16dc7ede78708cc53c208907", async() => { - BeginContext(445, 26, true); + BeginContext(354, 159, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("select", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "7dbec80bd92901b9d77581ceedc5814622882f328907", async() => { + BeginContext(439, 26, true); WriteLiteral("\r\n "); EndContext(); - BeginContext(471, 17, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6ba75510b52d1237801a16dc7ede78708cc53c209335", async() => { + BeginContext(465, 17, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "7dbec80bd92901b9d77581ceedc5814622882f329335", async() => { } ); __Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper = CreateTagHelper(); @@ -115,7 +115,7 @@ Write(ViewData["Title"]); Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(488, 22, true); + BeginContext(482, 22, true); WriteLiteral("\r\n "); EndContext(); } @@ -123,7 +123,7 @@ Write(ViewData["Title"]); __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper = CreateTagHelper(); __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper); #line 16 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml" -__Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.DesenvolvedorId); +__Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.CriadorId); #line default #line hidden @@ -143,16 +143,16 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.Items = ViewBag.Desenvolve Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(519, 134, true); - WriteLiteral("\r\n
\r\n
\r\n \r\n "); + BeginContext(513, 138, true); + WriteLiteral("\r\n
\r\n
\r\n \r\n "); EndContext(); - BeginContext(653, 156, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("select", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6ba75510b52d1237801a16dc7ede78708cc53c2012574", async() => { - BeginContext(735, 26, true); + BeginContext(651, 164, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("select", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "7dbec80bd92901b9d77581ceedc5814622882f3212572", async() => { + BeginContext(741, 26, true); WriteLiteral("\r\n "); EndContext(); - BeginContext(761, 17, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6ba75510b52d1237801a16dc7ede78708cc53c2013003", async() => { + BeginContext(767, 17, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "7dbec80bd92901b9d77581ceedc5814622882f3213001", async() => { } ); __Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper = CreateTagHelper(); @@ -165,7 +165,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.Items = ViewBag.Desenvolve Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(778, 22, true); + BeginContext(784, 22, true); WriteLiteral("\r\n "); EndContext(); } @@ -173,13 +173,63 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.Items = ViewBag.Desenvolve __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper = CreateTagHelper(); __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper); #line 22 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml" -__Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.RequisitoId); +__Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.SolucionadorId); #line default #line hidden __tagHelperExecutionContext.AddTagHelperAttribute("asp-for", __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.For, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_0); #line 22 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml" +__Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.Items = ViewBag.Desenvolvedores; + +#line default +#line hidden + __tagHelperExecutionContext.AddTagHelperAttribute("asp-items", __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.Items, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); + await __tagHelperRunner.RunAsync(__tagHelperExecutionContext); + if (!__tagHelperExecutionContext.Output.IsContentModified) + { + await __tagHelperExecutionContext.SetOutputContentAsync(); + } + Write(__tagHelperExecutionContext.Output); + __tagHelperExecutionContext = __tagHelperScopeManager.End(); + EndContext(); + BeginContext(815, 134, true); + WriteLiteral("\r\n
\r\n
\r\n \r\n "); + EndContext(); + BeginContext(949, 156, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("select", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "7dbec80bd92901b9d77581ceedc5814622882f3216240", async() => { + BeginContext(1031, 26, true); + WriteLiteral("\r\n "); + EndContext(); + BeginContext(1057, 17, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "7dbec80bd92901b9d77581ceedc5814622882f3216671", async() => { + } + ); + __Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper = CreateTagHelper(); + __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper); + await __tagHelperRunner.RunAsync(__tagHelperExecutionContext); + if (!__tagHelperExecutionContext.Output.IsContentModified) + { + await __tagHelperExecutionContext.SetOutputContentAsync(); + } + Write(__tagHelperExecutionContext.Output); + __tagHelperExecutionContext = __tagHelperScopeManager.End(); + EndContext(); + BeginContext(1074, 22, true); + WriteLiteral("\r\n "); + EndContext(); + } + ); + __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper = CreateTagHelper(); + __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper); +#line 28 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml" +__Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.RequisitoId); + +#line default +#line hidden + __tagHelperExecutionContext.AddTagHelperAttribute("asp-for", __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.For, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); + __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_0); +#line 28 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml" __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.Items = ViewBag.Requisitos; #line default @@ -193,11 +243,11 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.Items = ViewBag.Requisitos Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(809, 158, true); + BeginContext(1105, 158, true); WriteLiteral("\r\n
\r\n
\r\n
\r\n "); EndContext(); - BeginContext(967, 86, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "6ba75510b52d1237801a16dc7ede78708cc53c2016259", async() => { + BeginContext(1263, 86, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "7dbec80bd92901b9d77581ceedc5814622882f3219930", async() => { } ); __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper(); @@ -206,7 +256,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.Items = ViewBag.Requisitos __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1); __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_2); __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_3); -#line 28 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml" +#line 34 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml" __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.FoiResolvido); #line default @@ -220,7 +270,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(1053, 258, true); + BeginContext(1349, 258, true); WriteLiteral(@"
@@ -229,15 +279,15 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid "); EndContext(); - BeginContext(1311, 71, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("textarea", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6ba75510b52d1237801a16dc7ede78708cc53c2018530", async() => { + BeginContext(1607, 71, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("textarea", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "7dbec80bd92901b9d77581ceedc5814622882f3222201", async() => { } ); __Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper = CreateTagHelper(); __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper); __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_0); __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_4); -#line 34 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml" +#line 40 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml" __Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.Descricao); #line default @@ -251,17 +301,17 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper.For = ModelExpressionPro Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(1382, 135, true); + BeginContext(1678, 135, true); WriteLiteral("\r\n
\r\n
\r\n \r\n "); EndContext(); - BeginContext(1517, 225, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("select", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6ba75510b52d1237801a16dc7ede78708cc53c2020486", async() => { - BeginContext(1567, 26, true); + BeginContext(1813, 225, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("select", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "7dbec80bd92901b9d77581ceedc5814622882f3224157", async() => { + BeginContext(1863, 26, true); WriteLiteral("\r\n "); EndContext(); - BeginContext(1593, 23, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6ba75510b52d1237801a16dc7ede78708cc53c2020917", async() => { - BeginContext(1601, 6, true); + BeginContext(1889, 23, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "7dbec80bd92901b9d77581ceedc5814622882f3224588", async() => { + BeginContext(1897, 6, true); WriteLiteral("Normal"); EndContext(); } @@ -276,12 +326,12 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper.For = ModelExpressionPro Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(1616, 26, true); + BeginContext(1912, 26, true); WriteLiteral("\r\n "); EndContext(); - BeginContext(1642, 22, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6ba75510b52d1237801a16dc7ede78708cc53c2022278", async() => { - BeginContext(1650, 5, true); + BeginContext(1938, 22, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "7dbec80bd92901b9d77581ceedc5814622882f3225949", async() => { + BeginContext(1946, 5, true); WriteLiteral("Baixa"); EndContext(); } @@ -296,12 +346,12 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper.For = ModelExpressionPro Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(1664, 26, true); + BeginContext(1960, 26, true); WriteLiteral("\r\n "); EndContext(); - BeginContext(1690, 21, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6ba75510b52d1237801a16dc7ede78708cc53c2023638", async() => { - BeginContext(1698, 4, true); + BeginContext(1986, 21, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "7dbec80bd92901b9d77581ceedc5814622882f3227309", async() => { + BeginContext(1994, 4, true); WriteLiteral("Alta"); EndContext(); } @@ -316,14 +366,14 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper.For = ModelExpressionPro Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(1711, 22, true); + BeginContext(2007, 22, true); WriteLiteral("\r\n "); EndContext(); } ); __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper = CreateTagHelper(); __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper); -#line 38 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml" +#line 44 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml" __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.Prioridade); #line default @@ -338,12 +388,12 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.For = ModelExpressionProvi Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(1742, 88, true); + BeginContext(2038, 88, true); WriteLiteral("\r\n
\r\n
\r\n "); EndContext(); - BeginContext(1830, 110, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6ba75510b52d1237801a16dc7ede78708cc53c2026523", async() => { - BeginContext(1928, 8, true); + BeginContext(2126, 110, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "7dbec80bd92901b9d77581ceedc5814622882f3230194", async() => { + BeginContext(2224, 8, true); WriteLiteral("Cancelar"); EndContext(); } @@ -371,7 +421,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.For = ModelExpressionProvi Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(1940, 124, true); + BeginContext(2236, 124, true); WriteLiteral("\r\n \r\n
\r\n "); EndContext(); } @@ -390,7 +440,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.For = ModelExpressionProvi Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(2071, 40, true); + BeginContext(2367, 40, true); WriteLiteral("\r\n
\r\n
\r\n
"); EndContext(); } diff --git a/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Desenvolvedores/Form.g.cshtml.cs b/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Desenvolvedores/Form.g.cshtml.cs index d41b565..b7451e4 100644 --- a/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Desenvolvedores/Form.g.cshtml.cs +++ b/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Desenvolvedores/Form.g.cshtml.cs @@ -1,4 +1,4 @@ -#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Form.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "50d596f248363c09281e8facc9b4e6ba89360ca1" +#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Form.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "cc41d07aec42401ff506df739b3e4b4d780521ac" // #pragma warning disable 1591 [assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Desenvolvedores_Form), @"mvc.1.0.view", @"/Views/Desenvolvedores/Form.cshtml")] @@ -23,7 +23,7 @@ using GerenciaProjetos.Models; #line default #line hidden - [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"50d596f248363c09281e8facc9b4e6ba89360ca1", @"/Views/Desenvolvedores/Form.cshtml")] + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"cc41d07aec42401ff506df739b3e4b4d780521ac", @"/Views/Desenvolvedores/Form.cshtml")] [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"4e94bb8cdb3ef35824e862096b8a713c8ba822eb", @"/Views/_ViewImports.cshtml")] public class Views_Desenvolvedores_Form : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage { @@ -90,13 +90,13 @@ Write(ViewData["Title"]); BeginContext(128, 102, true); WriteLiteral("\r\n\r\n
\r\n
\r\n
\r\n "); EndContext(); - BeginContext(230, 1261, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "50d596f248363c09281e8facc9b4e6ba89360ca18672", async() => { + BeginContext(230, 1463, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "cc41d07aec42401ff506df739b3e4b4d780521ac8672", async() => { BeginContext(250, 105, true); WriteLiteral("\r\n
\r\n \r\n "); EndContext(); BeginContext(355, 55, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "50d596f248363c09281e8facc9b4e6ba89360ca19164", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "cc41d07aec42401ff506df739b3e4b4d780521ac9164", async() => { } ); __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper(); @@ -122,7 +122,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid WriteLiteral("\r\n
\r\n
\r\n \r\n "); EndContext(); BeginContext(540, 57, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "50d596f248363c09281e8facc9b4e6ba89360ca111223", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "cc41d07aec42401ff506df739b3e4b4d780521ac11223", async() => { } ); __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper(); @@ -148,7 +148,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid WriteLiteral("\r\n
\r\n
\r\n
\r\n "); EndContext(); BeginContext(755, 80, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "50d596f248363c09281e8facc9b4e6ba89360ca113314", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "cc41d07aec42401ff506df739b3e4b4d780521ac13314", async() => { } ); __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper(); @@ -181,7 +181,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid "); EndContext(); BeginContext(1091, 60, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "50d596f248363c09281e8facc9b4e6ba89360ca115587", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "cc41d07aec42401ff506df739b3e4b4d780521ac15587", async() => { } ); __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper(); @@ -203,12 +203,38 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(1151, 88, true); + BeginContext(1151, 133, true); + WriteLiteral("\r\n
\r\n
\r\n \r\n "); + EndContext(); + BeginContext(1284, 69, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "cc41d07aec42401ff506df739b3e4b4d780521ac17653", async() => { + } + ); + __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper(); + __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper); + __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.InputTypeName = (string)__tagHelperAttribute_6.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_6); + __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_1); +#line 34 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Form.cshtml" +__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.ConfirmarSenha); + +#line default +#line hidden + __tagHelperExecutionContext.AddTagHelperAttribute("asp-for", __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); + await __tagHelperRunner.RunAsync(__tagHelperExecutionContext); + if (!__tagHelperExecutionContext.Output.IsContentModified) + { + await __tagHelperExecutionContext.SetOutputContentAsync(); + } + Write(__tagHelperExecutionContext.Output); + __tagHelperExecutionContext = __tagHelperScopeManager.End(); + EndContext(); + BeginContext(1353, 88, true); WriteLiteral("\r\n
\r\n
\r\n "); EndContext(); - BeginContext(1239, 121, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "50d596f248363c09281e8facc9b4e6ba89360ca117606", async() => { - BeginContext(1348, 8, true); + BeginContext(1441, 121, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "cc41d07aec42401ff506df739b3e4b4d780521ac19681", async() => { + BeginContext(1550, 8, true); WriteLiteral("Cancelar"); EndContext(); } @@ -236,7 +262,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(1360, 124, true); + BeginContext(1562, 124, true); WriteLiteral("\r\n \r\n
\r\n "); EndContext(); } @@ -255,7 +281,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(1491, 40, true); + BeginContext(1693, 40, true); WriteLiteral("\r\n
\r\n
\r\n
"); EndContext(); } diff --git a/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Home/Index.g.cshtml.cs b/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Home/Index.g.cshtml.cs index fb23545..67a3854 100644 --- a/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Home/Index.g.cshtml.cs +++ b/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Home/Index.g.cshtml.cs @@ -1,4 +1,4 @@ -#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "06b341fb9d0653788e3f894a9adfcc37e118d8e9" +#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "dd58d03e5aab9b6a44f6e6bb1d9b5053060aaef5" // #pragma warning disable 1591 [assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Home_Index), @"mvc.1.0.view", @"/Views/Home/Index.cshtml")] @@ -23,20 +23,19 @@ using GerenciaProjetos.Models; #line default #line hidden - [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"06b341fb9d0653788e3f894a9adfcc37e118d8e9", @"/Views/Home/Index.cshtml")] + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"dd58d03e5aab9b6a44f6e6bb1d9b5053060aaef5", @"/Views/Home/Index.cshtml")] [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"4e94bb8cdb3ef35824e862096b8a713c8ba822eb", @"/Views/_ViewImports.cshtml")] - public class Views_Home_Index : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage + public class Views_Home_Index : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage { - private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_0 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("class", new global::Microsoft.AspNetCore.Html.HtmlString("text-decoration-none"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); - private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_1 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-area", "", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); - private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_2 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Desenvolvedores", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); - private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_3 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Index", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); - private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_4 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "New", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); - private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_5 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Edit", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); - private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_6 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Del", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); - private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_7 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Projetos", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); - private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_8 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Requisitos", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); - private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_9 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Bugs", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); + private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_0 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("type", "email", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); + private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_1 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("class", new global::Microsoft.AspNetCore.Html.HtmlString("form-control"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); + private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_2 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("type", "password", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); + private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_3 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("class", new global::Microsoft.AspNetCore.Html.HtmlString("btn btn-link"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); + private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_4 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-area", "", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); + private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_5 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Home", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); + private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_6 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Cadastro", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); + private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_7 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-route-id", "", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); + private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_8 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("method", "post", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); #line hidden #pragma warning disable 0169 private string __tagHelperStringValueBuffer; @@ -55,877 +54,143 @@ using GerenciaProjetos.Models; return __backed__tagHelperScopeManager; } } + private global::Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper; + private global::Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper; + private global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper; private global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper; #pragma warning disable 1998 public async override global::System.Threading.Tasks.Task ExecuteAsync() { #line 1 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - ViewData["Title"] = "Dashboard"; + ViewData["Title"] = "Entrar"; #line default #line hidden - BeginContext(45, 6, true); + BeginContext(42, 2, true); + WriteLiteral("\r\n"); + EndContext(); + BeginContext(90, 6, true); WriteLiteral("\r\n

"); EndContext(); - BeginContext(52, 17, false); -#line 5 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + BeginContext(97, 17, false); +#line 7 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" Write(ViewData["Title"]); #line default #line hidden EndContext(); - BeginContext(69, 180, true); - WriteLiteral("

\r\n\r\n
\r\n
\r\n
\r\n
\r\n
\r\n "); + BeginContext(114, 102, true); + WriteLiteral("\r\n\r\n
\r\n
\r\n
\r\n "); EndContext(); - BeginContext(249, 115, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "06b341fb9d0653788e3f894a9adfcc37e118d8e96997", async() => { - BeginContext(345, 15, true); - WriteLiteral("Desenvolvedores"); + BeginContext(216, 698, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "dd58d03e5aab9b6a44f6e6bb1d9b5053060aaef57158", async() => { + BeginContext(236, 106, true); + WriteLiteral("\r\n
\r\n \r\n "); EndContext(); - } - ); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper(); - __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper); - __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_0); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_2.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_2); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_3.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_3); - await __tagHelperRunner.RunAsync(__tagHelperExecutionContext); - if (!__tagHelperExecutionContext.Output.IsContentModified) - { - await __tagHelperExecutionContext.SetOutputContentAsync(); - } - Write(__tagHelperExecutionContext.Output); - __tagHelperExecutionContext = __tagHelperScopeManager.End(); - EndContext(); - BeginContext(364, 133, true); - WriteLiteral("\r\n
\r\n
\r\n
\r\n "); - EndContext(); - BeginContext(497, 159, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "06b341fb9d0653788e3f894a9adfcc37e118d8e99009", async() => { - BeginContext(562, 90, true); - WriteLiteral("\r\n \r\n "); - EndContext(); - } - ); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper(); - __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_2.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_2); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_4.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_4); - await __tagHelperRunner.RunAsync(__tagHelperExecutionContext); - if (!__tagHelperExecutionContext.Output.IsContentModified) - { - await __tagHelperExecutionContext.SetOutputContentAsync(); - } - Write(__tagHelperExecutionContext.Output); - __tagHelperExecutionContext = __tagHelperScopeManager.End(); - EndContext(); - BeginContext(656, 519, true); - WriteLiteral(@" -
-
-
-
- - - - - - - - - - - -"); - EndContext(); -#line 34 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - foreach (Desenvolvedor d in ViewBag.Desenvolvedores) - { - -#line default -#line hidden - BeginContext(1265, 54, true); - WriteLiteral(" \r\n \r\n \r\n \r\n \r\n \r\n \r\n"); - EndContext(); -#line 50 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + BeginContext(342, 57, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "dd58d03e5aab9b6a44f6e6bb1d9b5053060aaef57651", async() => { } + ); + __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper(); + __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper); + __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.InputTypeName = (string)__tagHelperAttribute_0.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0); + __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_1); +#line 15 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" +__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.Email); #line default #line hidden - BeginContext(1991, 237, true); - WriteLiteral(" \r\n
#NomeEmailÉ AdminOpções
"); - EndContext(); - BeginContext(1320, 4, false); -#line 37 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - Write(d.Id); - -#line default -#line hidden - EndContext(); - BeginContext(1324, 35, true); - WriteLiteral(""); - EndContext(); - BeginContext(1360, 6, false); -#line 38 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - Write(d.Nome); - -#line default -#line hidden - EndContext(); - BeginContext(1366, 35, true); - WriteLiteral(""); - EndContext(); - BeginContext(1402, 7, false); -#line 39 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - Write(d.Email); - -#line default -#line hidden - EndContext(); - BeginContext(1409, 35, true); - WriteLiteral(""); - EndContext(); - BeginContext(1445, 8, false); -#line 40 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - Write(d.EAdmin); - -#line default -#line hidden - EndContext(); - BeginContext(1453, 65, true); - WriteLiteral("\r\n "); - EndContext(); - BeginContext(1518, 182, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "06b341fb9d0653788e3f894a9adfcc37e118d8e913332", async() => { - BeginContext(1605, 91, true); - WriteLiteral("\r\n \r\n "); - EndContext(); - } - ); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper(); - __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_2.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_2); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_5.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_5); - if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null) - { - throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues")); - } - BeginWriteTagHelperAttribute(); -#line 42 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - WriteLiteral(d.Id); - -#line default -#line hidden - __tagHelperStringValueBuffer = EndWriteTagHelperAttribute(); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = __tagHelperStringValueBuffer; - __tagHelperExecutionContext.AddTagHelperAttribute("asp-route-id", __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"], global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); - await __tagHelperRunner.RunAsync(__tagHelperExecutionContext); - if (!__tagHelperExecutionContext.Output.IsContentModified) - { - await __tagHelperExecutionContext.SetOutputContentAsync(); - } - Write(__tagHelperExecutionContext.Output); - __tagHelperExecutionContext = __tagHelperScopeManager.End(); - EndContext(); - BeginContext(1700, 30, true); - WriteLiteral("\r\n "); - EndContext(); - BeginContext(1730, 182, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "06b341fb9d0653788e3f894a9adfcc37e118d8e916251", async() => { - BeginContext(1816, 92, true); - WriteLiteral("\r\n \r\n "); - EndContext(); - } - ); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper(); - __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_2.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_2); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_6.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_6); - if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null) - { - throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues")); - } - BeginWriteTagHelperAttribute(); -#line 45 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - WriteLiteral(d.Id); - -#line default -#line hidden - __tagHelperStringValueBuffer = EndWriteTagHelperAttribute(); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = __tagHelperStringValueBuffer; - __tagHelperExecutionContext.AddTagHelperAttribute("asp-route-id", __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"], global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); - await __tagHelperRunner.RunAsync(__tagHelperExecutionContext); - if (!__tagHelperExecutionContext.Output.IsContentModified) - { - await __tagHelperExecutionContext.SetOutputContentAsync(); - } - Write(__tagHelperExecutionContext.Output); - __tagHelperExecutionContext = __tagHelperScopeManager.End(); - EndContext(); - BeginContext(1912, 60, true); - WriteLiteral("\r\n
\r\n
\r\n
\r\n\r\n
\r\n
\r\n
\r\n
\r\n
\r\n "); - EndContext(); - BeginContext(2228, 101, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "06b341fb9d0653788e3f894a9adfcc37e118d8e919723", async() => { - BeginContext(2317, 8, true); - WriteLiteral("Projetos"); - EndContext(); - } - ); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper(); - __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper); - __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_0); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_7.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_7); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_3.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_3); - await __tagHelperRunner.RunAsync(__tagHelperExecutionContext); - if (!__tagHelperExecutionContext.Output.IsContentModified) - { - await __tagHelperExecutionContext.SetOutputContentAsync(); - } - Write(__tagHelperExecutionContext.Output); - __tagHelperExecutionContext = __tagHelperScopeManager.End(); - EndContext(); - BeginContext(2329, 133, true); - WriteLiteral("\r\n
\r\n
\r\n
\r\n "); - EndContext(); - BeginContext(2462, 152, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "06b341fb9d0653788e3f894a9adfcc37e118d8e921731", async() => { - BeginContext(2520, 90, true); - WriteLiteral("\r\n \r\n "); - EndContext(); - } - ); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper(); - __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_7.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_7); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_4.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_4); - await __tagHelperRunner.RunAsync(__tagHelperExecutionContext); - if (!__tagHelperExecutionContext.Output.IsContentModified) - { - await __tagHelperExecutionContext.SetOutputContentAsync(); - } - Write(__tagHelperExecutionContext.Output); - __tagHelperExecutionContext = __tagHelperScopeManager.End(); - EndContext(); - BeginContext(2614, 533, true); - WriteLiteral(@" -
-
-
-
- - - - - - - - - - - -"); - EndContext(); -#line 83 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - foreach (Projeto p in ViewBag.Projetos) + __tagHelperExecutionContext.AddTagHelperAttribute("asp-for", __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); + await __tagHelperRunner.RunAsync(__tagHelperExecutionContext); + if (!__tagHelperExecutionContext.Output.IsContentModified) { - -#line default -#line hidden - BeginContext(3224, 54, true); - WriteLiteral(" \r\n \r\n \r\n \r\n \r\n \r\n \r\n"); - EndContext(); -#line 99 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + await __tagHelperExecutionContext.SetOutputContentAsync(); } + Write(__tagHelperExecutionContext.Output); + __tagHelperExecutionContext = __tagHelperScopeManager.End(); + EndContext(); + BeginContext(399, 130, true); + WriteLiteral("\r\n \r\n
\r\n \r\n "); + EndContext(); + BeginContext(529, 60, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "dd58d03e5aab9b6a44f6e6bb1d9b5053060aaef59701", async() => { + } + ); + __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper(); + __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper); + __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.InputTypeName = (string)__tagHelperAttribute_2.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_2); + __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_1); +#line 19 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" +__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.Senha); #line default #line hidden - BeginContext(3947, 237, true); - WriteLiteral("
\r\n
#NomeData de EntregaSolicitanteOpções
"); - EndContext(); - BeginContext(3279, 4, false); -#line 86 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - Write(p.Id); - -#line default -#line hidden - EndContext(); - BeginContext(3283, 35, true); - WriteLiteral(""); - EndContext(); - BeginContext(3319, 6, false); -#line 87 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - Write(p.Nome); - -#line default -#line hidden - EndContext(); - BeginContext(3325, 35, true); - WriteLiteral(""); - EndContext(); - BeginContext(3361, 13, false); -#line 88 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - Write(p.DataEntrega); - -#line default -#line hidden - EndContext(); - BeginContext(3374, 35, true); - WriteLiteral(""); - EndContext(); - BeginContext(3410, 13, false); -#line 89 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - Write(p.Solicitante); - -#line default -#line hidden - EndContext(); - BeginContext(3423, 65, true); - WriteLiteral("\r\n "); - EndContext(); - BeginContext(3488, 175, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "06b341fb9d0653788e3f894a9adfcc37e118d8e926071", async() => { - BeginContext(3568, 91, true); - WriteLiteral("\r\n \r\n "); - EndContext(); - } - ); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper(); - __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_7.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_7); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_5.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_5); - if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null) - { - throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues")); - } - BeginWriteTagHelperAttribute(); -#line 91 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - WriteLiteral(p.Id); - -#line default -#line hidden - __tagHelperStringValueBuffer = EndWriteTagHelperAttribute(); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = __tagHelperStringValueBuffer; - __tagHelperExecutionContext.AddTagHelperAttribute("asp-route-id", __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"], global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); - await __tagHelperRunner.RunAsync(__tagHelperExecutionContext); - if (!__tagHelperExecutionContext.Output.IsContentModified) - { - await __tagHelperExecutionContext.SetOutputContentAsync(); - } - Write(__tagHelperExecutionContext.Output); - __tagHelperExecutionContext = __tagHelperScopeManager.End(); - EndContext(); - BeginContext(3663, 30, true); - WriteLiteral("\r\n "); - EndContext(); - BeginContext(3693, 175, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "06b341fb9d0653788e3f894a9adfcc37e118d8e928983", async() => { - BeginContext(3772, 92, true); - WriteLiteral("\r\n \r\n "); - EndContext(); - } - ); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper(); - __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_7.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_7); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_6.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_6); - if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null) - { - throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues")); - } - BeginWriteTagHelperAttribute(); -#line 94 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - WriteLiteral(p.Id); - -#line default -#line hidden - __tagHelperStringValueBuffer = EndWriteTagHelperAttribute(); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = __tagHelperStringValueBuffer; - __tagHelperExecutionContext.AddTagHelperAttribute("asp-route-id", __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"], global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); - await __tagHelperRunner.RunAsync(__tagHelperExecutionContext); - if (!__tagHelperExecutionContext.Output.IsContentModified) - { - await __tagHelperExecutionContext.SetOutputContentAsync(); - } - Write(__tagHelperExecutionContext.Output); - __tagHelperExecutionContext = __tagHelperScopeManager.End(); - EndContext(); - BeginContext(3868, 60, true); - WriteLiteral("\r\n
\r\n
\r\n
\r\n\r\n
\r\n
\r\n
\r\n
\r\n
\r\n "); - EndContext(); - BeginContext(4184, 105, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "06b341fb9d0653788e3f894a9adfcc37e118d8e932448", async() => { - BeginContext(4275, 10, true); - WriteLiteral("Requisitos"); - EndContext(); - } - ); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper(); - __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper); - __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_0); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_8.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_8); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_3.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_3); - await __tagHelperRunner.RunAsync(__tagHelperExecutionContext); - if (!__tagHelperExecutionContext.Output.IsContentModified) - { - await __tagHelperExecutionContext.SetOutputContentAsync(); - } - Write(__tagHelperExecutionContext.Output); - __tagHelperExecutionContext = __tagHelperScopeManager.End(); - EndContext(); - BeginContext(4289, 133, true); - WriteLiteral("\r\n
\r\n
\r\n
\r\n "); - EndContext(); - BeginContext(4422, 154, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "06b341fb9d0653788e3f894a9adfcc37e118d8e934459", async() => { - BeginContext(4482, 90, true); - WriteLiteral("\r\n \r\n "); - EndContext(); - } - ); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper(); - __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_8.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_8); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_4.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_4); - await __tagHelperRunner.RunAsync(__tagHelperExecutionContext); - if (!__tagHelperExecutionContext.Output.IsContentModified) - { - await __tagHelperExecutionContext.SetOutputContentAsync(); - } - Write(__tagHelperExecutionContext.Output); - __tagHelperExecutionContext = __tagHelperScopeManager.End(); - EndContext(); - BeginContext(4576, 651, true); - WriteLiteral(@" -
-
-
-
- - - - - - - - - - - - - -"); - EndContext(); -#line 134 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - foreach (Requisito r in ViewBag.Requisitos) + __tagHelperExecutionContext.AddTagHelperAttribute("asp-for", __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); + await __tagHelperRunner.RunAsync(__tagHelperExecutionContext); + if (!__tagHelperExecutionContext.Output.IsContentModified) { - -#line default -#line hidden - BeginContext(5308, 54, true); - WriteLiteral(" \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n"); - EndContext(); -#line 152 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + await __tagHelperExecutionContext.SetOutputContentAsync(); } - -#line default -#line hidden - BeginContext(6138, 237, true); - WriteLiteral(" \r\n
#DescriçãoObservaçõesÉ FuncionalData de CadastroData de EntregaOpções
"); - EndContext(); - BeginContext(5363, 4, false); -#line 137 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - Write(r.Id); - -#line default -#line hidden - EndContext(); - BeginContext(5367, 35, true); - WriteLiteral(""); - EndContext(); - BeginContext(5403, 11, false); -#line 138 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - Write(r.Descricao); - -#line default -#line hidden - EndContext(); - BeginContext(5414, 35, true); - WriteLiteral(""); - EndContext(); - BeginContext(5450, 13, false); -#line 139 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - Write(r.Observacoes); - -#line default -#line hidden - EndContext(); - BeginContext(5463, 35, true); - WriteLiteral(""); - EndContext(); - BeginContext(5499, 12, false); -#line 140 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - Write(r.EFuncional); - -#line default -#line hidden - EndContext(); - BeginContext(5511, 35, true); - WriteLiteral(""); - EndContext(); - BeginContext(5547, 14, false); -#line 141 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - Write(r.DataCadastro); - -#line default -#line hidden - EndContext(); - BeginContext(5561, 35, true); - WriteLiteral(""); - EndContext(); - BeginContext(5597, 13, false); -#line 142 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - Write(r.DataEntrega); - -#line default -#line hidden - EndContext(); - BeginContext(5610, 65, true); - WriteLiteral("\r\n "); - EndContext(); - BeginContext(5675, 177, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "06b341fb9d0653788e3f894a9adfcc37e118d8e939710", async() => { - BeginContext(5757, 91, true); - WriteLiteral("\r\n \r\n "); - EndContext(); - } - ); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper(); - __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_8.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_8); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_5.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_5); - if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null) - { - throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues")); - } - BeginWriteTagHelperAttribute(); -#line 144 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - WriteLiteral(r.Id); - -#line default -#line hidden - __tagHelperStringValueBuffer = EndWriteTagHelperAttribute(); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = __tagHelperStringValueBuffer; - __tagHelperExecutionContext.AddTagHelperAttribute("asp-route-id", __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"], global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); - await __tagHelperRunner.RunAsync(__tagHelperExecutionContext); - if (!__tagHelperExecutionContext.Output.IsContentModified) - { - await __tagHelperExecutionContext.SetOutputContentAsync(); - } - Write(__tagHelperExecutionContext.Output); - __tagHelperExecutionContext = __tagHelperScopeManager.End(); - EndContext(); - BeginContext(5852, 30, true); - WriteLiteral("\r\n "); - EndContext(); - BeginContext(5882, 177, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "06b341fb9d0653788e3f894a9adfcc37e118d8e942625", async() => { - BeginContext(5963, 92, true); - WriteLiteral("\r\n \r\n "); - EndContext(); - } - ); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper(); - __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_8.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_8); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_6.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_6); - if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null) - { - throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues")); - } - BeginWriteTagHelperAttribute(); -#line 147 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - WriteLiteral(r.Id); - -#line default -#line hidden - __tagHelperStringValueBuffer = EndWriteTagHelperAttribute(); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = __tagHelperStringValueBuffer; - __tagHelperExecutionContext.AddTagHelperAttribute("asp-route-id", __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"], global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); - await __tagHelperRunner.RunAsync(__tagHelperExecutionContext); - if (!__tagHelperExecutionContext.Output.IsContentModified) - { - await __tagHelperExecutionContext.SetOutputContentAsync(); - } - Write(__tagHelperExecutionContext.Output); - __tagHelperExecutionContext = __tagHelperScopeManager.End(); - EndContext(); - BeginContext(6059, 60, true); - WriteLiteral("\r\n
\r\n
\r\n
\r\n\r\n
\r\n
\r\n
\r\n
\r\n
\r\n "); - EndContext(); - BeginContext(6375, 93, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "06b341fb9d0653788e3f894a9adfcc37e118d8e946093", async() => { - BeginContext(6460, 4, true); - WriteLiteral("Bugs"); + Write(__tagHelperExecutionContext.Output); + __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - } - ); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper(); - __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper); - __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_0); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_9.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_9); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_3.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_3); - await __tagHelperRunner.RunAsync(__tagHelperExecutionContext); - if (!__tagHelperExecutionContext.Output.IsContentModified) - { - await __tagHelperExecutionContext.SetOutputContentAsync(); - } - Write(__tagHelperExecutionContext.Output); - __tagHelperExecutionContext = __tagHelperScopeManager.End(); - EndContext(); - BeginContext(6468, 133, true); - WriteLiteral("\r\n
\r\n
\r\n
\r\n "); - EndContext(); - BeginContext(6601, 148, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "06b341fb9d0653788e3f894a9adfcc37e118d8e948097", async() => { - BeginContext(6655, 90, true); - WriteLiteral("\r\n \r\n "); + BeginContext(589, 88, true); + WriteLiteral("\r\n
\r\n
\r\n "); EndContext(); - } - ); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper(); - __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_9.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_9); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_4.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_4); - await __tagHelperRunner.RunAsync(__tagHelperExecutionContext); - if (!__tagHelperExecutionContext.Output.IsContentModified) - { - await __tagHelperExecutionContext.SetOutputContentAsync(); - } - Write(__tagHelperExecutionContext.Output); - __tagHelperExecutionContext = __tagHelperScopeManager.End(); - EndContext(); - BeginContext(6749, 594, true); - WriteLiteral(@" -
-
-
-
- - - - - - - - - - - - -"); - EndContext(); -#line 186 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - foreach (Bug b in ViewBag.Bugs) + BeginContext(677, 109, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "dd58d03e5aab9b6a44f6e6bb1d9b5053060aaef511707", async() => { + BeginContext(773, 9, true); + WriteLiteral("Cadastrar"); + EndContext(); + } + ); + __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper(); + __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper); + __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_3); + __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_4.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_4); + __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_5.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_5); + __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_6.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_6); + if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null) { - -#line default -#line hidden - BeginContext(7412, 54, true); - WriteLiteral(" \r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n"); - EndContext(); -#line 203 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues")); } - -#line default -#line hidden - BeginContext(8182, 62, true); - WriteLiteral(" \r\n
#DescriçãoFoi ResolvidoData de CadastroPrioridadeOpções
"); - EndContext(); - BeginContext(7467, 4, false); -#line 189 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - Write(b.Id); - -#line default -#line hidden - EndContext(); - BeginContext(7471, 35, true); - WriteLiteral(""); - EndContext(); - BeginContext(7507, 11, false); -#line 190 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - Write(b.Descricao); - -#line default -#line hidden - EndContext(); - BeginContext(7518, 35, true); - WriteLiteral(""); - EndContext(); - BeginContext(7554, 14, false); -#line 191 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - Write(b.FoiResolvido); - -#line default -#line hidden - EndContext(); - BeginContext(7568, 35, true); - WriteLiteral(""); - EndContext(); - BeginContext(7604, 14, false); -#line 192 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - Write(b.DataCadastro); - -#line default -#line hidden - EndContext(); - BeginContext(7618, 35, true); - WriteLiteral(""); - EndContext(); - BeginContext(7654, 12, false); -#line 193 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - Write(b.Prioridade); - -#line default -#line hidden - EndContext(); - BeginContext(7666, 65, true); - WriteLiteral("\r\n "); - EndContext(); - BeginContext(7731, 171, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "06b341fb9d0653788e3f894a9adfcc37e118d8e952891", async() => { - BeginContext(7807, 91, true); - WriteLiteral("\r\n \r\n "); - EndContext(); - } - ); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper(); - __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_9.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_9); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_5.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_5); - if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null) - { - throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues")); - } - BeginWriteTagHelperAttribute(); -#line 195 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - WriteLiteral(b.Id); - -#line default -#line hidden - __tagHelperStringValueBuffer = EndWriteTagHelperAttribute(); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = __tagHelperStringValueBuffer; - __tagHelperExecutionContext.AddTagHelperAttribute("asp-route-id", __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"], global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); - await __tagHelperRunner.RunAsync(__tagHelperExecutionContext); - if (!__tagHelperExecutionContext.Output.IsContentModified) - { - await __tagHelperExecutionContext.SetOutputContentAsync(); - } - Write(__tagHelperExecutionContext.Output); - __tagHelperExecutionContext = __tagHelperScopeManager.End(); - EndContext(); - BeginContext(7902, 30, true); - WriteLiteral("\r\n "); - EndContext(); - BeginContext(7932, 171, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "06b341fb9d0653788e3f894a9adfcc37e118d8e955800", async() => { - BeginContext(8007, 92, true); - WriteLiteral("\r\n \r\n "); - EndContext(); - } - ); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper(); - __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_9.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_9); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_6.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_6); - if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null) - { - throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues")); - } - BeginWriteTagHelperAttribute(); -#line 198 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - WriteLiteral(b.Id); - -#line default -#line hidden - __tagHelperStringValueBuffer = EndWriteTagHelperAttribute(); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = __tagHelperStringValueBuffer; - __tagHelperExecutionContext.AddTagHelperAttribute("asp-route-id", __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"], global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); - await __tagHelperRunner.RunAsync(__tagHelperExecutionContext); - if (!__tagHelperExecutionContext.Output.IsContentModified) - { - await __tagHelperExecutionContext.SetOutputContentAsync(); - } - Write(__tagHelperExecutionContext.Output); - __tagHelperExecutionContext = __tagHelperScopeManager.End(); - EndContext(); - BeginContext(8103, 60, true); - WriteLiteral("\r\n
\r\n
\r\n
"); + __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = (string)__tagHelperAttribute_7.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_7); + await __tagHelperRunner.RunAsync(__tagHelperExecutionContext); + if (!__tagHelperExecutionContext.Output.IsContentModified) + { + await __tagHelperExecutionContext.SetOutputContentAsync(); + } + Write(__tagHelperExecutionContext.Output); + __tagHelperExecutionContext = __tagHelperScopeManager.End(); + EndContext(); + BeginContext(786, 121, true); + WriteLiteral("\r\n \r\n \r\n "); + EndContext(); + } + ); + __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper = CreateTagHelper(); + __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper); + __Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper = CreateTagHelper(); + __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper); + __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper.Method = (string)__tagHelperAttribute_8.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_8); + await __tagHelperRunner.RunAsync(__tagHelperExecutionContext); + if (!__tagHelperExecutionContext.Output.IsContentModified) + { + await __tagHelperExecutionContext.SetOutputContentAsync(); + } + Write(__tagHelperExecutionContext.Output); + __tagHelperExecutionContext = __tagHelperScopeManager.End(); + EndContext(); + BeginContext(914, 40, true); + WriteLiteral("\r\n \r\n \r\n"); EndContext(); } #pragma warning restore 1998 @@ -938,7 +203,7 @@ Write(ViewData["Title"]); [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] public global::Microsoft.AspNetCore.Mvc.Rendering.IJsonHelper Json { get; private set; } [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] - public global::Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper Html { get; private set; } + public global::Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper Html { get; private set; } } } #pragma warning restore 1591 diff --git a/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Shared/_Layout.g.cshtml.cs b/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Shared/_Layout.g.cshtml.cs index 052dd19..2e1b4b2 100644 --- a/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Shared/_Layout.g.cshtml.cs +++ b/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Shared/_Layout.g.cshtml.cs @@ -1,4 +1,4 @@ -#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "b179a6474f23cacad7cb452a552cf1fdc0daf46f" +#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "bcb014c0a7c92cc9a55332289d42c027e2b8d416" // #pragma warning disable 1591 [assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Shared__Layout), @"mvc.1.0.view", @"/Views/Shared/_Layout.cshtml")] @@ -23,7 +23,7 @@ using GerenciaProjetos.Models; #line default #line hidden - [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"b179a6474f23cacad7cb452a552cf1fdc0daf46f", @"/Views/Shared/_Layout.cshtml")] + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"bcb014c0a7c92cc9a55332289d42c027e2b8d416", @"/Views/Shared/_Layout.cshtml")] [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"4e94bb8cdb3ef35824e862096b8a713c8ba822eb", @"/Views/_ViewImports.cshtml")] public class Views_Shared__Layout : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage { @@ -52,21 +52,22 @@ using GerenciaProjetos.Models; private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_22 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Home", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_23 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Index", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_24 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("class", new global::Microsoft.AspNetCore.Html.HtmlString("nav-link"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); - private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_25 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("class", new global::Microsoft.AspNetCore.Html.HtmlString("text-decoration-none"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); - private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_26 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Privacy", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); - private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_27 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-route-id", "", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); - private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_28 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); - private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_29 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("src", new global::Microsoft.AspNetCore.Html.HtmlString("~/lib/jquery/dist/jquery.js"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); - private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_30 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("src", new global::Microsoft.AspNetCore.Html.HtmlString("~/lib/bootstrap/dist/js/bootstrap.bundle.js"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); - private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_31 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("src", "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); - private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_32 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-fallback-src", "~/lib/jquery/dist/jquery.min.js", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); - private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_33 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-fallback-test", "window.jQuery", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); - private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_34 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("integrity", new global::Microsoft.AspNetCore.Html.HtmlString("sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); - private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_35 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("src", "https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.bundle.min.js", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); - private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_36 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-fallback-src", "~/lib/bootstrap/dist/js/bootstrap.bundle.min.js", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); - private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_37 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-fallback-test", "window.jQuery && window.jQuery.fn && window.jQuery.fn.modal", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); - private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_38 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("integrity", new global::Microsoft.AspNetCore.Html.HtmlString("sha384-xrRywqdh3PHs8keKZN+8zzc5TX0GRTLCcmivcbNJWm2rs5C8PRhcEn3czEjhAO9o"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); - private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_39 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("src", "~/js/site.js", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); + private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_25 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Dashboard", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); + private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_26 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("class", new global::Microsoft.AspNetCore.Html.HtmlString("text-decoration-none"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); + private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_27 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Privacy", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); + private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_28 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-route-id", "", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); + private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_29 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); + private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_30 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("src", new global::Microsoft.AspNetCore.Html.HtmlString("~/lib/jquery/dist/jquery.js"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); + private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_31 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("src", new global::Microsoft.AspNetCore.Html.HtmlString("~/lib/bootstrap/dist/js/bootstrap.bundle.js"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); + private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_32 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("src", "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); + private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_33 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-fallback-src", "~/lib/jquery/dist/jquery.min.js", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); + private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_34 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-fallback-test", "window.jQuery", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); + private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_35 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("integrity", new global::Microsoft.AspNetCore.Html.HtmlString("sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); + private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_36 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("src", "https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.bundle.min.js", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); + private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_37 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-fallback-src", "~/lib/bootstrap/dist/js/bootstrap.bundle.min.js", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); + private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_38 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-fallback-test", "window.jQuery && window.jQuery.fn && window.jQuery.fn.modal", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); + private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_39 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("integrity", new global::Microsoft.AspNetCore.Html.HtmlString("sha384-xrRywqdh3PHs8keKZN+8zzc5TX0GRTLCcmivcbNJWm2rs5C8PRhcEn3czEjhAO9o"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); + private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_40 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("src", "~/js/site.js", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); #line hidden #pragma warning disable 0169 private string __tagHelperStringValueBuffer; @@ -99,7 +100,7 @@ using GerenciaProjetos.Models; WriteLiteral("\r\n\r\n"); EndContext(); BeginContext(25, 1025, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("head", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b179a6474f23cacad7cb452a552cf1fdc0daf46f17847", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("head", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "bcb014c0a7c92cc9a55332289d42c027e2b8d41618156", async() => { BeginContext(31, 121, true); WriteLiteral("\r\n \r\n \r\n "); EndContext(); @@ -114,12 +115,12 @@ using GerenciaProjetos.Models; WriteLiteral(" - TribuFu\r\n\r\n "); EndContext(); BeginContext(196, 136, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b179a6474f23cacad7cb452a552cf1fdc0daf46f18747", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "bcb014c0a7c92cc9a55332289d42c027e2b8d41619056", async() => { BeginContext(231, 10, true); WriteLiteral("\r\n "); EndContext(); BeginContext(241, 71, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "b179a6474f23cacad7cb452a552cf1fdc0daf46f19165", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "bcb014c0a7c92cc9a55332289d42c027e2b8d41619474", async() => { } ); __Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper(); @@ -155,12 +156,12 @@ using GerenciaProjetos.Models; WriteLiteral("\r\n "); EndContext(); BeginContext(338, 508, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b179a6474f23cacad7cb452a552cf1fdc0daf46f21657", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "bcb014c0a7c92cc9a55332289d42c027e2b8d41621966", async() => { BeginContext(373, 10, true); WriteLiteral("\r\n "); EndContext(); BeginContext(383, 443, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "b179a6474f23cacad7cb452a552cf1fdc0daf46f22076", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "bcb014c0a7c92cc9a55332289d42c027e2b8d41622385", async() => { } ); __Microsoft_AspNetCore_Mvc_TagHelpers_LinkTagHelper = CreateTagHelper(); @@ -207,7 +208,7 @@ using GerenciaProjetos.Models; WriteLiteral("\r\n "); EndContext(); BeginContext(852, 69, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "b179a6474f23cacad7cb452a552cf1fdc0daf46f25735", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "bcb014c0a7c92cc9a55332289d42c027e2b8d41626044", async() => { } ); __Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper(); @@ -227,7 +228,7 @@ using GerenciaProjetos.Models; WriteLiteral("\r\n "); EndContext(); BeginContext(927, 61, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "b179a6474f23cacad7cb452a552cf1fdc0daf46f27158", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "bcb014c0a7c92cc9a55332289d42c027e2b8d41627467", async() => { } ); __Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper(); @@ -246,7 +247,7 @@ using GerenciaProjetos.Models; WriteLiteral("\r\n "); EndContext(); BeginContext(994, 47, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "b179a6474f23cacad7cb452a552cf1fdc0daf46f28493", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "bcb014c0a7c92cc9a55332289d42c027e2b8d41628802", async() => { } ); __Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper(); @@ -279,18 +280,18 @@ using GerenciaProjetos.Models; BeginContext(1050, 2, true); WriteLiteral("\r\n"); EndContext(); - BeginContext(1052, 7115, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("body", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b179a6474f23cacad7cb452a552cf1fdc0daf46f30627", async() => { + BeginContext(1052, 7321, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("body", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "bcb014c0a7c92cc9a55332289d42c027e2b8d41630936", async() => { BeginContext(1058, 168, true); WriteLiteral("\r\n
\r\n