Projeto Controller

This commit is contained in:
GuiNerd
2019-09-22 07:51:57 -03:00
parent 7cf858c004
commit 0fbde86dcc
40 changed files with 3153 additions and 306 deletions

Binary file not shown.

View File

@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using GerenciaProjetos.Models;
using GerenciaContext = GerenciaProjetos.Data.GerenciaContext;
namespace GerenciaProjetos.Controllers
{
public class BugsController : Controller
{
private GerenciaContext ctx;
public BugsController(GerenciaContext ctx)
{
this.ctx = ctx;
Desenvolvedor dev = ctx.Desenvolvedores.Find(1);
}
public IActionResult Index()
{
return View();
}
}
}

View File

@ -0,0 +1,95 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using GerenciaProjetos.Models;
using GerenciaContext = GerenciaProjetos.Data.GerenciaContext;
namespace GerenciaProjetos.Controllers
{
public class DesenvolvedorController : Controller
{
private GerenciaContext ctx;
public DesenvolvedorController(GerenciaContext ctx)
{
this.ctx = ctx;
Desenvolvedor dev = ctx.Desenvolvedores.Find(1);
}
public IActionResult Index()
{
ViewBag.Desenvolvedores = ctx.Desenvolvedores;
return View();
}
public IActionResult New()
{
return View("Form");
}
[HttpPost]
public IActionResult New(Desenvolvedor dev)
{
if (ModelState.IsValid)
{
ctx.Desenvolvedores.Add(dev);
ctx.SaveChanges();
return RedirectToAction("Index", "Home");
}
else
{
return View("Form", dev);
}
}
public IActionResult Edit(int id)
{
Desenvolvedor dev = ctx.Desenvolvedores.Find(id);
if (dev != null)
{
return View("Form", dev);
}
else
{
return RedirectToAction("Index", "Home");
}
}
[HttpPost]
[ValidateAntiForgeryToken]
public IActionResult Edit(Desenvolvedor dev)
{
if (ModelState.IsValid)
{
ctx.Desenvolvedores.Update(dev);
ctx.SaveChanges();
return RedirectToAction("Index", "Home");
}
else
{
return View("Form", dev);
}
}
public IActionResult Del(int id)
{
Desenvolvedor dev = ctx.Desenvolvedores.Find(id);
if (dev != null)
{
ctx.Desenvolvedores.Remove(dev);
ctx.SaveChanges();
}
return RedirectToAction("Index", "Home");
}
}
}

View File

