ASP.NET 5 on Visual Studio 2015 addMvc method not found
问题 I am following this tutorial: http://www.asp.net/vnext/overview/aspnet-vnext/create-a-web-api-with-mvc-6 to setup a web api and I have not made it very far. Once I added the line: services.addMvc(); I got an exception saying this method is not found. I searched online and found a separate question/answer here: http://forums.asp.net/t/2026087.aspx but that did not help. My startup.cs looks like this: public void ConfigureServices(IServiceCollection services) { services.AddMvc(); } public void