Hello I have the following problem in a C # project I have 3 projects and when I run the program he sends me the following error:
The following errors occurred while trying to load the application. - The detected OwinStartup attribute of the 'API' assembly that references the start type 'API.Startup' conflicts with the 'BackEnd' assembly attribute that references the start type 'BackEnd.Startup' because they have the same object FriendlyName ''. Remove one of the attributes, change its name or refer to the desired type directly. To disable OWIN startup detection, add appSetting owin: AutomaticAppStartup with the value "false" to the web.config file. To specify the OWIN assembly, class, or startup method, add appSetting owin: AppStartup with the full startup class or the name of the configuration method to the web.config file.
I have already added the line appSetting owin:AutomaticAppStartup
with the value " false
" to the webconfig but if I add it it shows me this other error:
Several types were found that match the 'Home' driver. This can occur if the path that this request answers ('{controller} / {action} / {id}') does not specify namespaces to find a driver that matches the request. In this case, register this route calling an overload of the 'MapRoute' method that uses a 'namespaces' parameter.
The 'Home' request found the following matching drivers: API.Controllers.HomeController BackEnd.Controllers.HomeController
Could you give me a hand? Thanks.