I have a requirement where i want application to load all css and js file from a share directory, i researched and found that bundle config includes directory from virtual application path only, so is there any way i can load it from external drives or folder? Or is there anything else i can use to meet my requirement. i need something like this
StyleBundle scriptBundleshare = new StyleBundle("\\diectory\folder");
scriptBundleshare.IncludeDirectory(pathToshare, "*.css");
bundles.Add(scriptBundleshare.OrdinalPositionOrdered());