app.MapSignalR(); are error (assembly referece are missing)
I am Using visual studio 2013
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Gaurav RajPosted Aug 21, 2018, 2:54 AM
using System.Threading.Tasks;
using Microsoft.Owin;
using Owin;
[assembly: OwinStartup(typeof(MyPushNotificationMNMN.Startup1))]
namespace MyPushNotificationMNMN
{
public class Startup1
{
public void Configuration(IAppBuilder app)
{
// For more information on how to configure your application, visit http://go.microsoft.com/fwlink/?LinkID=316888
app.MapSignalR(); //error owin.iappbuilder does not contain a definition for mapsignalr
}
}
}
using libraray jquery.signalR-2.2.0.js and jquery.signalR-2.2.0.min.js
Jeeva SubburajPosted Aug 20, 2018, 9:28 AM