我正在遭受owin启动问题我的Asp.net MVC5应用程序

时间:2016-06-06 12:44:49

标签: asp.net asp.net-mvc-5 owin

尝试加载应用时发生以下错误。

  

在程序集“Search4Expert.Service.WebService”中发现的OwinStartup属性引用启动类型“Search4Expert.Service.WebService.Startup”与程序集“Search4Expert.Web.UI”中引用启动类型“Search4Expert.Web.UI”的属性冲突.Startup'因为他们有相同的FriendlyName''。删除或重命名其中一个属性,或直接引用所需的类型。       要禁用OWIN启动发现,请在web.config中添加值为“false”的appSetting owin:AutomaticAppStartup。       要指定OWIN启动程序集,类或方法,请在web.config中添加appSetting owin:AppStartup以及完全限定的启动类或配置方法名称。

来源错误:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. 

enter image description here

请任何人帮助我。

1 个答案:

答案 0 :(得分:0)

我在新的ASP.NET应用程序中经常遇到这个问题。您所要做的就是打开Web.config文件,并在<appSettings>元素下打开以下行:

  <appSettings>
    <add key="owin:AutomaticAppStartup" value="false" />
  </appSettings>