I have specified the Angular and bootstrap in the Bundle.config file as
bundles.Add(new ScriptBundle("~/bundles/angular").Include(
"~/Scripts/angular.js",
"~/Scripts/angular-*",
"~/Scripts/bootstrap.js"));
bundles.Add(new StyleBundle("~/Content/bootstrap").Include("~/Content/bootstrap.css"));
and I had specified these bundles in Layout.cshtml file inside the body as
@Scripts.Render("~/bundles/jquery")
@Scripts.Render("~/bundles/angular")
@Styles.Render("~/Content/bootstrap")
@RenderSection("scripts", required: false)
Inside the Global.asax file I had specified the Budleconfig in Application_Start()
as
protected void Application_Start()
{
AreaRegistration.RegisterAllAreas();
WebApiConfig.Register(GlobalConfiguration.Configuration);
FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
RouteConfig.RegisterRoutes(RouteTable.Routes);
BundleConfig.RegisterBundles(BundleTable.Bundles);
AuthConfig.RegisterAuth();
}
even though the Angular and Bootstrap files are not been Bundled Can anyone please point me what I am missing here
Note: I have checked the path it is correct.