I have web application in Asp Net Core 2.1, I configured Identity framework in this app and were generated all Identity method with views in Bootstrap. My question is how can I change default footer, because I can't find file where set footer is. In default AspNet Web application I saw that footer is set in _Layout.cshtml
but in my _Layout.cshtml I have only my own configuration :
@using Resources = BusinessModelBuilder.App_GlobalResources.Text
Business Model Builder
@**@
@RenderBody()
@RenderSection("Scripts", required: false)
How and where can I override default bootstrap footer with my own footer??