InvalidOperationException: The following sections have been defined but have not been rendered by the page at '/Pages/Shared/_Layout.cshtml': 'Scripts'. To ignore an unrendered section call IgnoreSection("sectionName")

Mensaje de error:

InvalidOperationException: The following sections have been defined but have not been rendered by the page at '/Pages/Shared/_Layout.cshtml': 'Scripts'. To ignore an unrendered section call IgnoreSection("sectionName")

Captura:


Causa:

Conflicto en el proyecto Server de Blazor entre el archivo _ViewStart.cshtml ubicado en Areas en la ruta ...\Server\Areas\Identity\Pages\_ViewStart.cshtml y el archivo ubicado en Page del mismo nombre _ViewStar.tcshtml ubicado en la ruta ...\Server\Pages\_ViewStart.cshtml.


Solución:

Eliminar archivo _ViewStart.cshtml ubicado en Areas en la ruta ...\Server\Areas\Identity\Pages\_ViewStart.cshtml.

Comentarios