I\'m having this problem: No service for type \'Microsoft.AspNetCore.Mvc.ViewFeatures.ITempDataDictionaryFactory\' has been registered. In asp.net core 1.0,
Just add following code and it should work:
public void ConfigureServices(IServiceCollection services) { services.AddMvcCore() .AddViews(); }