diff --git a/.vs/GerenciaProjetos/DesignTimeBuild/.dtbcache b/.vs/GerenciaProjetos/DesignTimeBuild/.dtbcache index 4556296..8e2fabe 100644 Binary files a/.vs/GerenciaProjetos/DesignTimeBuild/.dtbcache and b/.vs/GerenciaProjetos/DesignTimeBuild/.dtbcache differ diff --git a/.vs/GerenciaProjetos/v15/.suo b/.vs/GerenciaProjetos/v15/.suo index e2404c2..7321922 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 30fe75d..3bdaecf 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 9bd795e..1601851 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 df4defe..a42aa5a 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/.vs/config/applicationhost.config b/.vs/config/applicationhost.config index 5b9941f..3441707 100644 --- a/.vs/config/applicationhost.config +++ b/.vs/config/applicationhost.config @@ -1,4 +1,4 @@ -<?xml version="1.0" encoding="UTF-8"?> +<?xml version="1.0" encoding="UTF-8"?> <!-- IIS configuration sections. @@ -157,7 +157,7 @@ </site> <site name="GerenciaProjetos" id="2"> <application path="/" applicationPool="GerenciaProjetos AppPool"> - <virtualDirectory path="/" physicalPath="C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos" /> + <virtualDirectory path="/" physicalPath="C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos" /> </application> <bindings> <binding protocol="http" bindingInformation="*:55456:localhost" /> diff --git a/GerenciaProjetos/Controllers/BugsController.cs b/GerenciaProjetos/Controllers/BugsController.cs index 555c61d..f3ba4ac 100644 --- a/GerenciaProjetos/Controllers/BugsController.cs +++ b/GerenciaProjetos/Controllers/BugsController.cs @@ -97,16 +97,12 @@ namespace GerenciaProjetos.Controllers { 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.FoiResolvido).IsModified = true; + ctx.Entry(bug).Property(r => r.Descricao).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"); diff --git a/GerenciaProjetos/Controllers/RequisitosController.cs b/GerenciaProjetos/Controllers/RequisitosController.cs index cf1b55e..cf9fbab 100644 --- a/GerenciaProjetos/Controllers/RequisitosController.cs +++ b/GerenciaProjetos/Controllers/RequisitosController.cs @@ -85,6 +85,8 @@ namespace GerenciaProjetos.Controllers { if (ModelState.IsValid) { + ctx.Entry(req).Property(r => r.EFuncional).IsModified = true; + ctx.Entry(req).Property(r => r.DataEntrega).IsModified = true; ctx.Entry(req).Property(r => r.Descricao).IsModified = true; ctx.Entry(req).Property(r => r.Observacoes).IsModified = true; ctx.Entry(req).Property(r => r.ProjetoId).IsModified = true; diff --git a/GerenciaProjetos/Migrations/20190922115947_2.cs b/GerenciaProjetos/Migrations/20190922115947_2.cs deleted file mode 100644 index cefcd42..0000000 --- a/GerenciaProjetos/Migrations/20190922115947_2.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System; -using Microsoft.EntityFrameworkCore.Migrations; - -namespace GerenciaProjetos.Migrations -{ - public partial class _2 : Migration - { - protected override void Up(MigrationBuilder migrationBuilder) - { - migrationBuilder.AddColumn<TimeSpan>( - 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/20190922115947_2.Designer.cs b/GerenciaProjetos/Migrations/20190924114622_1.Designer.cs similarity index 99% rename from GerenciaProjetos/Migrations/20190922115947_2.Designer.cs rename to GerenciaProjetos/Migrations/20190924114622_1.Designer.cs index e51d84f..6a2f29f 100644 --- a/GerenciaProjetos/Migrations/20190922115947_2.Designer.cs +++ b/GerenciaProjetos/Migrations/20190924114622_1.Designer.cs @@ -9,8 +9,8 @@ using Microsoft.EntityFrameworkCore.Storage.ValueConversion; namespace GerenciaProjetos.Migrations { [DbContext(typeof(GerenciaContext))] - [Migration("20190922115947_2")] - partial class _2 + [Migration("20190924114622_1")] + partial class _1 { protected override void BuildTargetModel(ModelBuilder modelBuilder) { diff --git a/GerenciaProjetos/Migrations/20190922115736_1.cs b/GerenciaProjetos/Migrations/20190924114622_1.cs similarity index 99% rename from GerenciaProjetos/Migrations/20190922115736_1.cs rename to GerenciaProjetos/Migrations/20190924114622_1.cs index 47c5d50..3472584 100644 --- a/GerenciaProjetos/Migrations/20190922115736_1.cs +++ b/GerenciaProjetos/Migrations/20190924114622_1.cs @@ -128,7 +128,8 @@ namespace GerenciaProjetos.Migrations columns: table => new { DesenvolvedorId = table.Column<int>(nullable: false), - RequisitoId = table.Column<int>(nullable: false) + RequisitoId = table.Column<int>(nullable: false), + TempoGasto = table.Column<TimeSpan>(nullable: false) }, constraints: table => { diff --git a/GerenciaProjetos/Migrations/20190922115736_1.Designer.cs b/GerenciaProjetos/Migrations/20190924123135_2.Designer.cs similarity index 93% rename from GerenciaProjetos/Migrations/20190922115736_1.Designer.cs rename to GerenciaProjetos/Migrations/20190924123135_2.Designer.cs index 9066e62..6c768be 100644 --- a/GerenciaProjetos/Migrations/20190922115736_1.Designer.cs +++ b/GerenciaProjetos/Migrations/20190924123135_2.Designer.cs @@ -9,8 +9,8 @@ using Microsoft.EntityFrameworkCore.Storage.ValueConversion; namespace GerenciaProjetos.Migrations { [DbContext(typeof(GerenciaContext))] - [Migration("20190922115736_1")] - partial class _1 + [Migration("20190924123135_2")] + partial class _2 { protected override void BuildTargetModel(ModelBuilder modelBuilder) { @@ -24,22 +24,23 @@ namespace GerenciaProjetos.Migrations b.Property<int>("Id") .ValueGeneratedOnAdd(); - b.Property<int>("CriadorId"); - b.Property<DateTime>("DataCadastro"); + b.Property<string>("Descricao") + .IsRequired() + .HasMaxLength(100); + b.Property<int>("DesenvolvedorId"); b.Property<bool>("FoiResolvido"); - b.Property<string>("Prioridade"); + b.Property<string>("Prioridade") + .HasMaxLength(25); b.Property<int>("RequisitoId"); b.HasKey("Id"); - b.HasIndex("CriadorId"); - b.HasIndex("DesenvolvedorId"); b.HasIndex("RequisitoId"); @@ -90,6 +91,8 @@ namespace GerenciaProjetos.Migrations b.Property<int>("RequisitoId"); + b.Property<TimeSpan>("TempoGasto"); + b.HasKey("DesenvolvedorId", "RequisitoId"); b.HasIndex("RequisitoId"); @@ -146,11 +149,6 @@ 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/20190924123135_2.cs b/GerenciaProjetos/Migrations/20190924123135_2.cs new file mode 100644 index 0000000..3951d26 --- /dev/null +++ b/GerenciaProjetos/Migrations/20190924123135_2.cs @@ -0,0 +1,71 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +namespace GerenciaProjetos.Migrations +{ + public partial class _2 : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropForeignKey( + name: "FK_Bugs_Desenvolvedores_CriadorId", + table: "Bugs"); + + migrationBuilder.DropIndex( + name: "IX_Bugs_CriadorId", + table: "Bugs"); + + migrationBuilder.DropColumn( + name: "CriadorId", + table: "Bugs"); + + migrationBuilder.AlterColumn<string>( + name: "Prioridade", + table: "Bugs", + maxLength: 25, + nullable: true, + oldClrType: typeof(string), + oldNullable: true); + + migrationBuilder.AddColumn<string>( + name: "Descricao", + table: "Bugs", + maxLength: 100, + nullable: false, + defaultValue: ""); + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropColumn( + name: "Descricao", + table: "Bugs"); + + migrationBuilder.AlterColumn<string>( + name: "Prioridade", + table: "Bugs", + nullable: true, + oldClrType: typeof(string), + oldMaxLength: 25, + oldNullable: true); + + migrationBuilder.AddColumn<int>( + name: "CriadorId", + table: "Bugs", + nullable: false, + defaultValue: 0); + + 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); + } + } +} diff --git a/GerenciaProjetos/Migrations/GerenciaContextModelSnapshot.cs b/GerenciaProjetos/Migrations/GerenciaContextModelSnapshot.cs index 70467fe..4524f18 100644 --- a/GerenciaProjetos/Migrations/GerenciaContextModelSnapshot.cs +++ b/GerenciaProjetos/Migrations/GerenciaContextModelSnapshot.cs @@ -22,22 +22,23 @@ namespace GerenciaProjetos.Migrations b.Property<int>("Id") .ValueGeneratedOnAdd(); - b.Property<int>("CriadorId"); - b.Property<DateTime>("DataCadastro"); + b.Property<string>("Descricao") + .IsRequired() + .HasMaxLength(100); + b.Property<int>("DesenvolvedorId"); b.Property<bool>("FoiResolvido"); - b.Property<string>("Prioridade"); + b.Property<string>("Prioridade") + .HasMaxLength(25); b.Property<int>("RequisitoId"); b.HasKey("Id"); - b.HasIndex("CriadorId"); - b.HasIndex("DesenvolvedorId"); b.HasIndex("RequisitoId"); @@ -146,11 +147,6 @@ 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/Models/Bug.cs b/GerenciaProjetos/Models/Bug.cs index 7780883..8a48602 100644 --- a/GerenciaProjetos/Models/Bug.cs +++ b/GerenciaProjetos/Models/Bug.cs @@ -14,16 +14,19 @@ namespace GerenciaProjetos.Models public int DesenvolvedorId { get; set; } public Desenvolvedor Desenvolvedor { get; set; } - + public int RequisitoId { get; set; } public Requisito Requisito { get; set; } - + + [MaxLength(100)] + [Required(ErrorMessage = "Este campo é obrigatório.")] + public string Descricao { get; set; } + + [MaxLength(25)] public string Prioridade { get; set; } + [DataType(DataType.Date)] public DateTime DataCadastro { get; set; } - - public int CriadorId { get; set; } - public Desenvolvedor Criador { get; set; } public bool FoiResolvido { get; set; } } diff --git a/GerenciaProjetos/Startup.cs b/GerenciaProjetos/Startup.cs index 2d6d6cd..c758c22 100644 --- a/GerenciaProjetos/Startup.cs +++ b/GerenciaProjetos/Startup.cs @@ -33,8 +33,10 @@ namespace GerenciaProjetos }); services.AddRouting(options => options.LowercaseUrls = true); + + //services.AddDbContext<GerenciaContext>(options => options.UseMySql(Configuration.GetConnectionString("DefaultConnection"))); - services.AddDbContext<GerenciaContext>(options => options.UseMySql(Configuration.GetConnectionString("DefaultConnection"))); + services.AddDbContext<GerenciaContext>(options => options.UseMySql(Configuration.GetConnectionString("LaboratConnection"))); services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_2_2); } diff --git a/GerenciaProjetos/Views/Bugs/Form.cshtml b/GerenciaProjetos/Views/Bugs/Form.cshtml index 7aa2b95..6a5a64f 100644 --- a/GerenciaProjetos/Views/Bugs/Form.cshtml +++ b/GerenciaProjetos/Views/Bugs/Form.cshtml @@ -24,10 +24,14 @@ </select> </div> <div class="form-group"> - <label>Criador</label> - <select asp-for="CriadorId" class="form-control" asp-items="ViewBag.Desenvolvedores"> - <option></option> - </select> + <div class="custom-control custom-checkbox"> + <input type="checkbox" class="custom-control-input" id="admin" asp-for="FoiResolvido"> + <label class="custom-control-label" for="admin">Foi Resolvido?</label> + </div> + </div> + <div class="form-group"> + <label>Descrição</label> + <textarea class="form-control" rows="5" asp-for="Descricao"></textarea> </div> <div class="form-group"> <label>Prioridade</label> diff --git a/GerenciaProjetos/Views/Bugs/Index.cshtml b/GerenciaProjetos/Views/Bugs/Index.cshtml index b3ad606..003afac 100644 --- a/GerenciaProjetos/Views/Bugs/Index.cshtml +++ b/GerenciaProjetos/Views/Bugs/Index.cshtml @@ -26,7 +26,8 @@ <thead class="border-bottom"> <tr> <th scope="col">#</th> - <th scope="col">Criador</th> + <th scope="col">Descrição</th> + <th scope="col">Foi Resolvido</th> <th scope="col">Data de Cadastro</th> <th scope="col">Prioridade</th> <th scope="col">Opções</th> @@ -37,8 +38,9 @@ { <tr> <td>@b.Id</td> - <td>@b.CriadorId</td> - <td>@b.DataCadastro</td> + <td>@b.Descricao</td> + <td>@b.FoiResolvido</td> + <td>@b.DataCadastro.ToString("dd/MM/yyyy")</td> <td>@b.Prioridade</td> <td> <a asp-area="" asp-controller="Bugs" asp-action="Edit" asp-route-id="@b.Id"> diff --git a/GerenciaProjetos/Views/Desenvolvedores/Form.cshtml b/GerenciaProjetos/Views/Desenvolvedores/Form.cshtml index 87dcb67..edaef92 100644 --- a/GerenciaProjetos/Views/Desenvolvedores/Form.cshtml +++ b/GerenciaProjetos/Views/Desenvolvedores/Form.cshtml @@ -19,6 +19,12 @@ <label>Email</label> <input type="email" class="form-control" asp-for="Email"> </div> + <div class="form-group"> + <div class="custom-control custom-checkbox"> + <input type="checkbox" class="custom-control-input" id="admin" asp-for="EAdmin"> + <label class="custom-control-label" for="admin">É Administrador?</label> + </div> + </div> <div class="form-group"> <label>Senha</label> <input type="password" class="form-control" asp-for="Senha"> diff --git a/GerenciaProjetos/Views/Desenvolvedores/Index.cshtml b/GerenciaProjetos/Views/Desenvolvedores/Index.cshtml index 05762c9..da3a820 100644 --- a/GerenciaProjetos/Views/Desenvolvedores/Index.cshtml +++ b/GerenciaProjetos/Views/Desenvolvedores/Index.cshtml @@ -28,7 +28,7 @@ <th scope="col">#</th> <th scope="col">Nome</th> <th scope="col">Email</th> - <th scope="col">Admin</th> + <th scope="col">É Admin</th> <th scope="col">Opções</th> </tr> </thead> @@ -39,16 +39,7 @@ <td>@d.Id</td> <td>@d.Nome</td> <td>@d.Email</td> - <td> - @if (d.EAdmin == true) - { - <span>Sim</span> - } - else - { - <span>Não</span> - } - </td> + <td>@d.EAdmin</td> <td> <a asp-area="" asp-controller="Desenvolvedores" asp-action="Edit" asp-route-id="@d.Id"> <i class="fas fa-edit"></i> diff --git a/GerenciaProjetos/Views/Home/Index.cshtml b/GerenciaProjetos/Views/Home/Index.cshtml index 8185333..7d557ac 100644 --- a/GerenciaProjetos/Views/Home/Index.cshtml +++ b/GerenciaProjetos/Views/Home/Index.cshtml @@ -26,7 +26,7 @@ <th scope="col">#</th> <th scope="col">Nome</th> <th scope="col">Email</th> - <th scope="col">Admin</th> + <th scope="col">É Admin</th> <th scope="col">Opções</th> </tr> </thead> @@ -37,16 +37,7 @@ <td>@d.Id</td> <td>@d.Nome</td> <td>@d.Email</td> - <td> - @if (d.EAdmin == true) - { - <span>Sim</span> - } - else - { - <span>Não</span> - } - </td> + <td>@d.EAdmin</td> <td> <a asp-area="" asp-controller="Desenvolvedores" asp-action="Edit" asp-route-id="@d.Id"> <i class="fas fa-edit"></i> @@ -133,6 +124,7 @@ <th scope="col">#</th> <th scope="col">Descrição</th> <th scope="col">Observações</th> + <th scope="col">É Funcional</th> <th scope="col">Data de Cadastro</th> <th scope="col">Data de Entrega</th> <th scope="col">Opções</th> @@ -145,6 +137,7 @@ <td>@r.Id</td> <td>@r.Descricao</td> <td>@r.Observacoes</td> + <td>@r.EFuncional</td> <td>@r.DataCadastro</td> <td>@r.DataEntrega</td> <td> @@ -182,7 +175,8 @@ <thead class="border-bottom"> <tr> <th scope="col">#</th> - <th scope="col">Criador</th> + <th scope="col">Descrição</th> + <th scope="col">Foi Resolvido</th> <th scope="col">Data de Cadastro</th> <th scope="col">Prioridade</th> <th scope="col">Opções</th> @@ -193,7 +187,8 @@ { <tr> <td>@b.Id</td> - <td>@b.CriadorId</td> + <td>@b.Descricao</td> + <td>@b.FoiResolvido</td> <td>@b.DataCadastro</td> <td>@b.Prioridade</td> <td> diff --git a/GerenciaProjetos/Views/Projetos/Index.cshtml b/GerenciaProjetos/Views/Projetos/Index.cshtml index 3150971..7d52d7f 100644 --- a/GerenciaProjetos/Views/Projetos/Index.cshtml +++ b/GerenciaProjetos/Views/Projetos/Index.cshtml @@ -38,7 +38,7 @@ <tr> <td>@p.Id</td> <td>@p.Nome</td> - <td>@p.DataEntrega</td> + <td>@p.DataEntrega.ToString("dd/MM/yyyy")</td> <td>@p.Solicitante</td> <td> <a asp-area="" asp-controller="Projetos" asp-action="Edit" asp-route-id="@p.Id"> diff --git a/GerenciaProjetos/Views/Requisitos/Form.cshtml b/GerenciaProjetos/Views/Requisitos/Form.cshtml index 0b5e604..26ab8cc 100644 --- a/GerenciaProjetos/Views/Requisitos/Form.cshtml +++ b/GerenciaProjetos/Views/Requisitos/Form.cshtml @@ -11,6 +11,18 @@ <div class="card"> <div class="card-body"> <form method="post"> + <div class="form-group"> + <label>Projeto</label> + <select asp-for="ProjetoId" class="form-control" asp-items="ViewBag.Projetos"> + <option></option> + </select> + </div> + <div class="form-group"> + <div class="custom-control custom-checkbox"> + <input type="checkbox" class="custom-control-input" id="admin" asp-for="EFuncional"> + <label class="custom-control-label" for="admin">É Fucional?</label> + </div> + </div> <div class="form-group"> <label>Descrição</label> <textarea class="form-control" rows="5" asp-for="Descricao"></textarea> @@ -19,12 +31,6 @@ <label>Observações</label> <textarea class="form-control" rows="5" asp-for="Observacoes"></textarea> </div> - <div class="form-group"> - <label>Projeto</label> - <select asp-for="ProjetoId" class="form-control" asp-items="ViewBag.Projetos"> - <option></option> - </select> - </div> <div class="form-group"> <label>Data de Entrega</label> <input type="date" class="form-control" asp-for="DataEntrega"> diff --git a/GerenciaProjetos/Views/Requisitos/Index.cshtml b/GerenciaProjetos/Views/Requisitos/Index.cshtml index 694096a..b5de699 100644 --- a/GerenciaProjetos/Views/Requisitos/Index.cshtml +++ b/GerenciaProjetos/Views/Requisitos/Index.cshtml @@ -28,6 +28,7 @@ <th scope="col">#</th> <th scope="col">Descrição</th> <th scope="col">Observações</th> + <th scope="col">É Funcional</th> <th scope="col">Data de Cadastro</th> <th scope="col">Data de Entrega</th> <th scope="col">Opções</th> @@ -40,8 +41,9 @@ <td>@r.Id</td> <td>@r.Descricao</td> <td>@r.Observacoes</td> - <td>@r.DataCadastro</td> - <td>@r.DataEntrega</td> + <td>@r.EFuncional</td> + <td>@r.DataCadastro.ToString("dd/MM/yyyy")</td> + <td>@r.DataEntrega.ToString("dd/MM/yyyy")</td> <td> <a asp-area="" asp-controller="Requisitos" asp-action="Edit" asp-route-id="@r.Id"> <i class="fas fa-edit"></i> diff --git a/GerenciaProjetos/Views/Shared/_Layout.cshtml b/GerenciaProjetos/Views/Shared/_Layout.cshtml index cbef422..c176b54 100644 --- a/GerenciaProjetos/Views/Shared/_Layout.cshtml +++ b/GerenciaProjetos/Views/Shared/_Layout.cshtml @@ -3,7 +3,7 @@ <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <title>@ViewData["Title"] - GerenciaProjetos</title> + <title>@ViewData["Title"] - TribuFu</title> <environment include="Development"> <link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.css" /> diff --git a/GerenciaProjetos/appsettings.json b/GerenciaProjetos/appsettings.json index 1040f69..aa05a9f 100644 --- a/GerenciaProjetos/appsettings.json +++ b/GerenciaProjetos/appsettings.json @@ -1,6 +1,7 @@ { "ConnectionStrings": { - "DefaultConnection": "Server=localhost; Uid=Visual; Pwd=44$LrDL-ptHoF56[; Database=Gerencia; convert zero datetime = True" + "DefaultConnection": "Server=localhost; Uid=Visual; Pwd=44$LrDL-ptHoF56[; Database=Gerencia; convert zero datetime = True", + "LaboratConnection": "Server=localhost; Uid=root; Pwd=ifmgbd; Database=Gerencia; convert zero datetime = True" }, "Logging": { "LogLevel": { diff --git a/GerenciaProjetos/bin/Debug/netcoreapp2.2/GerenciaProjetos.Views.dll b/GerenciaProjetos/bin/Debug/netcoreapp2.2/GerenciaProjetos.Views.dll index 200b990..5e97d1e 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 ee056e2..79d5b0d 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.deps.json b/GerenciaProjetos/bin/Debug/netcoreapp2.2/GerenciaProjetos.deps.json index 5a758ae..b399a06 100644 --- a/GerenciaProjetos/bin/Debug/netcoreapp2.2/GerenciaProjetos.deps.json +++ b/GerenciaProjetos/bin/Debug/netcoreapp2.2/GerenciaProjetos.deps.json @@ -5013,7 +5013,7 @@ "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { "type": "package", "serviceable": true, - "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "sha512": "sha512-LdIvj7Bi2jiaNTqY/ezZGVXHe1KI5fjLSI026O1TjVzsmdgTP/zTF+f3nwHCjwttyhsPBEiswv0PekimPWZwWg==", "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" }, @@ -5034,7 +5034,7 @@ "runtime.native.System.IO.Compression/4.3.0": { "type": "package", "serviceable": true, - "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "sha512": "sha512-b+V9JC/Ii3sR659flBeaBJww111425tgjcDS1k+hqV4sGh9FALRDBvJnDtQ895gAzpPTUOFDHdqaZ2Et7BpZMg==", "path": "runtime.native.system.io.compression/4.3.0", "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" }, @@ -5076,7 +5076,7 @@ "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { "type": "package", "serviceable": true, - "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "sha512": "sha512-Kh9W4agE0r/hK8AX1LvyQI2NrKHBL8pO0gRoDTdDb0LL6Ta1Z2OtFx3lOaAE0ZpCUc/dt9Wzs3rA7a3IsKdOVA==", "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" }, @@ -5097,7 +5097,7 @@ "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { "type": "package", "serviceable": true, - "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "sha512": "sha512-JGc0pAWRE8lB4Ucygk2pYSKbUPLlAIq6Bczf5/WF2D/VKJEPtYlVUMxk8fbl1zRfTWzSHi+VcFZlaPlWiNxeKg==", "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" }, @@ -5174,7 +5174,7 @@ "System.Collections.Specialized/4.3.0": { "type": "package", "serviceable": true, - "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "sha512": "sha512-NoPBj0ykejqAWW4p4gGtrrL+3c84ZLSvGnHgq422ew1Rj4WKj1FA8/BCybqC111EtgcqUl6ZJNFYYS22HLgbjA==", "path": "system.collections.specialized/4.3.0", "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" }, @@ -5496,7 +5496,7 @@ "System.Runtime.Serialization.Primitives/4.3.0": { "type": "package", "serviceable": true, - "sha512": "sha512-Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==", + "sha512": "sha512-2Z5t70a2SwMsfQDp9KOclaZNyQhfIga2gppq9lIUDM1A4ohTshn4JqT7ir8bvIhXgorWKYDAr6rPzEbi/nTGKg==", "path": "system.runtime.serialization.primitives/4.3.0", "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512" }, @@ -5538,7 +5538,7 @@ "System.Security.Cryptography.Csp/4.3.0": { "type": "package", "serviceable": true, - "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "sha512": "sha512-yO2k5o+Z+DiFRBvvB9vdRRAGHi6bm02M9OWXfCqQ8K0UxD3Woc3svQheZfb7PoTEFs0kGacO0IzzMWsb6Mkeow==", "path": "system.security.cryptography.csp/4.3.0", "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" }, @@ -5552,7 +5552,7 @@ "System.Security.Cryptography.OpenSsl/4.3.0": { "type": "package", "serviceable": true, - "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "sha512": "sha512-vOYy7Jv9KsG3ld2hLt0GoERd82SZi4BelrbXLwI9yFBYX7kpbvUCWYo4eyevk47cuJXZ9ZLVAryANcc7iY71aA==", "path": "system.security.cryptography.openssl/4.3.0", "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" }, diff --git a/GerenciaProjetos/bin/Debug/netcoreapp2.2/GerenciaProjetos.dll b/GerenciaProjetos/bin/Debug/netcoreapp2.2/GerenciaProjetos.dll index 9d602cc..890979e 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 93d9ac6..171d793 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/bin/Debug/netcoreapp2.2/GerenciaProjetos.runtimeconfig.dev.json b/GerenciaProjetos/bin/Debug/netcoreapp2.2/GerenciaProjetos.runtimeconfig.dev.json index 02ed789..b5b509d 100644 --- a/GerenciaProjetos/bin/Debug/netcoreapp2.2/GerenciaProjetos.runtimeconfig.dev.json +++ b/GerenciaProjetos/bin/Debug/netcoreapp2.2/GerenciaProjetos.runtimeconfig.dev.json @@ -1,8 +1,8 @@ { "runtimeOptions": { "additionalProbingPaths": [ - "C:\\Users\\GuiNerd\\.dotnet\\store\\|arch|\\|tfm|", - "C:\\Users\\GuiNerd\\.nuget\\packages", + "C:\\Users\\0033899\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\0033899\\.nuget\\packages", "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" ] } diff --git a/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.Views.dll b/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.Views.dll index 200b990..5e97d1e 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 ee056e2..79d5b0d 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.assets.cache b/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.assets.cache index f7b997a..673bfb7 100644 Binary files a/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.assets.cache and b/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.assets.cache differ diff --git a/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.csproj.CoreCompileInputs.cache b/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.csproj.CoreCompileInputs.cache index 59d6986..49593ff 100644 --- a/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.csproj.CoreCompileInputs.cache +++ b/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -0d0d065687e8ce64097948569b24ca13c4839e14 +dd4fc497d120ed5df3058369cb1d8e5cb0bf8deb diff --git a/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.csproj.FileListAbsolute.txt b/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.csproj.FileListAbsolute.txt index 433bdf7..bcf19af 100644 --- a/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.csproj.FileListAbsolute.txt +++ b/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.csproj.FileListAbsolute.txt @@ -36,3 +36,41 @@ C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcor 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 +C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\bin\Debug\netcoreapp2.2\GerenciaProjetos.deps.json +C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\bin\Debug\netcoreapp2.2\GerenciaProjetos.runtimeconfig.json +C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\bin\Debug\netcoreapp2.2\GerenciaProjetos.runtimeconfig.dev.json +C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\bin\Debug\netcoreapp2.2\GerenciaProjetos.dll +C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\bin\Debug\netcoreapp2.2\GerenciaProjetos.pdb +C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\bin\Debug\netcoreapp2.2\GerenciaProjetos.Views.dll +C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\bin\Debug\netcoreapp2.2\GerenciaProjetos.Views.pdb +C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\GerenciaProjetos.csprojAssemblyReference.cache +C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\GerenciaProjetos.csproj.CoreCompileInputs.cache +C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\GerenciaProjetos.RazorAssemblyInfo.cache +C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\GerenciaProjetos.RazorAssemblyInfo.cs +C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\GerenciaProjetos.AssemblyInfoInputs.cache +C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\GerenciaProjetos.AssemblyInfo.cs +C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\GerenciaProjetos.TagHelpers.input.cache +C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\GerenciaProjetos.TagHelpers.output.cache +C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\GerenciaProjetos.RazorCoreGenerate.cache +C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Bugs\Form.g.cshtml.cs +C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Bugs\Index.g.cshtml.cs +C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Desenvolvedores\Form.g.cshtml.cs +C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Desenvolvedores\Index.g.cshtml.cs +C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Home\Index.g.cshtml.cs +C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Home\Privacy.g.cshtml.cs +C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Projetos\Form.g.cshtml.cs +C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Projetos\Index.g.cshtml.cs +C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Requisitos\Form.g.cshtml.cs +C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Requisitos\Index.g.cshtml.cs +C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Shared\Error.g.cshtml.cs +C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Shared\_CookieConsentPartial.g.cshtml.cs +C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Shared\_Layout.g.cshtml.cs +C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Shared\_ValidationScriptsPartial.g.cshtml.cs +C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\_ViewImports.g.cshtml.cs +C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\_ViewStart.g.cshtml.cs +C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\GerenciaProjetos.RazorTargetAssemblyInfo.cache +C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\GerenciaProjetos.RazorTargetAssemblyInfo.cs +C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\GerenciaProjetos.Views.pdb +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 diff --git a/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.csprojAssemblyReference.cache b/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.csprojAssemblyReference.cache index 70642a8..33ebf7d 100644 Binary files a/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.csprojAssemblyReference.cache and b/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.csprojAssemblyReference.cache differ diff --git a/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.dll b/GerenciaProjetos/obj/Debug/netcoreapp2.2/GerenciaProjetos.dll index 9d602cc..890979e 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 93d9ac6..171d793 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 d21f061..2491986 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}" "3d53fe7d1a83e0834d25f430afe65fcab2e3dcea" +#pragma checksum "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "6ba75510b52d1237801a16dc7ede78708cc53c20" // <auto-generated/> #pragma warning disable 1591 [assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Bugs_Form), @"mvc.1.0.view", @"/Views/Bugs/Form.cshtml")] @@ -13,27 +13,31 @@ namespace AspNetCore 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" +#line 1 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" using GerenciaProjetos; #line default #line hidden -#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" +#line 2 "C:\Users\0033899\Documents\GitHub\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", @"6ba75510b52d1237801a16dc7ede78708cc53c20", @"/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<GerenciaProjetos.Models.Bug> { 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); + private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_1 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("type", "checkbox", 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("class", new global::Microsoft.AspNetCore.Html.HtmlString("custom-control-input"), 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("id", new global::Microsoft.AspNetCore.Html.HtmlString("admin"), 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("rows", new global::Microsoft.AspNetCore.Html.HtmlString("5"), 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("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_6 = 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_7 = 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_8 = 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_9 = 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_10 = 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; @@ -56,6 +60,8 @@ using GerenciaProjetos.Models; 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.InputTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper; + private global::Microsoft.AspNetCore.Mvc.TagHelpers.TextAreaTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper; 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() @@ -63,7 +69,7 @@ using GerenciaProjetos.Models; BeginContext(0, 2, true); WriteLiteral("\r\n"); EndContext(); -#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml" +#line 2 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml" Layout = "~/Views/Shared/_Layout.cshtml"; @@ -76,7 +82,7 @@ using GerenciaProjetos.Models; WriteLiteral("\r\n<h3>"); EndContext(); BeginContext(101, 17, false); -#line 8 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml" +#line 8 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml" Write(ViewData["Title"]); #line default @@ -85,18 +91,18 @@ Write(ViewData["Title"]); BeginContext(118, 102, true); WriteLiteral("</h3>\r\n\r\n<section class=\"py-3\">\r\n <div class=\"card\">\r\n <div class=\"card-body\">\r\n "); EndContext(); - BeginContext(220, 1569, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3d53fe7d1a83e0834d25f430afe65fcab2e3dcea6799", async() => { + BeginContext(220, 1851, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6ba75510b52d1237801a16dc7ede78708cc53c208425", async() => { BeginContext(240, 114, true); WriteLiteral("\r\n <div class=\"form-group\">\r\n <label>Desenvolvedor</label>\r\n "); EndContext(); BeginContext(354, 165, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("select", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3d53fe7d1a83e0834d25f430afe65fcab2e3dcea7301", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("select", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6ba75510b52d1237801a16dc7ede78708cc53c208927", 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() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6ba75510b52d1237801a16dc7ede78708cc53c209355", async() => { } ); __Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper>(); @@ -116,14 +122,14 @@ Write(ViewData["Title"]); ); __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.SelectTagHelper>(); __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper); -#line 16 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml" +#line 16 "C:\Users\0033899\Documents\GitHub\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" +#line 16 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml" __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.Items = ViewBag.Desenvolvedores; #line default @@ -141,12 +147,12 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.Items = ViewBag.Desenvolve WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <label>Requisito</label>\r\n "); EndContext(); BeginContext(653, 156, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("select", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3d53fe7d1a83e0834d25f430afe65fcab2e3dcea10968", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("select", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6ba75510b52d1237801a16dc7ede78708cc53c2012602", 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() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6ba75510b52d1237801a16dc7ede78708cc53c2013031", async() => { } ); __Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper>(); @@ -166,14 +172,14 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.Items = ViewBag.Desenvolve ); __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.SelectTagHelper>(); __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper); -#line 22 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml" +#line 22 "C:\Users\0033899\Documents\GitHub\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" +#line 22 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml" __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.Items = ViewBag.Requisitos; #line default @@ -187,48 +193,25 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.Items = ViewBag.Requisitos Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(809, 132, true); - WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <label>Criador</label>\r\n "); + BeginContext(809, 158, true); + WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <div class=\"custom-control custom-checkbox\">\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<global::Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper>(); - __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(); + BeginContext(967, 86, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "6ba75510b52d1237801a16dc7ede78708cc53c2016295", async() => { } ); - __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.SelectTagHelper>(); - __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); + __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper>(); + __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper); + __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.InputTypeName = (string)__tagHelperAttribute_1.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1); + __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_2); + __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_3); +#line 28 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml" +__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.FoiResolvido); #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); + __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) { @@ -237,17 +220,48 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.Items = ViewBag.Desenvolve Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(1100, 135, true); + BeginContext(1053, 258, true); + WriteLiteral(@" + <label class=""custom-control-label"" for=""admin"">Foi Resolvido?</label> + </div> + </div> + <div class=""form-group""> + <label>Descrição</label> + "); + EndContext(); + BeginContext(1311, 71, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("textarea", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6ba75510b52d1237801a16dc7ede78708cc53c2018570", async() => { + } + ); + __Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.TextAreaTagHelper>(); + __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper); + __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_0); + __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_4); +#line 34 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml" +__Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.Descricao); + +#line default +#line hidden + __tagHelperExecutionContext.AddTagHelperAttribute("asp-for", __Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper.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(1382, 135, true); WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <label>Prioridade</label>\r\n "); EndContext(); - BeginContext(1235, 225, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("select", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3d53fe7d1a83e0834d25f430afe65fcab2e3dcea18295", async() => { - BeginContext(1285, 26, true); + BeginContext(1517, 225, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("select", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6ba75510b52d1237801a16dc7ede78708cc53c2020530", async() => { + BeginContext(1567, 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); + BeginContext(1593, 23, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6ba75510b52d1237801a16dc7ede78708cc53c2020961", async() => { + BeginContext(1601, 6, true); WriteLiteral("Normal"); EndContext(); } @@ -262,12 +276,12 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.Items = ViewBag.Desenvolve Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(1334, 26, true); + BeginContext(1616, 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); + BeginContext(1642, 22, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6ba75510b52d1237801a16dc7ede78708cc53c2022322", async() => { + BeginContext(1650, 5, true); WriteLiteral("Baixa"); EndContext(); } @@ -282,12 +296,12 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.Items = ViewBag.Desenvolve Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(1382, 26, true); + BeginContext(1664, 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); + BeginContext(1690, 21, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6ba75510b52d1237801a16dc7ede78708cc53c2023682", async() => { + BeginContext(1698, 4, true); WriteLiteral("Alta"); EndContext(); } @@ -302,14 +316,14 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.Items = ViewBag.Desenvolve Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(1429, 22, true); + BeginContext(1711, 22, true); WriteLiteral("\r\n "); EndContext(); } ); __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.SelectTagHelper>(); __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper); -#line 34 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml" +#line 38 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Form.cshtml" __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.Prioridade); #line default @@ -324,31 +338,31 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.For = ModelExpressionProvi Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(1460, 88, true); + BeginContext(1742, 88, true); WriteLiteral("\r\n </div>\r\n <div class=\"text-right\">\r\n "); EndContext(); - BeginContext(1548, 110, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3d53fe7d1a83e0834d25f430afe65fcab2e3dcea24332", async() => { - BeginContext(1646, 8, true); + BeginContext(1830, 110, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6ba75510b52d1237801a16dc7ede78708cc53c2026571", async() => { + BeginContext(1928, 8, true); WriteLiteral("Cancelar"); EndContext(); } ); __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>(); __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); + __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_5); + __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_6.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_6); + __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_7.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_7); + __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_8.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_8); 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); + __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = (string)__tagHelperAttribute_9.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_9); await __tagHelperRunner.RunAsync(__tagHelperExecutionContext); if (!__tagHelperExecutionContext.Output.IsContentModified) { @@ -357,7 +371,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.For = ModelExpressionProvi Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(1658, 124, true); + BeginContext(1940, 124, true); WriteLiteral("\r\n <button type=\"submit\" class=\"btn btn-primary\">Confirmar</button>\r\n </div>\r\n "); EndContext(); } @@ -366,8 +380,8 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.For = ModelExpressionProvi __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper); __Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper>(); __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper); - __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper.Method = (string)__tagHelperAttribute_6.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_6); + __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper.Method = (string)__tagHelperAttribute_10.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_10); await __tagHelperRunner.RunAsync(__tagHelperExecutionContext); if (!__tagHelperExecutionContext.Output.IsContentModified) { @@ -376,7 +390,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.For = ModelExpressionProvi Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(1789, 40, true); + BeginContext(2071, 40, true); WriteLiteral("\r\n </div>\r\n </div>\r\n</section>"); EndContext(); } 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 index 2baa9e6..e1fec91 100644 --- 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 @@ -1,4 +1,4 @@ -#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "6ba5c2dc561e89b14306df96ed5a5617599476e0" +#pragma checksum "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "9cff8295ca5aa8b752010e5127cb96170cab0597" // <auto-generated/> #pragma warning disable 1591 [assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Bugs_Index), @"mvc.1.0.view", @"/Views/Bugs/Index.cshtml")] @@ -13,17 +13,17 @@ namespace AspNetCore 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" +#line 1 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" using GerenciaProjetos; #line default #line hidden -#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" +#line 2 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" using GerenciaProjetos.Models; #line default #line hidden - [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"6ba5c2dc561e89b14306df96ed5a5617599476e0", @"/Views/Bugs/Index.cshtml")] + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"9cff8295ca5aa8b752010e5127cb96170cab0597", @"/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<dynamic> { @@ -57,7 +57,7 @@ using GerenciaProjetos.Models; BeginContext(0, 2, true); WriteLiteral("\r\n"); EndContext(); -#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" +#line 2 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" ViewData["Title"] = "Requisitos"; Layout = "~/Views/Shared/_Layout.cshtml"; @@ -68,7 +68,7 @@ using GerenciaProjetos.Models; WriteLiteral("\r\n<h3>"); EndContext(); BeginContext(102, 17, false); -#line 7 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" +#line 7 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" Write(ViewData["Title"]); #line default @@ -89,7 +89,7 @@ Write(ViewData["Title"]); "); EndContext(); BeginContext(433, 148, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6ba5c2dc561e89b14306df96ed5a5617599476e05683", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "9cff8295ca5aa8b752010e5127cb96170cab05975703", async() => { BeginContext(487, 90, true); WriteLiteral("\r\n <i class=\"fas fa-plus-circle\"></i>\r\n "); EndContext(); @@ -111,7 +111,7 @@ Write(ViewData["Title"]); Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(581, 536, true); + BeginContext(581, 594, true); WriteLiteral(@" </div> </div> @@ -121,7 +121,8 @@ Write(ViewData["Title"]); <thead class=""border-bottom""> <tr> <th scope=""col"">#</th> - <th scope=""col"">Criador</th> + <th scope=""col"">Descrição</th> + <th scope=""col"">Foi Resolvido</th> <th scope=""col"">Data de Cadastro</th> <th scope=""col"">Prioridade</th> <th scope=""col"">Opções</th> @@ -130,68 +131,68 @@ Write(ViewData["Title"]); <tbody> "); EndContext(); -#line 36 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" +#line 37 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" foreach (Bug b in ViewBag.Bugs) { #line default #line hidden - BeginContext(1186, 54, true); + BeginContext(1244, 54, true); WriteLiteral(" <tr>\r\n <td>"); EndContext(); - BeginContext(1241, 4, false); -#line 39 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" + BeginContext(1299, 4, false); +#line 40 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" Write(b.Id); #line default #line hidden EndContext(); - BeginContext(1245, 35, true); + BeginContext(1303, 35, true); WriteLiteral("</td>\r\n <td>"); EndContext(); - BeginContext(1281, 11, false); -#line 40 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" - Write(b.CriadorId); + BeginContext(1339, 11, false); +#line 41 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" + Write(b.Descricao); #line default #line hidden EndContext(); - BeginContext(1292, 35, true); + BeginContext(1350, 35, true); WriteLiteral("</td>\r\n <td>"); EndContext(); - BeginContext(1328, 14, false); -#line 41 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" - Write(b.DataCadastro); - -#line default -#line hidden - EndContext(); - BeginContext(1342, 35, true); - WriteLiteral("</td>\r\n <td>"); - EndContext(); - BeginContext(1378, 12, false); -#line 42 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" - Write(b.Prioridade); - -#line default -#line hidden - EndContext(); - BeginContext(1390, 35, true); - WriteLiteral("</td>\r\n <td>"); - EndContext(); - BeginContext(1426, 14, false); -#line 43 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" + BeginContext(1386, 14, false); +#line 42 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" Write(b.FoiResolvido); #line default #line hidden EndContext(); - BeginContext(1440, 65, true); + BeginContext(1400, 35, true); + WriteLiteral("</td>\r\n <td>"); + EndContext(); + BeginContext(1436, 37, false); +#line 43 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" + Write(b.DataCadastro.ToString("dd/MM/yyyy")); + +#line default +#line hidden + EndContext(); + BeginContext(1473, 35, true); + WriteLiteral("</td>\r\n <td>"); + EndContext(); + BeginContext(1509, 12, false); +#line 44 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" + Write(b.Prioridade); + +#line default +#line hidden + EndContext(); + BeginContext(1521, 65, true); WriteLiteral("</td>\r\n <td>\r\n "); EndContext(); - BeginContext(1505, 171, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6ba5c2dc561e89b14306df96ed5a5617599476e010408", async() => { - BeginContext(1581, 91, true); + BeginContext(1586, 171, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "9cff8295ca5aa8b752010e5127cb96170cab059710535", async() => { + BeginContext(1662, 91, true); WriteLiteral("\r\n <i class=\"fas fa-edit\"></i>\r\n "); EndContext(); } @@ -209,7 +210,7 @@ Write(ViewData["Title"]); throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues")); } BeginWriteTagHelperAttribute(); -#line 45 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" +#line 46 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" WriteLiteral(b.Id); #line default @@ -225,12 +226,12 @@ Write(ViewData["Title"]); Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(1676, 30, true); + BeginContext(1757, 30, true); WriteLiteral("\r\n "); EndContext(); - BeginContext(1706, 171, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "6ba5c2dc561e89b14306df96ed5a5617599476e013316", async() => { - BeginContext(1781, 92, true); + BeginContext(1787, 171, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "9cff8295ca5aa8b752010e5127cb96170cab059713447", async() => { + BeginContext(1862, 92, true); WriteLiteral("\r\n <i class=\"fas fa-trash\"></i>\r\n "); EndContext(); } @@ -248,7 +249,7 @@ Write(ViewData["Title"]); throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues")); } BeginWriteTagHelperAttribute(); -#line 48 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" +#line 49 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" WriteLiteral(b.Id); #line default @@ -264,15 +265,15 @@ Write(ViewData["Title"]); Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(1877, 60, true); + BeginContext(1958, 60, true); WriteLiteral("\r\n </td>\r\n </tr>\r\n"); EndContext(); -#line 53 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" +#line 54 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Bugs\Index.cshtml" } #line default #line hidden - BeginContext(1956, 62, true); + BeginContext(2037, 62, true); WriteLiteral(" </tbody>\r\n </table>\r\n </div>\r\n</section>"); 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 195335f..968d8d2 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}" "250ba0126f92ee886db8b8009c54ab96564e476a" +#pragma checksum "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Form.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "50d596f248363c09281e8facc9b4e6ba89360ca1" // <auto-generated/> #pragma warning disable 1591 [assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Desenvolvedores_Form), @"mvc.1.0.view", @"/Views/Desenvolvedores/Form.cshtml")] @@ -13,30 +13,33 @@ namespace AspNetCore 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" +#line 1 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" using GerenciaProjetos; #line default #line hidden -#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" +#line 2 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" using GerenciaProjetos.Models; #line default #line hidden - [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"250ba0126f92ee886db8b8009c54ab96564e476a", @"/Views/Desenvolvedores/Form.cshtml")] + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"50d596f248363c09281e8facc9b4e6ba89360ca1", @"/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<GerenciaProjetos.Models.Desenvolvedor> { private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_0 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("type", "text", 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", "email", 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("type", "password", 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("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_5 = 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_6 = 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_7 = 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_8 = 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_9 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("method", "post", 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("type", "checkbox", 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("class", new global::Microsoft.AspNetCore.Html.HtmlString("custom-control-input"), 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("id", new global::Microsoft.AspNetCore.Html.HtmlString("admin"), 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("type", "password", 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("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_8 = 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_9 = 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_10 = 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_11 = 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_12 = 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; @@ -65,7 +68,7 @@ using GerenciaProjetos.Models; BeginContext(0, 2, true); WriteLiteral("\r\n"); EndContext(); -#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Form.cshtml" +#line 2 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Form.cshtml" Layout = "~/Views/Shared/_Layout.cshtml"; @@ -78,7 +81,7 @@ using GerenciaProjetos.Models; WriteLiteral("\r\n<h3>"); EndContext(); BeginContext(111, 17, false); -#line 8 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Form.cshtml" +#line 8 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Form.cshtml" Write(ViewData["Title"]); #line default @@ -87,13 +90,13 @@ Write(ViewData["Title"]); BeginContext(128, 102, true); WriteLiteral("</h3>\r\n\r\n<section class=\"py-3\">\r\n <div class=\"card\">\r\n <div class=\"card-body\">\r\n "); EndContext(); - BeginContext(230, 897, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "250ba0126f92ee886db8b8009c54ab96564e476a7669", async() => { + BeginContext(230, 1261, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "50d596f248363c09281e8facc9b4e6ba89360ca18692", async() => { BeginContext(250, 105, true); WriteLiteral("\r\n <div class=\"form-group\">\r\n <label>Nome</label>\r\n "); EndContext(); BeginContext(355, 55, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "250ba0126f92ee886db8b8009c54ab96564e476a8161", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "50d596f248363c09281e8facc9b4e6ba89360ca19184", async() => { } ); __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper>(); @@ -101,7 +104,7 @@ Write(ViewData["Title"]); __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.InputTypeName = (string)__tagHelperAttribute_0.Value; __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0); __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_1); -#line 16 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Form.cshtml" +#line 16 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Form.cshtml" __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.Nome); #line default @@ -119,7 +122,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <label>Email</label>\r\n "); EndContext(); BeginContext(540, 57, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "250ba0126f92ee886db8b8009c54ab96564e476a10220", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "50d596f248363c09281e8facc9b4e6ba89360ca111247", async() => { } ); __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper>(); @@ -127,7 +130,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.InputTypeName = (string)__tagHelperAttribute_2.Value; __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_2); __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_1); -#line 20 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Form.cshtml" +#line 20 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Form.cshtml" __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.Email); #line default @@ -141,19 +144,52 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(597, 130, true); - WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <label>Senha</label>\r\n "); + BeginContext(597, 158, true); + WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <div class=\"custom-control custom-checkbox\">\r\n "); EndContext(); - BeginContext(727, 60, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "250ba0126f92ee886db8b8009c54ab96564e476a12281", async() => { + BeginContext(755, 80, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "50d596f248363c09281e8facc9b4e6ba89360ca113342", async() => { } ); __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper>(); __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper); __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.InputTypeName = (string)__tagHelperAttribute_3.Value; __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_3); + __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_4); + __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_5); +#line 24 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Form.cshtml" +__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.EAdmin); + +#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(835, 256, true); + WriteLiteral(@" + <label class=""custom-control-label"" for=""admin"">É Administrador?</label> + </div> + </div> + <div class=""form-group""> + <label>Senha</label> + "); + EndContext(); + BeginContext(1091, 60, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "50d596f248363c09281e8facc9b4e6ba89360ca115619", async() => { + } + ); + __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper>(); + __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 24 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Form.cshtml" +#line 30 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Form.cshtml" __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.Senha); #line default @@ -167,31 +203,31 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(787, 88, true); + BeginContext(1151, 88, true); WriteLiteral("\r\n </div>\r\n <div class=\"text-right\">\r\n "); EndContext(); - BeginContext(875, 121, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "250ba0126f92ee886db8b8009c54ab96564e476a14298", async() => { - BeginContext(984, 8, true); + BeginContext(1239, 121, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "50d596f248363c09281e8facc9b4e6ba89360ca117642", async() => { + BeginContext(1348, 8, true); WriteLiteral("Cancelar"); EndContext(); } ); __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>(); __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper); - __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_4); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_5.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_5); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_6.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_6); - __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_7.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_7); + __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_7); + __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_8.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_8); + __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); 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_8.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_8); + __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = (string)__tagHelperAttribute_11.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_11); await __tagHelperRunner.RunAsync(__tagHelperExecutionContext); if (!__tagHelperExecutionContext.Output.IsContentModified) { @@ -200,7 +236,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(996, 124, true); + BeginContext(1360, 124, true); WriteLiteral("\r\n <button type=\"submit\" class=\"btn btn-primary\">Confirmar</button>\r\n </div>\r\n "); EndContext(); } @@ -209,8 +245,8 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper); __Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper>(); __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper); - __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper.Method = (string)__tagHelperAttribute_9.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_9); + __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper.Method = (string)__tagHelperAttribute_12.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_12); await __tagHelperRunner.RunAsync(__tagHelperExecutionContext); if (!__tagHelperExecutionContext.Output.IsContentModified) { @@ -219,7 +255,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(1127, 40, true); + BeginContext(1491, 40, true); WriteLiteral("\r\n </div>\r\n </div>\r\n</section>"); EndContext(); } diff --git a/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Desenvolvedores/Index.g.cshtml.cs b/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Desenvolvedores/Index.g.cshtml.cs index 68db7aa..0e19805 100644 --- a/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Desenvolvedores/Index.g.cshtml.cs +++ b/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Desenvolvedores/Index.g.cshtml.cs @@ -1,4 +1,4 @@ -#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "977268ee7da0ac6921c4551e1fbffc46fc9dd59a" +#pragma checksum "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "ead1d4da8b9068e87443bf94457b532b43c6fc53" // <auto-generated/> #pragma warning disable 1591 [assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Desenvolvedores_Index), @"mvc.1.0.view", @"/Views/Desenvolvedores/Index.cshtml")] @@ -13,17 +13,17 @@ namespace AspNetCore 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" +#line 1 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" using GerenciaProjetos; #line default #line hidden -#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" +#line 2 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" using GerenciaProjetos.Models; #line default #line hidden - [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"977268ee7da0ac6921c4551e1fbffc46fc9dd59a", @"/Views/Desenvolvedores/Index.cshtml")] + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"ead1d4da8b9068e87443bf94457b532b43c6fc53", @"/Views/Desenvolvedores/Index.cshtml")] [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"4e94bb8cdb3ef35824e862096b8a713c8ba822eb", @"/Views/_ViewImports.cshtml")] public class Views_Desenvolvedores_Index : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage<dynamic> { @@ -57,7 +57,7 @@ using GerenciaProjetos.Models; BeginContext(0, 2, true); WriteLiteral("\r\n"); EndContext(); -#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml" +#line 2 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml" ViewData["Title"] = "Desenvolvedores"; Layout = "~/Views/Shared/_Layout.cshtml"; @@ -68,7 +68,7 @@ using GerenciaProjetos.Models; WriteLiteral("\r\n<h3>"); EndContext(); BeginContext(107, 17, false); -#line 7 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml" +#line 7 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml" Write(ViewData["Title"]); #line default @@ -89,7 +89,7 @@ Write(ViewData["Title"]); "); EndContext(); BeginContext(438, 159, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "977268ee7da0ac6921c4551e1fbffc46fc9dd59a5799", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "ead1d4da8b9068e87443bf94457b532b43c6fc535819", async() => { BeginContext(503, 90, true); WriteLiteral("\r\n <i class=\"fas fa-plus-circle\"></i>\r\n "); EndContext(); @@ -111,7 +111,7 @@ Write(ViewData["Title"]); Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(597, 517, true); + BeginContext(597, 519, true); WriteLiteral(@" </div> </div> @@ -123,82 +123,65 @@ Write(ViewData["Title"]); <th scope=""col"">#</th> <th scope=""col"">Nome</th> <th scope=""col"">Email</th> - <th scope=""col"">Admin</th> + <th scope=""col"">É Admin</th> <th scope=""col"">Opções</th> </tr> </thead> <tbody> "); EndContext(); -#line 36 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml" +#line 36 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml" foreach (Desenvolvedor d in ViewBag.Desenvolvedores) { #line default #line hidden - BeginContext(1204, 54, true); + BeginContext(1206, 54, true); WriteLiteral(" <tr>\r\n <td>"); EndContext(); - BeginContext(1259, 4, false); -#line 39 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml" + BeginContext(1261, 4, false); +#line 39 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml" Write(d.Id); #line default #line hidden EndContext(); - BeginContext(1263, 35, true); + BeginContext(1265, 35, true); WriteLiteral("</td>\r\n <td>"); EndContext(); - BeginContext(1299, 6, false); -#line 40 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml" + BeginContext(1301, 6, false); +#line 40 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml" Write(d.Nome); #line default #line hidden EndContext(); - BeginContext(1305, 35, true); + BeginContext(1307, 35, true); WriteLiteral("</td>\r\n <td>"); EndContext(); - BeginContext(1341, 7, false); -#line 41 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml" + BeginContext(1343, 7, false); +#line 41 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml" Write(d.Email); #line default #line hidden EndContext(); - BeginContext(1348, 37, true); - WriteLiteral("</td>\r\n <td>\r\n"); + BeginContext(1350, 35, true); + WriteLiteral("</td>\r\n <td>"); EndContext(); -#line 43 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml" - if (d.EAdmin == true) - { + BeginContext(1386, 8, false); +#line 42 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml" + Write(d.EAdmin); #line default #line hidden - BeginContext(1468, 50, true); - WriteLiteral(" <span>Sim</span>\r\n"); EndContext(); -#line 46 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml" - } - else - { - -#line default -#line hidden - BeginContext(1614, 50, true); - WriteLiteral(" <span>Não</span>\r\n"); + BeginContext(1394, 65, true); + WriteLiteral("</td>\r\n <td>\r\n "); EndContext(); -#line 50 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml" - } - -#line default -#line hidden - BeginContext(1695, 89, true); - WriteLiteral(" </td>\r\n <td>\r\n "); - EndContext(); - BeginContext(1784, 182, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "977268ee7da0ac6921c4551e1fbffc46fc9dd59a10892", async() => { - BeginContext(1871, 91, true); + BeginContext(1459, 182, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "ead1d4da8b9068e87443bf94457b532b43c6fc5310217", async() => { + BeginContext(1546, 91, true); WriteLiteral("\r\n <i class=\"fas fa-edit\"></i>\r\n "); EndContext(); } @@ -216,7 +199,7 @@ Write(ViewData["Title"]); throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues")); } BeginWriteTagHelperAttribute(); -#line 53 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml" +#line 44 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml" WriteLiteral(d.Id); #line default @@ -232,12 +215,12 @@ Write(ViewData["Title"]); Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(1966, 30, true); + BeginContext(1641, 30, true); WriteLiteral("\r\n "); EndContext(); - BeginContext(1996, 182, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "977268ee7da0ac6921c4551e1fbffc46fc9dd59a13822", async() => { - BeginContext(2082, 92, true); + BeginContext(1671, 182, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "ead1d4da8b9068e87443bf94457b532b43c6fc5313151", async() => { + BeginContext(1757, 92, true); WriteLiteral("\r\n <i class=\"fas fa-trash\"></i>\r\n "); EndContext(); } @@ -255,7 +238,7 @@ Write(ViewData["Title"]); throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues")); } BeginWriteTagHelperAttribute(); -#line 56 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml" +#line 47 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml" WriteLiteral(d.Id); #line default @@ -271,15 +254,15 @@ Write(ViewData["Title"]); Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(2178, 60, true); + BeginContext(1853, 60, true); WriteLiteral("\r\n </td>\r\n </tr>\r\n"); EndContext(); -#line 61 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml" +#line 52 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedores\Index.cshtml" } #line default #line hidden - BeginContext(2257, 62, true); + BeginContext(1932, 62, true); WriteLiteral(" </tbody>\r\n </table>\r\n </div>\r\n</section>"); 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 e5d52e2..097c487 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}" "f98e248c28a287bdb7ce8373fdc5e2544889b374" +#pragma checksum "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "06b341fb9d0653788e3f894a9adfcc37e118d8e9" // <auto-generated/> #pragma warning disable 1591 [assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Home_Index), @"mvc.1.0.view", @"/Views/Home/Index.cshtml")] @@ -13,17 +13,17 @@ namespace AspNetCore 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" +#line 1 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" using GerenciaProjetos; #line default #line hidden -#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" +#line 2 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" using GerenciaProjetos.Models; #line default #line hidden - [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"f98e248c28a287bdb7ce8373fdc5e2544889b374", @"/Views/Home/Index.cshtml")] + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"06b341fb9d0653788e3f894a9adfcc37e118d8e9", @"/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<dynamic> { @@ -59,7 +59,7 @@ using GerenciaProjetos.Models; #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" +#line 1 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" ViewData["Title"] = "Dashboard"; @@ -69,7 +69,7 @@ using GerenciaProjetos.Models; WriteLiteral("\r\n<h3>"); EndContext(); BeginContext(52, 17, false); -#line 5 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" +#line 5 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" Write(ViewData["Title"]); #line default @@ -79,7 +79,7 @@ Write(ViewData["Title"]); WriteLiteral("</h3>\r\n\r\n<section class=\"py-3\">\r\n <div class=\"card\">\r\n <div class=\"card-header\">\r\n <div class=\"row\">\r\n <div class=\"col-6\">\r\n "); EndContext(); BeginContext(249, 115, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b3746997", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "06b341fb9d0653788e3f894a9adfcc37e118d8e97017", async() => { BeginContext(345, 15, true); WriteLiteral("Desenvolvedores"); EndContext(); @@ -106,7 +106,7 @@ Write(ViewData["Title"]); WriteLiteral("\r\n </div>\r\n <div class=\"col-6\">\r\n <div class=\"text-right\">\r\n "); EndContext(); BeginContext(497, 159, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b3749009", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "06b341fb9d0653788e3f894a9adfcc37e118d8e99029", async() => { BeginContext(562, 90, true); WriteLiteral("\r\n <i class=\"fas fa-plus-circle\"></i>\r\n "); EndContext(); @@ -128,7 +128,7 @@ Write(ViewData["Title"]); Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(656, 517, true); + BeginContext(656, 519, true); WriteLiteral(@" </div> </div> @@ -140,82 +140,65 @@ Write(ViewData["Title"]); <th scope=""col"">#</th> <th scope=""col"">Nome</th> <th scope=""col"">Email</th> - <th scope=""col"">Admin</th> + <th scope=""col"">É Admin</th> <th scope=""col"">Opções</th> </tr> </thead> <tbody> "); EndContext(); -#line 34 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" +#line 34 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" foreach (Desenvolvedor d in ViewBag.Desenvolvedores) { #line default #line hidden - BeginContext(1263, 54, true); + BeginContext(1265, 54, true); WriteLiteral(" <tr>\r\n <td>"); EndContext(); - BeginContext(1318, 4, false); -#line 37 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + BeginContext(1320, 4, false); +#line 37 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" Write(d.Id); #line default #line hidden EndContext(); - BeginContext(1322, 35, true); + BeginContext(1324, 35, true); WriteLiteral("</td>\r\n <td>"); EndContext(); - BeginContext(1358, 6, false); -#line 38 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + BeginContext(1360, 6, false); +#line 38 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" Write(d.Nome); #line default #line hidden EndContext(); - BeginContext(1364, 35, true); + BeginContext(1366, 35, true); WriteLiteral("</td>\r\n <td>"); EndContext(); - BeginContext(1400, 7, false); -#line 39 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + BeginContext(1402, 7, false); +#line 39 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" Write(d.Email); #line default #line hidden EndContext(); - BeginContext(1407, 37, true); - WriteLiteral("</td>\r\n <td>\r\n"); + BeginContext(1409, 35, true); + WriteLiteral("</td>\r\n <td>"); EndContext(); -#line 41 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - if (d.EAdmin == true) - { + BeginContext(1445, 8, false); +#line 40 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + Write(d.EAdmin); #line default #line hidden - BeginContext(1527, 50, true); - WriteLiteral(" <span>Sim</span>\r\n"); EndContext(); -#line 44 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - } - else - { - -#line default -#line hidden - BeginContext(1673, 50, true); - WriteLiteral(" <span>Não</span>\r\n"); + BeginContext(1453, 65, true); + WriteLiteral("</td>\r\n <td>\r\n "); EndContext(); -#line 48 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - } - -#line default -#line hidden - BeginContext(1754, 89, true); - WriteLiteral(" </td>\r\n <td>\r\n "); - EndContext(); - BeginContext(1843, 182, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37414025", async() => { - BeginContext(1930, 91, true); + BeginContext(1518, 182, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "06b341fb9d0653788e3f894a9adfcc37e118d8e913372", async() => { + BeginContext(1605, 91, true); WriteLiteral("\r\n <i class=\"fas fa-edit\"></i>\r\n "); EndContext(); } @@ -233,7 +216,7 @@ Write(ViewData["Title"]); throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues")); } BeginWriteTagHelperAttribute(); -#line 51 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" +#line 42 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" WriteLiteral(d.Id); #line default @@ -249,12 +232,12 @@ Write(ViewData["Title"]); Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(2025, 30, true); + BeginContext(1700, 30, true); WriteLiteral("\r\n "); EndContext(); - BeginContext(2055, 182, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37416944", async() => { - BeginContext(2141, 92, true); + BeginContext(1730, 182, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "06b341fb9d0653788e3f894a9adfcc37e118d8e916295", async() => { + BeginContext(1816, 92, true); WriteLiteral("\r\n <i class=\"fas fa-trash\"></i>\r\n "); EndContext(); } @@ -272,7 +255,7 @@ Write(ViewData["Title"]); throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues")); } BeginWriteTagHelperAttribute(); -#line 54 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" +#line 45 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" WriteLiteral(d.Id); #line default @@ -288,20 +271,20 @@ Write(ViewData["Title"]); Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(2237, 60, true); + BeginContext(1912, 60, true); WriteLiteral("\r\n </td>\r\n </tr>\r\n"); EndContext(); -#line 59 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" +#line 50 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" } #line default #line hidden - BeginContext(2316, 237, true); + BeginContext(1991, 237, true); WriteLiteral(" </tbody>\r\n </table>\r\n </div>\r\n</section>\r\n\r\n<section class=\"py-3\">\r\n <div class=\"card\">\r\n <div class=\"card-header\">\r\n <div class=\"row\">\r\n <div class=\"col-6\">\r\n "); EndContext(); - BeginContext(2553, 101, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37420416", async() => { - BeginContext(2642, 8, true); + BeginContext(2228, 101, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "06b341fb9d0653788e3f894a9adfcc37e118d8e919775", async() => { + BeginContext(2317, 8, true); WriteLiteral("Projetos"); EndContext(); } @@ -323,12 +306,12 @@ Write(ViewData["Title"]); Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(2654, 133, true); + BeginContext(2329, 133, true); WriteLiteral("\r\n </div>\r\n <div class=\"col-6\">\r\n <div class=\"text-right\">\r\n "); EndContext(); - BeginContext(2787, 152, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37422424", async() => { - BeginContext(2845, 90, true); + BeginContext(2462, 152, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "06b341fb9d0653788e3f894a9adfcc37e118d8e921783", async() => { + BeginContext(2520, 90, true); WriteLiteral("\r\n <i class=\"fas fa-plus-circle\"></i>\r\n "); EndContext(); } @@ -349,7 +332,7 @@ Write(ViewData["Title"]); Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(2939, 533, true); + BeginContext(2614, 533, true); WriteLiteral(@" </div> </div> @@ -368,58 +351,58 @@ Write(ViewData["Title"]); <tbody> "); EndContext(); -#line 92 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" +#line 83 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" foreach (Projeto p in ViewBag.Projetos) { #line default #line hidden - BeginContext(3549, 54, true); + BeginContext(3224, 54, true); WriteLiteral(" <tr>\r\n <td>"); EndContext(); - BeginContext(3604, 4, false); -#line 95 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + BeginContext(3279, 4, false); +#line 86 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" Write(p.Id); #line default #line hidden EndContext(); - BeginContext(3608, 35, true); + BeginContext(3283, 35, true); WriteLiteral("</td>\r\n <td>"); EndContext(); - BeginContext(3644, 6, false); -#line 96 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + BeginContext(3319, 6, false); +#line 87 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" Write(p.Nome); #line default #line hidden EndContext(); - BeginContext(3650, 35, true); + BeginContext(3325, 35, true); WriteLiteral("</td>\r\n <td>"); EndContext(); - BeginContext(3686, 13, false); -#line 97 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + BeginContext(3361, 13, false); +#line 88 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" Write(p.DataEntrega); #line default #line hidden EndContext(); - BeginContext(3699, 35, true); + BeginContext(3374, 35, true); WriteLiteral("</td>\r\n <td>"); EndContext(); - BeginContext(3735, 13, false); -#line 98 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + BeginContext(3410, 13, false); +#line 89 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" Write(p.Solicitante); #line default #line hidden EndContext(); - BeginContext(3748, 65, true); + BeginContext(3423, 65, true); WriteLiteral("</td>\r\n <td>\r\n "); EndContext(); - BeginContext(3813, 175, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37426764", async() => { - BeginContext(3893, 91, true); + BeginContext(3488, 175, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "06b341fb9d0653788e3f894a9adfcc37e118d8e926143", async() => { + BeginContext(3568, 91, true); WriteLiteral("\r\n <i class=\"fas fa-edit\"></i>\r\n "); EndContext(); } @@ -437,7 +420,7 @@ Write(ViewData["Title"]); throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues")); } BeginWriteTagHelperAttribute(); -#line 100 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" +#line 91 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" WriteLiteral(p.Id); #line default @@ -453,12 +436,12 @@ Write(ViewData["Title"]); Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(3988, 30, true); + BeginContext(3663, 30, true); WriteLiteral("\r\n "); EndContext(); - BeginContext(4018, 175, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37429677", async() => { - BeginContext(4097, 92, true); + BeginContext(3693, 175, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "06b341fb9d0653788e3f894a9adfcc37e118d8e929059", async() => { + BeginContext(3772, 92, true); WriteLiteral("\r\n <i class=\"fas fa-trash\"></i>\r\n "); EndContext(); } @@ -476,7 +459,7 @@ Write(ViewData["Title"]); throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues")); } BeginWriteTagHelperAttribute(); -#line 103 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" +#line 94 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" WriteLiteral(p.Id); #line default @@ -492,20 +475,20 @@ Write(ViewData["Title"]); Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(4193, 60, true); + BeginContext(3868, 60, true); WriteLiteral("\r\n </td>\r\n </tr>\r\n"); EndContext(); -#line 108 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" +#line 99 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" } #line default #line hidden - BeginContext(4272, 237, true); + BeginContext(3947, 237, true); WriteLiteral(" </tbody>\r\n </table>\r\n </div>\r\n</section>\r\n\r\n<section class=\"py-3\">\r\n <div class=\"card\">\r\n <div class=\"card-header\">\r\n <div class=\"row\">\r\n <div class=\"col-6\">\r\n "); EndContext(); - BeginContext(4509, 105, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37433144", async() => { - BeginContext(4600, 10, true); + BeginContext(4184, 105, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "06b341fb9d0653788e3f894a9adfcc37e118d8e932532", async() => { + BeginContext(4275, 10, true); WriteLiteral("Requisitos"); EndContext(); } @@ -527,12 +510,12 @@ Write(ViewData["Title"]); Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(4614, 133, true); + BeginContext(4289, 133, true); WriteLiteral("\r\n </div>\r\n <div class=\"col-6\">\r\n <div class=\"text-right\">\r\n "); EndContext(); - BeginContext(4747, 154, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37435155", async() => { - BeginContext(4807, 90, true); + BeginContext(4422, 154, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "06b341fb9d0653788e3f894a9adfcc37e118d8e934543", async() => { + BeginContext(4482, 90, true); WriteLiteral("\r\n <i class=\"fas fa-plus-circle\"></i>\r\n "); EndContext(); } @@ -553,7 +536,7 @@ Write(ViewData["Title"]); Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(4901, 597, true); + BeginContext(4576, 651, true); WriteLiteral(@" </div> </div> @@ -565,6 +548,7 @@ Write(ViewData["Title"]); <th scope=""col"">#</th> <th scope=""col"">Descrição</th> <th scope=""col"">Observações</th> + <th scope=""col"">É Funcional</th> <th scope=""col"">Data de Cadastro</th> <th scope=""col"">Data de Entrega</th> <th scope=""col"">Opções</th> @@ -573,68 +557,78 @@ Write(ViewData["Title"]); <tbody> "); EndContext(); -#line 142 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" +#line 134 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" foreach (Requisito r in ViewBag.Requisitos) { #line default #line hidden - BeginContext(5579, 54, true); + BeginContext(5308, 54, true); WriteLiteral(" <tr>\r\n <td>"); EndContext(); - BeginContext(5634, 4, false); -#line 145 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + BeginContext(5363, 4, false); +#line 137 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" Write(r.Id); #line default #line hidden EndContext(); - BeginContext(5638, 35, true); + BeginContext(5367, 35, true); WriteLiteral("</td>\r\n <td>"); EndContext(); - BeginContext(5674, 11, false); -#line 146 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + BeginContext(5403, 11, false); +#line 138 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" Write(r.Descricao); #line default #line hidden EndContext(); - BeginContext(5685, 35, true); + BeginContext(5414, 35, true); WriteLiteral("</td>\r\n <td>"); EndContext(); - BeginContext(5721, 13, false); -#line 147 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + BeginContext(5450, 13, false); +#line 139 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" Write(r.Observacoes); #line default #line hidden EndContext(); - BeginContext(5734, 35, true); + BeginContext(5463, 35, true); WriteLiteral("</td>\r\n <td>"); EndContext(); - BeginContext(5770, 14, false); -#line 148 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + BeginContext(5499, 12, false); +#line 140 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + Write(r.EFuncional); + +#line default +#line hidden + EndContext(); + BeginContext(5511, 35, true); + WriteLiteral("</td>\r\n <td>"); + EndContext(); + BeginContext(5547, 14, false); +#line 141 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" Write(r.DataCadastro); #line default #line hidden EndContext(); - BeginContext(5784, 35, true); + BeginContext(5561, 35, true); WriteLiteral("</td>\r\n <td>"); EndContext(); - BeginContext(5820, 13, false); -#line 149 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + BeginContext(5597, 13, false); +#line 142 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" Write(r.DataEntrega); #line default #line hidden EndContext(); - BeginContext(5833, 65, true); + BeginContext(5610, 65, true); WriteLiteral("</td>\r\n <td>\r\n "); EndContext(); - BeginContext(5898, 177, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37439964", async() => { - BeginContext(5980, 91, true); + BeginContext(5675, 177, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "06b341fb9d0653788e3f894a9adfcc37e118d8e939822", async() => { + BeginContext(5757, 91, true); WriteLiteral("\r\n <i class=\"fas fa-edit\"></i>\r\n "); EndContext(); } @@ -652,7 +646,7 @@ Write(ViewData["Title"]); throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues")); } BeginWriteTagHelperAttribute(); -#line 151 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" +#line 144 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" WriteLiteral(r.Id); #line default @@ -668,12 +662,12 @@ Write(ViewData["Title"]); Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(6075, 30, true); + BeginContext(5852, 30, true); WriteLiteral("\r\n "); EndContext(); - BeginContext(6105, 177, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37442879", async() => { - BeginContext(6186, 92, true); + BeginContext(5882, 177, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "06b341fb9d0653788e3f894a9adfcc37e118d8e942741", async() => { + BeginContext(5963, 92, true); WriteLiteral("\r\n <i class=\"fas fa-trash\"></i>\r\n "); EndContext(); } @@ -691,7 +685,7 @@ Write(ViewData["Title"]); throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues")); } BeginWriteTagHelperAttribute(); -#line 154 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" +#line 147 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" WriteLiteral(r.Id); #line default @@ -707,20 +701,20 @@ Write(ViewData["Title"]); Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(6282, 60, true); + BeginContext(6059, 60, true); WriteLiteral("\r\n </td>\r\n </tr>\r\n"); EndContext(); -#line 159 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" +#line 152 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" } #line default #line hidden - BeginContext(6361, 237, true); + BeginContext(6138, 237, true); WriteLiteral(" </tbody>\r\n </table>\r\n </div>\r\n</section>\r\n\r\n<section class=\"py-3\">\r\n <div class=\"card\">\r\n <div class=\"card-header\">\r\n <div class=\"row\">\r\n <div class=\"col-6\">\r\n "); EndContext(); - BeginContext(6598, 93, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37446347", async() => { - BeginContext(6683, 4, true); + BeginContext(6375, 93, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "06b341fb9d0653788e3f894a9adfcc37e118d8e946217", async() => { + BeginContext(6460, 4, true); WriteLiteral("Bugs"); EndContext(); } @@ -742,12 +736,12 @@ Write(ViewData["Title"]); Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(6691, 133, true); + BeginContext(6468, 133, true); WriteLiteral("\r\n </div>\r\n <div class=\"col-6\">\r\n <div class=\"text-right\">\r\n "); EndContext(); - BeginContext(6824, 148, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37448351", async() => { - BeginContext(6878, 90, true); + BeginContext(6601, 148, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "06b341fb9d0653788e3f894a9adfcc37e118d8e948221", async() => { + BeginContext(6655, 90, true); WriteLiteral("\r\n <i class=\"fas fa-plus-circle\"></i>\r\n "); EndContext(); } @@ -768,7 +762,7 @@ Write(ViewData["Title"]); Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(6972, 536, true); + BeginContext(6749, 594, true); WriteLiteral(@" </div> </div> @@ -778,7 +772,8 @@ Write(ViewData["Title"]); <thead class=""border-bottom""> <tr> <th scope=""col"">#</th> - <th scope=""col"">Criador</th> + <th scope=""col"">Descrição</th> + <th scope=""col"">Foi Resolvido</th> <th scope=""col"">Data de Cadastro</th> <th scope=""col"">Prioridade</th> <th scope=""col"">Opções</th> @@ -787,68 +782,68 @@ Write(ViewData["Title"]); <tbody> "); EndContext(); -#line 192 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" +#line 186 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" foreach (Bug b in ViewBag.Bugs) { #line default #line hidden - BeginContext(7577, 54, true); + BeginContext(7412, 54, true); WriteLiteral(" <tr>\r\n <td>"); EndContext(); - BeginContext(7632, 17, false); -#line 195 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - Write(b.DesenvolvedorId); + BeginContext(7467, 4, false); +#line 189 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + Write(b.Id); #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); + BeginContext(7471, 35, true); WriteLiteral("</td>\r\n <td>"); EndContext(); - BeginContext(7700, 9, false); -#line 196 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" - Write(b.Criador); + BeginContext(7507, 11, false); +#line 190 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + Write(b.Descricao); #line default #line hidden EndContext(); - BeginContext(7709, 35, true); + BeginContext(7518, 35, true); WriteLiteral("</td>\r\n <td>"); EndContext(); - BeginContext(7745, 14, false); -#line 197 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + BeginContext(7554, 14, false); +#line 191 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + Write(b.FoiResolvido); + +#line default +#line hidden + EndContext(); + BeginContext(7568, 35, true); + WriteLiteral("</td>\r\n <td>"); + EndContext(); + BeginContext(7604, 14, false); +#line 192 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" Write(b.DataCadastro); #line default #line hidden EndContext(); - BeginContext(7759, 35, true); + BeginContext(7618, 35, true); WriteLiteral("</td>\r\n <td>"); EndContext(); - BeginContext(7795, 12, false); -#line 198 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + BeginContext(7654, 12, false); +#line 193 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" Write(b.Prioridade); #line default #line hidden EndContext(); - BeginContext(7807, 65, true); + BeginContext(7666, 65, true); WriteLiteral("</td>\r\n <td>\r\n "); EndContext(); - BeginContext(7872, 200, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37453077", async() => { - BeginContext(7977, 91, true); + BeginContext(7731, 171, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "06b341fb9d0653788e3f894a9adfcc37e118d8e953039", async() => { + BeginContext(7807, 91, true); WriteLiteral("\r\n <i class=\"fas fa-edit\"></i>\r\n "); EndContext(); } @@ -866,14 +861,8 @@ Write(ViewData["Title"]); throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues")); } 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 195 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + WriteLiteral(b.Id); #line default #line hidden @@ -888,12 +877,12 @@ Write(ViewData["Title"]); Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(8072, 30, true); + BeginContext(7902, 30, true); WriteLiteral("\r\n "); EndContext(); - BeginContext(8102, 200, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "f98e248c28a287bdb7ce8373fdc5e2544889b37456299", async() => { - BeginContext(8206, 92, true); + BeginContext(7932, 171, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "06b341fb9d0653788e3f894a9adfcc37e118d8e955952", async() => { + BeginContext(8007, 92, true); WriteLiteral("\r\n <i class=\"fas fa-trash\"></i>\r\n "); EndContext(); } @@ -911,14 +900,8 @@ Write(ViewData["Title"]); throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues")); } 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 198 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" + WriteLiteral(b.Id); #line default #line hidden @@ -933,15 +916,15 @@ Write(ViewData["Title"]); Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(8302, 60, true); + BeginContext(8103, 60, true); WriteLiteral("\r\n </td>\r\n </tr>\r\n"); EndContext(); -#line 208 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" +#line 203 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" } #line default #line hidden - BeginContext(8381, 62, true); + BeginContext(8182, 62, true); WriteLiteral(" </tbody>\r\n </table>\r\n </div>\r\n</section>"); EndContext(); } diff --git a/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Home/Privacy.g.cshtml.cs b/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Home/Privacy.g.cshtml.cs index 1b58ebe..fca84b3 100644 --- a/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Home/Privacy.g.cshtml.cs +++ b/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Home/Privacy.g.cshtml.cs @@ -1,4 +1,4 @@ -#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Privacy.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "d81f8af58dc1b53b9a802441bc5baa45ea7929e1" +#pragma checksum "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Privacy.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "d81f8af58dc1b53b9a802441bc5baa45ea7929e1" // <auto-generated/> #pragma warning disable 1591 [assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Home_Privacy), @"mvc.1.0.view", @"/Views/Home/Privacy.cshtml")] @@ -13,12 +13,12 @@ namespace AspNetCore 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" +#line 1 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" using GerenciaProjetos; #line default #line hidden -#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" +#line 2 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" using GerenciaProjetos.Models; #line default @@ -30,7 +30,7 @@ using GerenciaProjetos.Models; #pragma warning disable 1998 public async override global::System.Threading.Tasks.Task ExecuteAsync() { -#line 1 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Privacy.cshtml" +#line 1 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Privacy.cshtml" ViewData["Title"] = "Política de Privacidade"; @@ -40,7 +40,7 @@ using GerenciaProjetos.Models; WriteLiteral("\r\n<h3>"); EndContext(); BeginContext(66, 17, false); -#line 5 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Privacy.cshtml" +#line 5 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Home\Privacy.cshtml" Write(ViewData["Title"]); #line default diff --git a/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Projetos/Form.g.cshtml.cs b/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Projetos/Form.g.cshtml.cs index c4329e3..c582779 100644 --- a/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Projetos/Form.g.cshtml.cs +++ b/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Projetos/Form.g.cshtml.cs @@ -1,4 +1,4 @@ -#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Form.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "e08b8516c6598186a5f7fd58fd9f7bd8d12aaedd" +#pragma checksum "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Form.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "e08b8516c6598186a5f7fd58fd9f7bd8d12aaedd" // <auto-generated/> #pragma warning disable 1591 [assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Projetos_Form), @"mvc.1.0.view", @"/Views/Projetos/Form.cshtml")] @@ -13,12 +13,12 @@ namespace AspNetCore 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" +#line 1 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" using GerenciaProjetos; #line default #line hidden -#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" +#line 2 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" using GerenciaProjetos.Models; #line default @@ -64,7 +64,7 @@ using GerenciaProjetos.Models; BeginContext(0, 2, true); WriteLiteral("\r\n"); EndContext(); -#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Form.cshtml" +#line 2 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Form.cshtml" Layout = "~/Views/Shared/_Layout.cshtml"; @@ -77,7 +77,7 @@ using GerenciaProjetos.Models; WriteLiteral("\r\n<h3>"); EndContext(); BeginContext(105, 17, false); -#line 8 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Form.cshtml" +#line 8 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Form.cshtml" Write(ViewData["Title"]); #line default @@ -87,12 +87,12 @@ Write(ViewData["Title"]); WriteLiteral("</h3>\r\n\r\n<section class=\"py-3\">\r\n <div class=\"card\">\r\n <div class=\"card-body\">\r\n "); EndContext(); BeginContext(224, 913, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "e08b8516c6598186a5f7fd58fd9f7bd8d12aaedd7294", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "e08b8516c6598186a5f7fd58fd9f7bd8d12aaedd7314", async() => { BeginContext(244, 105, true); WriteLiteral("\r\n <div class=\"form-group\">\r\n <label>Nome</label>\r\n "); EndContext(); BeginContext(349, 55, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "e08b8516c6598186a5f7fd58fd9f7bd8d12aaedd7786", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "e08b8516c6598186a5f7fd58fd9f7bd8d12aaedd7806", async() => { } ); __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper>(); @@ -100,7 +100,7 @@ Write(ViewData["Title"]); __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.InputTypeName = (string)__tagHelperAttribute_0.Value; __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0); __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_1); -#line 16 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Form.cshtml" +#line 16 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Form.cshtml" __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.Nome); #line default @@ -118,7 +118,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <label>Data de Entrega</label>\r\n "); EndContext(); BeginContext(544, 62, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "e08b8516c6598186a5f7fd58fd9f7bd8d12aaedd9848", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "e08b8516c6598186a5f7fd58fd9f7bd8d12aaedd9872", async() => { } ); __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper>(); @@ -126,7 +126,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.InputTypeName = (string)__tagHelperAttribute_2.Value; __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_2); __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_1); -#line 20 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Form.cshtml" +#line 20 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Form.cshtml" __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.DataEntrega); #line default @@ -144,7 +144,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <label>Solicitante</label>\r\n "); EndContext(); BeginContext(742, 62, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "e08b8516c6598186a5f7fd58fd9f7bd8d12aaedd11913", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "e08b8516c6598186a5f7fd58fd9f7bd8d12aaedd11941", async() => { } ); __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper>(); @@ -152,7 +152,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.InputTypeName = (string)__tagHelperAttribute_0.Value; __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0); __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_1); -#line 24 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Form.cshtml" +#line 24 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Form.cshtml" __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.Solicitante); #line default @@ -170,7 +170,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid WriteLiteral("\r\n </div>\r\n <div class=\"text-right\">\r\n "); EndContext(); BeginContext(892, 114, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "e08b8516c6598186a5f7fd58fd9f7bd8d12aaedd13929", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "e08b8516c6598186a5f7fd58fd9f7bd8d12aaedd13961", async() => { BeginContext(994, 8, true); WriteLiteral("Cancelar"); EndContext(); diff --git a/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Projetos/Index.g.cshtml.cs b/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Projetos/Index.g.cshtml.cs index 2879f55..3732a2f 100644 --- a/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Projetos/Index.g.cshtml.cs +++ b/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Projetos/Index.g.cshtml.cs @@ -1,4 +1,4 @@ -#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "a614933be1258e52312a782921740065f4b2dd2f" +#pragma checksum "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "4c5b39acb5b5f70e0e4b06633b1b2816b8e53691" // <auto-generated/> #pragma warning disable 1591 [assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Projetos_Index), @"mvc.1.0.view", @"/Views/Projetos/Index.cshtml")] @@ -13,17 +13,17 @@ namespace AspNetCore 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" +#line 1 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" using GerenciaProjetos; #line default #line hidden -#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" +#line 2 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" using GerenciaProjetos.Models; #line default #line hidden - [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"a614933be1258e52312a782921740065f4b2dd2f", @"/Views/Projetos/Index.cshtml")] + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"4c5b39acb5b5f70e0e4b06633b1b2816b8e53691", @"/Views/Projetos/Index.cshtml")] [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"4e94bb8cdb3ef35824e862096b8a713c8ba822eb", @"/Views/_ViewImports.cshtml")] public class Views_Projetos_Index : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage<dynamic> { @@ -57,7 +57,7 @@ using GerenciaProjetos.Models; BeginContext(0, 2, true); WriteLiteral("\r\n"); EndContext(); -#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml" +#line 2 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml" ViewData["Title"] = "Projetos"; Layout = "~/Views/Shared/_Layout.cshtml"; @@ -68,7 +68,7 @@ using GerenciaProjetos.Models; WriteLiteral("\r\n<h3>"); EndContext(); BeginContext(100, 17, false); -#line 7 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml" +#line 7 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml" Write(ViewData["Title"]); #line default @@ -89,7 +89,7 @@ Write(ViewData["Title"]); "); EndContext(); BeginContext(431, 152, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "a614933be1258e52312a782921740065f4b2dd2f5721", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "4c5b39acb5b5f70e0e4b06633b1b2816b8e536915741", async() => { BeginContext(489, 90, true); WriteLiteral("\r\n <i class=\"fas fa-plus-circle\"></i>\r\n "); EndContext(); @@ -130,7 +130,7 @@ Write(ViewData["Title"]); <tbody> "); EndContext(); -#line 36 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml" +#line 36 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml" foreach (Projeto p in ViewBag.Projetos) { @@ -140,7 +140,7 @@ Write(ViewData["Title"]); WriteLiteral(" <tr>\r\n <td>"); EndContext(); BeginContext(1248, 4, false); -#line 39 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml" +#line 39 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml" Write(p.Id); #line default @@ -150,7 +150,7 @@ Write(ViewData["Title"]); WriteLiteral("</td>\r\n <td>"); EndContext(); BeginContext(1288, 6, false); -#line 40 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml" +#line 40 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml" Write(p.Nome); #line default @@ -159,29 +159,29 @@ Write(ViewData["Title"]); BeginContext(1294, 35, true); WriteLiteral("</td>\r\n <td>"); EndContext(); - BeginContext(1330, 13, false); -#line 41 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml" - Write(p.DataEntrega); + BeginContext(1330, 36, false); +#line 41 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml" + Write(p.DataEntrega.ToString("dd/MM/yyyy")); #line default #line hidden EndContext(); - BeginContext(1343, 35, true); + BeginContext(1366, 35, true); WriteLiteral("</td>\r\n <td>"); EndContext(); - BeginContext(1379, 13, false); -#line 42 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml" + BeginContext(1402, 13, false); +#line 42 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml" Write(p.Solicitante); #line default #line hidden EndContext(); - BeginContext(1392, 65, true); + BeginContext(1415, 65, true); WriteLiteral("</td>\r\n <td>\r\n "); EndContext(); - BeginContext(1457, 175, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "a614933be1258e52312a782921740065f4b2dd2f10078", async() => { - BeginContext(1537, 91, true); + BeginContext(1480, 175, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "4c5b39acb5b5f70e0e4b06633b1b2816b8e5369110141", async() => { + BeginContext(1560, 91, true); WriteLiteral("\r\n <i class=\"fas fa-edit\"></i>\r\n "); EndContext(); } @@ -199,7 +199,7 @@ Write(ViewData["Title"]); throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues")); } BeginWriteTagHelperAttribute(); -#line 44 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml" +#line 44 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml" WriteLiteral(p.Id); #line default @@ -215,12 +215,12 @@ Write(ViewData["Title"]); Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(1632, 30, true); + BeginContext(1655, 30, true); WriteLiteral("\r\n "); EndContext(); - BeginContext(1662, 175, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "a614933be1258e52312a782921740065f4b2dd2f12994", async() => { - BeginContext(1741, 92, true); + BeginContext(1685, 175, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "4c5b39acb5b5f70e0e4b06633b1b2816b8e5369113061", async() => { + BeginContext(1764, 92, true); WriteLiteral("\r\n <i class=\"fas fa-trash\"></i>\r\n "); EndContext(); } @@ -238,7 +238,7 @@ Write(ViewData["Title"]); throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues")); } BeginWriteTagHelperAttribute(); -#line 47 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml" +#line 47 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml" WriteLiteral(p.Id); #line default @@ -254,15 +254,15 @@ Write(ViewData["Title"]); Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(1837, 60, true); + BeginContext(1860, 60, true); WriteLiteral("\r\n </td>\r\n </tr>\r\n"); EndContext(); -#line 52 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml" +#line 52 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml" } #line default #line hidden - BeginContext(1916, 62, true); + BeginContext(1939, 62, true); WriteLiteral(" </tbody>\r\n </table>\r\n </div>\r\n</section>"); EndContext(); } diff --git a/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Requisitos/Form.g.cshtml.cs b/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Requisitos/Form.g.cshtml.cs index aca64fb..063eb3d 100644 --- a/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Requisitos/Form.g.cshtml.cs +++ b/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Requisitos/Form.g.cshtml.cs @@ -1,4 +1,4 @@ -#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Form.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "62c0ff537a6b2571b047741fc65fef6ec22af908" +#pragma checksum "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Form.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "1b467158a6632a8e876b20f0bb695cbfe7b9c700" // <auto-generated/> #pragma warning disable 1591 [assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Requisitos_Form), @"mvc.1.0.view", @"/Views/Requisitos/Form.cshtml")] @@ -13,29 +13,32 @@ namespace AspNetCore 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" +#line 1 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" using GerenciaProjetos; #line default #line hidden -#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" +#line 2 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" using GerenciaProjetos.Models; #line default #line hidden - [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"62c0ff537a6b2571b047741fc65fef6ec22af908", @"/Views/Requisitos/Form.cshtml")] + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"1b467158a6632a8e876b20f0bb695cbfe7b9c700", @"/Views/Requisitos/Form.cshtml")] [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"4e94bb8cdb3ef35824e862096b8a713c8ba822eb", @"/Views/_ViewImports.cshtml")] public class Views_Requisitos_Form : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage<GerenciaProjetos.Models.Requisito> { 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("rows", new global::Microsoft.AspNetCore.Html.HtmlString("5"), 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", "date", 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-secondary"), 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", "Requisitos", 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", "Index", 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); + private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_1 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("type", "checkbox", 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("class", new global::Microsoft.AspNetCore.Html.HtmlString("custom-control-input"), 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("id", new global::Microsoft.AspNetCore.Html.HtmlString("admin"), 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("rows", new global::Microsoft.AspNetCore.Html.HtmlString("5"), 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("type", "date", 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("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_7 = 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_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-action", "Index", 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-route-id", "", 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("method", "post", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes); #line hidden #pragma warning disable 0169 private string __tagHelperStringValueBuffer; @@ -56,10 +59,10 @@ using GerenciaProjetos.Models; } 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.TextAreaTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper; 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.InputTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper; + private global::Microsoft.AspNetCore.Mvc.TagHelpers.TextAreaTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper; 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() @@ -67,7 +70,7 @@ using GerenciaProjetos.Models; BeginContext(0, 2, true); WriteLiteral("\r\n"); EndContext(); -#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Form.cshtml" +#line 2 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Form.cshtml" Layout = "~/Views/Shared/_Layout.cshtml"; @@ -80,7 +83,7 @@ using GerenciaProjetos.Models; WriteLiteral("\r\n<h3>"); EndContext(); BeginContext(107, 17, false); -#line 8 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Form.cshtml" +#line 8 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Form.cshtml" Write(ViewData["Title"]); #line default @@ -89,68 +92,18 @@ Write(ViewData["Title"]); BeginContext(124, 102, true); WriteLiteral("</h3>\r\n\r\n<section class=\"py-3\">\r\n <div class=\"card\">\r\n <div class=\"card-body\">\r\n "); EndContext(); - BeginContext(226, 1231, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "62c0ff537a6b2571b047741fc65fef6ec22af9087765", async() => { - BeginContext(246, 110, true); - WriteLiteral("\r\n <div class=\"form-group\">\r\n <label>Descrição</label>\r\n "); + BeginContext(226, 1594, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "1b467158a6632a8e876b20f0bb695cbfe7b9c7008786", async() => { + BeginContext(246, 108, true); + WriteLiteral("\r\n <div class=\"form-group\">\r\n <label>Projeto</label>\r\n "); EndContext(); - BeginContext(356, 71, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("textarea", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "62c0ff537a6b2571b047741fc65fef6ec22af9088262", async() => { - } - ); - __Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.TextAreaTagHelper>(); - __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper); - __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_0); - __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_1); -#line 16 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Form.cshtml" -__Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.Descricao); - -#line default -#line hidden - __tagHelperExecutionContext.AddTagHelperAttribute("asp-for", __Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper.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(427, 136, true); - WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <label>Observações</label>\r\n "); - EndContext(); - BeginContext(563, 73, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("textarea", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "62c0ff537a6b2571b047741fc65fef6ec22af90810221", async() => { - } - ); - __Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.TextAreaTagHelper>(); - __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper); - __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_0); - __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_1); -#line 20 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Form.cshtml" -__Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.Observacoes); - -#line default -#line hidden - __tagHelperExecutionContext.AddTagHelperAttribute("asp-for", __Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper.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(636, 132, true); - WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <label>Projeto</label>\r\n "); - EndContext(); - BeginContext(768, 152, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("select", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "62c0ff537a6b2571b047741fc65fef6ec22af90812180", async() => { - BeginContext(846, 26, true); + BeginContext(354, 152, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("select", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "1b467158a6632a8e876b20f0bb695cbfe7b9c7009282", async() => { + BeginContext(432, 26, true); WriteLiteral("\r\n "); EndContext(); - BeginContext(872, 17, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "62c0ff537a6b2571b047741fc65fef6ec22af90812609", async() => { + BeginContext(458, 17, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("option", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "1b467158a6632a8e876b20f0bb695cbfe7b9c7009710", async() => { } ); __Microsoft_AspNetCore_Mvc_TagHelpers_OptionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper>(); @@ -163,21 +116,21 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper.For = ModelExpressionPro Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(889, 22, true); + BeginContext(475, 22, true); WriteLiteral("\r\n "); EndContext(); } ); __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.SelectTagHelper>(); __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper); -#line 24 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Form.cshtml" +#line 16 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Form.cshtml" __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.ProjetoId); #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 24 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Form.cshtml" +#line 16 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Form.cshtml" __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.Items = ViewBag.Projetos; #line default @@ -191,19 +144,96 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_SelectTagHelper.Items = ViewBag.Projetos; Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(920, 140, true); - WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <label>Data de Entrega</label>\r\n "); + BeginContext(506, 158, true); + WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <div class=\"custom-control custom-checkbox\">\r\n "); EndContext(); - BeginContext(1060, 62, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "62c0ff537a6b2571b047741fc65fef6ec22af90815854", async() => { + BeginContext(664, 84, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "1b467158a6632a8e876b20f0bb695cbfe7b9c70012981", async() => { } ); __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper>(); __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper); - __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.InputTypeName = (string)__tagHelperAttribute_2.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_2); + __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.InputTypeName = (string)__tagHelperAttribute_1.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1); + __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_2); + __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_3); +#line 22 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Form.cshtml" +__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.EFuncional); + +#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(748, 255, true); + WriteLiteral("\r\n <label class=\"custom-control-label\" for=\"admin\">É Fucional?</label>\r\n </div>\r\n </div>\r\n <div class=\"form-group\">\r\n <label>Descrição</label>\r\n "); + EndContext(); + BeginContext(1003, 71, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("textarea", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "1b467158a6632a8e876b20f0bb695cbfe7b9c70015267", async() => { + } + ); + __Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.TextAreaTagHelper>(); + __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper); __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_0); -#line 30 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Form.cshtml" + __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_4); +#line 28 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Form.cshtml" +__Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.Descricao); + +#line default +#line hidden + __tagHelperExecutionContext.AddTagHelperAttribute("asp-for", __Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper.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(1074, 136, true); + WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <label>Observações</label>\r\n "); + EndContext(); + BeginContext(1210, 73, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("textarea", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "1b467158a6632a8e876b20f0bb695cbfe7b9c70017233", async() => { + } + ); + __Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.TextAreaTagHelper>(); + __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper); + __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_0); + __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_4); +#line 32 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Form.cshtml" +__Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.Observacoes); + +#line default +#line hidden + __tagHelperExecutionContext.AddTagHelperAttribute("asp-for", __Microsoft_AspNetCore_Mvc_TagHelpers_TextAreaTagHelper.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(1283, 140, true); + WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <label>Data de Entrega</label>\r\n "); + EndContext(); + BeginContext(1423, 62, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "1b467158a6632a8e876b20f0bb695cbfe7b9c70019205", async() => { + } + ); + __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper>(); + __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper); + __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.InputTypeName = (string)__tagHelperAttribute_5.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_5); + __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_0); +#line 36 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Form.cshtml" __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.DataEntrega); #line default @@ -217,31 +247,31 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(1122, 88, true); + BeginContext(1485, 88, true); WriteLiteral("\r\n </div>\r\n <div class=\"text-right\">\r\n "); EndContext(); - BeginContext(1210, 116, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "62c0ff537a6b2571b047741fc65fef6ec22af90817874", async() => { - BeginContext(1314, 8, true); + BeginContext(1573, 116, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "1b467158a6632a8e876b20f0bb695cbfe7b9c70021229", async() => { + BeginContext(1677, 8, true); WriteLiteral("Cancelar"); EndContext(); } ); __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>(); __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); + __tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_6); + __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_7.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_7); + __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_8.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_8); + __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_9.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_9); 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_7.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_7); + __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = (string)__tagHelperAttribute_10.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_10); await __tagHelperRunner.RunAsync(__tagHelperExecutionContext); if (!__tagHelperExecutionContext.Output.IsContentModified) { @@ -250,7 +280,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(1326, 124, true); + BeginContext(1689, 124, true); WriteLiteral("\r\n <button type=\"submit\" class=\"btn btn-primary\">Confirmar</button>\r\n </div>\r\n "); EndContext(); } @@ -259,8 +289,8 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper); __Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper>(); __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper); - __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper.Method = (string)__tagHelperAttribute_8.Value; - __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_8); + __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper.Method = (string)__tagHelperAttribute_11.Value; + __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_11); await __tagHelperRunner.RunAsync(__tagHelperExecutionContext); if (!__tagHelperExecutionContext.Output.IsContentModified) { @@ -269,7 +299,7 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvid Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(1457, 40, true); + BeginContext(1820, 40, true); WriteLiteral("\r\n </div>\r\n </div>\r\n</section>"); EndContext(); } diff --git a/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Requisitos/Index.g.cshtml.cs b/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Requisitos/Index.g.cshtml.cs index 1a380a6..62eac25 100644 --- a/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Requisitos/Index.g.cshtml.cs +++ b/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Requisitos/Index.g.cshtml.cs @@ -1,4 +1,4 @@ -#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "70a16f0fc0b05ca7fcad86a13636925bc2e6a5ba" +#pragma checksum "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "809c537fcba7d5c34b287d4e07a2cd6775e88e16" // <auto-generated/> #pragma warning disable 1591 [assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Requisitos_Index), @"mvc.1.0.view", @"/Views/Requisitos/Index.cshtml")] @@ -13,17 +13,17 @@ namespace AspNetCore 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" +#line 1 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" using GerenciaProjetos; #line default #line hidden -#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" +#line 2 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" using GerenciaProjetos.Models; #line default #line hidden - [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"70a16f0fc0b05ca7fcad86a13636925bc2e6a5ba", @"/Views/Requisitos/Index.cshtml")] + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"809c537fcba7d5c34b287d4e07a2cd6775e88e16", @"/Views/Requisitos/Index.cshtml")] [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"4e94bb8cdb3ef35824e862096b8a713c8ba822eb", @"/Views/_ViewImports.cshtml")] public class Views_Requisitos_Index : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage<dynamic> { @@ -57,7 +57,7 @@ using GerenciaProjetos.Models; BeginContext(0, 2, true); WriteLiteral("\r\n"); EndContext(); -#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml" +#line 2 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml" ViewData["Title"] = "Requisitos"; Layout = "~/Views/Shared/_Layout.cshtml"; @@ -68,7 +68,7 @@ using GerenciaProjetos.Models; WriteLiteral("\r\n<h3>"); EndContext(); BeginContext(102, 17, false); -#line 7 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml" +#line 7 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml" Write(ViewData["Title"]); #line default @@ -89,7 +89,7 @@ Write(ViewData["Title"]); "); EndContext(); BeginContext(433, 154, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "70a16f0fc0b05ca7fcad86a13636925bc2e6a5ba5743", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "809c537fcba7d5c34b287d4e07a2cd6775e88e165763", async() => { BeginContext(493, 90, true); WriteLiteral("\r\n <i class=\"fas fa-plus-circle\"></i>\r\n "); EndContext(); @@ -111,7 +111,7 @@ Write(ViewData["Title"]); Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(587, 597, true); + BeginContext(587, 651, true); WriteLiteral(@" </div> </div> @@ -123,6 +123,7 @@ Write(ViewData["Title"]); <th scope=""col"">#</th> <th scope=""col"">Descrição</th> <th scope=""col"">Observações</th> + <th scope=""col"">É Funcional</th> <th scope=""col"">Data de Cadastro</th> <th scope=""col"">Data de Entrega</th> <th scope=""col"">Opções</th> @@ -131,68 +132,78 @@ Write(ViewData["Title"]); <tbody> "); EndContext(); -#line 37 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml" +#line 38 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml" foreach (Requisito r in ViewBag.Requisitos) { #line default #line hidden - BeginContext(1265, 54, true); + BeginContext(1319, 54, true); WriteLiteral(" <tr>\r\n <td>"); EndContext(); - BeginContext(1320, 4, false); -#line 40 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml" + BeginContext(1374, 4, false); +#line 41 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml" Write(r.Id); #line default #line hidden EndContext(); - BeginContext(1324, 35, true); + BeginContext(1378, 35, true); WriteLiteral("</td>\r\n <td>"); EndContext(); - BeginContext(1360, 11, false); -#line 41 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml" + BeginContext(1414, 11, false); +#line 42 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml" Write(r.Descricao); #line default #line hidden EndContext(); - BeginContext(1371, 35, true); + BeginContext(1425, 35, true); WriteLiteral("</td>\r\n <td>"); EndContext(); - BeginContext(1407, 13, false); -#line 42 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml" + BeginContext(1461, 13, false); +#line 43 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml" Write(r.Observacoes); #line default #line hidden EndContext(); - BeginContext(1420, 35, true); + BeginContext(1474, 35, true); WriteLiteral("</td>\r\n <td>"); EndContext(); - BeginContext(1456, 14, false); -#line 43 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml" - Write(r.DataCadastro); + BeginContext(1510, 12, false); +#line 44 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml" + Write(r.EFuncional); #line default #line hidden EndContext(); - BeginContext(1470, 35, true); + BeginContext(1522, 35, true); WriteLiteral("</td>\r\n <td>"); EndContext(); - BeginContext(1506, 13, false); -#line 44 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml" - Write(r.DataEntrega); + BeginContext(1558, 37, false); +#line 45 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml" + Write(r.DataCadastro.ToString("dd/MM/yyyy")); #line default #line hidden EndContext(); - BeginContext(1519, 65, true); + BeginContext(1595, 35, true); + WriteLiteral("</td>\r\n <td>"); + EndContext(); + BeginContext(1631, 36, false); +#line 46 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml" + Write(r.DataEntrega.ToString("dd/MM/yyyy")); + +#line default +#line hidden + EndContext(); + BeginContext(1667, 65, true); WriteLiteral("</td>\r\n <td>\r\n "); EndContext(); - BeginContext(1584, 177, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "70a16f0fc0b05ca7fcad86a13636925bc2e6a5ba10579", async() => { - BeginContext(1666, 91, true); + BeginContext(1732, 177, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "809c537fcba7d5c34b287d4e07a2cd6775e88e1611120", async() => { + BeginContext(1814, 91, true); WriteLiteral("\r\n <i class=\"fas fa-edit\"></i>\r\n "); EndContext(); } @@ -210,7 +221,7 @@ Write(ViewData["Title"]); throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues")); } BeginWriteTagHelperAttribute(); -#line 46 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml" +#line 48 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml" WriteLiteral(r.Id); #line default @@ -226,12 +237,12 @@ Write(ViewData["Title"]); Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(1761, 30, true); + BeginContext(1909, 30, true); WriteLiteral("\r\n "); EndContext(); - BeginContext(1791, 177, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "70a16f0fc0b05ca7fcad86a13636925bc2e6a5ba13499", async() => { - BeginContext(1872, 92, true); + BeginContext(1939, 177, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "809c537fcba7d5c34b287d4e07a2cd6775e88e1614044", async() => { + BeginContext(2020, 92, true); WriteLiteral("\r\n <i class=\"fas fa-trash\"></i>\r\n "); EndContext(); } @@ -249,7 +260,7 @@ Write(ViewData["Title"]); throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues")); } BeginWriteTagHelperAttribute(); -#line 49 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml" +#line 51 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml" WriteLiteral(r.Id); #line default @@ -265,15 +276,15 @@ Write(ViewData["Title"]); Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(1968, 60, true); + BeginContext(2116, 60, true); WriteLiteral("\r\n </td>\r\n </tr>\r\n"); EndContext(); -#line 54 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml" +#line 56 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Requisitos\Index.cshtml" } #line default #line hidden - BeginContext(2047, 62, true); + BeginContext(2195, 62, true); WriteLiteral(" </tbody>\r\n </table>\r\n </div>\r\n</section>"); EndContext(); } diff --git a/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Shared/Error.g.cshtml.cs b/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Shared/Error.g.cshtml.cs index c42e57d..9ba9301 100644 --- a/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Shared/Error.g.cshtml.cs +++ b/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Shared/Error.g.cshtml.cs @@ -1,4 +1,4 @@ -#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\Error.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "d6a5625cc8fb4476f348b0fe9041c550465d8bf9" +#pragma checksum "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\Error.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "d6a5625cc8fb4476f348b0fe9041c550465d8bf9" // <auto-generated/> #pragma warning disable 1591 [assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Shared_Error), @"mvc.1.0.view", @"/Views/Shared/Error.cshtml")] @@ -13,12 +13,12 @@ namespace AspNetCore 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" +#line 1 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" using GerenciaProjetos; #line default #line hidden -#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" +#line 2 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" using GerenciaProjetos.Models; #line default @@ -30,7 +30,7 @@ using GerenciaProjetos.Models; #pragma warning disable 1998 public async override global::System.Threading.Tasks.Task ExecuteAsync() { -#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\Error.cshtml" +#line 2 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\Error.cshtml" ViewData["Title"] = "Error"; @@ -39,7 +39,7 @@ using GerenciaProjetos.Models; BeginContext(64, 120, true); WriteLiteral("\r\n<h1 class=\"text-danger\">Error.</h1>\r\n<h2 class=\"text-danger\">An error occurred while processing your request.</h2>\r\n\r\n"); EndContext(); -#line 9 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\Error.cshtml" +#line 9 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\Error.cshtml" if (Model.ShowRequestId) { @@ -49,7 +49,7 @@ using GerenciaProjetos.Models; WriteLiteral(" <p>\r\n <strong>Request ID:</strong> <code>"); EndContext(); BeginContext(267, 15, false); -#line 12 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\Error.cshtml" +#line 12 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\Error.cshtml" Write(Model.RequestId); #line default @@ -58,7 +58,7 @@ using GerenciaProjetos.Models; BeginContext(282, 19, true); WriteLiteral("</code>\r\n </p>\r\n"); EndContext(); -#line 14 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\Error.cshtml" +#line 14 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\Error.cshtml" } #line default diff --git a/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Shared/_CookieConsentPartial.g.cshtml.cs b/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Shared/_CookieConsentPartial.g.cshtml.cs index 0461c31..218f08f 100644 --- a/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Shared/_CookieConsentPartial.g.cshtml.cs +++ b/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Shared/_CookieConsentPartial.g.cshtml.cs @@ -1,4 +1,4 @@ -#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_CookieConsentPartial.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "d4fdc3d9e6bc2a119e86fb23894c311b8c5abaf6" +#pragma checksum "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\_CookieConsentPartial.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "d4fdc3d9e6bc2a119e86fb23894c311b8c5abaf6" // <auto-generated/> #pragma warning disable 1591 [assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Shared__CookieConsentPartial), @"mvc.1.0.view", @"/Views/Shared/_CookieConsentPartial.cshtml")] @@ -13,17 +13,17 @@ namespace AspNetCore 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" +#line 1 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" using GerenciaProjetos; #line default #line hidden -#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" +#line 2 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" using GerenciaProjetos.Models; #line default #line hidden -#line 1 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_CookieConsentPartial.cshtml" +#line 1 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\_CookieConsentPartial.cshtml" using Microsoft.AspNetCore.Http.Features; #line default @@ -60,7 +60,7 @@ using Microsoft.AspNetCore.Http.Features; BeginContext(43, 2, true); WriteLiteral("\r\n"); EndContext(); -#line 3 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_CookieConsentPartial.cshtml" +#line 3 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\_CookieConsentPartial.cshtml" var consentFeature = Context.Features.Get<ITrackingConsentFeature>(); var showBanner = !consentFeature?.CanTrack ?? false; @@ -71,7 +71,7 @@ using Microsoft.AspNetCore.Http.Features; BeginContext(248, 2, true); WriteLiteral("\r\n"); EndContext(); -#line 9 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_CookieConsentPartial.cshtml" +#line 9 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\_CookieConsentPartial.cshtml" if (showBanner) { @@ -81,7 +81,7 @@ using Microsoft.AspNetCore.Http.Features; WriteLiteral(" <div id=\"cookieConsent\" class=\"alert alert-info alert-dismissible fade show\" role=\"alert\">\r\n Use this space to summarize your privacy and cookie use policy. "); EndContext(); BeginContext(439, 72, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "d4fdc3d9e6bc2a119e86fb23894c311b8c5abaf65321", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "d4fdc3d9e6bc2a119e86fb23894c311b8c5abaf65345", async() => { BeginContext(497, 10, true); WriteLiteral("Learn More"); EndContext(); @@ -107,7 +107,7 @@ using Microsoft.AspNetCore.Http.Features; WriteLiteral(".\r\n <button type=\"button\" class=\"accept-policy close\" data-dismiss=\"alert\" aria-label=\"Close\" data-cookie-string=\""); EndContext(); BeginContext(633, 12, false); -#line 13 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_CookieConsentPartial.cshtml" +#line 13 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\_CookieConsentPartial.cshtml" Write(cookieString); #line default @@ -128,7 +128,7 @@ using Microsoft.AspNetCore.Http.Features; </script> "); EndContext(); -#line 25 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_CookieConsentPartial.cshtml" +#line 25 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\_CookieConsentPartial.cshtml" } #line default 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 5eb709e..7869335 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}" "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf" +#pragma checksum "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "b179a6474f23cacad7cb452a552cf1fdc0daf46f" // <auto-generated/> #pragma warning disable 1591 [assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Shared__Layout), @"mvc.1.0.view", @"/Views/Shared/_Layout.cshtml")] @@ -13,17 +13,17 @@ namespace AspNetCore 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" +#line 1 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" using GerenciaProjetos; #line default #line hidden -#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" +#line 2 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" using GerenciaProjetos.Models; #line default #line hidden - [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf", @"/Views/Shared/_Layout.cshtml")] + [global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"b179a6474f23cacad7cb452a552cf1fdc0daf46f", @"/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<dynamic> { @@ -98,28 +98,28 @@ using GerenciaProjetos.Models; BeginContext(0, 25, true); WriteLiteral("<!DOCTYPE html>\r\n<html>\r\n"); EndContext(); - BeginContext(25, 1034, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("head", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf17847", async() => { + BeginContext(25, 1025, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("head", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b179a6474f23cacad7cb452a552cf1fdc0daf46f17859", async() => { BeginContext(31, 121, true); WriteLiteral("\r\n <meta charset=\"utf-8\" />\r\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" />\r\n <title>"); EndContext(); BeginContext(153, 17, false); -#line 6 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" +#line 6 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" Write(ViewData["Title"]); #line default #line hidden EndContext(); - BeginContext(170, 35, true); - WriteLiteral(" - GerenciaProjetos</title>\r\n\r\n "); + BeginContext(170, 26, true); + WriteLiteral(" - TribuFu</title>\r\n\r\n "); EndContext(); - BeginContext(205, 136, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf18756", async() => { - BeginContext(240, 10, true); + BeginContext(196, 136, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b179a6474f23cacad7cb452a552cf1fdc0daf46f18763", async() => { + BeginContext(231, 10, true); WriteLiteral("\r\n "); EndContext(); - BeginContext(250, 71, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf19174", async() => { + BeginContext(241, 71, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "b179a6474f23cacad7cb452a552cf1fdc0daf46f19181", async() => { } ); __Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>(); @@ -134,7 +134,7 @@ using GerenciaProjetos.Models; Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(321, 6, true); + BeginContext(312, 6, true); WriteLiteral("\r\n "); EndContext(); } @@ -151,16 +151,16 @@ using GerenciaProjetos.Models; Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(341, 6, true); + BeginContext(332, 6, true); WriteLiteral("\r\n "); EndContext(); - BeginContext(347, 508, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf21666", async() => { - BeginContext(382, 10, true); + BeginContext(338, 508, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b179a6474f23cacad7cb452a552cf1fdc0daf46f21673", async() => { + BeginContext(373, 10, true); WriteLiteral("\r\n "); EndContext(); - BeginContext(392, 443, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf22085", async() => { + BeginContext(383, 443, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "b179a6474f23cacad7cb452a552cf1fdc0daf46f22092", async() => { } ); __Microsoft_AspNetCore_Mvc_TagHelpers_LinkTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.LinkTagHelper>(); @@ -186,7 +186,7 @@ using GerenciaProjetos.Models; Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(835, 6, true); + BeginContext(826, 6, true); WriteLiteral("\r\n "); EndContext(); } @@ -203,11 +203,11 @@ using GerenciaProjetos.Models; Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(855, 6, true); + BeginContext(846, 6, true); WriteLiteral("\r\n "); EndContext(); - BeginContext(861, 69, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf25744", async() => { + BeginContext(852, 69, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "b179a6474f23cacad7cb452a552cf1fdc0daf46f25751", async() => { } ); __Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>(); @@ -223,11 +223,11 @@ using GerenciaProjetos.Models; Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(930, 6, true); + BeginContext(921, 6, true); WriteLiteral("\r\n "); EndContext(); - BeginContext(936, 61, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf27167", async() => { + BeginContext(927, 61, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "b179a6474f23cacad7cb452a552cf1fdc0daf46f27174", async() => { } ); __Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>(); @@ -242,11 +242,11 @@ using GerenciaProjetos.Models; Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(997, 6, true); + BeginContext(988, 6, true); WriteLiteral("\r\n "); EndContext(); - BeginContext(1003, 47, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf28503", async() => { + BeginContext(994, 47, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "b179a6474f23cacad7cb452a552cf1fdc0daf46f28509", async() => { } ); __Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>(); @@ -261,7 +261,7 @@ using GerenciaProjetos.Models; Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(1050, 2, true); + BeginContext(1041, 2, true); WriteLiteral("\r\n"); EndContext(); } @@ -276,21 +276,21 @@ using GerenciaProjetos.Models; Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(1059, 2, true); + BeginContext(1050, 2, true); WriteLiteral("\r\n"); EndContext(); - BeginContext(1061, 7115, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("body", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf30637", async() => { - BeginContext(1067, 168, true); + BeginContext(1052, 7115, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("body", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b179a6474f23cacad7cb452a552cf1fdc0daf46f30643", async() => { + BeginContext(1058, 168, true); WriteLiteral("\r\n <header>\r\n <nav class=\"navbar navbar-expand-lg navbar-light bg-light border-bottom box-shadow mb-4\">\r\n <div class=\"container\">\r\n "); EndContext(); - BeginContext(1235, 233, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf31200", async() => { - BeginContext(1312, 22, true); + BeginContext(1226, 233, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b179a6474f23cacad7cb452a552cf1fdc0daf46f31206", async() => { + BeginContext(1303, 22, true); WriteLiteral("\r\n "); EndContext(); - BeginContext(1334, 83, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("img", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf31622", async() => { + BeginContext(1325, 83, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("img", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "b179a6474f23cacad7cb452a552cf1fdc0daf46f31628", async() => { } ); __Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>(); @@ -307,7 +307,7 @@ using GerenciaProjetos.Models; Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(1417, 47, true); + BeginContext(1408, 47, true); WriteLiteral("\r\n TribuFu\r\n "); EndContext(); } @@ -329,7 +329,7 @@ using GerenciaProjetos.Models; Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(1468, 527, true); + BeginContext(1459, 527, true); WriteLiteral(@" <button class=""navbar-toggler"" type=""button"" data-toggle=""collapse"" data-target=""#navbarSupportedContent"" aria-controls=""navbarSupportedContent"" aria-expanded=""false"" aria-label=""Toggle navigation""> <span class=""navbar-toggler-icon""></span> @@ -339,9 +339,9 @@ using GerenciaProjetos.Models; <li class=""nav-item active""> "); EndContext(); - BeginContext(1995, 81, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf35387", async() => { - BeginContext(2068, 4, true); + BeginContext(1986, 81, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b179a6474f23cacad7cb452a552cf1fdc0daf46f35393", async() => { + BeginContext(2059, 4, true); WriteLiteral("Home"); EndContext(); } @@ -363,7 +363,7 @@ using GerenciaProjetos.Models; Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(2076, 276, true); + BeginContext(2067, 276, true); WriteLiteral(@" </li> </ul> @@ -377,23 +377,23 @@ using GerenciaProjetos.Models; <main role=""main"" class=""pb-3""> "); EndContext(); - BeginContext(2353, 12, false); -#line 47 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" + BeginContext(2344, 12, false); +#line 47 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" Write(RenderBody()); #line default #line hidden EndContext(); - BeginContext(2365, 161, true); + BeginContext(2356, 161, true); WriteLiteral("\r\n </main>\r\n </div>\r\n\r\n <footer>\r\n <div class=\"container\">\r\n <div class=\"text-center\">\r\n <ul class=\"list-inline\">\r\n"); EndContext(); -#line 55 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" +#line 55 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" if (true) { #line default #line hidden - BeginContext(2581, 330, true); + BeginContext(2572, 330, true); WriteLiteral(@" <li class=""list-inline-item""> <a class=""text-decoration-none"" href=""https://twitter.com/tribufucom"" target=""_blank"" style=""color: #00aced;""> <i class=""fab fa-2x fa-twitter""></i> @@ -401,21 +401,21 @@ using GerenciaProjetos.Models; </li> "); EndContext(); -#line 62 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" +#line 62 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" } #line default #line hidden - BeginContext(2934, 20, true); + BeginContext(2925, 20, true); WriteLiteral(" "); EndContext(); -#line 63 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" +#line 63 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" if (true) { #line default #line hidden - BeginContext(2989, 375, true); + BeginContext(2980, 375, true); WriteLiteral(@" <li class=""list-inline-item""> <a class=""text-decoration-none"" href=""https://www.youtube.com/channel/UC_lQ7lHpEQTNt65v-r2JcOg?ab_channel=GuiNerd"" target=""_blank"" style=""color: #e62117;""> <i class=""fab fa-2x fa-youtube""></i> @@ -423,21 +423,21 @@ using GerenciaProjetos.Models; </li> "); EndContext(); -#line 70 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" +#line 70 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" } #line default #line hidden - BeginContext(3387, 20, true); + BeginContext(3378, 20, true); WriteLiteral(" "); EndContext(); -#line 71 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" +#line 71 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" if (true) { #line default #line hidden - BeginContext(3442, 342, true); + BeginContext(3433, 342, true); WriteLiteral(@" <li class=""list-inline-item""> <a class=""text-decoration-none"" href=""https://steamcommunity.com/groups/tribufucom"" target=""_blank"" style=""color: #231f20;""> <i class=""fab fa-2x fa-steam""></i> @@ -445,21 +445,21 @@ using GerenciaProjetos.Models; </li> "); EndContext(); -#line 78 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" +#line 78 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" } #line default #line hidden - BeginContext(3807, 20, true); + BeginContext(3798, 20, true); WriteLiteral(" "); EndContext(); -#line 79 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" +#line 79 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" if (false) { #line default #line hidden - BeginContext(3863, 300, true); + BeginContext(3854, 300, true); WriteLiteral(@" <li class=""list-inline-item""> <a class=""text-decoration-none"" href=""#"" target=""_blank"" style=""color: #ff4500;""> <i class=""fab fa-2x fa-reddit""></i> @@ -467,21 +467,21 @@ using GerenciaProjetos.Models; </li> "); EndContext(); -#line 86 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" +#line 86 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" } #line default #line hidden - BeginContext(4186, 20, true); + BeginContext(4177, 20, true); WriteLiteral(" "); EndContext(); -#line 87 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" +#line 87 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" if (false) { #line default #line hidden - BeginContext(4242, 309, true); + BeginContext(4233, 309, true); WriteLiteral(@" <li class=""list-inline-item""> <a class=""text-decoration-none"" href=""#"" target=""_blank"" style=""color: #3d6594;""> <i class=""fab fa-2x fa-facebook-square""></i> @@ -489,21 +489,21 @@ using GerenciaProjetos.Models; </li> "); EndContext(); -#line 94 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" +#line 94 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" } #line default #line hidden - BeginContext(4574, 20, true); + BeginContext(4565, 20, true); WriteLiteral(" "); EndContext(); -#line 95 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" +#line 95 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" if (true) { #line default #line hidden - BeginContext(4629, 325, true); + BeginContext(4620, 325, true); WriteLiteral(@" <li class=""list-inline-item""> <a class=""text-decoration-none"" href=""https://github.com/TribuFu"" target=""_blank"" style=""color: #24292e;""> <i class=""fab fa-2x fa-github""></i> @@ -511,21 +511,21 @@ using GerenciaProjetos.Models; </li> "); EndContext(); -#line 102 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" +#line 102 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" } #line default #line hidden - BeginContext(4977, 20, true); + BeginContext(4968, 20, true); WriteLiteral(" "); EndContext(); -#line 103 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" +#line 103 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" if (true) { #line default #line hidden - BeginContext(5032, 339, true); + BeginContext(5023, 339, true); WriteLiteral(@" <li class=""list-inline-item""> <a class=""text-decoration-none"" href=""https://www.instagram.com/tribufucom/"" target=""_blank"" style=""color: #e13d62;""> <i class=""fab fa-2x fa-instagram""></i> @@ -533,21 +533,21 @@ using GerenciaProjetos.Models; </li> "); EndContext(); -#line 110 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" +#line 110 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" } #line default #line hidden - BeginContext(5394, 20, true); + BeginContext(5385, 20, true); WriteLiteral(" "); EndContext(); -#line 111 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" +#line 111 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" if (true) { #line default #line hidden - BeginContext(5449, 342, true); + BeginContext(5440, 342, true); WriteLiteral(@" <li class=""list-inline-item""> <a class=""text-decoration-none"" href=""https://www.linkedin.com/company/tribufu/"" target=""_blank"" style=""color: #3d6594;""> <i class=""fab fa-2x fa-linkedin""></i> @@ -555,21 +555,21 @@ using GerenciaProjetos.Models; </li> "); EndContext(); -#line 118 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" +#line 118 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" } #line default #line hidden - BeginContext(5814, 20, true); + BeginContext(5805, 20, true); WriteLiteral(" "); EndContext(); -#line 119 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" +#line 119 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" if (false) { #line default #line hidden - BeginContext(5870, 303, true); + BeginContext(5861, 303, true); WriteLiteral(@" <li class=""list-inline-item""> <a class=""text-decoration-none"" href=""#"" target=""_blank"" style=""color: #bd081c;""> <i class=""fab fa-2x fa-pinterest""></i> @@ -577,26 +577,26 @@ using GerenciaProjetos.Models; </li> "); EndContext(); -#line 126 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" +#line 126 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" } #line default #line hidden - BeginContext(6196, 23, true); + BeginContext(6187, 23, true); WriteLiteral(" </ul>\r\n"); EndContext(); -#line 128 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" +#line 128 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" if (true) { #line default #line hidden - BeginContext(6266, 156, true); + BeginContext(6257, 156, true); WriteLiteral(" <ul class=\"list-inline\" style=\"margin-bottom:0em;\">\r\n <li class=\"list-inline-item\">\r\n "); EndContext(); - BeginContext(6422, 118, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf47101", async() => { - BeginContext(6525, 11, true); + BeginContext(6413, 118, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b179a6474f23cacad7cb452a552cf1fdc0daf46f47187", async() => { + BeginContext(6516, 11, true); WriteLiteral("Privacidade"); EndContext(); } @@ -624,12 +624,12 @@ using GerenciaProjetos.Models; Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(6540, 116, true); + BeginContext(6531, 116, true); WriteLiteral("\r\n </li>\r\n <li class=\"list-inline-item\">\r\n "); EndContext(); - BeginContext(6656, 111, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf49743", async() => { - BeginContext(6752, 11, true); + BeginContext(6647, 111, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b179a6474f23cacad7cb452a552cf1fdc0daf46f49829", async() => { + BeginContext(6743, 11, true); WriteLiteral("Contate Nos"); EndContext(); } @@ -657,34 +657,34 @@ using GerenciaProjetos.Models; Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(6767, 130, true); + BeginContext(6758, 130, true); WriteLiteral("\r\n </li>\r\n </ul>\r\n <small style=\"color:#8d9aa6;\">Copyright © TribuFu "); EndContext(); - BeginContext(6898, 17, false); -#line 138 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" + BeginContext(6889, 17, false); +#line 138 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" Write(DateTime.Now.Year); #line default #line hidden EndContext(); - BeginContext(6915, 10, true); + BeginContext(6906, 10, true); WriteLiteral("</small>\r\n"); EndContext(); -#line 139 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" +#line 139 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" } #line default #line hidden - BeginContext(6944, 57, true); + BeginContext(6935, 57, true); WriteLiteral(" </div>\r\n </div>\r\n </footer>\r\n\r\n "); EndContext(); - BeginContext(7001, 193, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf53164", async() => { - BeginContext(7036, 10, true); + BeginContext(6992, 193, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b179a6474f23cacad7cb452a552cf1fdc0daf46f53258", async() => { + BeginContext(7027, 10, true); WriteLiteral("\r\n "); EndContext(); - BeginContext(7046, 51, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf53584", async() => { + BeginContext(7037, 51, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b179a6474f23cacad7cb452a552cf1fdc0daf46f53678", async() => { } ); __Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>(); @@ -698,11 +698,11 @@ using GerenciaProjetos.Models; Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(7097, 10, true); + BeginContext(7088, 10, true); WriteLiteral("\r\n "); EndContext(); - BeginContext(7107, 67, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf54918", async() => { + BeginContext(7098, 67, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b179a6474f23cacad7cb452a552cf1fdc0daf46f55012", async() => { } ); __Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>(); @@ -716,7 +716,7 @@ using GerenciaProjetos.Models; Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(7174, 6, true); + BeginContext(7165, 6, true); WriteLiteral("\r\n "); EndContext(); } @@ -733,17 +733,17 @@ using GerenciaProjetos.Models; Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(7194, 6, true); + BeginContext(7185, 6, true); WriteLiteral("\r\n "); EndContext(); - BeginContext(7200, 849, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf57331", async() => { - BeginContext(7235, 10, true); + BeginContext(7191, 849, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b179a6474f23cacad7cb452a552cf1fdc0daf46f57425", async() => { + BeginContext(7226, 10, true); WriteLiteral("\r\n "); EndContext(); - BeginContext(7245, 340, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf57752", async() => { - BeginContext(7566, 10, true); + BeginContext(7236, 340, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b179a6474f23cacad7cb452a552cf1fdc0daf46f57846", async() => { + BeginContext(7557, 10, true); WriteLiteral("\r\n "); EndContext(); } @@ -766,12 +766,12 @@ using GerenciaProjetos.Models; Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(7585, 10, true); + BeginContext(7576, 10, true); WriteLiteral("\r\n "); EndContext(); - BeginContext(7595, 434, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf59966", async() => { - BeginContext(8010, 10, true); + BeginContext(7586, 434, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b179a6474f23cacad7cb452a552cf1fdc0daf46f60060", async() => { + BeginContext(8001, 10, true); WriteLiteral("\r\n "); EndContext(); } @@ -794,7 +794,7 @@ using GerenciaProjetos.Models; Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(8029, 6, true); + BeginContext(8020, 6, true); WriteLiteral("\r\n "); EndContext(); } @@ -811,11 +811,11 @@ using GerenciaProjetos.Models; Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(8049, 6, true); + BeginContext(8040, 6, true); WriteLiteral("\r\n "); EndContext(); - BeginContext(8055, 62, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf63259", async() => { + BeginContext(8046, 62, false); + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "b179a6474f23cacad7cb452a552cf1fdc0daf46f63353", async() => { } ); __Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>(); @@ -824,7 +824,7 @@ using GerenciaProjetos.Models; __tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_ScriptTagHelper); __Microsoft_AspNetCore_Mvc_TagHelpers_ScriptTagHelper.Src = (string)__tagHelperAttribute_39.Value; __tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_39); -#line 162 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" +#line 162 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" __Microsoft_AspNetCore_Mvc_TagHelpers_ScriptTagHelper.AppendVersion = true; #line default @@ -838,17 +838,17 @@ __Microsoft_AspNetCore_Mvc_TagHelpers_ScriptTagHelper.AppendVersion = true; Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(8117, 8, true); + BeginContext(8108, 8, true); WriteLiteral("\r\n\r\n "); EndContext(); - BeginContext(8126, 41, false); -#line 164 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" + BeginContext(8117, 41, false); +#line 164 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" Write(RenderSection("Scripts", required: false)); #line default #line hidden EndContext(); - BeginContext(8167, 2, true); + BeginContext(8158, 2, true); WriteLiteral("\r\n"); EndContext(); } @@ -863,7 +863,7 @@ Write(RenderSection("Scripts", required: false)); Write(__tagHelperExecutionContext.Output); __tagHelperExecutionContext = __tagHelperScopeManager.End(); EndContext(); - BeginContext(8176, 11, true); + BeginContext(8167, 11, true); WriteLiteral("\r\n</html>\r\n"); EndContext(); } diff --git a/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Shared/_ValidationScriptsPartial.g.cshtml.cs b/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Shared/_ValidationScriptsPartial.g.cshtml.cs index b5b8252..408b145 100644 --- a/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Shared/_ValidationScriptsPartial.g.cshtml.cs +++ b/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/Shared/_ValidationScriptsPartial.g.cshtml.cs @@ -1,4 +1,4 @@ -#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_ValidationScriptsPartial.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "1161b4f9c26a241dfca291df40a11895ab0c72a2" +#pragma checksum "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\Shared\_ValidationScriptsPartial.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "1161b4f9c26a241dfca291df40a11895ab0c72a2" // <auto-generated/> #pragma warning disable 1591 [assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Shared__ValidationScriptsPartial), @"mvc.1.0.view", @"/Views/Shared/_ValidationScriptsPartial.cshtml")] @@ -13,12 +13,12 @@ namespace AspNetCore 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" +#line 1 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" using GerenciaProjetos; #line default #line hidden -#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" +#line 2 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" using GerenciaProjetos.Models; #line default @@ -65,12 +65,12 @@ using GerenciaProjetos.Models; public async override global::System.Threading.Tasks.Task ExecuteAsync() { BeginContext(0, 224, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "1161b4f9c26a241dfca291df40a11895ab0c72a28319", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "1161b4f9c26a241dfca291df40a11895ab0c72a28331", async() => { BeginContext(35, 6, true); WriteLiteral("\r\n "); EndContext(); BeginContext(41, 71, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "1161b4f9c26a241dfca291df40a11895ab0c72a28709", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "1161b4f9c26a241dfca291df40a11895ab0c72a28721", async() => { } ); __Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>(); @@ -88,7 +88,7 @@ using GerenciaProjetos.Models; WriteLiteral("\r\n "); EndContext(); BeginContext(118, 90, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "1161b4f9c26a241dfca291df40a11895ab0c72a29962", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "1161b4f9c26a241dfca291df40a11895ab0c72a29974", async() => { } ); __Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>(); @@ -123,12 +123,12 @@ using GerenciaProjetos.Models; WriteLiteral("\r\n"); EndContext(); BeginContext(226, 919, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "1161b4f9c26a241dfca291df40a11895ab0c72a212222", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "1161b4f9c26a241dfca291df40a11895ab0c72a212234", async() => { BeginContext(261, 6, true); WriteLiteral("\r\n "); EndContext(); BeginContext(267, 386, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "1161b4f9c26a241dfca291df40a11895ab0c72a212616", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "1161b4f9c26a241dfca291df40a11895ab0c72a212628", async() => { BeginContext(638, 6, true); WriteLiteral("\r\n "); EndContext(); @@ -156,7 +156,7 @@ using GerenciaProjetos.Models; WriteLiteral("\r\n "); EndContext(); BeginContext(659, 470, false); - __tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "1161b4f9c26a241dfca291df40a11895ab0c72a214698", async() => { + __tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "1161b4f9c26a241dfca291df40a11895ab0c72a214710", async() => { BeginContext(1114, 6, true); WriteLiteral("\r\n "); EndContext(); diff --git a/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/_ViewImports.g.cshtml.cs b/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/_ViewImports.g.cshtml.cs index 39797cd..5611f99 100644 --- a/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/_ViewImports.g.cshtml.cs +++ b/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/_ViewImports.g.cshtml.cs @@ -1,4 +1,4 @@ -#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "4e94bb8cdb3ef35824e862096b8a713c8ba822eb" +#pragma checksum "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "4e94bb8cdb3ef35824e862096b8a713c8ba822eb" // <auto-generated/> #pragma warning disable 1591 [assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views__ViewImports), @"mvc.1.0.view", @"/Views/_ViewImports.cshtml")] @@ -13,12 +13,12 @@ namespace AspNetCore 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" +#line 1 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" using GerenciaProjetos; #line default #line hidden -#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" +#line 2 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" using GerenciaProjetos.Models; #line default diff --git a/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/_ViewStart.g.cshtml.cs b/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/_ViewStart.g.cshtml.cs index b0df573..2a330f7 100644 --- a/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/_ViewStart.g.cshtml.cs +++ b/GerenciaProjetos/obj/Debug/netcoreapp2.2/Razor/Views/_ViewStart.g.cshtml.cs @@ -1,4 +1,4 @@ -#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewStart.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "7091c65830b0329e613be026ede8a57552863778" +#pragma checksum "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\_ViewStart.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "7091c65830b0329e613be026ede8a57552863778" // <auto-generated/> #pragma warning disable 1591 [assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views__ViewStart), @"mvc.1.0.view", @"/Views/_ViewStart.cshtml")] @@ -13,12 +13,12 @@ namespace AspNetCore 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" +#line 1 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" using GerenciaProjetos; #line default #line hidden -#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" +#line 2 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml" using GerenciaProjetos.Models; #line default @@ -30,7 +30,7 @@ using GerenciaProjetos.Models; #pragma warning disable 1998 public async override global::System.Threading.Tasks.Task ExecuteAsync() { -#line 1 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewStart.cshtml" +#line 1 "C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\Views\_ViewStart.cshtml" Layout = "_Layout"; diff --git a/GerenciaProjetos/obj/GerenciaProjetos.csproj.nuget.cache b/GerenciaProjetos/obj/GerenciaProjetos.csproj.nuget.cache index 3e918e1..cb7f5fb 100644 --- a/GerenciaProjetos/obj/GerenciaProjetos.csproj.nuget.cache +++ b/GerenciaProjetos/obj/GerenciaProjetos.csproj.nuget.cache @@ -1,5 +1,5 @@ { "version": 1, - "dgSpecHash": "8aD2EdNuJt0k7XqtMT51gk3dV0xk+v8t09S3wmp+ftwSZSFtd+RyT0eJeeawADfh+vRU2CkkJdm7lUvYhjeGtw==", + "dgSpecHash": "DJeVpLojEFx2VBl8k7u6rBaLEMJVX/vmlwNXkIHy+r4ozEz0Ckkjo/ItrJ//0tcDuyU/5/DYJitr6QD0sNKD3Q==", "success": true } \ No newline at end of file diff --git a/GerenciaProjetos/obj/GerenciaProjetos.csproj.nuget.g.props b/GerenciaProjetos/obj/GerenciaProjetos.csproj.nuget.g.props index 11b84f0..bf0f01b 100644 --- a/GerenciaProjetos/obj/GerenciaProjetos.csproj.nuget.g.props +++ b/GerenciaProjetos/obj/GerenciaProjetos.csproj.nuget.g.props @@ -3,9 +3,9 @@ <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> <RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess> <RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool> - <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\project.assets.json</ProjectAssetsFile> + <ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">C:\Users\0033899\Documents\GitHub\GerenciaProjetos\GerenciaProjetos\obj\project.assets.json</ProjectAssetsFile> <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot> - <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\GuiNerd\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder</NuGetPackageFolders> + <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\0033899\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder</NuGetPackageFolders> <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle> <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">4.9.3</NuGetToolVersion> </PropertyGroup> @@ -18,12 +18,12 @@ <Import Project="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.configuration.usersecrets\2.2.0\build\netstandard2.0\Microsoft.Extensions.Configuration.UserSecrets.props" Condition="Exists('C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.extensions.configuration.usersecrets\2.2.0\build\netstandard2.0\Microsoft.Extensions.Configuration.UserSecrets.props')" /> <Import Project="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.entityframeworkcore.design\2.2.0\build\netcoreapp2.0\Microsoft.EntityFrameworkCore.Design.props" Condition="Exists('C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.entityframeworkcore.design\2.2.0\build\netcoreapp2.0\Microsoft.EntityFrameworkCore.Design.props')" /> <Import Project="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.mvc.razor.extensions\2.2.0\build\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.Extensions.props" Condition="Exists('C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.mvc.razor.extensions\2.2.0\build\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.Extensions.props')" /> - <Import Project="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.razor.design\2.2.0\build\netstandard2.0\Microsoft.AspNetCore.Razor.Design.props" Condition="Exists('C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.razor.design\2.2.0\build\netstandard2.0\Microsoft.AspNetCore.Razor.Design.props')" /> + <Import Project="$(NuGetPackageRoot)microsoft.aspnetcore.razor.design\2.2.0\build\netstandard2.0\Microsoft.AspNetCore.Razor.Design.props" Condition="Exists('$(NuGetPackageRoot)microsoft.aspnetcore.razor.design\2.2.0\build\netstandard2.0\Microsoft.AspNetCore.Razor.Design.props')" /> <Import Project="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.app\2.2.0\build\netcoreapp2.2\Microsoft.AspNetCore.App.props" Condition="Exists('C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.app\2.2.0\build\netcoreapp2.2\Microsoft.AspNetCore.App.props')" /> </ImportGroup> <PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' "> <PkgMicrosoft_CodeAnalysis_Analyzers Condition=" '$(PkgMicrosoft_CodeAnalysis_Analyzers)' == '' ">C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.codeanalysis.analyzers\1.1.0</PkgMicrosoft_CodeAnalysis_Analyzers> <PkgMicrosoft_EntityFrameworkCore_Tools Condition=" '$(PkgMicrosoft_EntityFrameworkCore_Tools)' == '' ">C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.entityframeworkcore.tools\2.2.0</PkgMicrosoft_EntityFrameworkCore_Tools> - <PkgMicrosoft_AspNetCore_Razor_Design Condition=" '$(PkgMicrosoft_AspNetCore_Razor_Design)' == '' ">C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.aspnetcore.razor.design\2.2.0</PkgMicrosoft_AspNetCore_Razor_Design> + <PkgMicrosoft_AspNetCore_Razor_Design Condition=" '$(PkgMicrosoft_AspNetCore_Razor_Design)' == '' ">C:\Users\0033899\.nuget\packages\microsoft.aspnetcore.razor.design\2.2.0</PkgMicrosoft_AspNetCore_Razor_Design> </PropertyGroup> </Project> \ No newline at end of file diff --git a/GerenciaProjetos/obj/project.assets.json b/GerenciaProjetos/obj/project.assets.json index 59501f8..301a055 100644 --- a/GerenciaProjetos/obj/project.assets.json +++ b/GerenciaProjetos/obj/project.assets.json @@ -8225,7 +8225,7 @@ ] }, "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "sha512": "LdIvj7Bi2jiaNTqY/ezZGVXHe1KI5fjLSI026O1TjVzsmdgTP/zTF+f3nwHCjwttyhsPBEiswv0PekimPWZwWg==", "type": "package", "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", "files": [ @@ -8266,7 +8266,7 @@ ] }, "runtime.native.System.IO.Compression/4.3.0": { - "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "sha512": "b+V9JC/Ii3sR659flBeaBJww111425tgjcDS1k+hqV4sGh9FALRDBvJnDtQ895gAzpPTUOFDHdqaZ2Et7BpZMg==", "type": "package", "path": "runtime.native.system.io.compression/4.3.0", "files": [ @@ -8346,7 +8346,7 @@ ] }, "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "sha512": "Kh9W4agE0r/hK8AX1LvyQI2NrKHBL8pO0gRoDTdDb0LL6Ta1Z2OtFx3lOaAE0ZpCUc/dt9Wzs3rA7a3IsKdOVA==", "type": "package", "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", "files": [ @@ -8385,7 +8385,7 @@ ] }, "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "sha512": "JGc0pAWRE8lB4Ucygk2pYSKbUPLlAIq6Bczf5/WF2D/VKJEPtYlVUMxk8fbl1zRfTWzSHi+VcFZlaPlWiNxeKg==", "type": "package", "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", "files": [ @@ -8747,7 +8747,7 @@ ] }, "System.Collections.Specialized/4.3.0": { - "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", + "sha512": "NoPBj0ykejqAWW4p4gGtrrL+3c84ZLSvGnHgq422ew1Rj4WKj1FA8/BCybqC111EtgcqUl6ZJNFYYS22HLgbjA==", "type": "package", "path": "system.collections.specialized/4.3.0", "files": [ @@ -11416,7 +11416,7 @@ ] }, "System.Runtime.Serialization.Primitives/4.3.0": { - "sha512": "Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==", + "sha512": "2Z5t70a2SwMsfQDp9KOclaZNyQhfIga2gppq9lIUDM1A4ohTshn4JqT7ir8bvIhXgorWKYDAr6rPzEbi/nTGKg==", "type": "package", "path": "system.runtime.serialization.primitives/4.3.0", "files": [ @@ -11742,7 +11742,7 @@ ] }, "System.Security.Cryptography.Csp/4.3.0": { - "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "sha512": "yO2k5o+Z+DiFRBvvB9vdRRAGHi6bm02M9OWXfCqQ8K0UxD3Woc3svQheZfb7PoTEFs0kGacO0IzzMWsb6Mkeow==", "type": "package", "path": "system.security.cryptography.csp/4.3.0", "files": [ @@ -11813,7 +11813,7 @@ ] }, "System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "sha512": "vOYy7Jv9KsG3ld2hLt0GoERd82SZi4BelrbXLwI9yFBYX7kpbvUCWYo4eyevk47cuJXZ9ZLVAryANcc7iY71aA==", "type": "package", "path": "system.security.cryptography.openssl/4.3.0", "files": [ @@ -13015,23 +13015,23 @@ ] }, "packageFolders": { - "C:\\Users\\GuiNerd\\.nuget\\packages\\": {}, + "C:\\Users\\0033899\\.nuget\\packages\\": {}, "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} }, "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\GuiNerd\\source\\repos\\GerenciaProjetos\\GerenciaProjetos\\GerenciaProjetos.csproj", + "projectUniqueName": "C:\\Users\\0033899\\Documents\\GitHub\\GerenciaProjetos\\GerenciaProjetos\\GerenciaProjetos.csproj", "projectName": "GerenciaProjetos", - "projectPath": "C:\\Users\\GuiNerd\\source\\repos\\GerenciaProjetos\\GerenciaProjetos\\GerenciaProjetos.csproj", - "packagesPath": "C:\\Users\\GuiNerd\\.nuget\\packages\\", - "outputPath": "C:\\Users\\GuiNerd\\source\\repos\\GerenciaProjetos\\GerenciaProjetos\\obj\\", + "projectPath": "C:\\Users\\0033899\\Documents\\GitHub\\GerenciaProjetos\\GerenciaProjetos\\GerenciaProjetos.csproj", + "packagesPath": "C:\\Users\\0033899\\.nuget\\packages\\", + "outputPath": "C:\\Users\\0033899\\Documents\\GitHub\\GerenciaProjetos\\GerenciaProjetos\\obj\\", "projectStyle": "PackageReference", "fallbackFolders": [ "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" ], "configFilePaths": [ - "C:\\Users\\GuiNerd\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Users\\0033899\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [