I've declared the following in my application:
[assembly: OwinStartup("MyClass", typeof(MyClass), "ConfigureOwin")]
Defined a startup class:
public class MyClass {
public void ConfigureOwin(IAppBuilder appBuilder) {
}
}
And start owin like this:
WebApp.Start<MyClass>("baseUri");
However, it's not working. WebApp always tries to look for a method named 'Configuration' even if I define to look for something else. What could I do?