I have created new mvc project and added startup.cs class with one method.
but debug is not coming in this method directly debug is going on homecontroller
but it should come first startup class. why my debug is not coming in configuration method.
public class Startup { public void Configuration() { } }