I am using ASP.NET Core 1.0.1. I have the following
\"Microsoft.AspNetCore.Mvc\": \"1.0.1\" in order to develo
https://curia.me/how-to-use-a-controller-from-another-assembly-in-asp-net-core/
So, this is a more precise way to load a controller rather than the whole assembly.
// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
...
services.AddMvc()
.AddApplicationPart(typeof(Namespace.SubNamespace.ControllerName).Assembly);
...
}