PrepareBuild() public method

This is called from the main thread before the background build starts. cleanBuild is not part of the vsopts, but passed down as the callpath is differently PrepareBuild mainly creates directories and cleans house if cleanBuild is true
public PrepareBuild ( string config, bool cleanBuild ) : void
config string
cleanBuild bool
return void
Esempio n. 1
0
 public virtual void PrepareBuild(bool clean)
 {
     _project.PrepareBuild(this.ConfigName, this.Platform, clean);
 }
Esempio n. 2
0
 public void PrepareBuild(bool clean)
 {
     project.PrepareBuild(this.configName, clean);
 }
 public void PrepareBuild(bool clean)
 {
     project.PrepareBuild(ConfigKey, clean);
 }