diff --git a/.vs/GerenciaProjetos/v15/.suo b/.vs/GerenciaProjetos/v15/.suo index 8c29b4c..e12ef90 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 66666e6..30fe75d 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-wal b/.vs/GerenciaProjetos/v15/Server/sqlite3/storage.ide-wal index b316c7f..a568dda 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 e09b713..555c61d 100644 --- a/GerenciaProjetos/Controllers/BugsController.cs +++ b/GerenciaProjetos/Controllers/BugsController.cs @@ -6,6 +6,7 @@ using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; using GerenciaProjetos.Models; using GerenciaContext = GerenciaProjetos.Data.GerenciaContext; +using Microsoft.AspNetCore.Mvc.Rendering; namespace GerenciaProjetos.Controllers { @@ -16,13 +17,117 @@ namespace GerenciaProjetos.Controllers public BugsController(GerenciaContext ctx) { this.ctx = ctx; - - Requisito dev = ctx.Requisitos.Find(1); } public IActionResult Index() { + ViewBag.Bugs = ctx.Bugs; + return View(); } + + public IActionResult New() + { + ViewData["Title"] = "Novo"; + + ViewBag.Desenvolvedores = ctx.Desenvolvedores.OrderBy(d => d.Nome).Select(d => new SelectListItem + { + Text = d.Nome, + Value = d.Id.ToString() + }); + + ViewBag.Requisitos = ctx.Requisitos.OrderBy(r => r.Descricao).Select(r => new SelectListItem + { + Text = r.Descricao, + Value = r.Id.ToString() + }); + + return View("Form"); + } + + [HttpPost] + public IActionResult New(Bug bug) + { + if (ModelState.IsValid) + { + bug.DataCadastro = DateTime.Now; + + ctx.Bugs.Add(bug); + ctx.SaveChanges(); + + return RedirectToAction("Index", "Home"); + } + else + { + return View("Form", bug); + } + } + + public IActionResult Edit(int id) + { + ViewData["Title"] = "Editar"; + + ViewBag.Desenvolvedores = ctx.Desenvolvedores.OrderBy(d => d.Nome).Select(d => new SelectListItem + { + Text = d.Nome, + Value = d.Id.ToString() + }); + + ViewBag.Requisitos = ctx.Requisitos.OrderBy(r => r.Descricao).Select(r => new SelectListItem + { + Text = r.Descricao, + Value = r.Id.ToString() + }); + + Bug bug = ctx.Bugs.Find(id); + + if (bug != null) + { + return View("Form", bug); + } + else + { + return RedirectToAction("Index", "Home"); + } + } + + [HttpPost] + [ValidateAntiForgeryToken] + public IActionResult Edit(Bug bug) + { + if (ModelState.IsValid) + { + /* + ctx.Entry(bug).Property(r => r.DesenvolvedorId).IsModified = true; + ctx.Entry(bug).Property(r => r.RequisitoId).IsModified = true; + ctx.Entry(bug).Property(r => r.CriadorId).IsModified = true; + ctx.Entry(bug).Property(r => r.Prioridade).IsModified = true; + */ + + bug.DataCadastro = DateTime.Now; + + ctx.Bugs.Update(bug); + ctx.SaveChanges(); + + return RedirectToAction("Index", "Home"); + } + else + { + return View("Form", bug); + } + } + + public IActionResult Del(int id) + { + Bug bug = ctx.Bugs.Find(id); + + if (bug != null) + { + ctx.Bugs.Remove(bug); + ctx.SaveChanges(); + } + + return RedirectToAction("Index", "Home"); + } } } \ No newline at end of file diff --git a/GerenciaProjetos/Controllers/DesenvolvedoresController.cs b/GerenciaProjetos/Controllers/DesenvolvedoresController.cs index a1c599d..00ef404 100644 --- a/GerenciaProjetos/Controllers/DesenvolvedoresController.cs +++ b/GerenciaProjetos/Controllers/DesenvolvedoresController.cs @@ -9,11 +9,11 @@ using GerenciaContext = GerenciaProjetos.Data.GerenciaContext; namespace GerenciaProjetos.Controllers { - public class DesenvolvedoresController : Controller + public class DesenvolvedorsController : Controller { private GerenciaContext ctx; - public DesenvolvedoresController(GerenciaContext ctx) + public DesenvolvedorsController(GerenciaContext ctx) { this.ctx = ctx; } diff --git a/GerenciaProjetos/Controllers/HomeController.cs b/GerenciaProjetos/Controllers/HomeController.cs index 5d40537..a73519e 100644 --- a/GerenciaProjetos/Controllers/HomeController.cs +++ b/GerenciaProjetos/Controllers/HomeController.cs @@ -23,6 +23,7 @@ namespace GerenciaProjetos.Controllers ViewBag.Desenvolvedores = ctx.Desenvolvedores; ViewBag.Projetos = ctx.Projetos; ViewBag.Requisitos = ctx.Requisitos; + ViewBag.Bugs = ctx.Bugs; return View(); } diff --git a/GerenciaProjetos/Data/GerenciaContext.cs b/GerenciaProjetos/Data/GerenciaContext.cs index a0ccb7e..b686b6a 100644 --- a/GerenciaProjetos/Data/GerenciaContext.cs +++ b/GerenciaProjetos/Data/GerenciaContext.cs @@ -24,8 +24,6 @@ namespace GerenciaProjetos.Data protected override void OnModelCreating(ModelBuilder modelBuilder) { - modelBuilder.Entity() - .HasKey(b => new { b.DesenvolvedorId, b.RequisitoId }); modelBuilder.Entity() .HasKey(p => new { p.DesenvolvedorId, p.ProjetoId }); modelBuilder.Entity() diff --git a/GerenciaProjetos/Migrations/20190921210818_2.cs b/GerenciaProjetos/Migrations/20190921210818_2.cs deleted file mode 100644 index a491f2c..0000000 --- a/GerenciaProjetos/Migrations/20190921210818_2.cs +++ /dev/null @@ -1,84 +0,0 @@ -using System; -using Microsoft.EntityFrameworkCore.Migrations; - -namespace GerenciaProjetos.Migrations -{ - public partial class _2 : Migration - { - protected override void Up(MigrationBuilder migrationBuilder) - { - migrationBuilder.AddColumn( - name: "TempoGasto", - table: "DesenvolvedorRequisito", - nullable: false, - defaultValue: new TimeSpan(0, 0, 0, 0, 0)); - - migrationBuilder.AddColumn( - name: "CriadorId", - table: "Bugs", - nullable: false, - defaultValue: 0); - - migrationBuilder.AddColumn( - name: "DataCadastro", - table: "Bugs", - nullable: false, - defaultValue: new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified)); - - migrationBuilder.AddColumn( - name: "FoiResolvido", - table: "Bugs", - nullable: false, - defaultValue: false); - - migrationBuilder.AddColumn( - name: "Prioridade", - table: "Bugs", - nullable: true); - - migrationBuilder.CreateIndex( - name: "IX_Bugs_CriadorId", - table: "Bugs", - column: "CriadorId"); - - migrationBuilder.AddForeignKey( - name: "FK_Bugs_Desenvolvedores_CriadorId", - table: "Bugs", - column: "CriadorId", - principalTable: "Desenvolvedores", - principalColumn: "Id", - onDelete: ReferentialAction.Cascade); - } - - protected override void Down(MigrationBuilder migrationBuilder) - { - migrationBuilder.DropForeignKey( - name: "FK_Bugs_Desenvolvedores_CriadorId", - table: "Bugs"); - - migrationBuilder.DropIndex( - name: "IX_Bugs_CriadorId", - table: "Bugs"); - - migrationBuilder.DropColumn( - name: "TempoGasto", - table: "DesenvolvedorRequisito"); - - migrationBuilder.DropColumn( - name: "CriadorId", - table: "Bugs"); - - migrationBuilder.DropColumn( - name: "DataCadastro", - table: "Bugs"); - - migrationBuilder.DropColumn( - name: "FoiResolvido", - table: "Bugs"); - - migrationBuilder.DropColumn( - name: "Prioridade", - table: "Bugs"); - } - } -} diff --git a/GerenciaProjetos/Migrations/20190921210546_1.Designer.cs b/GerenciaProjetos/Migrations/20190922115736_1.Designer.cs similarity index 89% rename from GerenciaProjetos/Migrations/20190921210546_1.Designer.cs rename to GerenciaProjetos/Migrations/20190922115736_1.Designer.cs index 1d8d97a..9066e62 100644 --- a/GerenciaProjetos/Migrations/20190921210546_1.Designer.cs +++ b/GerenciaProjetos/Migrations/20190922115736_1.Designer.cs @@ -9,7 +9,7 @@ using Microsoft.EntityFrameworkCore.Storage.ValueConversion; namespace GerenciaProjetos.Migrations { [DbContext(typeof(GerenciaContext))] - [Migration("20190921210546_1")] + [Migration("20190922115736_1")] partial class _1 { protected override void BuildTargetModel(ModelBuilder modelBuilder) @@ -21,11 +21,26 @@ namespace GerenciaProjetos.Migrations modelBuilder.Entity("GerenciaProjetos.Models.Bug", b => { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("CriadorId"); + + b.Property("DataCadastro"); + b.Property("DesenvolvedorId"); + b.Property("FoiResolvido"); + + b.Property("Prioridade"); + b.Property("RequisitoId"); - b.HasKey("DesenvolvedorId", "RequisitoId"); + b.HasKey("Id"); + + b.HasIndex("CriadorId"); + + b.HasIndex("DesenvolvedorId"); b.HasIndex("RequisitoId"); @@ -131,6 +146,11 @@ namespace GerenciaProjetos.Migrations modelBuilder.Entity("GerenciaProjetos.Models.Bug", b => { + b.HasOne("GerenciaProjetos.Models.Desenvolvedor", "Criador") + .WithMany() + .HasForeignKey("CriadorId") + .OnDelete(DeleteBehavior.Cascade); + b.HasOne("GerenciaProjetos.Models.Desenvolvedor", "Desenvolvedor") .WithMany() .HasForeignKey("DesenvolvedorId") diff --git a/GerenciaProjetos/Migrations/20190921210546_1.cs b/GerenciaProjetos/Migrations/20190922115736_1.cs similarity index 86% rename from GerenciaProjetos/Migrations/20190921210546_1.cs rename to GerenciaProjetos/Migrations/20190922115736_1.cs index 7346691..47c5d50 100644 --- a/GerenciaProjetos/Migrations/20190921210546_1.cs +++ b/GerenciaProjetos/Migrations/20190922115736_1.cs @@ -91,12 +91,24 @@ namespace GerenciaProjetos.Migrations name: "Bugs", columns: table => new { + Id = table.Column(nullable: false) + .Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn), DesenvolvedorId = table.Column(nullable: false), - RequisitoId = table.Column(nullable: false) + RequisitoId = table.Column(nullable: false), + Prioridade = table.Column(nullable: true), + DataCadastro = table.Column(nullable: false), + CriadorId = table.Column(nullable: false), + FoiResolvido = table.Column(nullable: false) }, constraints: table => { - table.PrimaryKey("PK_Bugs", x => new { x.DesenvolvedorId, x.RequisitoId }); + table.PrimaryKey("PK_Bugs", x => x.Id); + table.ForeignKey( + name: "FK_Bugs_Desenvolvedores_CriadorId", + column: x => x.CriadorId, + principalTable: "Desenvolvedores", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); table.ForeignKey( name: "FK_Bugs_Desenvolvedores_DesenvolvedorId", column: x => x.DesenvolvedorId, @@ -135,6 +147,16 @@ namespace GerenciaProjetos.Migrations onDelete: ReferentialAction.Cascade); }); + migrationBuilder.CreateIndex( + name: "IX_Bugs_CriadorId", + table: "Bugs", + column: "CriadorId"); + + migrationBuilder.CreateIndex( + name: "IX_Bugs_DesenvolvedorId", + table: "Bugs", + column: "DesenvolvedorId"); + migrationBuilder.CreateIndex( name: "IX_Bugs_RequisitoId", table: "Bugs", diff --git a/GerenciaProjetos/Migrations/20190921210818_2.Designer.cs b/GerenciaProjetos/Migrations/20190922115947_2.Designer.cs similarity index 96% rename from GerenciaProjetos/Migrations/20190921210818_2.Designer.cs rename to GerenciaProjetos/Migrations/20190922115947_2.Designer.cs index f345db4..e51d84f 100644 --- a/GerenciaProjetos/Migrations/20190921210818_2.Designer.cs +++ b/GerenciaProjetos/Migrations/20190922115947_2.Designer.cs @@ -9,7 +9,7 @@ using Microsoft.EntityFrameworkCore.Storage.ValueConversion; namespace GerenciaProjetos.Migrations { [DbContext(typeof(GerenciaContext))] - [Migration("20190921210818_2")] + [Migration("20190922115947_2")] partial class _2 { protected override void BuildTargetModel(ModelBuilder modelBuilder) @@ -21,22 +21,27 @@ namespace GerenciaProjetos.Migrations modelBuilder.Entity("GerenciaProjetos.Models.Bug", b => { - b.Property("DesenvolvedorId"); - - b.Property("RequisitoId"); + b.Property("Id") + .ValueGeneratedOnAdd(); b.Property("CriadorId"); b.Property("DataCadastro"); + b.Property("DesenvolvedorId"); + b.Property("FoiResolvido"); b.Property("Prioridade"); - b.HasKey("DesenvolvedorId", "RequisitoId"); + b.Property("RequisitoId"); + + b.HasKey("Id"); b.HasIndex("CriadorId"); + b.HasIndex("DesenvolvedorId"); + b.HasIndex("RequisitoId"); b.ToTable("Bugs"); diff --git a/GerenciaProjetos/Migrations/20190922115947_2.cs b/GerenciaProjetos/Migrations/20190922115947_2.cs new file mode 100644 index 0000000..cefcd42 --- /dev/null +++ b/GerenciaProjetos/Migrations/20190922115947_2.cs @@ -0,0 +1,24 @@ +using System; +using Microsoft.EntityFrameworkCore.Migrations; + +namespace GerenciaProjetos.Migrations +{ + public partial class _2 : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.AddColumn( + name: "TempoGasto", + table: "DesenvolvedorRequisito", + nullable: false, + defaultValue: new TimeSpan(0, 0, 0, 0, 0)); + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropColumn( + name: "TempoGasto", + table: "DesenvolvedorRequisito"); + } + } +} diff --git a/GerenciaProjetos/Migrations/GerenciaContextModelSnapshot.cs b/GerenciaProjetos/Migrations/GerenciaContextModelSnapshot.cs index 5ac4733..70467fe 100644 --- a/GerenciaProjetos/Migrations/GerenciaContextModelSnapshot.cs +++ b/GerenciaProjetos/Migrations/GerenciaContextModelSnapshot.cs @@ -19,22 +19,27 @@ namespace GerenciaProjetos.Migrations modelBuilder.Entity("GerenciaProjetos.Models.Bug", b => { - b.Property("DesenvolvedorId"); - - b.Property("RequisitoId"); + b.Property("Id") + .ValueGeneratedOnAdd(); b.Property("CriadorId"); b.Property("DataCadastro"); + b.Property("DesenvolvedorId"); + b.Property("FoiResolvido"); b.Property("Prioridade"); - b.HasKey("DesenvolvedorId", "RequisitoId"); + b.Property("RequisitoId"); + + b.HasKey("Id"); b.HasIndex("CriadorId"); + b.HasIndex("DesenvolvedorId"); + b.HasIndex("RequisitoId"); b.ToTable("Bugs"); diff --git a/GerenciaProjetos/Models/Bug.cs b/GerenciaProjetos/Models/Bug.cs index 336b07d..7780883 100644 --- a/GerenciaProjetos/Models/Bug.cs +++ b/GerenciaProjetos/Models/Bug.cs @@ -9,8 +9,11 @@ namespace GerenciaProjetos.Models { public class Bug { + [Key] + public int Id { get; set; } + public int DesenvolvedorId { get; set; } - public Requisito Desenvolvedor { get; set; } + public Desenvolvedor Desenvolvedor { get; set; } public int RequisitoId { get; set; } public Requisito Requisito { get; set; } @@ -20,7 +23,7 @@ namespace GerenciaProjetos.Models public DateTime DataCadastro { get; set; } public int CriadorId { get; set; } - public Requisito Criador { get; set; } + public Desenvolvedor Criador { get; set; } public bool FoiResolvido { get; set; } } diff --git a/GerenciaProjetos/Models/DesenvolvedorProjeto.cs b/GerenciaProjetos/Models/DesenvolvedorProjeto.cs index c96fda6..c5cb350 100644 --- a/GerenciaProjetos/Models/DesenvolvedorProjeto.cs +++ b/GerenciaProjetos/Models/DesenvolvedorProjeto.cs @@ -10,7 +10,7 @@ namespace GerenciaProjetos.Models public class DesenvolvedorProjeto { public int DesenvolvedorId { get; set; } - public Requisito Desenvolvedor { get; set; } + public Desenvolvedor Desenvolvedor { get; set; } public int ProjetoId { get; set; } public Projeto Projeto { get; set; } diff --git a/GerenciaProjetos/Models/DesenvolvedorRequisito.cs b/GerenciaProjetos/Models/DesenvolvedorRequisito.cs index cce720c..9a398b6 100644 --- a/GerenciaProjetos/Models/DesenvolvedorRequisito.cs +++ b/GerenciaProjetos/Models/DesenvolvedorRequisito.cs @@ -10,7 +10,7 @@ namespace GerenciaProjetos.Models public class DesenvolvedorRequisito { public int DesenvolvedorId { get; set; } - public Requisito Desenvolvedor { get; set; } + public Desenvolvedor Desenvolvedor { get; set; } public int RequisitoId { get; set; } public Requisito Requisito { get; set; } diff --git a/GerenciaProjetos/Views/Bugs/Form.cshtml b/GerenciaProjetos/Views/Bugs/Form.cshtml new file mode 100644 index 0000000..7aa2b95 --- /dev/null +++ b/GerenciaProjetos/Views/Bugs/Form.cshtml @@ -0,0 +1,47 @@ + +@{ + Layout = "~/Views/Shared/_Layout.cshtml"; +} + +@model GerenciaProjetos.Models.Bug + +

@ViewData["Title"]

+ +
+
+
+
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ Cancelar + +
+
+
+
+
\ No newline at end of file diff --git a/GerenciaProjetos/Views/Bugs/Index.cshtml b/GerenciaProjetos/Views/Bugs/Index.cshtml new file mode 100644 index 0000000..43e5ce2 --- /dev/null +++ b/GerenciaProjetos/Views/Bugs/Index.cshtml @@ -0,0 +1,56 @@ + +@{ + ViewData["Title"] = "Requisitos"; + Layout = "~/Views/Shared/_Layout.cshtml"; +} + +

@ViewData["Title"]

+ +
+
+
+
+
+ 1 +
+
+
+ + + +
+
+
+
+ + + + + + + + + + + + @foreach (Bug b in ViewBag.Bugs) + { + + + + + + + + } + +
#CriadorData de CadastroPrioridadeOpções
@b.DesenvolvedorId-@b.RequisitoId@b.Criador@b.DataCadastro@b.Prioridade + + + + + + +
+
+
\ No newline at end of file diff --git a/GerenciaProjetos/Views/Home/Index.cshtml b/GerenciaProjetos/Views/Home/Index.cshtml index 00bed95..79a3fa3 100644 --- a/GerenciaProjetos/Views/Home/Index.cshtml +++ b/GerenciaProjetos/Views/Home/Index.cshtml @@ -167,11 +167,11 @@
- Bugs + Bugs
@@ -182,29 +182,30 @@ # - Prioridade + Criador Data de Cadastro - Data de Entrega - Resolvido + Prioridade Opções - - 1 - Guilherme - Abril - Kewin - Não - - - - - - - - - + @foreach (Bug b in ViewBag.Bugs) + { + + @b.DesenvolvedorId-@b.RequisitoId + @b.Criador + @b.DataCadastro + @b.Prioridade + + + + + + + + + + }
diff --git a/GerenciaProjetos/bin/Debug/netcoreapp2.2/GerenciaProjetos.Views.dll b/GerenciaProjetos/bin/Debug/netcoreapp2.2/GerenciaProjetos.Views.dll index e23c89e..8ec51d3 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 d2f47be..404a835 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 3a6ce1d..4d4f7ff 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 417bf37..4a52337 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 4e1cf01..e6f7130 100644 --- a/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.RazorCoreGenerate.cache +++ b/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.RazorCoreGenerate.cache @@ -1 +1 @@ -f5d0e88b6b4776bd7be0e689f2bc3ca5ab84cb30 +c7b3bbeab81fcd814f53f806904f8bea8e240001 diff --git a/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.Views.dll b/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.Views.dll index e23c89e..8ec51d3 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 d2f47be..404a835 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 c34393c..59d6986 100644 --- a/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.csproj.CoreCompileInputs.cache +++ b/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -d3d45ed3bc191b1282a479614317faa09830210d +0d0d065687e8ce64097948569b24ca13c4839e14 diff --git a/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.csproj.FileListAbsolute.txt b/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.csproj.FileListAbsolute.txt index d6714f5..433bdf7 100644 --- a/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.csproj.FileListAbsolute.txt +++ b/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.csproj.FileListAbsolute.txt @@ -34,3 +34,5 @@ C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcor C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Requisitos\Index.g.cshtml.cs C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Desenvolvedores\Form.g.cshtml.cs C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Desenvolvedores\Index.g.cshtml.cs +C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Bugs\Form.g.cshtml.cs +C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Bugs\Index.g.cshtml.cs diff --git a/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.dll b/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.dll index 3a6ce1d..4d4f7ff 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 417bf37..4a52337 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 new file mode 100644 index 0000000..d21f061 --- /dev/null +++ b/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Bugs/Form.g.cshtml.cs @@ -0,0 +1,396 @@ +#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "3d53fe7d1a83e0834d25f430afe65fcab2e3dcea" +// +#pragma warning disable 1591 +[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Bugs_Form), @"mvc.1.0.view", @"/Views/Bugs/Form.cshtml")] +[assembly:global::Microsoft.AspNetCore.Mvc.Razor.Compilation.RazorViewAttribute(@"/Views/Bugs/Form.cshtml", typeof(AspNetCore.Views_Bugs_Form))] +namespace AspNetCore +{ + #line hidden + using System; + using System.Collections.Generic; + using System.Linq; + using System.Threading.Tasks; + using Microsoft.AspNetCore.Mvc; + using Microsoft.AspNetCore.Mvc.Rendering; + using Microsoft.AspNetCore.Mvc.ViewFeatures; +#line 1 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" +using GerenciaProjetos; + +#line default +#line hidden +#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" +using GerenciaProjetos.Models; + +#line default +#line hidden + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"3d53fe7d1a83e0834d25f430afe65fcab2e3dcea", @"/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 + { + 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("form-control"), 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("btn btn-secondary"), 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-area", "", 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-controller", "Bugs", 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", "Index", 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-route-id", "", 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("method", "post", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); + #line hidden + #pragma warning disable 0169 + private string __tagHelperStringValueBuffer; + #pragma warning restore 0169 + private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext __tagHelperExecutionContext; + private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner __tagHelperRunner = new global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner(); + private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager __backed__tagHelperScopeManager = null; + private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager __tagHelperScopeManager + { + get + { + if (__backed__tagHelperScopeManager == null) + { + __backed__tagHelperScopeManager = new global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager(StartTagHelperWritingScope, EndTagHelperWritingScope); + } + 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.SelectTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper; + private global::Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper; + 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() + { + BeginContext(0, 2, true); + WriteLiteral("\r\n"); + EndContext(); +#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml" + + Layout = "~/Views/Shared/_Layout.cshtml"; + +#line default +#line hidden + BeginContext(56, 2, true); + WriteLiteral("\r\n"); + EndContext(); + BeginContext(94, 6, true); + WriteLiteral("\r\n

"); + EndContext(); + BeginContext(101, 17, false); +#line 8 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml" +Write(ViewData["Title"]); + +#line default +#line hidden + EndContext(); + BeginContext(118, 102, true); + WriteLiteral("

\r\n\r\n
\r\n
\r\n
\r\n "); + EndContext(); + BeginContext(220, 1569, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3d53fe7d1a83e0834d25f430afe65fcab2e3dcea6799", 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, "3d53fe7d1a83e0834d25f430afe65fcab2e3dcea7301", async() => { + BeginContext(445, 26, true); + WriteLiteral("\r\n "); + EndContext(); + BeginContext(471, 17, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3d53fe7d1a83e0834d25f430afe65fcab2e3dcea7729", 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(488, 22, true); + WriteLiteral("\r\n "); + EndContext(); + } + ); + __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); + +#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 16 "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(519, 134, 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, "3d53fe7d1a83e0834d25f430afe65fcab2e3dcea10968", async() => { + BeginContext(735, 26, true); + WriteLiteral("\r\n "); + EndContext(); + BeginContext(761, 17, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3d53fe7d1a83e0834d25f430afe65fcab2e3dcea11397", 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(778, 22, true); + WriteLiteral("\r\n "); + EndContext(); + } + ); + __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); + +#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.Requisitos; + +#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(809, 132, true); + WriteLiteral("\r\n
\r\n
\r\n \r\n "); + EndContext(); + BeginContext(941, 159, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("select", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3d53fe7d1a83e0834d25f430afe65fcab2e3dcea14626", async() => { + BeginContext(1026, 26, true); + WriteLiteral("\r\n "); + EndContext(); + BeginContext(1052, 17, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3d53fe7d1a83e0834d25f430afe65fcab2e3dcea15057", 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(1069, 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.CriadorId); + +#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.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(1100, 135, true); + WriteLiteral("\r\n
\r\n
\r\n \r\n "); + EndContext(); + BeginContext(1235, 225, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("select", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3d53fe7d1a83e0834d25f430afe65fcab2e3dcea18295", async() => { + BeginContext(1285, 26, true); + WriteLiteral("\r\n "); + EndContext(); + BeginContext(1311, 23, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3d53fe7d1a83e0834d25f430afe65fcab2e3dcea18726", async() => { + BeginContext(1319, 6, true); + WriteLiteral("Normal"); + EndContext(); + } + ); + __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(1334, 26, true); + WriteLiteral("\r\n "); + EndContext(); + BeginContext(1360, 22, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3d53fe7d1a83e0834d25f430afe65fcab2e3dcea20087", async() => { + BeginContext(1368, 5, true); + WriteLiteral("Baixa"); + EndContext(); + } + ); + __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(1382, 26, true); + WriteLiteral("\r\n "); + EndContext(); + BeginContext(1408, 21, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3d53fe7d1a83e0834d25f430afe65fcab2e3dcea21447", async() => { + BeginContext(1416, 4, true); + WriteLiteral("Alta"); + EndContext(); + } + ); + __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(1429, 22, true); + WriteLiteral("\r\n "); + EndContext(); + } + ); + __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper = CreateTagHelper(); + __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper); +#line 34 "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 +#line hidden + __tagHelperExecutionContext.AddTagHelperAttribute("asp-for", __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.For, global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); + __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_0); + await __tagHelperRunner.RunAsync(__tagHelperExecutionContext); + if (!__tagHelperExecutionContext.Output.IsContentModified) + { + await __tagHelperExecutionContext.SetOutputContentAsync(); + } + Write(__tagHelperExecutionContext.Output); + __tagHelperExecutionContext = __tagHelperScopeManager.End(); + EndContext(); + BeginContext(1460, 88, true); + WriteLiteral("\r\n
\r\n
\r\n "); + EndContext(); + BeginContext(1548, 110, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3d53fe7d1a83e0834d25f430afe65fcab2e3dcea24332", async() => { + BeginContext(1646, 8, true); + WriteLiteral("Cancelar"); + EndContext(); + } + ); + __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper(); + __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper); + __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_1); + __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_2.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_2); + __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_3.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_3); + __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_4.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_4); + if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null) + { + throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues")); + } + __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = (string)__tagHelperAttribute_5.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_5); + await __tagHelperRunner.RunAsync(__tagHelperExecutionContext); + if (!__tagHelperExecutionContext.Output.IsContentModified) + { + await __tagHelperExecutionContext.SetOutputContentAsync(); + } + Write(__tagHelperExecutionContext.Output); + __tagHelperExecutionContext = __tagHelperScopeManager.End(); + EndContext(); + BeginContext(1658, 124, 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_6.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_6); + await __tagHelperRunner.RunAsync(__tagHelperExecutionContext); + if (!__tagHelperExecutionContext.Output.IsContentModified) + { + await __tagHelperExecutionContext.SetOutputContentAsync(); + } + Write(__tagHelperExecutionContext.Output); + __tagHelperExecutionContext = __tagHelperScopeManager.End(); + EndContext(); + BeginContext(1789, 40, true); + WriteLiteral("\r\n
\r\n
\r\n
"); + EndContext(); + } + #pragma warning restore 1998 + [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] + public global::Microsoft.AspNetCore.Mvc.ViewFeatures.IModelExpressionProvider ModelExpressionProvider { get; private set; } + [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] + public global::Microsoft.AspNetCore.Mvc.IUrlHelper Url { get; private set; } + [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] + public global::Microsoft.AspNetCore.Mvc.IViewComponentHelper Component { get; private set; } + [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; } + } +} +#pragma warning restore 1591 diff --git a/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Bugs/Index.g.cshtml.cs b/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Bugs/Index.g.cshtml.cs new file mode 100644 index 0000000..0eb143c --- /dev/null +++ b/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Bugs/Index.g.cshtml.cs @@ -0,0 +1,304 @@ +#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "e3f1888c36f6ea29ba67cb12fb6eb675cf7ecedc" +// +#pragma warning disable 1591 +[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Bugs_Index), @"mvc.1.0.view", @"/Views/Bugs/Index.cshtml")] +[assembly:global::Microsoft.AspNetCore.Mvc.Razor.Compilation.RazorViewAttribute(@"/Views/Bugs/Index.cshtml", typeof(AspNetCore.Views_Bugs_Index))] +namespace AspNetCore +{ + #line hidden + using System; + using System.Collections.Generic; + using System.Linq; + using System.Threading.Tasks; + using Microsoft.AspNetCore.Mvc; + using Microsoft.AspNetCore.Mvc.Rendering; + using Microsoft.AspNetCore.Mvc.ViewFeatures; +#line 1 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" +using GerenciaProjetos; + +#line default +#line hidden +#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" +using GerenciaProjetos.Models; + +#line default +#line hidden + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"e3f1888c36f6ea29ba67cb12fb6eb675cf7ecedc", @"/Views/Bugs/Index.cshtml")] + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"4e94bb8cdb3ef35824e862096b8a713c8ba822eb", @"/Views/_ViewImports.cshtml")] + public class Views_Bugs_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("asp-area", "", 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-controller", "Bugs", 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-action", "New", 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", "Edit", 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", "Del", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); + #line hidden + #pragma warning disable 0169 + private string __tagHelperStringValueBuffer; + #pragma warning restore 0169 + private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext __tagHelperExecutionContext; + private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner __tagHelperRunner = new global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner(); + private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager __backed__tagHelperScopeManager = null; + private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager __tagHelperScopeManager + { + get + { + if (__backed__tagHelperScopeManager == null) + { + __backed__tagHelperScopeManager = new global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager(StartTagHelperWritingScope, EndTagHelperWritingScope); + } + return __backed__tagHelperScopeManager; + } + } + 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() + { + BeginContext(0, 2, true); + WriteLiteral("\r\n"); + EndContext(); +#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" + + ViewData["Title"] = "Requisitos"; + Layout = "~/Views/Shared/_Layout.cshtml"; + +#line default +#line hidden + BeginContext(95, 6, true); + WriteLiteral("\r\n

"); + EndContext(); + BeginContext(102, 17, false); +#line 7 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" +Write(ViewData["Title"]); + +#line default +#line hidden + EndContext(); + BeginContext(119, 314, true); + WriteLiteral(@"

+ +
+
+
+
+
+ 1 +
+
+
+ "); + EndContext(); + BeginContext(433, 148, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "e3f1888c36f6ea29ba67cb12fb6eb675cf7ecedc5683", async() => { + BeginContext(487, 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_0.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0); + __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_1.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1); + __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_2.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_2); + await __tagHelperRunner.RunAsync(__tagHelperExecutionContext); + if (!__tagHelperExecutionContext.Output.IsContentModified) + { + await __tagHelperExecutionContext.SetOutputContentAsync(); + } + Write(__tagHelperExecutionContext.Output); + __tagHelperExecutionContext = __tagHelperScopeManager.End(); + EndContext(); + BeginContext(581, 536, true); + WriteLiteral(@" +
+
+
+
+ + + + + + + + + + + +"); + EndContext(); +#line 36 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" + foreach (Bug b in ViewBag.Bugs) + { + +#line default +#line hidden + BeginContext(1186, 54, true); + WriteLiteral(" \r\n \r\n \r\n \r\n \r\n \r\n \r\n"); + EndContext(); +#line 52 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" + } + +#line default +#line hidden + BeginContext(1990, 62, true); + WriteLiteral(" \r\n
#CriadorData de CadastroPrioridadeOpções
"); + EndContext(); + BeginContext(1241, 17, false); +#line 39 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" + Write(b.DesenvolvedorId); + +#line default +#line hidden + EndContext(); + BeginContext(1258, 1, true); + WriteLiteral("-"); + EndContext(); + BeginContext(1260, 13, false); +#line 39 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" + Write(b.RequisitoId); + +#line default +#line hidden + EndContext(); + BeginContext(1273, 35, true); + WriteLiteral(""); + EndContext(); + BeginContext(1309, 9, false); +#line 40 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" + Write(b.Criador); + +#line default +#line hidden + EndContext(); + BeginContext(1318, 35, true); + WriteLiteral(""); + EndContext(); + BeginContext(1354, 14, false); +#line 41 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" + Write(b.DataCadastro); + +#line default +#line hidden + EndContext(); + BeginContext(1368, 35, true); + WriteLiteral(""); + EndContext(); + BeginContext(1404, 12, false); +#line 42 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" + Write(b.Prioridade); + +#line default +#line hidden + EndContext(); + BeginContext(1416, 65, true); + WriteLiteral("\r\n "); + EndContext(); + BeginContext(1481, 200, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "e3f1888c36f6ea29ba67cb12fb6eb675cf7ecedc10400", async() => { + BeginContext(1586, 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_0.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0); + __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_1.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1); + __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_3.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_3); + if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null) + { + throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues")); + } + BeginWriteTagHelperAttribute(); +#line 44 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" + WriteLiteral(b.DesenvolvedorId); + +#line default +#line hidden + WriteLiteral(", "); +#line 44 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" + WriteLiteral(b.RequisitoId); + +#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(1681, 30, true); + WriteLiteral("\r\n "); + EndContext(); + BeginContext(1711, 200, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "e3f1888c36f6ea29ba67cb12fb6eb675cf7ecedc13620", async() => { + BeginContext(1815, 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_0.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0); + __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_1.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1); + __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_4.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_4); + if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null) + { + throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues")); + } + BeginWriteTagHelperAttribute(); +#line 47 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" + WriteLiteral(b.DesenvolvedorId); + +#line default +#line hidden + WriteLiteral(", "); +#line 47 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" + WriteLiteral(b.RequisitoId); + +#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(1911, 60, true); + WriteLiteral("\r\n
\r\n
\r\n
"); + EndContext(); + } + #pragma warning restore 1998 + [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] + public global::Microsoft.AspNetCore.Mvc.ViewFeatures.IModelExpressionProvider ModelExpressionProvider { get; private set; } + [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] + public global::Microsoft.AspNetCore.Mvc.IUrlHelper Url { get; private set; } + [global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute] + public global::Microsoft.AspNetCore.Mvc.IViewComponentHelper Component { get; private set; } + [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; } + } +} +#pragma warning restore 1591 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 58941b1..e5d52e2 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}" "debe893e3b231c494c22ff3c4b7fc3a213bac2a2" +#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "f98e248c28a287bdb7ce8373fdc5e2544889b374" // #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,7 +23,7 @@ using GerenciaProjetos.Models; #line default #line hidden - [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"debe893e3b231c494c22ff3c4b7fc3a213bac2a2", @"/Views/Home/Index.cshtml")] + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"f98e248c28a287bdb7ce8373fdc5e2544889b374", @"/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 { @@ -36,9 +36,7 @@ using GerenciaProjetos.Models; 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", "Home", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); - private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_10 = 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_11 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-route-id", "u.Id", 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); #line hidden #pragma warning disable 0169 private string __tagHelperStringValueBuffer; @@ -81,7 +79,7 @@ Write(ViewData["Title"]); WriteLiteral("\r\n\r\n
\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, "debe893e3b231c494c22ff3c4b7fc3a213bac2a27595", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b3746997", async() => { BeginContext(345, 15, true); WriteLiteral("Desenvolvedores"); EndContext(); @@ -108,7 +106,7 @@ Write(ViewData["Title"]); 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, "debe893e3b231c494c22ff3c4b7fc3a213bac2a29607", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b3749009", async() => { BeginContext(562, 90, true); WriteLiteral("\r\n \r\n "); EndContext(); @@ -216,7 +214,7 @@ Write(ViewData["Title"]); WriteLiteral(" \r\n \r\n "); EndContext(); BeginContext(1843, 182, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a214623", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37414025", async() => { BeginContext(1930, 91, true); WriteLiteral("\r\n \r\n "); EndContext(); @@ -255,7 +253,7 @@ Write(ViewData["Title"]); WriteLiteral("\r\n "); EndContext(); BeginContext(2055, 182, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a217542", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37416944", async() => { BeginContext(2141, 92, true); WriteLiteral("\r\n \r\n "); EndContext(); @@ -302,7 +300,7 @@ Write(ViewData["Title"]); WriteLiteral(" \r\n \r\n
\r\n
\r\n\r\n
\r\n
\r\n
\r\n
\r\n
\r\n "); EndContext(); BeginContext(2553, 101, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a221014", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37420416", async() => { BeginContext(2642, 8, true); WriteLiteral("Projetos"); EndContext(); @@ -329,7 +327,7 @@ Write(ViewData["Title"]); WriteLiteral("\r\n
\r\n
\r\n
\r\n "); EndContext(); BeginContext(2787, 152, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a223022", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37422424", async() => { BeginContext(2845, 90, true); WriteLiteral("\r\n \r\n "); EndContext(); @@ -420,7 +418,7 @@ Write(ViewData["Title"]); WriteLiteral("\r\n \r\n "); EndContext(); BeginContext(3813, 175, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a227362", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37426764", async() => { BeginContext(3893, 91, true); WriteLiteral("\r\n \r\n "); EndContext(); @@ -459,7 +457,7 @@ Write(ViewData["Title"]); WriteLiteral("\r\n "); EndContext(); BeginContext(4018, 175, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a230275", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37429677", async() => { BeginContext(4097, 92, true); WriteLiteral("\r\n \r\n "); EndContext(); @@ -506,7 +504,7 @@ Write(ViewData["Title"]); WriteLiteral(" \r\n \r\n
\r\n
\r\n\r\n
\r\n
\r\n
\r\n
\r\n
\r\n "); EndContext(); BeginContext(4509, 105, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a233742", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37433144", async() => { BeginContext(4600, 10, true); WriteLiteral("Requisitos"); EndContext(); @@ -533,7 +531,7 @@ Write(ViewData["Title"]); WriteLiteral("\r\n
\r\n
\r\n
\r\n "); EndContext(); BeginContext(4747, 154, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a235753", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37435155", async() => { BeginContext(4807, 90, true); WriteLiteral("\r\n \r\n "); EndContext(); @@ -635,7 +633,7 @@ Write(ViewData["Title"]); WriteLiteral("\r\n \r\n "); EndContext(); BeginContext(5898, 177, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a240562", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37439964", async() => { BeginContext(5980, 91, true); WriteLiteral("\r\n \r\n "); EndContext(); @@ -674,7 +672,7 @@ Write(ViewData["Title"]); WriteLiteral("\r\n "); EndContext(); BeginContext(6105, 177, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a243477", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37442879", async() => { BeginContext(6186, 92, true); WriteLiteral("\r\n \r\n "); EndContext(); @@ -717,32 +715,19 @@ Write(ViewData["Title"]); #line default #line hidden - BeginContext(6361, 374, true); - WriteLiteral(@" - -
-
- -
-
-
-
-
- Bugs -
-
-
- "); + BeginContext(6361, 237, true); + WriteLiteral(" \r\n \r\n
\r\n
\r\n\r\n
\r\n
\r\n
\r\n
\r\n
\r\n "); EndContext(); - BeginContext(6735, 150, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a247068", async() => { - BeginContext(6791, 90, true); - WriteLiteral("\r\n \r\n "); + BeginContext(6598, 93, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37446347", async() => { + BeginContext(6683, 4, true); + WriteLiteral("Bugs"); 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; @@ -757,7 +742,33 @@ Write(ViewData["Title"]); Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(6885, 846, true); + BeginContext(6691, 133, true); + WriteLiteral("\r\n
\r\n
\r\n
\r\n "); + EndContext(); + BeginContext(6824, 148, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37448351", async() => { + BeginContext(6878, 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_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(6972, 536, true); WriteLiteral(@"
@@ -767,27 +778,78 @@ Write(ViewData["Title"]); # - Prioridade + Criador Data de Cadastro - Data de Entrega - Resolvido + Prioridade Opções - - 1 - Guilherme - Abril - Kewin - Não - - "); +"); EndContext(); - BeginContext(7731, 158, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a249800", async() => { - BeginContext(7802, 83, true); - WriteLiteral("\r\n \r\n "); +#line 192 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + foreach (Bug b in ViewBag.Bugs) + { + +#line default +#line hidden + BeginContext(7577, 54, true); + WriteLiteral(" \r\n "); + EndContext(); + BeginContext(7632, 17, false); +#line 195 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + Write(b.DesenvolvedorId); + +#line default +#line hidden + EndContext(); + BeginContext(7649, 1, true); + WriteLiteral("-"); + EndContext(); + BeginContext(7651, 13, false); +#line 195 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + Write(b.RequisitoId); + +#line default +#line hidden + EndContext(); + BeginContext(7664, 35, true); + WriteLiteral("\r\n "); + EndContext(); + BeginContext(7700, 9, false); +#line 196 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + Write(b.Criador); + +#line default +#line hidden + EndContext(); + BeginContext(7709, 35, true); + WriteLiteral("\r\n "); + EndContext(); + BeginContext(7745, 14, false); +#line 197 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + Write(b.DataCadastro); + +#line default +#line hidden + EndContext(); + BeginContext(7759, 35, true); + WriteLiteral("\r\n "); + EndContext(); + BeginContext(7795, 12, false); +#line 198 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + Write(b.Prioridade); + +#line default +#line hidden + EndContext(); + BeginContext(7807, 65, true); + WriteLiteral("\r\n \r\n "); + EndContext(); + BeginContext(7872, 200, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37453077", async() => { + BeginContext(7977, 91, true); + WriteLiteral("\r\n \r\n "); EndContext(); } ); @@ -797,14 +859,27 @@ Write(ViewData["Title"]); __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_10.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_10); + __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")); } - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = (string)__tagHelperAttribute_11.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_11); + BeginWriteTagHelperAttribute(); +#line 200 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + WriteLiteral(b.DesenvolvedorId); + +#line default +#line hidden + WriteLiteral(", "); +#line 200 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + WriteLiteral(b.RequisitoId); + +#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) { @@ -813,13 +888,13 @@ Write(ViewData["Title"]); Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(7889, 26, true); - WriteLiteral("\r\n "); + BeginContext(8072, 30, true); + WriteLiteral("\r\n "); EndContext(); - BeginContext(7915, 159, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "debe893e3b231c494c22ff3c4b7fc3a213bac2a252203", async() => { - BeginContext(7986, 84, true); - WriteLiteral("\r\n \r\n "); + BeginContext(8102, 200, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37456299", async() => { + BeginContext(8206, 92, true); + WriteLiteral("\r\n \r\n "); EndContext(); } ); @@ -829,14 +904,27 @@ Write(ViewData["Title"]); __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_10.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_10); + __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")); } - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = (string)__tagHelperAttribute_11.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_11); + BeginWriteTagHelperAttribute(); +#line 203 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + WriteLiteral(b.DesenvolvedorId); + +#line default +#line hidden + WriteLiteral(", "); +#line 203 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + WriteLiteral(b.RequisitoId); + +#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) { @@ -845,8 +933,16 @@ Write(ViewData["Title"]); Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(8074, 114, true); - WriteLiteral("\r\n \r\n \r\n \r\n \r\n
\r\n
"); + BeginContext(8302, 60, true); + WriteLiteral("\r\n \r\n \r\n"); + EndContext(); +#line 208 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + } + +#line default +#line hidden + BeginContext(8381, 62, true); + WriteLiteral(" \r\n \r\n
\r\n"); EndContext(); } #pragma warning restore 1998