i just want to set up ChatJs with asp.net 4.0. i read all steps that provided with it's documentation. but i can't install to my application.
here my web application built with 4.0 framework. so may be this chatjs support greater version with 4.5. Is there any body know how i install this chat application with asp.net 4.0 with sql server 2008. i successfully set up all basic files like chatjs and signalR to my web app but here at startup.cs file gives some compile time error.
here is my startup.cs file code :
using ChatJs.Admin;
using Microsoft.Owin;
using Owin;
[assembly: OwinStartup(typeof(Startup))]
namespace ChatJs.Admin
{
public partial class Startup
{
public void Configuration(IAppBuilder app)
{
this.ConfigureAuth(app);
app.MapSignalR();
}
}
}
here is my compile time errors:
Error 1 'ChatJs.Admin.Startup' does not contain a definition for 'ConfigureAuth' and no extension method 'ConfigureAuth' accepting a first argument of type 'ChatJs.Admin.Startup' could be found (are you missing a using directive or an assembly reference?) F:\EasyWeb\App_Code\Startup.cs 11 18 F:\EasyWeb\
Error 2 'Owin.IAppBuilder' does not contain a definition for 'MapSignalR' and no extension method 'MapSignalR' accepting a first argument of type 'Owin.IAppBuilder' could be found (are you missing a using directive or an assembly reference?) F:\EasyWeb\App_Code\Startup.cs 12 17 F:\EasyWeb\
please help me..