@ -13,7 +13,6 @@ namespace GerenciaProjetos.Controllers
{
private GerenciaContext ctx;
public HomeController(GerenciaContext ctx)
{
this.ctx = ctx;
@ -24,7 +23,8 @@ namespace GerenciaProjetos.Controllers
public IActionResult Index()
{
ViewBag.Desenvolvedores = ctx.Desenvolvedores;
ViewBag.Projetos = ctx.Projetos;
return View();
}
@ -32,74 +32,7 @@ namespace GerenciaProjetos.Controllers
{
return View();
}
/* DESENVOLVEDOR */
public IActionResult AddDev()
{
return View();
}
[HttpPost]
public IActionResult AddDev(Desenvolvedor dev)
{
if (ModelState.IsValid)
{
ctx.Desenvolvedores.Add(dev);
ctx.SaveChanges();
return RedirectToAction("Index", "Home");
}
else
{
return View("AddDev", dev);
}
}
public IActionResult EditDev(int id)
{
Desenvolvedor dev = ctx.Desenvolvedores.Find(id);
if (dev != null)
{
return View("AddDev", dev);
}
else
{
return RedirectToAction("Index", "Home");
}
}
[HttpPost]
[ValidateAntiForgeryToken]
public IActionResult EditDev(Desenvolvedor dev)
{
if (ModelState.IsValid)
{
ctx.Desenvolvedores.Update(dev);
ctx.SaveChanges();
return RedirectToAction("Index", "Home");
}
else
{
return View("AddDev", dev);
}
}
public IActionResult DelDev(int id)
{
Desenvolvedor dev = ctx.Desenvolvedores.Find(id);
if (dev != null)
{
ctx.Desenvolvedores.Remove(dev);
ctx.SaveChanges();
}
return RedirectToAction("Index", "Home");
}
[ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
public IActionResult Error()
{

View File

@ -0,0 +1,95 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using GerenciaProjetos.Models;
using GerenciaContext = GerenciaProjetos.Data.GerenciaContext;
namespace GerenciaProjetos.Controllers
{
public class ProjetosController : Controller
{
private GerenciaContext ctx;
public ProjetosController(GerenciaContext ctx)
{
this.ctx = ctx;
Desenvolvedor dev = ctx.Desenvolvedores.Find(1);
}
public IActionResult Index()
{
ViewBag.Projetos = ctx.Projetos;
return View();
}
public IActionResult New()
{
return View("Form");
}
[HttpPost]
public IActionResult New(Projeto proj)
{
if (ModelState.IsValid)
{
ctx.Projetos.Add(proj);
ctx.SaveChanges();
return RedirectToAction("Index", "Home");
}
else
{
return View("Form", proj);
}
}
public IActionResult Edit(int id)
{
Projeto proj = ctx.Projetos.Find(id);
if (proj != null)
{
return View("Form", proj);
}
else
{
return RedirectToAction("Index", "Home");
}
}
[HttpPost]
[ValidateAntiForgeryToken]
public IActionResult Edit(Projeto proj)
{
if (ModelState.IsValid)
{
ctx.Projetos.Update(proj);
ctx.SaveChanges();
return RedirectToAction("Index", "Home");
}
else
{
return View("Form", proj);
}
}
public IActionResult Del(int id)
{
Projeto proj = ctx.Projetos.Find(id);
if (proj != null)
{
ctx.Projetos.Remove(proj);
ctx.SaveChanges();
}
return RedirectToAction("Index", "Home");
}
}
}

View File

@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using GerenciaProjetos.Models;
using GerenciaContext = GerenciaProjetos.Data.GerenciaContext;
namespace GerenciaProjetos.Controllers
{
public class RequisitosController : Controller
{
private GerenciaContext ctx;
public RequisitosController(GerenciaContext ctx)
{
this.ctx = ctx;
Desenvolvedor dev = ctx.Desenvolvedores.Find(1);
}
public IActionResult Index()
{
return View();
}
}
}

View File

@ -10,6 +10,7 @@
<PackageReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="2.2.0" PrivateAssets="All" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.2.6" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="2.2.3" />
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="2.2.0" />
</ItemGroup>

View File

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<WebStackScaffolding_ViewDialogWidth>600</WebStackScaffolding_ViewDialogWidth>
<WebStackScaffolding_LayoutPageFile>~/Views/Shared/_Layout.cshtml</WebStackScaffolding_LayoutPageFile>
<WebStackScaffolding_IsLayoutPageSelected>True</WebStackScaffolding_IsLayoutPageSelected>
<WebStackScaffolding_IsPartialViewSelected>False</WebStackScaffolding_IsPartialViewSelected>
<WebStackScaffolding_IsReferencingScriptLibrariesSelected>False</WebStackScaffolding_IsReferencingScriptLibrariesSelected>
<Controller_SelectedScaffolderID>MvcControllerEmptyScaffolder</Controller_SelectedScaffolderID>
<Controller_SelectedScaffolderCategoryPath>root/Controller</Controller_SelectedScaffolderCategoryPath>
<WebStackScaffolding_ControllerDialogWidth>600</WebStackScaffolding_ControllerDialogWidth>
<WebStackScaffolding_IsAsyncSelected>False</WebStackScaffolding_IsAsyncSelected>
</PropertyGroup>
</Project>

View File

@ -0,0 +1,35 @@

@{
ViewData["Title"] = "Novo Desenvolvedor";
Layout = "~/Views/Shared/_Layout.cshtml";
}
@model GerenciaProjetos.Models.Desenvolvedor
<h3>@ViewData["Title"]</h3>
<p>Subtitulo.</p>
<section class="py-3">
<div class="card">
<div class="card-body">
<form method="post">
<div class="form-group">
<label>Nome</label>
<input type="text" class="form-control" asp-for="Nome">
</div>
<div class="form-group">
<label>Email</label>
<input type="email" class="form-control" asp-for="Email">
</div>
<div class="form-group">
<label>Senha</label>
<input type="password" class="form-control" asp-for="Senha">
</div>
<div class="text-right">
<a class="btn btn-secondary" asp-area="" asp-controller="Desenvolvedor" asp-action="Index" asp-route-id="">Cancelar</a>
<button type="submit" class="btn btn-primary">Confirmar</button>
</div>
</form>
</div>
</div>
</section>

View File

@ -0,0 +1,66 @@

@{
ViewData["Title"] = "Desenvolvedores";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<h3>@ViewData["Title"]</h3>
<p>Subtitulo.</p>
<section class="py-3">
<div class="card">
<div class="card-header">
<div class="row">
<div class="col-6">
1
</div>
<div class="col-6">
<div class="text-right">
<a asp-area="" asp-controller="Desenvolvedor" asp-action="New">
<i class="fas fa-plus-circle"></i>
</a>
</div>
</div>
</div>
</div>
<table class="table table-borderless table-hover">
<thead class="border-bottom">
<tr>
<th scope="col">#</th>
<th scope="col">Nome</th>
<th scope="col">Email</th>
<th scope="col">Admin</th>
<th scope="col">Opções</th>
</tr>
</thead>
<tbody>
@foreach (Desenvolvedor d in ViewBag.Desenvolvedores)
{
<tr>
<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>
<a asp-area="" asp-controller="Desenvolvedor" asp-action="Edit" asp-route-id="@d.Id">
<i class="fas fa-edit"></i>
</a>
<a asp-area="" asp-controller="Desenvolvedor" asp-action="Del" asp-route-id="@d.Id">
<i class="fas fa-trash"></i>
</a>
</td>
</tr>
}
</tbody>
</table>
</div>
</section>

View File

@ -3,18 +3,18 @@
}
<h3>@ViewData["Title"]</h3>
<p>Manage your account settings, and set up social network integration.</p>
<p>Subtitulo.</p>
<section class="py-3">
<div class="card">
<div class="card-header">
<div class="row">
<div class="col-6">
Desenvolvedores
<a class="text-decoration-none" asp-area="" asp-controller="Desenvolvedor" asp-action="Index">Desenvolvedores</a>
</div>
<div class="col-6">
<div class="text-right">
<a asp-area="" asp-controller="Home" asp-action="AddDev">
<a asp-area="" asp-controller="Desenvolvedor" asp-action="New">
<i class="fas fa-plus-circle"></i>
</a>
</div>
@ -49,10 +49,10 @@
}
</td>
<td>
<a asp-area="" asp-controller="Home" asp-action="EditDev" asp-route-id="@d.Id">
<a asp-area="" asp-controller="Desenvolvedor" asp-action="Edit" asp-route-id="@d.Id">
<i class="fas fa-edit"></i>
</a>
<a asp-area="" asp-controller="Home" asp-action="DelDev" asp-route-id="@d.Id">
<a asp-area="" asp-controller="Desenvolvedor" asp-action="Del" asp-route-id="@d.Id">
<i class="fas fa-trash"></i>
</a>
</td>
@ -68,11 +68,11 @@
<div class="card-header">
<div class="row">
<div class="col-6">
Projetos
<a class="text-decoration-none" asp-area="" asp-controller="Projetos" asp-action="Index">Projetos</a>
</div>
<div class="col-6">
<div class="text-right">
<a asp-area="" asp-controller="Home" asp-action="Index">
<a asp-area="" asp-controller="Projetos" asp-action="New">
<i class="fas fa-plus-circle"></i>
</a>
</div>
@ -90,20 +90,23 @@
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Guilherme</td>
<td>Abril</td>
<td>Kewin</td>
<td>
<a asp-area="" asp-controller="Home" asp-action="" asp-route-id="u.Id">
<i class="fas fa-edit"></i>
</a>
<a asp-area="" asp-controller="Home" asp-action="" asp-route-id="u.Id">
<i class="fas fa-trash"></i>
</a>
</td>
</tr>
@foreach (Projeto p in ViewBag.Projetos)
{
<tr>
<td>@p.Id</td>
<td>@p.Nome</td>
<td>@p.DataEntrega</td>
<td>@p.Solicitante</td>
<td>
<a asp-area="" asp-controller="Projetos" asp-action="Edit" asp-route-id="@p.Id">
<i class="fas fa-edit"></i>
</a>
<a asp-area="" asp-controller="Projetos" asp-action="Del" asp-route-id="@p.Id">
<i class="fas fa-trash"></i>
</a>
</td>
</tr>
}
</tbody>
</table>
</div>

View File

@ -0,0 +1,35 @@

@{
ViewData["Title"] = "Novo Projeto";
Layout = "~/Views/Shared/_Layout.cshtml";
}
@model GerenciaProjetos.Models.Projeto
<h3>@ViewData["Title"]</h3>
<p>Subtitulo.</p>
<section class="py-3">
<div class="card">
<div class="card-body">
<form method="post">
<div class="form-group">
<label>Nome</label>
<input type="text" class="form-control" asp-for="Nome">
</div>
<div class="form-group">
<label>Data de Entrega</label>
<input type="date" class="form-control" asp-for="DataEntrega">
</div>
<div class="form-group">
<label>Solicitante</label>
<input type="text" class="form-control" asp-for="Solicitante">
</div>
<div class="text-right">
<a class="btn btn-secondary" asp-area="" asp-controller="Projetos" asp-action="Index" asp-route-id="">Cancelar</a>
<button type="submit" class="btn btn-primary">Confirmar</button>
</div>
</form>
</div>
</div>
</section>

View File

@ -0,0 +1,57 @@

@{
ViewData["Title"] = "Projetos";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<h3>@ViewData["Title"]</h3>
<p>Subtitulo.</p>
<section class="py-3">
<div class="card">
<div class="card-header">
<div class="row">
<div class="col-6">
1
</div>
<div class="col-6">
<div class="text-right">
<a asp-area="" asp-controller="Projetos" asp-action="New">
<i class="fas fa-plus-circle"></i>
</a>
</div>
</div>
</div>
</div>
<table class="table table-borderless table-hover">
<thead class="border-bottom">
<tr>
<th scope="col">#</th>
<th scope="col">Nome</th>
<th scope="col">Data de Entrega</th>
<th scope="col">Solicitante</th>
<th scope="col">Opções</th>
</tr>
</thead>
<tbody>
@foreach (Projeto p in ViewBag.Projetos)
{
<tr>
<td>@p.Id</td>
<td>@p.Nome</td>
<td>@p.DataEntrega</td>
<td>@p.Solicitante</td>
<td>
<a asp-area="" asp-controller="Projetos" asp-action="Edit" asp-route-id="@p.Id">
<i class="fas fa-edit"></i>
</a>
<a asp-area="" asp-controller="Projetos" asp-action="Del" asp-route-id="@p.Id">
<i class="fas fa-trash"></i>
</a>
</td>
</tr>
}
</tbody>
</table>
</div>
</section>

View File

@ -21,7 +21,7 @@
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg navbar-light bg-light border-bottom box-shadow mb-3">
<nav class="navbar navbar-expand-lg navbar-light bg-light border-bottom box-shadow mb-4">
<div class="container">
<a class="navbar-brand" asp-area="" asp-controller="Home" asp-action="Index">
<img src="~/img/brand.png" width="26" height="30" class="d-inline-block align-top">

View File

@ -1,7 +1,7 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v2.2",
"signature": "63e70348075e49edde575e5437252670cba79137"
"signature": "32afd740e7c16fffba38280c8f2b63418c061da8"
},
"compilationOptions": {
"defines": [
@ -28,6 +28,7 @@
"Microsoft.AspNetCore.Razor.Design": "2.2.0",
"Microsoft.EntityFrameworkCore": "2.2.6",
"Microsoft.NETCore.App": "2.2.0",
"Microsoft.VisualStudio.Web.CodeGeneration.Design": "2.2.3",
"Pomelo.EntityFrameworkCore.MySql": "2.2.0"
},
"runtime": {
@ -37,6 +38,41 @@
"GerenciaProjetos.dll": {}
}
},
"Microsoft.CodeAnalysis.CSharp.Workspaces/2.8.0": {
"dependencies": {
"Microsoft.CodeAnalysis.CSharp": "2.8.0",
"Microsoft.CodeAnalysis.Workspaces.Common": "2.8.0"
},
"runtime": {
"lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {
"assemblyVersion": "2.8.0.0",
"fileVersion": "2.8.0.62830"
}
},
"compile": {
"lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {}
}
},
"Microsoft.CodeAnalysis.Workspaces.Common/2.8.0": {
"dependencies": {
"Microsoft.CodeAnalysis.Common": "2.8.0",
"System.Composition": "1.0.31",
"System.Diagnostics.Contracts": "4.3.0",
"System.Linq.Parallel": "4.3.0",
"System.ObjectModel": "4.3.0",
"System.Text.RegularExpressions": "4.3.0",
"System.Threading.Tasks.Parallel": "4.3.0"
},
"runtime": {
"lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll": {
"assemblyVersion": "2.8.0.0",
"fileVersion": "2.8.0.62830"
}
},
"compile": {
"lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll": {}
}
},
"Microsoft.EntityFrameworkCore/2.2.6": {
"dependencies": {
"Microsoft.EntityFrameworkCore.Abstractions": "2.2.6",
@ -72,6 +108,126 @@
}
},
"Microsoft.EntityFrameworkCore.Analyzers/2.2.6": {},
"Microsoft.VisualStudio.Web.CodeGeneration/2.2.3": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection": "2.2.0",
"Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "2.2.3"
},
"runtime": {
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {
"assemblyVersion": "2.2.3.0",
"fileVersion": "2.2.3.0"
}
},
"compile": {
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {}
}
},
"Microsoft.VisualStudio.Web.CodeGeneration.Contracts/2.2.3": {
"dependencies": {
"Newtonsoft.Json": "11.0.2"
},
"runtime": {
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": {
"assemblyVersion": "2.2.3.0",
"fileVersion": "2.2.3.0"
}
},
"compile": {
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": {}
}
},
"Microsoft.VisualStudio.Web.CodeGeneration.Core/2.2.3": {
"dependencies": {
"Microsoft.Extensions.DependencyInjection": "2.2.0",
"Microsoft.VisualStudio.Web.CodeGeneration.Templating": "2.2.3",
"Newtonsoft.Json": "11.0.2"
},
"runtime": {
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {
"assemblyVersion": "2.2.3.0",
"fileVersion": "2.2.3.0"
}
},
"compile": {
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {}
}
},
"Microsoft.VisualStudio.Web.CodeGeneration.Design/2.2.3": {
"dependencies": {
"Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "2.2.3"
},
"runtime": {
"lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll": {
"assemblyVersion": "2.2.3.0",
"fileVersion": "2.2.3.0"
}
},
"compile": {
"lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll": {}
}
},
"Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/2.2.3": {
"dependencies": {
"Microsoft.VisualStudio.Web.CodeGeneration.Core": "2.2.3"
},
"runtime": {
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {
"assemblyVersion": "2.2.3.0",
"fileVersion": "2.2.3.0"
}
},
"compile": {
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {}
}
},
"Microsoft.VisualStudio.Web.CodeGeneration.Templating/2.2.3": {
"dependencies": {
"Microsoft.AspNetCore.Razor.Language": "2.2.0",
"Microsoft.CodeAnalysis.CSharp": "2.8.0",
"Microsoft.VisualStudio.Web.CodeGeneration.Utils": "2.2.3"
},
"runtime": {
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {
"assemblyVersion": "2.2.3.0",
"fileVersion": "2.2.3.0"
}
},
"compile": {
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {}
}
},
"Microsoft.VisualStudio.Web.CodeGeneration.Utils/2.2.3": {
"dependencies": {
"Microsoft.CodeAnalysis.CSharp.Workspaces": "2.8.0",
"Microsoft.VisualStudio.Web.CodeGeneration.Contracts": "2.2.3",
"Newtonsoft.Json": "11.0.2",
"NuGet.Frameworks": "4.7.0"
},
"runtime": {
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {
"assemblyVersion": "2.2.3.0",
"fileVersion": "2.2.3.0"
}
},
"compile": {
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {}
}
},
"Microsoft.VisualStudio.Web.CodeGenerators.Mvc/2.2.3": {
"dependencies": {
"Microsoft.VisualStudio.Web.CodeGeneration": "2.2.3"
},
"runtime": {
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {
"assemblyVersion": "2.2.3.0",
"fileVersion": "2.2.3.0"
}
},
"compile": {
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {}
}
},
"MySqlConnector/0.49.2": {
"runtime": {
"lib/netcoreapp2.1/MySqlConnector.dll": {
@ -83,6 +239,20 @@
"lib/netcoreapp2.1/MySqlConnector.dll": {}
}
},
"NuGet.Frameworks/4.7.0": {
"dependencies": {
"NETStandard.Library": "2.0.3"
},
"runtime": {
"lib/netstandard1.6/NuGet.Frameworks.dll": {
"assemblyVersion": "4.7.0.5",
"fileVersion": "4.7.0.5148"
}
},
"compile": {
"lib/netstandard1.6/NuGet.Frameworks.dll": {}
}
},
"Pomelo.EntityFrameworkCore.MySql/2.2.0": {
"dependencies": {
"Microsoft.EntityFrameworkCore.Relational": "2.2.0",
@ -139,6 +309,129 @@
}
},
"System.Collections.Immutable/1.5.0": {},
"System.Composition/1.0.31": {
"dependencies": {
"System.Composition.AttributedModel": "1.0.31",
"System.Composition.Convention": "1.0.31",
"System.Composition.Hosting": "1.0.31",
"System.Composition.Runtime": "1.0.31",
"System.Composition.TypedParts": "1.0.31"
}
},
"System.Composition.AttributedModel/1.0.31": {
"dependencies": {
"System.Reflection": "4.3.0",
"System.Runtime": "4.3.0"
},
"runtime": {
"lib/netstandard1.0/System.Composition.AttributedModel.dll": {
"assemblyVersion": "1.0.31.0",
"fileVersion": "4.6.24705.1"
}
},
"compile": {
"lib/netstandard1.0/System.Composition.AttributedModel.dll": {}
}
},
"System.Composition.Convention/1.0.31": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Composition.AttributedModel": "1.0.31",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.Tools": "4.3.0",
"System.Globalization": "4.3.0",
"System.Linq": "4.3.0",
"System.Linq.Expressions": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading": "4.3.0"
},
"runtime": {
"lib/netstandard1.0/System.Composition.Convention.dll": {
"assemblyVersion": "1.0.31.0",
"fileVersion": "4.6.24705.1"
}
},
"compile": {
"lib/netstandard1.0/System.Composition.Convention.dll": {}
}
},
"System.Composition.Hosting/1.0.31": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Composition.Runtime": "1.0.31",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.Tools": "4.3.0",
"System.Globalization": "4.3.0",
"System.Linq": "4.3.0",
"System.Linq.Expressions": "4.3.0",
"System.ObjectModel": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading": "4.3.0"
},
"runtime": {
"lib/netstandard1.0/System.Composition.Hosting.dll": {
"assemblyVersion": "1.0.31.0",
"fileVersion": "4.6.24705.1"
}
},
"compile": {
"lib/netstandard1.0/System.Composition.Hosting.dll": {}
}
},
"System.Composition.Runtime/1.0.31": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.Tools": "4.3.0",
"System.Globalization": "4.3.0",
"System.Linq": "4.3.0",
"System.Reflection": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0"
},
"runtime": {
"lib/netstandard1.0/System.Composition.Runtime.dll": {
"assemblyVersion": "1.0.31.0",
"fileVersion": "4.6.24705.1"
}
},
"compile": {
"lib/netstandard1.0/System.Composition.Runtime.dll": {}
}
},
"System.Composition.TypedParts/1.0.31": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Composition.AttributedModel": "1.0.31",
"System.Composition.Hosting": "1.0.31",
"System.Composition.Runtime": "1.0.31",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.Tools": "4.3.0",
"System.Globalization": "4.3.0",
"System.Linq": "4.3.0",
"System.Linq.Expressions": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0"
},
"runtime": {
"lib/netstandard1.0/System.Composition.TypedParts.dll": {
"assemblyVersion": "1.0.31.0",
"fileVersion": "4.6.24705.1"
}
},
"compile": {
"lib/netstandard1.0/System.Composition.TypedParts.dll": {}
}
},
"System.Interactive.Async/3.2.0": {
"runtime": {
"lib/netstandard2.0/System.Interactive.Async.dll": {
@ -150,6 +443,20 @@
"lib/netstandard2.0/System.Interactive.Async.dll": {}
}
},
"System.Linq.Parallel/4.3.0": {
"dependencies": {
"System.Collections": "4.3.0",
"System.Collections.Concurrent": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.Tracing": "4.3.0",
"System.Linq": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0"
}
},
"System.Linq.Queryable/4.0.1": {
"dependencies": {
"System.Collections": "4.3.0",
@ -3296,6 +3603,20 @@
"serviceable": false,
"sha512": ""
},
"Microsoft.CodeAnalysis.CSharp.Workspaces/2.8.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-EJWaxi2bI47iEZen/nZkJEDZCrP9Oj3PJtMwBv34Z0ZvvdSkpgsdqlHSud8d5vC53LnCXLfBLewfqHcILDVSDw==",
"path": "microsoft.codeanalysis.csharp.workspaces/2.8.0",
"hashPath": "microsoft.codeanalysis.csharp.workspaces.2.8.0.nupkg.sha512"
},
"Microsoft.CodeAnalysis.Workspaces.Common/2.8.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-tJlJ99SD8bHBAXShOG/pXQ1K118cnsF01obEf9aAtdgLbw3yEPahZ7qvWeGMjrheUhvOsSkv/wTKYg9euKa8MQ==",
"path": "microsoft.codeanalysis.workspaces.common/2.8.0",
"hashPath": "microsoft.codeanalysis.workspaces.common.2.8.0.nupkg.sha512"
},
"Microsoft.EntityFrameworkCore/2.2.6": {
"type": "package",
"serviceable": true,
@ -3317,6 +3638,62 @@
"path": "microsoft.entityframeworkcore.analyzers/2.2.6",
"hashPath": "microsoft.entityframeworkcore.analyzers.2.2.6.nupkg.sha512"
},
"Microsoft.VisualStudio.Web.CodeGeneration/2.2.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-wc71c9HWTeXy9/w9O4Yr2LKmdJjVyIoJ/XQX8/6uma4EAVU25RLtUWlvhA0gpgFw9Kf1TkCv70x+CbKnRw/d8Q==",
"path": "microsoft.visualstudio.web.codegeneration/2.2.3",
"hashPath": "microsoft.visualstudio.web.codegeneration.2.2.3.nupkg.sha512"
},
"Microsoft.VisualStudio.Web.CodeGeneration.Contracts/2.2.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-wXlpxDfRD5aPypa0p0UE97tkRQvAz9D9FfA2GITzr+LlGIpybyGnxkwGVp0Vha1Ibr0kJG0HdnqfeHME/WuAcQ==",
"path": "microsoft.visualstudio.web.codegeneration.contracts/2.2.3",
"hashPath": "microsoft.visualstudio.web.codegeneration.contracts.2.2.3.nupkg.sha512"
},
"Microsoft.VisualStudio.Web.CodeGeneration.Core/2.2.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-APdPavBUYcGPBaW4rjxBVRePWmg0ZzhIRymOzvLFWUtzfvJKw1+8PaCzsH7Uvl+felm0L1UVQwBx1Do0R7j7Xg==",
"path": "microsoft.visualstudio.web.codegeneration.core/2.2.3",
"hashPath": "microsoft.visualstudio.web.codegeneration.core.2.2.3.nupkg.sha512"
},
"Microsoft.VisualStudio.Web.CodeGeneration.Design/2.2.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-xH50cYOU+infRq4KikBuu2qeXcwW4tE0D5TDfKLuLrEtDm90aXI+0qygPsqyISf+lOW7L7rQ64BH/dRYkK3c3Q==",
"path": "microsoft.visualstudio.web.codegeneration.design/2.2.3",
"hashPath": "microsoft.visualstudio.web.codegeneration.design.2.2.3.nupkg.sha512"
},
"Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/2.2.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-N9S7TeFZjXzNY9OVbz4OFw9cM9oEeMaCnuLFhetNioy/wPwZbgglrctAEYxfDbvocQ17YCAVR2EMRbYHNDHyVg==",
"path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/2.2.3",
"hashPath": "microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.2.3.nupkg.sha512"
},
"Microsoft.VisualStudio.Web.CodeGeneration.Templating/2.2.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-sW2lHnOoL1xFnSm/2zSedeUoQPlbhPfWjSuUYsxYUj/N5QmLmH98ZLaqP26k6Om/heR6Gux/veXI96yM1Parow==",
"path": "microsoft.visualstudio.web.codegeneration.templating/2.2.3",
"hashPath": "microsoft.visualstudio.web.codegeneration.templating.2.2.3.nupkg.sha512"
},
"Microsoft.VisualStudio.Web.CodeGeneration.Utils/2.2.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-/r/y+XpOpbCwN/M/HopjfGTDRlmixTd4G6HG6FaBkD/YF3T1u+4WMRVtuB6zz7aw571HmX+6UokEa6HJSwkPDA==",
"path": "microsoft.visualstudio.web.codegeneration.utils/2.2.3",
"hashPath": "microsoft.visualstudio.web.codegeneration.utils.2.2.3.nupkg.sha512"
},
"Microsoft.VisualStudio.Web.CodeGenerators.Mvc/2.2.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-0gVuA4KUCHFM4M/9SjG+7j7BzZ7SW/BufF97Q78i2VV8JBbQXc/5Rf6YUG1VGW2fwSEOl9+S26utEGS+86GGGw==",
"path": "microsoft.visualstudio.web.codegenerators.mvc/2.2.3",
"hashPath": "microsoft.visualstudio.web.codegenerators.mvc.2.2.3.nupkg.sha512"
},
"MySqlConnector/0.49.2": {
"type": "package",
"serviceable": true,
@ -3324,6 +3701,13 @@
"path": "mysqlconnector/0.49.2",
"hashPath": "mysqlconnector.0.49.2.nupkg.sha512"
},
"NuGet.Frameworks/4.7.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-qbXaB76XYUVLocLBs8Z9TS/ERGK2wm797feO+0JEPFvT7o7MRadOR77mqaSD4J1k8G+DlZQyq+MlkCuxrkr3ag==",
"path": "nuget.frameworks/4.7.0",
"hashPath": "nuget.frameworks.4.7.0.nupkg.sha512"
},
"Pomelo.EntityFrameworkCore.MySql/2.2.0": {
"type": "package",
"serviceable": true,
@ -3352,6 +3736,48 @@
"path": "system.collections.immutable/1.5.0",
"hashPath": "system.collections.immutable.1.5.0.nupkg.sha512"
},
"System.Composition/1.0.31": {
"type": "package",
"serviceable": true,
"sha512": "sha512-I+D26qpYdoklyAVUdqwUBrEIckMNjAYnuPJy/h9dsQItpQwVREkDFs4b4tkBza0kT2Yk48Lcfsv2QQ9hWsh9Iw==",
"path": "system.composition/1.0.31",
"hashPath": "system.composition.1.0.31.nupkg.sha512"
},
"System.Composition.AttributedModel/1.0.31": {
"type": "package",
"serviceable": true,
"sha512": "sha512-NHWhkM3ZkspmA0XJEsKdtTt1ViDYuojgSND3yHhTzwxepiwqZf+BCWuvCbjUt4fe0NxxQhUDGJ5km6sLjo9qnQ==",
"path": "system.composition.attributedmodel/1.0.31",
"hashPath": "system.composition.attributedmodel.1.0.31.nupkg.sha512"
},
"System.Composition.Convention/1.0.31": {
"type": "package",
"serviceable": true,
"sha512": "sha512-GLjh2Ju71k6C0qxMMtl4efHa68NmWeIUYh4fkUI8xbjQrEBvFmRwMDFcylT8/PR9SQbeeL48IkFxU/+gd0nYEQ==",
"path": "system.composition.convention/1.0.31",
"hashPath": "system.composition.convention.1.0.31.nupkg.sha512"
},
"System.Composition.Hosting/1.0.31": {
"type": "package",
"serviceable": true,
"sha512": "sha512-fN1bT4RX4vUqjbgoyuJFVUizAl2mYF5VAb+bVIxIYZSSc0BdnX+yGAxcavxJuDDCQ1K+/mdpgyEFc8e9ikjvrg==",
"path": "system.composition.hosting/1.0.31",
"hashPath": "system.composition.hosting.1.0.31.nupkg.sha512"
},
"System.Composition.Runtime/1.0.31": {
"type": "package",
"serviceable": true,
"sha512": "sha512-0LEJN+2NVM89CE4SekDrrk5tHV5LeATltkp+9WNYrR+Huiyt0vaCqHbbHtVAjPyeLWIc8dOz/3kthRBj32wGQg==",
"path": "system.composition.runtime/1.0.31",
"hashPath": "system.composition.runtime.1.0.31.nupkg.sha512"
},
"System.Composition.TypedParts/1.0.31": {
"type": "package",
"serviceable": true,
"sha512": "sha512-0Zae/FtzeFgDBBuILeIbC/T9HMYbW4olAmi8XqqAGosSOWvXfiQLfARZEhiGd0LVXaYgXr0NhxiU1LldRP1fpQ==",
"path": "system.composition.typedparts/1.0.31",
"hashPath": "system.composition.typedparts.1.0.31.nupkg.sha512"
},
"System.Interactive.Async/3.2.0": {
"type": "package",
"serviceable": true,
@ -3359,6 +3785,13 @@
"path": "system.interactive.async/3.2.0",
"hashPath": "system.interactive.async.3.2.0.nupkg.sha512"
},
"System.Linq.Parallel/4.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-td7x21K8LalpjTWCzW/nQboQIFbq9i0r+PCyBBCdLWWnm4NBcdN18vpz/G9hCpUaCIfRL+ZxJNVTywlNlB1aLQ==",
"path": "system.linq.parallel/4.3.0",
"hashPath": "system.linq.parallel.4.3.0.nupkg.sha512"
},
"System.Linq.Queryable/4.0.1": {
"type": "package",
"serviceable": true,

View File

@ -1 +1 @@
2d6400a63ce9d3b0c6462f004633b22ee764199c
3a714c107c0af5d5192b9c3d4223616742a7a19b

View File

@ -1 +1 @@
cb54e8c0ad313c3e8bad7f8667e573792fdbb7c8
ff50667ca31c6dbbd4891735f4fa8424843a1222

View File

@ -28,3 +28,7 @@ C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcor
C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\GerenciaProjetos.dll
C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\GerenciaProjetos.pdb
C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\GerenciaProjetos.csproj.CopyComplete
C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Desenvolvedor\Form.g.cshtml.cs
C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Desenvolvedor\Index.g.cshtml.cs
C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Projetos\Form.g.cshtml.cs
C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\obj\Debug\netcoreapp2.2\Razor\Views\Projetos\Index.g.cshtml.cs

View File

@ -0,0 +1,240 @@
#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Form.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "c79f14d0f2709a2a063def6f4fc2eee89652cc8c"
// <auto-generated/>
#pragma warning disable 1591
[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Desenvolvedor_Form), @"mvc.1.0.view", @"/Views/Desenvolvedor/Form.cshtml")]
[assembly:global::Microsoft.AspNetCore.Mvc.Razor.Compilation.RazorViewAttribute(@"/Views/Desenvolvedor/Form.cshtml", typeof(AspNetCore.Views_Desenvolvedor_Form))]
namespace AspNetCore
{
#line hidden
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.Rendering;
using Microsoft.AspNetCore.Mvc.ViewFeatures;
#line 1 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml"
using GerenciaProjetos;
#line default
#line hidden
#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml"
using GerenciaProjetos.Models;
#line default
#line hidden
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"c79f14d0f2709a2a063def6f4fc2eee89652cc8c", @"/Views/Desenvolvedor/Form.cshtml")]
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"4e94bb8cdb3ef35824e862096b8a713c8ba822eb", @"/Views/_ViewImports.cshtml")]
public class Views_Desenvolvedor_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", "Desenvolvedor", 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);
#line hidden
#pragma warning disable 0169
private string __tagHelperStringValueBuffer;
#pragma warning restore 0169
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext __tagHelperExecutionContext;
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner __tagHelperRunner = new global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner();
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager __backed__tagHelperScopeManager = null;
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager __tagHelperScopeManager
{
get
{
if (__backed__tagHelperScopeManager == null)
{
__backed__tagHelperScopeManager = new global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager(StartTagHelperWritingScope, EndTagHelperWritingScope);
}
return __backed__tagHelperScopeManager;
}
}
private global::Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper;
private global::Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper;
private global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper;
private global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper;
#pragma warning disable 1998
public async override global::System.Threading.Tasks.Task ExecuteAsync()
{
BeginContext(0, 2, true);
WriteLiteral("\r\n");
EndContext();
#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Form.cshtml"
ViewData["Title"] = "Novo Desenvolvedor";
Layout = "~/Views/Shared/_Layout.cshtml";
#line default
#line hidden
BeginContext(103, 2, true);
WriteLiteral("\r\n");
EndContext();
BeginContext(151, 6, true);
WriteLiteral("\r\n<h3>");
EndContext();
BeginContext(158, 17, false);
#line 9 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Form.cshtml"
Write(ViewData["Title"]);
#line default
#line hidden
EndContext();
BeginContext(175, 121, true);
WriteLiteral("</h3>\r\n<p>Subtitulo.</p>\r\n\r\n<section class=\"py-3\">\r\n <div class=\"card\">\r\n <div class=\"card-body\">\r\n ");
EndContext();
BeginContext(296, 895, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "c79f14d0f2709a2a063def6f4fc2eee89652cc8c7718", async() => {
BeginContext(316, 105, true);
WriteLiteral("\r\n <div class=\"form-group\">\r\n <label>Nome</label>\r\n ");
EndContext();
BeginContext(421, 55, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "c79f14d0f2709a2a063def6f4fc2eee89652cc8c8210", 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_0.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_1);
#line 18 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Form.cshtml"
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.Nome);
#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(476, 130, true);
WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <label>Email</label>\r\n ");
EndContext();
BeginContext(606, 57, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "c79f14d0f2709a2a063def6f4fc2eee89652cc8c10267", 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);
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_1);
#line 22 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Form.cshtml"
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.Email);
#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(663, 130, true);
WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <label>Senha</label>\r\n ");
EndContext();
BeginContext(793, 60, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "c79f14d0f2709a2a063def6f4fc2eee89652cc8c12326", 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_1);
#line 26 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Form.cshtml"
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.Senha);
#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(853, 88, true);
WriteLiteral("\r\n </div>\r\n <div class=\"text-right\">\r\n ");
EndContext();
BeginContext(941, 119, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "c79f14d0f2709a2a063def6f4fc2eee89652cc8c14341", async() => {
BeginContext(1048, 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);
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);
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
if (!__tagHelperExecutionContext.Output.IsContentModified)
{
await __tagHelperExecutionContext.SetOutputContentAsync();
}
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(1060, 124, true);
WriteLiteral("\r\n <button type=\"submit\" class=\"btn btn-primary\">Confirmar</button>\r\n </div>\r\n ");
EndContext();
}
);
__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper>();
__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);
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
if (!__tagHelperExecutionContext.Output.IsContentModified)
{
await __tagHelperExecutionContext.SetOutputContentAsync();
}
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(1191, 40, true);
WriteLiteral("\r\n </div>\r\n </div>\r\n</section>");
EndContext();
}
#pragma warning restore 1998
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
public global::Microsoft.AspNetCore.Mvc.ViewFeatures.IModelExpressionProvider ModelExpressionProvider { get; private set; }
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
public global::Microsoft.AspNetCore.Mvc.IUrlHelper Url { get; private set; }
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
public global::Microsoft.AspNetCore.Mvc.IViewComponentHelper Component { get; private set; }
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
public global::Microsoft.AspNetCore.Mvc.Rendering.IJsonHelper Json { get; private set; }
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
public global::Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper<GerenciaProjetos.Models.Desenvolvedor> Html { get; private set; }
}
}
#pragma warning restore 1591

