返回总目录


如果你的应用中使用了OWIN,那么需要在主项目(一般来说是指Web项目)中添加Abp.Owin的nuget包,然后像下面那样在OWIN的 Startup文件中调用 UseAbp()扩展方法:

[assembly: OwinStartup(typeof(Startup))]
public class Startup
{
    public void Configuration(IAppBuilder app)
    {
        app.UseAbp();

        //your other configuration...
    }
}

相关文章:

  • 2021-06-20
  • 2021-08-21
  • 2022-01-19
  • 2021-11-28
  • 2021-12-14
  • 2021-12-29
  • 2022-01-16
猜你喜欢
  • 2021-11-27
  • 2022-01-09
  • 2021-08-27
  • 2022-01-23
  • 2022-03-02
  • 2021-07-30
  • 2021-12-25
相关资源
相似解决方案