华恒Mes鼎捷代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
341 B

5 months ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using Microsoft.Owin;
  5. using Owin;
  6. [assembly: OwinStartup(typeof(WebApplication1.Startup))]
  7. namespace WebApplication1
  8. {
  9. public partial class Startup
  10. {
  11. public void Configuration(IAppBuilder app)
  12. {
  13. ConfigureAuth(app);
  14. }
  15. }
  16. }