QuentinEllison19 Ответов: 1

Я Получаю Эту Ошибку При Установке Пакета Signalr


The following errors occurred while attempting to load the app.
- No assembly found containing an OwinStartupAttribute.
- No 'Configuration' method was found in class 'Microsoft.VisualStudio.Web.PageInspector.Runtime.Startup, Microsoft.VisualStudio.Web.PageInspector.Runtime, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'.
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.



что же мне делать??

[no name]

Вы читали сообщение? Что вы пробовали?

1 Ответов

Рейтинг:
2

Shashangka Shekhar

Добавьте OWIN Startup class назовите его :

Startup

затем включите службу :)
public void Configuration(IAppBuilder app)
{
   app.MapSignalR();
}