B4BCore.CheckBundles.CheckBundles C# (CSharp) Метод

CheckBundles() публичный Метод

This will setup checks the BundlesForBower in the assembly that the given type is in. It uses the data directory to find the BowerBundles.json and the bundlerForBower.json user config file
public CheckBundles ( Type classToFindProjectDirOf, string appDataDir = null, bool checkForConcatFile = true ) : System
classToFindProjectDirOf System.Type
appDataDir string optional: if App_Data directory is not at the top level then you need to supply /// AppDomain.CurrentDomain.GetData("DataDirectory").ToString() or an equivalent absolute directory path
checkForConcatFile bool optional: by default it checks the concat file, /// but if you go straight to the minified file then set this to false
Результат System
        public CheckBundles(Type classToFindProjectDirOf, string appDataDir = null,  bool checkForConcatFile = true)
            : this(GetProjectDirectoryFromType(classToFindProjectDirOf), appDataDir, checkForConcatFile)
        {
        }

Same methods

CheckBundles::CheckBundles ( string mvcAppPath, string appDataDir = null, bool checkForConcatFile = true ) : System