5
I’ve got my own bill
@Styles.Render("~/Content/css")
And it just stopped working, it yields nothing
The Bundle is being registered in the global.asax
BundleConfig.RegisterBundles(BundleTable.Bundles);
And when disabling Enableoptimizations
BundleTable.EnableOptimizations = false;
It renders css, but without merging
What is generated in HTML? You don’t happen to have a folder with that name?
– Leandro Godoy Rosa
does not generate anything, and I have the folder named Content yes, until this @Style render is the default that comes when creating the project
– Rod
in your file
BlundeConfig.cs
inside the briefcaseApp_Start
ta thusbundles.Add(new StyleBundle("~/Content/css").Include(
 "~/Content/bootstrap.css",
 "~/Content/site.css"));
– Maria
Yes Maria, this way, comes standard when generating a project Asp.net mvc 5 in visual studio, I did absolutely nothing, was working, simply stopped and did not work anymore, I do not know if updated something
– Rod
You can check whether your Bundle is being registered correctly in Global.asax, please?
– Diego Vieira
saw some things, and edited the question
– Rod
You happened to create a directory called
css
insideContent
?– Leonel Sanches da Silva
Yes, now I saw, a lib I caught by the nuget created
– Rod