Guest User

Untitled

a guest
Nov 22nd, 2017
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. D:CLCLpackagesMicrosoft.Owin.2.1.0libnet45Microsoft.Owin.dll
  2.  
  3. using System;
  4. using System.Threading.Tasks;
  5. using Microsoft.Owin;
  6. using Owin;
  7.  
  8. [assembly: OwinStartup(typeof(CL.Startup))]
  9.  
  10. public partial class Startup
  11. {
  12. public void Configuration(IAppBuilder app)
  13. {
  14. // Any connection or hub wire up and configuration should go here
  15. app.MapSignalR();
  16. }
  17. }
  18.  
  19. System.EntryPointNotFoundException: The following errors occurred while attempting to load the app.
  20. - The OwinStartupAttribute.FriendlyName value '' does not match the given value 'CL.Startup' in Assembly 'App_Code.g9dw5cpb, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null'.
  21. - The given type or method 'CL(1).Startup' was not found. Try specifying the Assembly.
  22. To disable OWIN startup discovery, add the appSetting owin:AutomaticAppStartup with a value of "false" in your web.config.
  23. To specify the OWIN startup Assembly, Class, or Method, add the appSetting owin:AppStartup with the fully qualified startup class or configuration method name in your web.config.
Add Comment
Please, Sign In to add comment