We have an existing ASP.NET MVC 5 project. We want to use WebAPI too.
Is it a good idea to install WebAPI into the MVC project using Nuget? Or would it be better to create a new project in the same VS Solution specifically for WebAPI? If the latter, how would the routing be done?
I gather having MVC and WebAPI in the same project can cause issues with Dependency Injection. Is this true?