I have an mvc 3 razor web application that uses several graphic components from a library.
I have set all the component in the library, I need to add a css file to the library but I dont know how to do it.
so how can I add a css file witch is a library ressource to a cshtml file. I tried this but it doesnt work:
@section Styles {
<link href="@Url.Content("~/file.css")" />}
_Layout.cshtmlfile contain a@RenderSection("Styles")?