Starting with the default ASP.Net Web Forms template provided by Microsoft, I added a couple of CSS files, bundled it and added it to Site.Master. Things work locally, but not when published on Azure.
Based on these links - link 1 & link 2, I tried changing the bundle name, but it still does not work and I get a 404 error on Azure.
Current File Structure:
Bundle.config file
Site.master file contents
<webopt:bundlereference runat="server" path="~/Content/css" />
<webopt:bundlereference runat="server" path="~/Content/mycss" />
The 1st reference works but the 2nd one does not. Any other ideas what could be the issue?