@using ClientDependency.Core.Mvc
@using ClientDependency.Core
@{
Html.RequiresJs("~/scripts/Script1.js", 1);
Html.RequiresJs("~/scripts/Script2.js", 2);
Html.RequiresCss("~/css/style.css");
}
<html>
<head>
@Html.RenderCssHere()
@Html.RenderJsHere()
</head>