I was testing something locally and it worked fine. I then deployed a package to Azure.
I built the package by right clicking and went to Package. Everything was fine. I setup two staging servers to test with.
During my tests some of the routes didn't work.
routes.MapRoute(
"GetExtension", // Route name
"GetExtension.js",
new { controller = "Extension", action = "GetExtension" });
This works fine locally, but on Azure it thinks the view Views/Extension/GetExtension.cshtml doesn't exist. Any reason why this would break? I know views are packaged individually, but why would it not be included? How can I check if it isn't?
Thank you!