Let's say I have:
public abstract ServiceBase : RoleEntryPoint {
...
}
public MyRealService : RoleEntryPoint {
...
}
Will my Azure WorkerRole project be able to correctly figure out MyRealService class as the WorkerRole entry point?
This used to be working well for me but now that I've updated to Azure Tooling 2.0 it doesn't hit any breakpoint so I'm not even sure what entry point class it is loading.