Closed
Description
After upgrading to 1.1 404 is returned to all webapi requests.
After upgrading to .Net Core 1.1, it took me one day of work to understand that my WebApi was returning 404 to all requests because I did not added: app.UseApiVersioning(); in the Startup class.
Maybe you should throw an exception when AddApiVersioning is used but UseApiVersioning is not? Returning 404 does not seem to be the answer.....