View File

@ -0,0 +1,300 @@
#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "09e1c52fc1e9a1f19f2996eaad5d734e55ca3559"
// <auto-generated/>
#pragma warning disable 1591
[assembly: global::Microsoft.AspNetCore.Razor.Hosting.RazorCompiledItemAttribute(typeof(AspNetCore.Views_Desenvolvedor_Index), @"mvc.1.0.view", @"/Views/Desenvolvedor/Index.cshtml")]
[assembly:global::Microsoft.AspNetCore.Mvc.Razor.Compilation.RazorViewAttribute(@"/Views/Desenvolvedor/Index.cshtml", typeof(AspNetCore.Views_Desenvolvedor_Index))]
namespace AspNetCore
{
#line hidden
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.Rendering;
using Microsoft.AspNetCore.Mvc.ViewFeatures;
#line 1 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml"
using GerenciaProjetos;
#line default
#line hidden
#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml"
using GerenciaProjetos.Models;
#line default
#line hidden
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"09e1c52fc1e9a1f19f2996eaad5d734e55ca3559", @"/Views/Desenvolvedor/Index.cshtml")]
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"4e94bb8cdb3ef35824e862096b8a713c8ba822eb", @"/Views/_ViewImports.cshtml")]
public class Views_Desenvolvedor_Index : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage<dynamic>
{
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_0 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-area", "", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_1 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Desenvolvedor", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_2 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "New", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_3 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Edit", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_4 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Del", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
#line hidden
#pragma warning disable 0169
private string __tagHelperStringValueBuffer;
#pragma warning restore 0169
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext __tagHelperExecutionContext;
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner __tagHelperRunner = new global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner();
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager __backed__tagHelperScopeManager = null;
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager __tagHelperScopeManager
{
get
{
if (__backed__tagHelperScopeManager == null)
{
__backed__tagHelperScopeManager = new global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager(StartTagHelperWritingScope, EndTagHelperWritingScope);
}
return __backed__tagHelperScopeManager;
}
}
private global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper;
#pragma warning disable 1998
public async override global::System.Threading.Tasks.Task ExecuteAsync()
{
BeginContext(0, 2, true);
WriteLiteral("\r\n");
EndContext();
#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Index.cshtml"
ViewData["Title"] = "Desenvolvedores";
Layout = "~/Views/Shared/_Layout.cshtml";
#line default
#line hidden
BeginContext(100, 6, true);
WriteLiteral("\r\n<h3>");
EndContext();
BeginContext(107, 17, false);
#line 7 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Index.cshtml"
Write(ViewData["Title"]);
#line default
#line hidden
EndContext();
BeginContext(124, 333, true);
WriteLiteral(@"</h3>
<p>Subtitulo.</p>
<section class=""py-3"">
<div class=""card"">
<div class=""card-header"">
<div class=""row"">
<div class=""col-6"">
1
</div>
<div class=""col-6"">
<div class=""text-right"">
");
EndContext();
BeginContext(457, 157, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "09e1c52fc1e9a1f19f2996eaad5d734e55ca35595798", async() => {
BeginContext(520, 90, true);
WriteLiteral("\r\n <i class=\"fas fa-plus-circle\"></i>\r\n ");
EndContext();
}
);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_0.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_1.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_2.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_2);
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
if (!__tagHelperExecutionContext.Output.IsContentModified)
{
await __tagHelperExecutionContext.SetOutputContentAsync();
}
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(614, 517, true);
WriteLiteral(@"
</div>
</div>
</div>
</div>
<table class=""table table-borderless table-hover"">
<thead class=""border-bottom"">
<tr>
<th scope=""col"">#</th>
<th scope=""col"">Nome</th>
<th scope=""col"">Email</th>
<th scope=""col"">Admin</th>
<th scope=""col"">Opções</th>
</tr>
</thead>
<tbody>
");
EndContext();
#line 37 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Index.cshtml"
foreach (Desenvolvedor d in ViewBag.Desenvolvedores)
{
#line default
#line hidden
BeginContext(1221, 54, true);
WriteLiteral(" <tr>\r\n <td>");
EndContext();
BeginContext(1276, 4, false);
#line 40 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Index.cshtml"
Write(d.Id);
#line default
#line hidden
EndContext();
BeginContext(1280, 35, true);
WriteLiteral("</td>\r\n <td>");
EndContext();
BeginContext(1316, 6, false);
#line 41 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Index.cshtml"
Write(d.Nome);
#line default
#line hidden
EndContext();
BeginContext(1322, 35, true);
WriteLiteral("</td>\r\n <td>");
EndContext();
BeginContext(1358, 7, false);
#line 42 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Index.cshtml"
Write(d.Email);
#line default
#line hidden
EndContext();
BeginContext(1365, 37, true);
WriteLiteral("</td>\r\n <td>\r\n");
EndContext();
#line 44 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Index.cshtml"
if (d.EAdmin == true)
{
#line default
#line hidden
BeginContext(1485, 50, true);
WriteLiteral(" <span>Sim</span>\r\n");
EndContext();
#line 47 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Index.cshtml"
}
else
{
#line default
#line hidden
BeginContext(1631, 50, true);
WriteLiteral(" <span>Não</span>\r\n");
EndContext();
#line 51 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Index.cshtml"
}
#line default
#line hidden
BeginContext(1712, 89, true);
WriteLiteral(" </td>\r\n <td>\r\n ");
EndContext();
BeginContext(1801, 180, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "09e1c52fc1e9a1f19f2996eaad5d734e55ca355910877", async() => {
BeginContext(1886, 91, true);
WriteLiteral("\r\n <i class=\"fas fa-edit\"></i>\r\n ");
EndContext();
}
);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_0.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_1.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_3.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_3);
if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null)
{
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
}
BeginWriteTagHelperAttribute();
#line 54 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Index.cshtml"
WriteLiteral(d.Id);
#line default
#line hidden
__tagHelperStringValueBuffer = EndWriteTagHelperAttribute();
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = __tagHelperStringValueBuffer;
__tagHelperExecutionContext.AddTagHelperAttribute("asp-route-id", __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"], global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
if (!__tagHelperExecutionContext.Output.IsContentModified)
{
await __tagHelperExecutionContext.SetOutputContentAsync();
}
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(1981, 30, true);
WriteLiteral("\r\n ");
EndContext();
BeginContext(2011, 180, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "09e1c52fc1e9a1f19f2996eaad5d734e55ca355913803", async() => {
BeginContext(2095, 92, true);
WriteLiteral("\r\n <i class=\"fas fa-trash\"></i>\r\n ");
EndContext();
}
);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_0.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_1.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_4.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_4);
if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null)
{
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
}
BeginWriteTagHelperAttribute();
#line 57 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Index.cshtml"
WriteLiteral(d.Id);
#line default
#line hidden
__tagHelperStringValueBuffer = EndWriteTagHelperAttribute();
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = __tagHelperStringValueBuffer;
__tagHelperExecutionContext.AddTagHelperAttribute("asp-route-id", __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"], global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
if (!__tagHelperExecutionContext.Output.IsContentModified)
{
await __tagHelperExecutionContext.SetOutputContentAsync();
}
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(2191, 60, true);
WriteLiteral("\r\n </td>\r\n </tr>\r\n");
EndContext();
#line 62 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Desenvolvedor\Index.cshtml"
}
#line default
#line hidden
BeginContext(2270, 62, true);
WriteLiteral(" </tbody>\r\n </table>\r\n </div>\r\n</section>");
EndContext();
}
#pragma warning restore 1998
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
public global::Microsoft.AspNetCore.Mvc.ViewFeatures.IModelExpressionProvider ModelExpressionProvider { get; private set; }
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
public global::Microsoft.AspNetCore.Mvc.IUrlHelper Url { get; private set; }
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
public global::Microsoft.AspNetCore.Mvc.IViewComponentHelper Component { get; private set; }
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
public global::Microsoft.AspNetCore.Mvc.Rendering.IJsonHelper Json { get; private set; }
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
public global::Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper<dynamic> Html { get; private set; }
}
}
#pragma warning restore 1591

