I have an mvc style bundle configured.
It has two css files to include. Here is the bundle in question:
bundles.Add(new StyleBundle("~/Content/css").Include("~/Content/site.css", "~/Content/jasmine.css"));
There is literally no difference between these files.
Here is my usage of the bundle in my layout:
@Styles.Render("~/Content/css")
Opening the chrome inspector I find this:
<link href="/Content/site.css" rel="stylesheet">
But no jasmine.css.
What is the problem ? Why isn't my file included ?
EDIT
Here is the screenshot of the folder :