我使用Owin Startup类开发了一个应用程序。当我运行OwinHost.exe时,它会显示No Assembly found containing OwinStartupAttribute
。
但是我在我的启动类中将程序集定义为:
[assembly: OwinStartup(typeof(OwinDemo.BrandStartup))]
我还在Web.Config文件中将appSettings定义为:
<appSettings>
<add key="owin:AppStartup" value="OwinDemo.Startup, OwinDemo"/>
答案 0 :(得分:9)
项目 - &GT;右键单击添加新项目。
Startup.cs
using Microsoft.Owin;
using Owin;
[assembly: OwinStartup(typeof(SignalRChat.Startup))]
namespace SignalRChat
{
public class Startup
{
public void Configuration(IAppBuilder app)
{
app.MapSignalR();
}
}
}