Server Error in '/' Application.
----------------------------------------------------------
The following errors occurred while attempting to load the app.
- No assembly found containing an OwinStartupAttribute.
- No assembly found containing a Startup or [AssemblyName].Startup class.
To disable OWIN startup discovery, add the appSetting owin:AutomaticAppStartup with a value of "false" in your web.config.
To specify the OWIN startup Assembly, Class, or Method, add the appSetting owin:AppStartup with the fully qualified startup class or configuration method name in your web.config.
Indagando un poco por el internet he visto algunas soluciones al respecto pero la que yo implementé
y me funcionó fue la de agregar una linea en el archivo Web.config
- Buscar la etiqueta <appSettings>
- Dentro de esta etiqueta poner la linea <add key="owin:AutomaticAppStartup" value="false" />
<add key="owin:AutomaticAppStartup" value="false" />
</appSettings>
- Limpiar y recompilar la solución
- Ahora debe cargar la aplicacion web sin mayor problema