Beispiel #1
0
 public PreCompileOperation(string webApplicationName, string webApplicationPhysicalPath, string preCompileOutputpath, IWrapClientBuildManager buildManager)
 {
     _webApplicationName = webApplicationName;
     _webApplicationPhysicalPath = webApplicationPhysicalPath;
     _preCompileOutputpath = preCompileOutputpath;
     _buildManager = buildManager;
 }
 public PreCompileOperation(string webApplicationName, string webApplicationPhysicalPath, string preCompileOutputpath, IWrapClientBuildManager buildManager)
 {
     _webApplicationName         = webApplicationName;
     _webApplicationPhysicalPath = webApplicationPhysicalPath;
     _preCompileOutputpath       = preCompileOutputpath;
     _buildManager = buildManager;
 }
Beispiel #3
0
 public PreCompileOperation(string webApplicationName, string webApplicationPhysicalPath, string preCompileOutputpath)
 {
     _webApplicationName = webApplicationName;
     _webApplicationPhysicalPath = webApplicationPhysicalPath;
     _preCompileOutputpath = preCompileOutputpath;
     _buildManager = new ClientBuildManagerWrapper(_webApplicationName, _webApplicationPhysicalPath, _preCompileOutputpath, new ClientBuildManagerParameter { PrecompilationFlags = PrecompilationFlags.Updatable });
 }
 public PreCompileOperation(string webApplicationName, string webApplicationPhysicalPath, string preCompileOutputpath)
 {
     _webApplicationName         = webApplicationName;
     _webApplicationPhysicalPath = webApplicationPhysicalPath;
     _preCompileOutputpath       = preCompileOutputpath;
     _buildManager = new ClientBuildManagerWrapper(_webApplicationName, _webApplicationPhysicalPath, _preCompileOutputpath, new ClientBuildManagerParameter {
         PrecompilationFlags = PrecompilationFlags.Updatable
     });
 }