View File

@ -1,4 +1,4 @@
#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "d4f66da37c17571521a9a261565a428d39f22aa5"
#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "46c45f5148502067582e5beac9e49bdbc7ba1d3b"
// <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")]
@ -23,18 +23,21 @@ using GerenciaProjetos.Models;
#line default
#line hidden
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"d4f66da37c17571521a9a261565a428d39f22aa5", @"/Views/Home/Index.cshtml")]
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"46c45f5148502067582e5beac9e49bdbc7ba1d3b", @"/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>
{
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_0 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-area", "", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_1 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Home", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_2 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "AddDev", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_3 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "EditDev", 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", "DelDev", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_5 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Index", 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", "", 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", "u.Id", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_0 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("class", new global::Microsoft.AspNetCore.Html.HtmlString("text-decoration-none"), global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_1 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-area", "", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_2 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Desenvolvedor", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_3 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Index", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_4 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "New", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_5 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Edit", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_6 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Del", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_7 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Projetos", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_8 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Home", 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", "", 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", "u.Id", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
#line hidden
#pragma warning disable 0169
private string __tagHelperStringValueBuffer;
@ -73,36 +76,25 @@ Write(ViewData["Title"]);
#line default
#line hidden
EndContext();
BeginContext(69, 405, true);
WriteLiteral(@"</h3>
<p>Manage your account settings, and set up social network integration.</p>
<section class=""py-3"">
<div class=""card"">
<div class=""card-header"">
<div class=""row"">
<div class=""col-6"">
Desenvolvedores
</div>
<div class=""col-6"">
<div class=""text-right"">
");
BeginContext(69, 199, true);
WriteLiteral("</h3>\r\n<p>Subtitulo.</p>\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(474, 151, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "d4f66da37c17571521a9a261565a428d39f22aa56528", async() => {
BeginContext(531, 90, true);
WriteLiteral("\r\n <i class=\"fas fa-plus-circle\"></i>\r\n ");
BeginContext(268, 113, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "46c45f5148502067582e5beac9e49bdbc7ba1d3b7304", async() => {
BeginContext(362, 15, true);
WriteLiteral("Desenvolvedores");
EndContext();
}
);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_0.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_1.Value;
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_0);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_2.Value;
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_2.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_2);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_3.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_3);
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
if (!__tagHelperExecutionContext.Output.IsContentModified)
{
@ -111,7 +103,33 @@ Write(ViewData["Title"]);
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(625, 517, true);
BeginContext(381, 133, true);
WriteLiteral("\r\n </div>\r\n <div class=\"col-6\">\r\n <div class=\"text-right\">\r\n ");
EndContext();
BeginContext(514, 157, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "46c45f5148502067582e5beac9e49bdbc7ba1d3b9316", async() => {
BeginContext(577, 90, true);
WriteLiteral("\r\n <i class=\"fas fa-plus-circle\"></i>\r\n ");
EndContext();
}
);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_2.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_2);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_4.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_4);
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
if (!__tagHelperExecutionContext.Output.IsContentModified)
{
await __tagHelperExecutionContext.SetOutputContentAsync();
}
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(671, 517, true);
WriteLiteral(@"
</div>
</div>
@ -136,37 +154,37 @@ Write(ViewData["Title"]);
#line default
#line hidden
BeginContext(1232, 54, true);
BeginContext(1278, 54, true);
WriteLiteral(" <tr>\r\n <td>");
EndContext();
BeginContext(1287, 4, false);
BeginContext(1333, 4, false);
#line 38 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
Write(d.Id);
#line default
#line hidden
EndContext();
BeginContext(1291, 35, true);
BeginContext(1337, 35, true);
WriteLiteral("</td>\r\n <td>");
EndContext();
BeginContext(1327, 6, false);
BeginContext(1373, 6, false);
#line 39 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
Write(d.Nome);
#line default
#line hidden
EndContext();
BeginContext(1333, 35, true);
BeginContext(1379, 35, true);
WriteLiteral("</td>\r\n <td>");
EndContext();
BeginContext(1369, 7, false);
BeginContext(1415, 7, false);
#line 40 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
Write(d.Email);
#line default
#line hidden
EndContext();
BeginContext(1376, 37, true);
BeginContext(1422, 37, true);
WriteLiteral("</td>\r\n <td>\r\n");
EndContext();
#line 42 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
@ -175,7 +193,7 @@ Write(ViewData["Title"]);
#line default
#line hidden
BeginContext(1496, 50, true);
BeginContext(1542, 50, true);
WriteLiteral(" <span>Sim</span>\r\n");
EndContext();
#line 45 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
@ -185,7 +203,7 @@ Write(ViewData["Title"]);
#line default
#line hidden
BeginContext(1642, 50, true);
BeginContext(1688, 50, true);
WriteLiteral(" <span>Não</span>\r\n");
EndContext();
#line 49 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
@ -193,31 +211,31 @@ Write(ViewData["Title"]);
#line default
#line hidden
BeginContext(1723, 89, true);
BeginContext(1769, 89, true);
WriteLiteral(" </td>\r\n <td>\r\n ");
EndContext();
BeginContext(1812, 174, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "d4f66da37c17571521a9a261565a428d39f22aa511544", async() => {
BeginContext(1891, 91, true);
BeginContext(1858, 180, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "46c45f5148502067582e5beac9e49bdbc7ba1d3b14332", async() => {
BeginContext(1943, 91, true);
WriteLiteral("\r\n <i class=\"fas fa-edit\"></i>\r\n ");
EndContext();
}
);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_0.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_1.Value;
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_3.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_3);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_2.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_2);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_5.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_5);
if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null)
{
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
}
BeginWriteTagHelperAttribute();
#line 52 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
WriteLiteral(d.Id);
WriteLiteral(d.Id);
#line default
#line hidden
@ -232,31 +250,31 @@ Write(ViewData["Title"]);
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(1986, 30, true);
BeginContext(2038, 30, true);
WriteLiteral("\r\n ");
EndContext();
BeginContext(2016, 174, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "d4f66da37c17571521a9a261565a428d39f22aa514455", async() => {
BeginContext(2094, 92, true);
BeginContext(2068, 180, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "46c45f5148502067582e5beac9e49bdbc7ba1d3b17249", async() => {
BeginContext(2152, 92, true);
WriteLiteral("\r\n <i class=\"fas fa-trash\"></i>\r\n ");
EndContext();
}
);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_0.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_1.Value;
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_4.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_4);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_2.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_2);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_6.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_6);
if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null)
{
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
}
BeginWriteTagHelperAttribute();
#line 55 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
WriteLiteral(d.Id);
WriteLiteral(d.Id);
#line default
#line hidden
@ -271,7 +289,7 @@ Write(ViewData["Title"]);
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(2190, 60, true);
BeginContext(2248, 60, true);
WriteLiteral("\r\n </td>\r\n </tr>\r\n");
EndContext();
#line 60 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
@ -279,38 +297,25 @@ Write(ViewData["Title"]);
#line default
#line hidden
BeginContext(2269, 378, true);
WriteLiteral(@" </tbody>
</table>
</div>
</section>
<section class=""py-3"">
<div class=""card"">
<div class=""card-header"">
<div class=""row"">
<div class=""col-6"">
Projetos
</div>
<div class=""col-6"">
<div class=""text-right"">
");
BeginContext(2327, 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(2647, 150, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "d4f66da37c17571521a9a261565a428d39f22aa518045", async() => {
BeginContext(2703, 90, true);
WriteLiteral("\r\n <i class=\"fas fa-plus-circle\"></i>\r\n ");
BeginContext(2564, 101, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "46c45f5148502067582e5beac9e49bdbc7ba1d3b20719", async() => {
BeginContext(2653, 8, true);
WriteLiteral("Projetos");
EndContext();
}
);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_0.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_1.Value;
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_0);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_5.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_5);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_7.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_7);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_3.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_3);
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
if (!__tagHelperExecutionContext.Output.IsContentModified)
{
@ -319,7 +324,33 @@ Write(ViewData["Title"]);
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(2797, 749, true);
BeginContext(2665, 133, true);
WriteLiteral("\r\n </div>\r\n <div class=\"col-6\">\r\n <div class=\"text-right\">\r\n ");
EndContext();
BeginContext(2798, 152, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "46c45f5148502067582e5beac9e49bdbc7ba1d3b22727", async() => {
BeginContext(2856, 90, true);
WriteLiteral("\r\n <i class=\"fas fa-plus-circle\"></i>\r\n ");
EndContext();
}
);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_7.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_7);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_4.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_4);
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
if (!__tagHelperExecutionContext.Output.IsContentModified)
{
await __tagHelperExecutionContext.SetOutputContentAsync();
}
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(2950, 533, true);
WriteLiteral(@"
</div>
</div>
@ -336,35 +367,85 @@ Write(ViewData["Title"]);
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Guilherme</td>
<td>Abril</td>
<td>Kewin</td>
<td>
");
");
EndContext();
BeginContext(3546, 158, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "d4f66da37c17571521a9a261565a428d39f22aa520678", async() => {
BeginContext(3617, 83, true);
WriteLiteral("\r\n <i class=\"fas fa-edit\"></i>\r\n ");
#line 93 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
foreach (Projeto p in ViewBag.Projetos)
{
#line default
#line hidden
BeginContext(3560, 54, true);
WriteLiteral(" <tr>\r\n <td>");
EndContext();
BeginContext(3615, 4, false);
#line 96 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
Write(p.Id);
#line default
#line hidden
EndContext();
BeginContext(3619, 35, true);
WriteLiteral("</td>\r\n <td>");
EndContext();
BeginContext(3655, 6, false);
#line 97 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
Write(p.Nome);
#line default
#line hidden
EndContext();
BeginContext(3661, 35, true);
WriteLiteral("</td>\r\n <td>");
EndContext();
BeginContext(3697, 13, false);
#line 98 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
Write(p.DataEntrega);
#line default
#line hidden
EndContext();
BeginContext(3710, 35, true);
WriteLiteral("</td>\r\n <td>");
EndContext();
BeginContext(3746, 13, false);
#line 99 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
Write(p.Solicitante);
#line default
#line hidden
EndContext();
BeginContext(3759, 65, true);
WriteLiteral("</td>\r\n <td>\r\n ");
EndContext();
BeginContext(3824, 175, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "46c45f5148502067582e5beac9e49bdbc7ba1d3b27067", async() => {
BeginContext(3904, 91, true);
WriteLiteral("\r\n <i class=\"fas fa-edit\"></i>\r\n ");
EndContext();
}
);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_0.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_1.Value;
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (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_5.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_5);
if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null)
{
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
}
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = (string)__tagHelperAttribute_7.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_7);
BeginWriteTagHelperAttribute();
#line 101 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
WriteLiteral(p.Id);
#line default
#line hidden
__tagHelperStringValueBuffer = EndWriteTagHelperAttribute();
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = __tagHelperStringValueBuffer;
__tagHelperExecutionContext.AddTagHelperAttribute("asp-route-id", __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"], global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
if (!__tagHelperExecutionContext.Output.IsContentModified)
{
@ -373,30 +454,37 @@ Write(ViewData["Title"]);
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(3704, 26, true);
WriteLiteral("\r\n ");
BeginContext(3999, 30, true);
WriteLiteral("\r\n ");
EndContext();
BeginContext(3730, 159, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "d4f66da37c17571521a9a261565a428d39f22aa523077", async() => {
BeginContext(3801, 84, true);
WriteLiteral("\r\n <i class=\"fas fa-trash\"></i>\r\n ");
BeginContext(4029, 175, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "46c45f5148502067582e5beac9e49bdbc7ba1d3b29980", async() => {
BeginContext(4108, 92, true);
WriteLiteral("\r\n <i class=\"fas fa-trash\"></i>\r\n ");
EndContext();
}
);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_0.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_1.Value;
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_7.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_7);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_6.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_6);
if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null)
{
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
}
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = (string)__tagHelperAttribute_7.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_7);
BeginWriteTagHelperAttribute();
#line 104 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
WriteLiteral(p.Id);
#line default
#line hidden
__tagHelperStringValueBuffer = EndWriteTagHelperAttribute();
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = __tagHelperStringValueBuffer;
__tagHelperExecutionContext.AddTagHelperAttribute("asp-route-id", __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"], global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
if (!__tagHelperExecutionContext.Output.IsContentModified)
{
@ -405,11 +493,16 @@ Write(ViewData["Title"]);
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(3889, 432, true);
WriteLiteral(@"
</td>
</tr>
</tbody>
BeginContext(4204, 60, true);
WriteLiteral("\r\n </td>\r\n </tr>\r\n");
EndContext();
#line 109 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Home\Index.cshtml"
}
#line default
#line hidden
BeginContext(4283, 380, true);
WriteLiteral(@" </tbody>
</table>
</div>
</section>
@ -425,21 +518,21 @@ Write(ViewData["Title"]);
<div class=""text-right"">
");
EndContext();
BeginContext(4321, 150, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "d4f66da37c17571521a9a261565a428d39f22aa525897", async() => {
BeginContext(4377, 90, true);
BeginContext(4663, 150, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "46c45f5148502067582e5beac9e49bdbc7ba1d3b33575", async() => {
BeginContext(4719, 90, true);
WriteLiteral("\r\n <i class=\"fas fa-plus-circle\"></i>\r\n ");
EndContext();
}
);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_0.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_1.Value;
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_5.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_5);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_8.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_8);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_3.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_3);
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
if (!__tagHelperExecutionContext.Output.IsContentModified)
{
@ -448,7 +541,7 @@ Write(ViewData["Title"]);
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(4471, 754, true);
BeginContext(4813, 754, true);
WriteLiteral(@"
</div>
</div>
@ -473,27 +566,27 @@ Write(ViewData["Title"]);
<td>
");
EndContext();
BeginContext(5225, 158, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "d4f66da37c17571521a9a261565a428d39f22aa528535", async() => {
BeginContext(5296, 83, true);
BeginContext(5567, 158, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "46c45f5148502067582e5beac9e49bdbc7ba1d3b36213", async() => {
BeginContext(5638, 83, true);
WriteLiteral("\r\n <i class=\"fas fa-edit\"></i>\r\n ");
EndContext();
}
);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_0.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_1.Value;
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_6.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_6);
__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)
{
@ -502,30 +595,30 @@ Write(ViewData["Title"]);
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(5383, 26, true);
BeginContext(5725, 26, true);
WriteLiteral("\r\n ");
EndContext();
BeginContext(5409, 159, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "d4f66da37c17571521a9a261565a428d39f22aa530934", async() => {
BeginContext(5480, 84, true);
BeginContext(5751, 159, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "46c45f5148502067582e5beac9e49bdbc7ba1d3b38614", async() => {
BeginContext(5822, 84, true);
WriteLiteral("\r\n <i class=\"fas fa-trash\"></i>\r\n ");
EndContext();
}
);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_0.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_1.Value;
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_6.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_6);
__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)
{
@ -534,7 +627,7 @@ Write(ViewData["Title"]);
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(5568, 426, true);
BeginContext(5910, 426, true);
WriteLiteral(@"
</td>
</tr>
@ -554,21 +647,21 @@ Write(ViewData["Title"]);
<div class=""text-right"">
");
EndContext();
BeginContext(5994, 150, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "d4f66da37c17571521a9a261565a428d39f22aa533748", async() => {
BeginContext(6050, 90, true);
BeginContext(6336, 150, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "46c45f5148502067582e5beac9e49bdbc7ba1d3b41430", async() => {
BeginContext(6392, 90, true);
WriteLiteral("\r\n <i class=\"fas fa-plus-circle\"></i>\r\n ");
EndContext();
}
);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_0.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_1.Value;
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_5.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_5);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_8.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_8);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_3.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_3);
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
if (!__tagHelperExecutionContext.Output.IsContentModified)
{
@ -577,7 +670,7 @@ Write(ViewData["Title"]);
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(6144, 846, true);
BeginContext(6486, 846, true);
WriteLiteral(@"
</div>
</div>
@ -604,27 +697,27 @@ Write(ViewData["Title"]);
<td>
");
EndContext();
BeginContext(6990, 158, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "d4f66da37c17571521a9a261565a428d39f22aa536480", async() => {
BeginContext(7061, 83, true);
BeginContext(7332, 158, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "46c45f5148502067582e5beac9e49bdbc7ba1d3b44162", async() => {
BeginContext(7403, 83, true);
WriteLiteral("\r\n <i class=\"fas fa-edit\"></i>\r\n ");
EndContext();
}
);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_0.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_1.Value;
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_6.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_6);
__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)
{
@ -633,30 +726,30 @@ Write(ViewData["Title"]);
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(7148, 26, true);
BeginContext(7490, 26, true);
WriteLiteral("\r\n ");
EndContext();
BeginContext(7174, 159, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "d4f66da37c17571521a9a261565a428d39f22aa538879", async() => {
BeginContext(7245, 84, true);
BeginContext(7516, 159, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "46c45f5148502067582e5beac9e49bdbc7ba1d3b46563", async() => {
BeginContext(7587, 84, true);
WriteLiteral("\r\n <i class=\"fas fa-trash\"></i>\r\n ");
EndContext();
}
);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_0.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_1.Value;
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_1.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_6.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_6);
__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)
{
@ -665,7 +758,7 @@ Write(ViewData["Title"]);
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(7333, 114, true);
BeginContext(7675, 114, true);
WriteLiteral("\r\n </td>\r\n </tr>\r\n </tbody>\r\n </table>\r\n </div>\r\n</section>");
EndContext();
}

View File

@ -0,0 +1,239 @@
#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Form.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "8f7c887d3b4ce5d99bf26f32a88cda7a6f87cd59"
// <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")]
[assembly:global::Microsoft.AspNetCore.Mvc.Razor.Compilation.RazorViewAttribute(@"/Views/Projetos/Form.cshtml", typeof(AspNetCore.Views_Projetos_Form))]
namespace AspNetCore
{
#line hidden
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.Rendering;
using Microsoft.AspNetCore.Mvc.ViewFeatures;
#line 1 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml"
using GerenciaProjetos;
#line default
#line hidden
#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml"
using GerenciaProjetos.Models;
#line default
#line hidden
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"8f7c887d3b4ce5d99bf26f32a88cda7a6f87cd59", @"/Views/Projetos/Form.cshtml")]
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"4e94bb8cdb3ef35824e862096b8a713c8ba822eb", @"/Views/_ViewImports.cshtml")]
public class Views_Projetos_Form : global::Microsoft.AspNetCore.Mvc.Razor.RazorPage<GerenciaProjetos.Models.Projeto>
{
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", "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", "Projetos", 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);
#line hidden
#pragma warning disable 0169
private string __tagHelperStringValueBuffer;
#pragma warning restore 0169
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext __tagHelperExecutionContext;
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner __tagHelperRunner = new global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner();
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager __backed__tagHelperScopeManager = null;
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager __tagHelperScopeManager
{
get
{
if (__backed__tagHelperScopeManager == null)
{
__backed__tagHelperScopeManager = new global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager(StartTagHelperWritingScope, EndTagHelperWritingScope);
}
return __backed__tagHelperScopeManager;
}
}
private global::Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper;
private global::Microsoft.AspNetCore.Mvc.TagHelpers.RenderAtEndOfFormTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_RenderAtEndOfFormTagHelper;
private global::Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper;
private global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper;
#pragma warning disable 1998
public async override global::System.Threading.Tasks.Task ExecuteAsync()
{
BeginContext(0, 2, true);
WriteLiteral("\r\n");
EndContext();
#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Form.cshtml"
ViewData["Title"] = "Novo Projeto";
Layout = "~/Views/Shared/_Layout.cshtml";
#line default
#line hidden
BeginContext(97, 2, true);
WriteLiteral("\r\n");
EndContext();
BeginContext(139, 6, true);
WriteLiteral("\r\n<h3>");
EndContext();
BeginContext(146, 17, false);
#line 9 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Form.cshtml"
Write(ViewData["Title"]);
#line default
#line hidden
EndContext();
BeginContext(163, 121, true);
WriteLiteral("</h3>\r\n<p>Subtitulo.</p>\r\n\r\n<section class=\"py-3\">\r\n <div class=\"card\">\r\n <div class=\"card-body\">\r\n ");
EndContext();
BeginContext(284, 913, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("form", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "8f7c887d3b4ce5d99bf26f32a88cda7a6f87cd597357", async() => {
BeginContext(304, 105, true);
WriteLiteral("\r\n <div class=\"form-group\">\r\n <label>Nome</label>\r\n ");
EndContext();
BeginContext(409, 55, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "8f7c887d3b4ce5d99bf26f32a88cda7a6f87cd597849", 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_0.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_1);
#line 18 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Form.cshtml"
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.Nome);
#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(464, 140, true);
WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <label>Data de Entrega</label>\r\n ");
EndContext();
BeginContext(604, 62, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "8f7c887d3b4ce5d99bf26f32a88cda7a6f87cd599911", 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);
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_1);
#line 22 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Form.cshtml"
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.DataEntrega);
#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(666, 136, true);
WriteLiteral("\r\n </div>\r\n <div class=\"form-group\">\r\n <label>Solicitante</label>\r\n ");
EndContext();
BeginContext(802, 62, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("input", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "8f7c887d3b4ce5d99bf26f32a88cda7a6f87cd5911976", 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_0.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
__tagHelperExecutionContext.AddHtmlAttribute(__tagHelperAttribute_1);
#line 26 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Form.cshtml"
__Microsoft_AspNetCore_Mvc_TagHelpers_InputTagHelper.For = ModelExpressionProvider.CreateModelExpression(ViewData, __model => __model.Solicitante);
#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(864, 88, true);
WriteLiteral("\r\n </div>\r\n <div class=\"text-right\">\r\n ");
EndContext();
BeginContext(952, 114, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "8f7c887d3b4ce5d99bf26f32a88cda7a6f87cd5913992", async() => {
BeginContext(1054, 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);
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);
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
if (!__tagHelperExecutionContext.Output.IsContentModified)
{
await __tagHelperExecutionContext.SetOutputContentAsync();
}
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(1066, 124, true);
WriteLiteral("\r\n <button type=\"submit\" class=\"btn btn-primary\">Confirmar</button>\r\n </div>\r\n ");
EndContext();
}
);
__Microsoft_AspNetCore_Mvc_TagHelpers_FormTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper>();
__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);
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
if (!__tagHelperExecutionContext.Output.IsContentModified)
{
await __tagHelperExecutionContext.SetOutputContentAsync();
}
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(1197, 40, true);
WriteLiteral("\r\n </div>\r\n </div>\r\n</section>");
EndContext();
}
#pragma warning restore 1998
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
public global::Microsoft.AspNetCore.Mvc.ViewFeatures.IModelExpressionProvider ModelExpressionProvider { get; private set; }
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
public global::Microsoft.AspNetCore.Mvc.IUrlHelper Url { get; private set; }
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
public global::Microsoft.AspNetCore.Mvc.IViewComponentHelper Component { get; private set; }
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
public global::Microsoft.AspNetCore.Mvc.Rendering.IJsonHelper Json { get; private set; }
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
public global::Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper<GerenciaProjetos.Models.Projeto> Html { get; private set; }
}
}
#pragma warning restore 1591

View File

@ -0,0 +1,283 @@
#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "55c582c3aac181a0376bcba6e12575862f28a504"
// <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")]
[assembly:global::Microsoft.AspNetCore.Mvc.Razor.Compilation.RazorViewAttribute(@"/Views/Projetos/Index.cshtml", typeof(AspNetCore.Views_Projetos_Index))]
namespace AspNetCore
{
#line hidden
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.Rendering;
using Microsoft.AspNetCore.Mvc.ViewFeatures;
#line 1 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml"
using GerenciaProjetos;
#line default
#line hidden
#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\_ViewImports.cshtml"
using GerenciaProjetos.Models;
#line default
#line hidden
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"55c582c3aac181a0376bcba6e12575862f28a504", @"/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>
{
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_0 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-area", "", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_1 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-controller", "Projetos", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_2 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "New", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_3 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Edit", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
private static readonly global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute __tagHelperAttribute_4 = new global::Microsoft.AspNetCore.Razor.TagHelpers.TagHelperAttribute("asp-action", "Del", global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
#line hidden
#pragma warning disable 0169
private string __tagHelperStringValueBuffer;
#pragma warning restore 0169
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperExecutionContext __tagHelperExecutionContext;
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner __tagHelperRunner = new global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperRunner();
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager __backed__tagHelperScopeManager = null;
private global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager __tagHelperScopeManager
{
get
{
if (__backed__tagHelperScopeManager == null)
{
__backed__tagHelperScopeManager = new global::Microsoft.AspNetCore.Razor.Runtime.TagHelpers.TagHelperScopeManager(StartTagHelperWritingScope, EndTagHelperWritingScope);
}
return __backed__tagHelperScopeManager;
}
}
private global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper;
#pragma warning disable 1998
public async override global::System.Threading.Tasks.Task ExecuteAsync()
{
BeginContext(0, 2, true);
WriteLiteral("\r\n");
EndContext();
#line 2 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml"
ViewData["Title"] = "Projetos";
Layout = "~/Views/Shared/_Layout.cshtml";
#line default
#line hidden
BeginContext(93, 6, true);
WriteLiteral("\r\n<h3>");
EndContext();
BeginContext(100, 17, false);
#line 7 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml"
Write(ViewData["Title"]);
#line default
#line hidden
EndContext();
BeginContext(117, 333, true);
WriteLiteral(@"</h3>
<p>Subtitulo.</p>
<section class=""py-3"">
<div class=""card"">
<div class=""card-header"">
<div class=""row"">
<div class=""col-6"">
1
</div>
<div class=""col-6"">
<div class=""text-right"">
");
EndContext();
BeginContext(450, 152, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "55c582c3aac181a0376bcba6e12575862f28a5045740", async() => {
BeginContext(508, 90, true);
WriteLiteral("\r\n <i class=\"fas fa-plus-circle\"></i>\r\n ");
EndContext();
}
);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_0.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_1.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_2.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_2);
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
if (!__tagHelperExecutionContext.Output.IsContentModified)
{
await __tagHelperExecutionContext.SetOutputContentAsync();
}
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(602, 533, true);
WriteLiteral(@"
</div>
</div>
</div>
</div>
<table class=""table table-borderless table-hover"">
<thead class=""border-bottom"">
<tr>
<th scope=""col"">#</th>
<th scope=""col"">Nome</th>
<th scope=""col"">Data de Entrega</th>
<th scope=""col"">Solicitante</th>
<th scope=""col"">Opções</th>
</tr>
</thead>
<tbody>
");
EndContext();
#line 37 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml"
foreach (Projeto p in ViewBag.Projetos)
{
#line default
#line hidden
BeginContext(1212, 54, true);
WriteLiteral(" <tr>\r\n <td>");
EndContext();
BeginContext(1267, 4, false);
#line 40 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml"
Write(p.Id);
#line default
#line hidden
EndContext();
BeginContext(1271, 35, true);
WriteLiteral("</td>\r\n <td>");
EndContext();
BeginContext(1307, 6, false);
#line 41 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml"
Write(p.Nome);
#line default
#line hidden
EndContext();
BeginContext(1313, 35, true);
WriteLiteral("</td>\r\n <td>");
EndContext();
BeginContext(1349, 13, false);
#line 42 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml"
Write(p.DataEntrega);
#line default
#line hidden
EndContext();
BeginContext(1362, 35, true);
WriteLiteral("</td>\r\n <td>");
EndContext();
BeginContext(1398, 13, false);
#line 43 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml"
Write(p.Solicitante);
#line default
#line hidden
EndContext();
BeginContext(1411, 65, true);
WriteLiteral("</td>\r\n <td>\r\n ");
EndContext();
BeginContext(1476, 175, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "55c582c3aac181a0376bcba6e12575862f28a50410097", async() => {
BeginContext(1556, 91, true);
WriteLiteral("\r\n <i class=\"fas fa-edit\"></i>\r\n ");
EndContext();
}
);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_0.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_1.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_3.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_3);
if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null)
{
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
}
BeginWriteTagHelperAttribute();
#line 45 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml"
WriteLiteral(p.Id);
#line default
#line hidden
__tagHelperStringValueBuffer = EndWriteTagHelperAttribute();
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = __tagHelperStringValueBuffer;
__tagHelperExecutionContext.AddTagHelperAttribute("asp-route-id", __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"], global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
if (!__tagHelperExecutionContext.Output.IsContentModified)
{
await __tagHelperExecutionContext.SetOutputContentAsync();
}
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(1651, 30, true);
WriteLiteral("\r\n ");
EndContext();
BeginContext(1681, 175, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "55c582c3aac181a0376bcba6e12575862f28a50413013", async() => {
BeginContext(1760, 92, true);
WriteLiteral("\r\n <i class=\"fas fa-trash\"></i>\r\n ");
EndContext();
}
);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper>();
__tagHelperExecutionContext.Add(__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Area = (string)__tagHelperAttribute_0.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_0);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Controller = (string)__tagHelperAttribute_1.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_1);
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.Action = (string)__tagHelperAttribute_4.Value;
__tagHelperExecutionContext.AddTagHelperAttribute(__tagHelperAttribute_4);
if (__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues == null)
{
throw new InvalidOperationException(InvalidTagHelperIndexerAssignment("asp-route-id", "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "RouteValues"));
}
BeginWriteTagHelperAttribute();
#line 48 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml"
WriteLiteral(p.Id);
#line default
#line hidden
__tagHelperStringValueBuffer = EndWriteTagHelperAttribute();
__Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"] = __tagHelperStringValueBuffer;
__tagHelperExecutionContext.AddTagHelperAttribute("asp-route-id", __Microsoft_AspNetCore_Mvc_TagHelpers_AnchorTagHelper.RouteValues["id"], global::Microsoft.AspNetCore.Razor.TagHelpers.HtmlAttributeValueStyle.DoubleQuotes);
await __tagHelperRunner.RunAsync(__tagHelperExecutionContext);
if (!__tagHelperExecutionContext.Output.IsContentModified)
{
await __tagHelperExecutionContext.SetOutputContentAsync();
}
Write(__tagHelperExecutionContext.Output);
__tagHelperExecutionContext = __tagHelperScopeManager.End();
EndContext();
BeginContext(1856, 60, true);
WriteLiteral("\r\n </td>\r\n </tr>\r\n");
EndContext();
#line 53 "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Projetos\Index.cshtml"
}
#line default
#line hidden
BeginContext(1935, 62, true);
WriteLiteral(" </tbody>\r\n </table>\r\n </div>\r\n</section>");
EndContext();
}
#pragma warning restore 1998
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
public global::Microsoft.AspNetCore.Mvc.ViewFeatures.IModelExpressionProvider ModelExpressionProvider { get; private set; }
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
public global::Microsoft.AspNetCore.Mvc.IUrlHelper Url { get; private set; }
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
public global::Microsoft.AspNetCore.Mvc.IViewComponentHelper Component { get; private set; }
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
public global::Microsoft.AspNetCore.Mvc.Rendering.IJsonHelper Json { get; private set; }
[global::Microsoft.AspNetCore.Mvc.Razor.Internal.RazorInjectAttribute]
public global::Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper<dynamic> Html { get; private set; }
}
}
#pragma warning restore 1591

View File

@ -1,4 +1,4 @@
#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "3be3d9e38bd96a4ddbc0df01e40d2bf039e90319"
#pragma checksum "C:\Users\GuiNerd\source\repos\GerenciaProjetos\GerenciaProjetos\Views\Shared\_Layout.cshtml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf"
// <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")]
@ -23,7 +23,7 @@ using GerenciaProjetos.Models;
#line default
#line hidden
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"3be3d9e38bd96a4ddbc0df01e40d2bf039e90319", @"/Views/Shared/_Layout.cshtml")]
[global::Microsoft.AspNetCore.Razor.Hosting.RazorSourceChecksumAttribute(@"SHA1", @"9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf", @"/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>
{
@ -99,7 +99,7 @@ using GerenciaProjetos.Models;
WriteLiteral("<!DOCTYPE html>\r\n<html>\r\n");
EndContext();
BeginContext(25, 1034, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("head", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031917847", async() => {
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("head", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf17847", 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();
@ -114,12 +114,12 @@ using GerenciaProjetos.Models;
WriteLiteral(" - GerenciaProjetos</title>\r\n\r\n ");
EndContext();
BeginContext(205, 136, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031918756", async() => {
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf18756", async() => {
BeginContext(240, 10, true);
WriteLiteral("\r\n ");
EndContext();
BeginContext(250, 71, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031919174", async() => {
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf19174", async() => {
}
);
__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>();
@ -155,12 +155,12 @@ using GerenciaProjetos.Models;
WriteLiteral("\r\n ");
EndContext();
BeginContext(347, 508, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031921666", async() => {
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf21666", async() => {
BeginContext(382, 10, true);
WriteLiteral("\r\n ");
EndContext();
BeginContext(392, 443, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031922085", async() => {
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf22085", async() => {
}
);
__Microsoft_AspNetCore_Mvc_TagHelpers_LinkTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.TagHelpers.LinkTagHelper>();
@ -207,7 +207,7 @@ using GerenciaProjetos.Models;
WriteLiteral("\r\n ");
EndContext();
BeginContext(861, 69, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031925744", async() => {
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf25744", async() => {
}
);
__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>();
@ -227,7 +227,7 @@ using GerenciaProjetos.Models;
WriteLiteral("\r\n ");
EndContext();
BeginContext(936, 61, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031927167", async() => {
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf27167", async() => {
}
);
__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>();
@ -246,7 +246,7 @@ using GerenciaProjetos.Models;
WriteLiteral("\r\n ");
EndContext();
BeginContext(1003, 47, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031928503", async() => {
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("link", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.SelfClosing, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf28503", async() => {
}
);
__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>();
@ -280,17 +280,17 @@ using GerenciaProjetos.Models;
WriteLiteral("\r\n");
EndContext();
BeginContext(1061, 7115, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("body", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031930637", async() => {
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("body", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf30637", async() => {
BeginContext(1067, 168, true);
WriteLiteral("\r\n <header>\r\n <nav class=\"navbar navbar-expand-lg navbar-light bg-light border-bottom box-shadow mb-3\">\r\n <div class=\"container\">\r\n ");
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, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031931200", async() => {
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf31200", async() => {
BeginContext(1312, 22, true);
WriteLiteral("\r\n ");
EndContext();
BeginContext(1334, 83, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("img", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031931622", async() => {
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("img", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagOnly, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf31622", async() => {
}
);
__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>();
@ -340,7 +340,7 @@ using GerenciaProjetos.Models;
");
EndContext();
BeginContext(1995, 81, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031935387", async() => {
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf35387", async() => {
BeginContext(2068, 4, true);
WriteLiteral("Home");
EndContext();
@ -595,7 +595,7 @@ using GerenciaProjetos.Models;
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, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031947101", async() => {
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf47101", async() => {
BeginContext(6525, 11, true);
WriteLiteral("Privacidade");
EndContext();
@ -628,7 +628,7 @@ using GerenciaProjetos.Models;
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, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031949743", async() => {
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("a", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf49743", async() => {
BeginContext(6752, 11, true);
WriteLiteral("Contate Nos");
EndContext();
@ -679,12 +679,12 @@ using GerenciaProjetos.Models;
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, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031953164", async() => {
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf53164", async() => {
BeginContext(7036, 10, true);
WriteLiteral("\r\n ");
EndContext();
BeginContext(7046, 51, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031953584", async() => {
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf53584", async() => {
}
);
__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>();
@ -702,7 +702,7 @@ using GerenciaProjetos.Models;
WriteLiteral("\r\n ");
EndContext();
BeginContext(7107, 67, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031954918", async() => {
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf54918", async() => {
}
);
__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>();
@ -737,12 +737,12 @@ using GerenciaProjetos.Models;
WriteLiteral("\r\n ");
EndContext();
BeginContext(7200, 849, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031957331", async() => {
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("environment", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf57331", async() => {
BeginContext(7235, 10, true);
WriteLiteral("\r\n ");
EndContext();
BeginContext(7245, 340, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031957752", async() => {
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf57752", async() => {
BeginContext(7566, 10, true);
WriteLiteral("\r\n ");
EndContext();
@ -770,7 +770,7 @@ using GerenciaProjetos.Models;
WriteLiteral("\r\n ");
EndContext();
BeginContext(7595, 434, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031959966", async() => {
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf59966", async() => {
BeginContext(8010, 10, true);
WriteLiteral("\r\n ");
EndContext();
@ -815,7 +815,7 @@ using GerenciaProjetos.Models;
WriteLiteral("\r\n ");
EndContext();
BeginContext(8055, 62, false);
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "3be3d9e38bd96a4ddbc0df01e40d2bf039e9031963259", async() => {
__tagHelperExecutionContext = __tagHelperScopeManager.Begin("script", global::Microsoft.AspNetCore.Razor.TagHelpers.TagMode.StartTagAndEndTag, "9b41c81bac5c002e5e26e4c40ec75c60ed3c6baf63259", async() => {
}
);
__Microsoft_AspNetCore_Mvc_Razor_TagHelpers_UrlResolutionTagHelper = CreateTagHelper<global::Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper>();

View File

@ -1,5 +1,5 @@
{
"version": 1,
"dgSpecHash": "AbOb9LZisOAYD3kokUF2zvAoyOgg+PEj46kze4HRm3BFTw0vogvOJVV+efJ874OTEVNwdqXcmOEq2uPfmxYD4g==",
"dgSpecHash": "8aD2EdNuJt0k7XqtMT51gk3dV0xk+v8t09S3wmp+ftwSZSFtd+RyT0eJeeawADfh+vRU2CkkJdm7lUvYhjeGtw==",
"success": true
}

View File

@ -22,8 +22,8 @@
<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_EntityFrameworkCore_Tools Condition=" '$(PkgMicrosoft_EntityFrameworkCore_Tools)' == '' ">C:\Program Files\dotnet\sdk\NuGetFallbackFolder\microsoft.entityframeworkcore.tools\2.2.0</PkgMicrosoft_EntityFrameworkCore_Tools>
<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>
</PropertyGroup>
</Project>

View File

@ -1631,6 +1631,19 @@
"lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {}
}
},
"Microsoft.CodeAnalysis.CSharp.Workspaces/2.8.0": {
"type": "package",
"dependencies": {
"Microsoft.CodeAnalysis.CSharp": "[2.8.0]",
"Microsoft.CodeAnalysis.Workspaces.Common": "[2.8.0]"
},
"compile": {
"lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {}
},
"runtime": {
"lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {}
}
},
"Microsoft.CodeAnalysis.Razor/2.2.0": {
"type": "package",
"dependencies": {
@ -1645,6 +1658,24 @@
"lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {}
}
},
"Microsoft.CodeAnalysis.Workspaces.Common/2.8.0": {
"type": "package",
"dependencies": {
"Microsoft.CodeAnalysis.Common": "[2.8.0]",
"System.Composition": "1.0.31",
"System.Diagnostics.Contracts": "4.3.0",
"System.Linq.Parallel": "4.3.0",
"System.ObjectModel": "4.3.0",
"System.Text.RegularExpressions": "4.3.0",
"System.Threading.Tasks.Parallel": "4.3.0"
},
"compile": {
"lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll": {}
},
"runtime": {
"lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll": {}
}
},
"Microsoft.CSharp/4.5.0": {
"type": "package",
"compile": {
@ -2686,6 +2717,110 @@
"lib/netstandard1.0/_._": {}
}
},
"Microsoft.VisualStudio.Web.CodeGeneration/2.2.3": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.DependencyInjection": "2.2.0",
"Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "2.2.3"
},
"compile": {
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {}
},
"runtime": {
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {}
}
},
"Microsoft.VisualStudio.Web.CodeGeneration.Contracts/2.2.3": {
"type": "package",
"dependencies": {
"Newtonsoft.Json": "11.0.2"
},
"compile": {
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": {}
},
"runtime": {
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": {}
}
},
"Microsoft.VisualStudio.Web.CodeGeneration.Core/2.2.3": {
"type": "package",
"dependencies": {
"Microsoft.Extensions.DependencyInjection": "2.2.0",
"Microsoft.VisualStudio.Web.CodeGeneration.Templating": "2.2.3",
"Newtonsoft.Json": "11.0.2"
},
"compile": {
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {}
},
"runtime": {
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {}
}
},
"Microsoft.VisualStudio.Web.CodeGeneration.Design/2.2.3": {
"type": "package",
"dependencies": {
"Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "2.2.3"
},
"compile": {
"lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll": {}
},
"runtime": {
"lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll": {}
}
},
"Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/2.2.3": {
"type": "package",
"dependencies": {
"Microsoft.VisualStudio.Web.CodeGeneration.Core": "2.2.3"
},
"compile": {
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {}
},
"runtime": {
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {}
}
},
"Microsoft.VisualStudio.Web.CodeGeneration.Templating/2.2.3": {
"type": "package",
"dependencies": {
"Microsoft.AspNetCore.Razor.Language": "2.2.0",
"Microsoft.CodeAnalysis.CSharp": "2.8.0",
"Microsoft.VisualStudio.Web.CodeGeneration.Utils": "2.2.3"
},
"compile": {
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {}
},
"runtime": {
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {}
}
},
"Microsoft.VisualStudio.Web.CodeGeneration.Utils/2.2.3": {
"type": "package",
"dependencies": {
"Microsoft.CodeAnalysis.CSharp.Workspaces": "2.8.0",
"Microsoft.VisualStudio.Web.CodeGeneration.Contracts": "2.2.3",
"Newtonsoft.Json": "11.0.2",
"NuGet.Frameworks": "4.7.0"
},
"compile": {
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {}
},
"runtime": {
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {}
}
},
"Microsoft.VisualStudio.Web.CodeGenerators.Mvc/2.2.3": {
"type": "package",
"dependencies": {
"Microsoft.VisualStudio.Web.CodeGeneration": "2.2.3"
},
"compile": {
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {}
},
"runtime": {
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {}
}
},
"Microsoft.Win32.Registry/4.5.0": {
"type": "package",
"dependencies": {
@ -2755,6 +2890,18 @@
"lib/netstandard1.3/Newtonsoft.Json.Bson.dll": {}
}
},
"NuGet.Frameworks/4.7.0": {
"type": "package",
"dependencies": {
"NETStandard.Library": "1.6.1"
},
"compile": {
"lib/netstandard1.6/NuGet.Frameworks.dll": {}
},
"runtime": {
"lib/netstandard1.6/NuGet.Frameworks.dll": {}
}
},
"Pomelo.EntityFrameworkCore.MySql/2.2.0": {
"type": "package",
"dependencies": {
@ -3116,6 +3263,120 @@
"lib/netcoreapp2.0/_._": {}
}
},
"System.Composition/1.0.31": {
"type": "package",
"dependencies": {
"System.Composition.AttributedModel": "1.0.31",
"System.Composition.Convention": "1.0.31",
"System.Composition.Hosting": "1.0.31",
"System.Composition.Runtime": "1.0.31",
"System.Composition.TypedParts": "1.0.31"
}
},
"System.Composition.AttributedModel/1.0.31": {
"type": "package",
"dependencies": {
"System.Reflection": "4.3.0",
"System.Runtime": "4.3.0"
},
"compile": {
"lib/netstandard1.0/System.Composition.AttributedModel.dll": {}
},
"runtime": {
"lib/netstandard1.0/System.Composition.AttributedModel.dll": {}
}
},
"System.Composition.Convention/1.0.31": {
"type": "package",
"dependencies": {
"System.Collections": "4.3.0",
"System.Composition.AttributedModel": "1.0.31",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.Tools": "4.3.0",
"System.Globalization": "4.3.0",
"System.Linq": "4.3.0",
"System.Linq.Expressions": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.0/System.Composition.Convention.dll": {}
},
"runtime": {
"lib/netstandard1.0/System.Composition.Convention.dll": {}
}
},
"System.Composition.Hosting/1.0.31": {
"type": "package",
"dependencies": {
"System.Collections": "4.3.0",
"System.Composition.Runtime": "1.0.31",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.Tools": "4.3.0",
"System.Globalization": "4.3.0",
"System.Linq": "4.3.0",
"System.Linq.Expressions": "4.3.0",
"System.ObjectModel": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Threading": "4.3.0"
},
"compile": {
"lib/netstandard1.0/System.Composition.Hosting.dll": {}
},
"runtime": {
"lib/netstandard1.0/System.Composition.Hosting.dll": {}
}
},
"System.Composition.Runtime/1.0.31": {
"type": "package",
"dependencies": {
"System.Collections": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.Tools": "4.3.0",
"System.Globalization": "4.3.0",
"System.Linq": "4.3.0",
"System.Reflection": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0"
},
"compile": {
"lib/netstandard1.0/System.Composition.Runtime.dll": {}
},
"runtime": {
"lib/netstandard1.0/System.Composition.Runtime.dll": {}
}
},
"System.Composition.TypedParts/1.0.31": {
"type": "package",
"dependencies": {
"System.Collections": "4.3.0",
"System.Composition.AttributedModel": "1.0.31",
"System.Composition.Hosting": "1.0.31",
"System.Composition.Runtime": "1.0.31",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.Tools": "4.3.0",
"System.Globalization": "4.3.0",
"System.Linq": "4.3.0",
"System.Linq.Expressions": "4.3.0",
"System.Reflection": "4.3.0",
"System.Reflection.Extensions": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0"
},
"compile": {
"lib/netstandard1.0/System.Composition.TypedParts.dll": {}
},
"runtime": {
"lib/netstandard1.0/System.Composition.TypedParts.dll": {}
}
},
"System.Console/4.3.0": {
"type": "package",
"dependencies": {
@ -3472,6 +3733,27 @@
"lib/netstandard1.6/System.Linq.Expressions.dll": {}
}
},
"System.Linq.Parallel/4.3.0": {
"type": "package",
"dependencies": {
"System.Collections": "4.3.0",
"System.Collections.Concurrent": "4.3.0",
"System.Diagnostics.Debug": "4.3.0",
"System.Diagnostics.Tracing": "4.3.0",
"System.Linq": "4.3.0",
"System.Resources.ResourceManager": "4.3.0",
"System.Runtime": "4.3.0",
"System.Runtime.Extensions": "4.3.0",
"System.Threading": "4.3.0",
"System.Threading.Tasks": "4.3.0"
},
"compile": {
"ref/netstandard1.1/System.Linq.Parallel.dll": {}
},
"runtime": {
"lib/netstandard1.3/System.Linq.Parallel.dll": {}
}
},
"System.Linq.Queryable/4.0.1": {
"type": "package",
"dependencies": {
@ -5822,6 +6104,20 @@
"microsoft.codeanalysis.csharp.nuspec"
]
},
"Microsoft.CodeAnalysis.CSharp.Workspaces/2.8.0": {
"sha512": "EJWaxi2bI47iEZen/nZkJEDZCrP9Oj3PJtMwBv34Z0ZvvdSkpgsdqlHSud8d5vC53LnCXLfBLewfqHcILDVSDw==",
"type": "package",
"path": "microsoft.codeanalysis.csharp.workspaces/2.8.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
"lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb",
"lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
"microsoft.codeanalysis.csharp.workspaces.2.8.0.nupkg.sha512",
"microsoft.codeanalysis.csharp.workspaces.nuspec"
]
},
"Microsoft.CodeAnalysis.Razor/2.2.0": {
"sha512": "2qL0Qyu5qHzg6/JzF80mLgsqn9NP/Q0mQwjH+Z+DiqcuODJx8segjN4un2Tnz6bEAWv8FCRFNXR/s5wzlxqA8A==",
"type": "package",
@ -5837,6 +6133,26 @@
"microsoft.codeanalysis.razor.nuspec"
]
},
"Microsoft.CodeAnalysis.Workspaces.Common/2.8.0": {
"sha512": "tJlJ99SD8bHBAXShOG/pXQ1K118cnsF01obEf9aAtdgLbw3yEPahZ7qvWeGMjrheUhvOsSkv/wTKYg9euKa8MQ==",
"type": "package",
"path": "microsoft.codeanalysis.workspaces.common/2.8.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/net46/Microsoft.CodeAnalysis.Workspaces.Desktop.dll",
"lib/net46/Microsoft.CodeAnalysis.Workspaces.Desktop.pdb",
"lib/net46/Microsoft.CodeAnalysis.Workspaces.Desktop.xml",
"lib/net46/Microsoft.CodeAnalysis.Workspaces.dll",
"lib/net46/Microsoft.CodeAnalysis.Workspaces.pdb",
"lib/net46/Microsoft.CodeAnalysis.Workspaces.xml",
"lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll",
"lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.pdb",
"lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.xml",
"microsoft.codeanalysis.workspaces.common.2.8.0.nupkg.sha512",
"microsoft.codeanalysis.workspaces.common.nuspec"
]
},
"Microsoft.CSharp/4.5.0": {
"sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==",
"type": "package",
@ -7203,6 +7519,393 @@
"version.txt"
]
},
"Microsoft.VisualStudio.Web.CodeGeneration/2.2.3": {
"sha512": "wc71c9HWTeXy9/w9O4Yr2LKmdJjVyIoJ/XQX8/6uma4EAVU25RLtUWlvhA0gpgFw9Kf1TkCv70x+CbKnRw/d8Q==",
"type": "package",
"path": "microsoft.visualstudio.web.codegeneration/2.2.3",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.dll",
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.xml",
"microsoft.visualstudio.web.codegeneration.2.2.3.nupkg.sha512",
"microsoft.visualstudio.web.codegeneration.nuspec"
]
},
"Microsoft.VisualStudio.Web.CodeGeneration.Contracts/2.2.3": {
"sha512": "wXlpxDfRD5aPypa0p0UE97tkRQvAz9D9FfA2GITzr+LlGIpybyGnxkwGVp0Vha1Ibr0kJG0HdnqfeHME/WuAcQ==",
"type": "package",
"path": "microsoft.visualstudio.web.codegeneration.contracts/2.2.3",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll",
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.xml",
"microsoft.visualstudio.web.codegeneration.contracts.2.2.3.nupkg.sha512",
"microsoft.visualstudio.web.codegeneration.contracts.nuspec"
]
},
"Microsoft.VisualStudio.Web.CodeGeneration.Core/2.2.3": {
"sha512": "APdPavBUYcGPBaW4rjxBVRePWmg0ZzhIRymOzvLFWUtzfvJKw1+8PaCzsH7Uvl+felm0L1UVQwBx1Do0R7j7Xg==",
"type": "package",
"path": "microsoft.visualstudio.web.codegeneration.core/2.2.3",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll",
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.xml",
"microsoft.visualstudio.web.codegeneration.core.2.2.3.nupkg.sha512",
"microsoft.visualstudio.web.codegeneration.core.nuspec"
]
},
"Microsoft.VisualStudio.Web.CodeGeneration.Design/2.2.3": {
"sha512": "xH50cYOU+infRq4KikBuu2qeXcwW4tE0D5TDfKLuLrEtDm90aXI+0qygPsqyISf+lOW7L7rQ64BH/dRYkK3c3Q==",
"type": "package",
"path": "microsoft.visualstudio.web.codegeneration.design/2.2.3",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/net461/dotnet-aspnet-codegenerator-design.exe",
"lib/net461/dotnet-aspnet-codegenerator-design.xml",
"lib/netstandard2.0/dotnet-aspnet-codegenerator-design.dll",
"lib/netstandard2.0/dotnet-aspnet-codegenerator-design.xml",
"microsoft.visualstudio.web.codegeneration.design.2.2.3.nupkg.sha512",
"microsoft.visualstudio.web.codegeneration.design.nuspec",
"runtimes/win-arm/lib/net461/dotnet-aspnet-codegenerator-design.exe",
"runtimes/win-arm/lib/net461/dotnet-aspnet-codegenerator-design.xml",
"runtimes/win-arm64/lib/net461/dotnet-aspnet-codegenerator-design.exe",
"runtimes/win-arm64/lib/net461/dotnet-aspnet-codegenerator-design.xml",
"runtimes/win7-x64/lib/net461/dotnet-aspnet-codegenerator-design.exe",
"runtimes/win7-x64/lib/net461/dotnet-aspnet-codegenerator-design.xml",
"runtimes/win7-x86/lib/net461/dotnet-aspnet-codegenerator-design.exe",
"runtimes/win7-x86/lib/net461/dotnet-aspnet-codegenerator-design.xml"
]
},
"Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/2.2.3": {
"sha512": "N9S7TeFZjXzNY9OVbz4OFw9cM9oEeMaCnuLFhetNioy/wPwZbgglrctAEYxfDbvocQ17YCAVR2EMRbYHNDHyVg==",
"type": "package",
"path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/2.2.3",
"files": [
".nupkg.metadata",
".signature.p7s",
"Templates/DbContext/NewLocalDbContext.cshtml",
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll",
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.xml",
"microsoft.visualstudio.web.codegeneration.entityframeworkcore.2.2.3.nupkg.sha512",
"microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec"
]
},
"Microsoft.VisualStudio.Web.CodeGeneration.Templating/2.2.3": {
"sha512": "sW2lHnOoL1xFnSm/2zSedeUoQPlbhPfWjSuUYsxYUj/N5QmLmH98ZLaqP26k6Om/heR6Gux/veXI96yM1Parow==",
"type": "package",
"path": "microsoft.visualstudio.web.codegeneration.templating/2.2.3",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll",
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.xml",
"microsoft.visualstudio.web.codegeneration.templating.2.2.3.nupkg.sha512",
"microsoft.visualstudio.web.codegeneration.templating.nuspec"
]
},
"Microsoft.VisualStudio.Web.CodeGeneration.Utils/2.2.3": {
"sha512": "/r/y+XpOpbCwN/M/HopjfGTDRlmixTd4G6HG6FaBkD/YF3T1u+4WMRVtuB6zz7aw571HmX+6UokEa6HJSwkPDA==",
"type": "package",
"path": "microsoft.visualstudio.web.codegeneration.utils/2.2.3",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll",
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.xml",
"microsoft.visualstudio.web.codegeneration.utils.2.2.3.nupkg.sha512",
"microsoft.visualstudio.web.codegeneration.utils.nuspec"
]
},
"Microsoft.VisualStudio.Web.CodeGenerators.Mvc/2.2.3": {
"sha512": "0gVuA4KUCHFM4M/9SjG+7j7BzZ7SW/BufF97Q78i2VV8JBbQXc/5Rf6YUG1VGW2fwSEOl9+S26utEGS+86GGGw==",
"type": "package",
"path": "microsoft.visualstudio.web.codegenerators.mvc/2.2.3",
"files": [
".nupkg.metadata",
".signature.p7s",
"Generators/ParameterDefinitions/area.json",
"Generators/ParameterDefinitions/controller.json",
"Generators/ParameterDefinitions/identity.json",
"Generators/ParameterDefinitions/razorpage.json",
"Generators/ParameterDefinitions/view.json",
"Templates/ControllerGenerator/ApiControllerWithActions.cshtml",
"Templates/ControllerGenerator/ApiControllerWithContext.cshtml",
"Templates/ControllerGenerator/ApiEmptyController.cshtml",
"Templates/ControllerGenerator/ControllerWithActions.cshtml",
"Templates/ControllerGenerator/EmptyController.cshtml",
"Templates/ControllerGenerator/MvcControllerWithContext.cshtml",
"Templates/Identity/Data/ApplicationDbContext.cshtml",
"Templates/Identity/Data/ApplicationUser.cshtml",
"Templates/Identity/IdentityHostingStartup.cshtml",
"Templates/Identity/Pages/Account/Account.AccessDenied.cs.cshtml",
"Templates/Identity/Pages/Account/Account.AccessDenied.cshtml",
"Templates/Identity/Pages/Account/Account.ConfirmEmail.cs.cshtml",
"Templates/Identity/Pages/Account/Account.ConfirmEmail.cshtml",
"Templates/Identity/Pages/Account/Account.ExternalLogin.cs.cshtml",
"Templates/Identity/Pages/Account/Account.ExternalLogin.cshtml",
"Templates/Identity/Pages/Account/Account.ForgotPassword.cs.cshtml",
"Templates/Identity/Pages/Account/Account.ForgotPassword.cshtml",
"Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml",
"Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cshtml",
"Templates/Identity/Pages/Account/Account.Lockout.cs.cshtml",
"Templates/Identity/Pages/Account/Account.Lockout.cshtml",
"Templates/Identity/Pages/Account/Account.Login.cs.cshtml",
"Templates/Identity/Pages/Account/Account.Login.cshtml",
"Templates/Identity/Pages/Account/Account.LoginWith2fa.cs.cshtml",
"Templates/Identity/Pages/Account/Account.LoginWith2fa.cshtml",
"Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml",
"Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cshtml",
"Templates/Identity/Pages/Account/Account.Logout.cs.cshtml",
"Templates/Identity/Pages/Account/Account.Logout.cshtml",
"Templates/Identity/Pages/Account/Account.Register.cs.cshtml",
"Templates/Identity/Pages/Account/Account.Register.cshtml",
"Templates/Identity/Pages/Account/Account.ResetPassword.cs.cshtml",
"Templates/Identity/Pages/Account/Account.ResetPassword.cshtml",
"Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml",
"Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cshtml",
"Templates/Identity/Pages/Account/Account._ViewImports.cshtml",
"Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml",
"Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml",
"Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml",
"Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml",
"Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml",
"Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml",
"Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml",
"Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml",
"Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml",
"Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml",
"Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml",
"Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml",
"Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml",
"Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml",
"Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cs.cshtml",
"Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cshtml",
"Templates/Identity/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml",
"Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml",
"Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cshtml",
"Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml",
"Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml",
"Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml",
"Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cshtml",
"Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml",
"Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml",
"Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml",
"Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml",
"Templates/Identity/Pages/Account/Manage/Account.Manage._Layout.cshtml",
"Templates/Identity/Pages/Account/Manage/Account.Manage._ManageNav.cshtml",
"Templates/Identity/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml",
"Templates/Identity/Pages/Account/Manage/Account.Manage._ViewImports.cshtml",
"Templates/Identity/Pages/Error.cs.cshtml",
"Templates/Identity/Pages/Error.cshtml",
"Templates/Identity/Pages/_Layout.cshtml",
"Templates/Identity/Pages/_ValidationScriptsPartial.cshtml",
"Templates/Identity/Pages/_ViewImports.cshtml",
"Templates/Identity/Pages/_ViewStart.cshtml",
"Templates/Identity/ScaffoldingReadme.cshtml",
"Templates/Identity/SupportPages._CookieConsentPartial.cshtml",
"Templates/Identity/SupportPages._ViewImports.cshtml",
"Templates/Identity/SupportPages._ViewStart.cshtml",
"Templates/Identity/_LoginPartial.cshtml",
"Templates/Identity/wwwroot/css/site.css",
"Templates/Identity/wwwroot/favicon.ico",
"Templates/Identity/wwwroot/js/site.js",
"Templates/Identity/wwwroot/lib/bootstrap/LICENSE",
"Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css",
"Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map",
"Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css",
"Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map",
"Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css",
"Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map",
"Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css",
"Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map",
"Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css",
"Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
"Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css",
"Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map",
"Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js",
"Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map",
"Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js",
"Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map",
"Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js",
"Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map",
"Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js",
"Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map",
"Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt",
"Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js",
"Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js",
"Templates/Identity/wwwroot/lib/jquery-validation/LICENSE.md",
"Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.js",
"Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.min.js",
"Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.js",
"Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js",
"Templates/Identity/wwwroot/lib/jquery/LICENSE.txt",
"Templates/Identity/wwwroot/lib/jquery/dist/jquery.js",
"Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.js",
"Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.map",
"Templates/Identity_Versioned/Bootstrap3/Data/ApplicationDbContext.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Data/ApplicationUser.cshtml",
"Templates/Identity_Versioned/Bootstrap3/IdentityHostingStartup.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.AccessDenied.cs.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.AccessDenied.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmail.cs.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ConfirmEmail.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ExternalLogin.cs.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ExternalLogin.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPassword.cs.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPassword.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ForgotPasswordConfirmation.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Lockout.cs.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Lockout.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Login.cs.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Login.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWith2fa.cs.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWith2fa.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.LoginWithRecoveryCode.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Logout.cs.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Logout.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Register.cs.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.Register.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPassword.cs.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPassword.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account.ResetPasswordConfirmation.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Account._ViewImports.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Index.cs.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.Index.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.PersonalData.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.SetPassword.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._Layout.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._ManageNav.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Account/Manage/Account.Manage._ViewImports.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Error.cs.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/Error.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/_Layout.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/_ValidationScriptsPartial.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/_ViewImports.cshtml",
"Templates/Identity_Versioned/Bootstrap3/Pages/_ViewStart.cshtml",
"Templates/Identity_Versioned/Bootstrap3/ScaffoldingReadme.cshtml",
"Templates/Identity_Versioned/Bootstrap3/SupportPages._CookieConsentPartial.cshtml",
"Templates/Identity_Versioned/Bootstrap3/SupportPages._ViewImports.cshtml",
"Templates/Identity_Versioned/Bootstrap3/SupportPages._ViewStart.cshtml",
"Templates/Identity_Versioned/Bootstrap3/_LoginPartial.cshtml",
"Templates/Identity_Versioned/Bootstrap3/wwwroot/css/site.css",
"Templates/Identity_Versioned/Bootstrap3/wwwroot/favicon.ico",
"Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner1.svg",
"Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner2.svg",
"Templates/Identity_Versioned/Bootstrap3/wwwroot/images/banner3.svg",
"Templates/Identity_Versioned/Bootstrap3/wwwroot/js/site.js",
"Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/LICENSE",
"Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css",
"Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.css.map",
"Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css",
"Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap-theme.min.css.map",
"Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.css",
"Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map",
"Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css",
"Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map",
"Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot",
"Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.svg",
"Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf",
"Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff",
"Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2",
"Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/bootstrap.js",
"Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js",
"Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/bootstrap/dist/js/npm.js",
"Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt",
"Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js",
"Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js",
"Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/LICENSE.md",
"Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/additional-methods.js",
"Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/additional-methods.min.js",
"Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/jquery.validate.js",
"Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js",
"Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/LICENSE.txt",
"Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.js",
"Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.min.js",
"Templates/Identity_Versioned/Bootstrap3/wwwroot/lib/jquery/dist/jquery.min.map",
"Templates/MvcLayout/Error.cshtml",
"Templates/MvcLayout/_Layout.cshtml",
"Templates/RazorPageGenerator/Create.cshtml",
"Templates/RazorPageGenerator/CreatePageModel.cshtml",
"Templates/RazorPageGenerator/Delete.cshtml",
"Templates/RazorPageGenerator/DeletePageModel.cshtml",
"Templates/RazorPageGenerator/Details.cshtml",
"Templates/RazorPageGenerator/DetailsPageModel.cshtml",
"Templates/RazorPageGenerator/Edit.cshtml",
"Templates/RazorPageGenerator/EditPageModel.cshtml",
"Templates/RazorPageGenerator/Empty.cshtml",
"Templates/RazorPageGenerator/EmptyPageModel.cshtml",
"Templates/RazorPageGenerator/List.cshtml",
"Templates/RazorPageGenerator/ListPageModel.cshtml",
"Templates/RazorPageGenerator/_ValidationScriptsPartial.cshtml",
"Templates/RazorPageGenerator_Versioned/Bootstrap3/Create.cshtml",
"Templates/RazorPageGenerator_Versioned/Bootstrap3/CreatePageModel.cshtml",
"Templates/RazorPageGenerator_Versioned/Bootstrap3/Delete.cshtml",
"Templates/RazorPageGenerator_Versioned/Bootstrap3/DeletePageModel.cshtml",
"Templates/RazorPageGenerator_Versioned/Bootstrap3/Details.cshtml",
"Templates/RazorPageGenerator_Versioned/Bootstrap3/DetailsPageModel.cshtml",
"Templates/RazorPageGenerator_Versioned/Bootstrap3/Edit.cshtml",
"Templates/RazorPageGenerator_Versioned/Bootstrap3/EditPageModel.cshtml",
"Templates/RazorPageGenerator_Versioned/Bootstrap3/Empty.cshtml",
"Templates/RazorPageGenerator_Versioned/Bootstrap3/EmptyPageModel.cshtml",
"Templates/RazorPageGenerator_Versioned/Bootstrap3/List.cshtml",
"Templates/RazorPageGenerator_Versioned/Bootstrap3/ListPageModel.cshtml",
"Templates/RazorPageGenerator_Versioned/Bootstrap3/_ValidationScriptsPartial.cshtml",
"Templates/Startup/ReadMe.cshtml",
"Templates/Startup/Startup.cshtml",
"Templates/ViewGenerator/Create.cshtml",
"Templates/ViewGenerator/Delete.cshtml",
"Templates/ViewGenerator/Details.cshtml",
"Templates/ViewGenerator/Edit.cshtml",
"Templates/ViewGenerator/Empty.cshtml",
"Templates/ViewGenerator/List.cshtml",
"Templates/ViewGenerator/_ValidationScriptsPartial.cshtml",
"Templates/ViewGenerator_Versioned/Bootstrap3/Create.cshtml",
"Templates/ViewGenerator_Versioned/Bootstrap3/Delete.cshtml",
"Templates/ViewGenerator_Versioned/Bootstrap3/Details.cshtml",
"Templates/ViewGenerator_Versioned/Bootstrap3/Edit.cshtml",
"Templates/ViewGenerator_Versioned/Bootstrap3/Empty.cshtml",
"Templates/ViewGenerator_Versioned/Bootstrap3/List.cshtml",
"Templates/ViewGenerator_Versioned/Bootstrap3/_ValidationScriptsPartial.cshtml",
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll",
"lib/netstandard2.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.xml",
"lib/netstandard2.0/bootstrap3_identitygeneratorfilesconfig.json",
"lib/netstandard2.0/bootstrap4_identitygeneratorfilesconfig.json",
"microsoft.visualstudio.web.codegenerators.mvc.2.2.3.nupkg.sha512",
"microsoft.visualstudio.web.codegenerators.mvc.nuspec"
]
},
"Microsoft.Win32.Registry/4.5.0": {
"sha512": "+FWlwd//+Tt56316p00hVePBCouXyEzT86Jb3+AuRotTND0IYn0OO3obs1gnQEs/txEnt+rF2JBGLItTG+Be6A==",
"type": "package",
@ -7433,6 +8136,23 @@
"newtonsoft.json.bson.nuspec"
]
},
"NuGet.Frameworks/4.7.0": {
"sha512": "qbXaB76XYUVLocLBs8Z9TS/ERGK2wm797feO+0JEPFvT7o7MRadOR77mqaSD4J1k8G+DlZQyq+MlkCuxrkr3ag==",
"type": "package",
"path": "nuget.frameworks/4.7.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"lib/net40/NuGet.Frameworks.dll",
"lib/net40/NuGet.Frameworks.xml",
"lib/net46/NuGet.Frameworks.dll",
"lib/net46/NuGet.Frameworks.xml",
"lib/netstandard1.6/NuGet.Frameworks.dll",
"lib/netstandard1.6/NuGet.Frameworks.xml",
"nuget.frameworks.4.7.0.nupkg.sha512",
"nuget.frameworks.nuspec"
]
},
"Pomelo.EntityFrameworkCore.MySql/2.2.0": {
"sha512": "OIIR2ASp8J5VyIf2i9cli8BjvD0kZl5zCwi4DBR/E/D0WVt+iZyKwGhCLt1V9+KiXQbYcYAujuKN3cMmwk5nZg==",
"type": "package",
@ -8153,6 +8873,90 @@
"version.txt"
]
},
"System.Composition/1.0.31": {
"sha512": "I+D26qpYdoklyAVUdqwUBrEIckMNjAYnuPJy/h9dsQItpQwVREkDFs4b4tkBza0kT2Yk48Lcfsv2QQ9hWsh9Iw==",
"type": "package",
"path": "system.composition/1.0.31",
"files": [
".nupkg.metadata",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"system.composition.1.0.31.nupkg.sha512",
"system.composition.nuspec"
]
},
"System.Composition.AttributedModel/1.0.31": {
"sha512": "NHWhkM3ZkspmA0XJEsKdtTt1ViDYuojgSND3yHhTzwxepiwqZf+BCWuvCbjUt4fe0NxxQhUDGJ5km6sLjo9qnQ==",
"type": "package",
"path": "system.composition.attributedmodel/1.0.31",
"files": [
".nupkg.metadata",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/System.Composition.AttributedModel.dll",
"lib/portable-net45+win8+wp8+wpa81/System.Composition.AttributedModel.dll",
"system.composition.attributedmodel.1.0.31.nupkg.sha512",
"system.composition.attributedmodel.nuspec"
]
},
"System.Composition.Convention/1.0.31": {
"sha512": "GLjh2Ju71k6C0qxMMtl4efHa68NmWeIUYh4fkUI8xbjQrEBvFmRwMDFcylT8/PR9SQbeeL48IkFxU/+gd0nYEQ==",
"type": "package",
"path": "system.composition.convention/1.0.31",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/System.Composition.Convention.dll",
"lib/portable-net45+win8+wp8+wpa81/System.Composition.Convention.dll",
"system.composition.convention.1.0.31.nupkg.sha512",
"system.composition.convention.nuspec"
]
},
"System.Composition.Hosting/1.0.31": {
"sha512": "fN1bT4RX4vUqjbgoyuJFVUizAl2mYF5VAb+bVIxIYZSSc0BdnX+yGAxcavxJuDDCQ1K+/mdpgyEFc8e9ikjvrg==",
"type": "package",
"path": "system.composition.hosting/1.0.31",
"files": [
".nupkg.metadata",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/System.Composition.Hosting.dll",
"lib/portable-net45+win8+wp8+wpa81/System.Composition.Hosting.dll",
"system.composition.hosting.1.0.31.nupkg.sha512",
"system.composition.hosting.nuspec"
]
},
"System.Composition.Runtime/1.0.31": {
"sha512": "0LEJN+2NVM89CE4SekDrrk5tHV5LeATltkp+9WNYrR+Huiyt0vaCqHbbHtVAjPyeLWIc8dOz/3kthRBj32wGQg==",
"type": "package",
"path": "system.composition.runtime/1.0.31",
"files": [
".nupkg.metadata",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/System.Composition.Runtime.dll",
"lib/portable-net45+win8+wp8+wpa81/System.Composition.Runtime.dll",
"system.composition.runtime.1.0.31.nupkg.sha512",
"system.composition.runtime.nuspec"
]
},
"System.Composition.TypedParts/1.0.31": {
"sha512": "0Zae/FtzeFgDBBuILeIbC/T9HMYbW4olAmi8XqqAGosSOWvXfiQLfARZEhiGd0LVXaYgXr0NhxiU1LldRP1fpQ==",
"type": "package",
"path": "system.composition.typedparts/1.0.31",
"files": [
".nupkg.metadata",
".signature.p7s",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/netstandard1.0/System.Composition.TypedParts.dll",
"lib/portable-net45+win8+wp8+wpa81/System.Composition.TypedParts.dll",
"system.composition.typedparts.1.0.31.nupkg.sha512",
"system.composition.typedparts.nuspec"
]
},
"System.Console/4.3.0": {
"sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==",
"type": "package",
@ -9302,6 +10106,62 @@
"system.linq.expressions.nuspec"
]
},
"System.Linq.Parallel/4.3.0": {
"sha512": "td7x21K8LalpjTWCzW/nQboQIFbq9i0r+PCyBBCdLWWnm4NBcdN18vpz/G9hCpUaCIfRL+ZxJNVTywlNlB1aLQ==",
"type": "package",
"path": "system.linq.parallel/4.3.0",
"files": [
".nupkg.metadata",
"ThirdPartyNotices.txt",
"dotnet_library_license.txt",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net45/_._",
"lib/netcore50/System.Linq.Parallel.dll",
"lib/netstandard1.3/System.Linq.Parallel.dll",
"lib/portable-net45+win8+wpa81/_._",
"lib/win8/_._",
"lib/wpa81/_._",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"ref/MonoAndroid10/_._",
"ref/MonoTouch10/_._",
"ref/net45/_._",
"ref/netcore50/System.Linq.Parallel.dll",
"ref/netcore50/System.Linq.Parallel.xml",
"ref/netcore50/de/System.Linq.Parallel.xml",
"ref/netcore50/es/System.Linq.Parallel.xml",
"ref/netcore50/fr/System.Linq.Parallel.xml",
"ref/netcore50/it/System.Linq.Parallel.xml",
"ref/netcore50/ja/System.Linq.Parallel.xml",
"ref/netcore50/ko/System.Linq.Parallel.xml",
"ref/netcore50/ru/System.Linq.Parallel.xml",
"ref/netcore50/zh-hans/System.Linq.Parallel.xml",
"ref/netcore50/zh-hant/System.Linq.Parallel.xml",
"ref/netstandard1.1/System.Linq.Parallel.dll",
"ref/netstandard1.1/System.Linq.Parallel.xml",
"ref/netstandard1.1/de/System.Linq.Parallel.xml",
"ref/netstandard1.1/es/System.Linq.Parallel.xml",
"ref/netstandard1.1/fr/System.Linq.Parallel.xml",
"ref/netstandard1.1/it/System.Linq.Parallel.xml",
"ref/netstandard1.1/ja/System.Linq.Parallel.xml",
"ref/netstandard1.1/ko/System.Linq.Parallel.xml",
"ref/netstandard1.1/ru/System.Linq.Parallel.xml",
"ref/netstandard1.1/zh-hans/System.Linq.Parallel.xml",
"ref/netstandard1.1/zh-hant/System.Linq.Parallel.xml",
"ref/portable-net45+win8+wpa81/_._",
"ref/win8/_._",
"ref/wpa81/_._",
"ref/xamarinios10/_._",
"ref/xamarinmac20/_._",
"ref/xamarintvos10/_._",
"ref/xamarinwatchos10/_._",
"system.linq.parallel.4.3.0.nupkg.sha512",
"system.linq.parallel.nuspec"
]
},
"System.Linq.Queryable/4.0.1": {
"sha512": "Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==",
"type": "package",
@ -12150,6 +13010,7 @@
"Microsoft.AspNetCore.Razor.Design >= 2.2.0",
"Microsoft.EntityFrameworkCore >= 2.2.6",
"Microsoft.NETCore.App >= 2.2.0",
"Microsoft.VisualStudio.Web.CodeGeneration.Design >= 2.2.3",
"Pomelo.EntityFrameworkCore.MySql >= 2.2.0"
]
},
@ -12215,6 +13076,10 @@
"version": "[2.2.0, )",
"autoReferenced": true
},
"Microsoft.VisualStudio.Web.CodeGeneration.Design": {
"target": "Package",
"version": "[2.2.3, )"
},
"Pomelo.EntityFrameworkCore.MySql": {
"target": "Package",
"version": "[2.2.0, )"