public WriteVersionInfoToBuildLog()
 {
     logger = new TaskLogger(this);
     fileSystem = new FileSystem();
     Logger.WriteInfo = this.LogInfo;
     Logger.WriteWarning = this.LogWarning;
 }
 public UpdateAssemblyInfo()
 {
     CompileFiles = new ITaskItem[] { };
     logger = new TaskLogger(this);
     Logger.WriteInfo = this.LogInfo;
     Logger.WriteWarning = this.LogWarning;
 }
Beispiel #3
0
 public GetVersion()
 {
     logger = new TaskLogger(this);
     fileSystem = new FileSystem();
     Logger.WriteInfo = this.LogInfo;
     Logger.WriteWarning = this.LogWarning;
 }
 public UpdateAssemblyInfo()
 {
     CompileFiles = new ITaskItem[]
     {
     };
     logger = new TaskLogger(this);
     Logger.SetLoggers(this.LogInfo, this.LogWarning, s => this.LogError(s));
 }
Beispiel #5
0
 public GetVersion()
 {
     logger = new TaskLogger(this);
     fileSystem = new FileSystem();
     Logger.SetLoggers(
         this.LogInfo,
         this.LogWarning,
         s => this.LogError(s));
 }
 public WriteVersionInfoToBuildLog()
 {
     logger = new TaskLogger(this);
     fileSystem = new FileSystem();
     Logger.SetLoggers(
         this.LogInfo,
         this.LogWarning,
         s => this.LogError(s));
 }
 public UpdateAssemblyInfo()
 {
     logger = new TaskLogger(this);
     Logger.SetLoggers(this.LogDebug, this.LogInfo, this.LogWarning, s => this.LogError(s));
 }
Beispiel #8
0
 public GetVersion()
 {
     logger = new TaskLogger(this);
     Logger.SetLoggers(this.LogDebug, this.LogInfo, this.LogWarning, s => this.LogError(s));
 }
Beispiel #9
0
 public GetVersion()
 {
     logger = new TaskLogger(this);
     Logger.SetLoggers(this.LogDebug, this.LogInfo, this.LogWarning, s => this.LogError(s));
 }
Beispiel #10
0
 public GetVersion()
 {
     logger              = new TaskLogger(this);
     Logger.WriteInfo    = this.LogInfo;
     Logger.WriteWarning = this.LogWarning;
 }
 public WriteVersionInfoToBuildLog()
 {
     logger = new TaskLogger(this);
     Logger.SetLoggers(this.LogDebug, this.LogInfo, this.LogWarning, s => this.LogError(s));
 }
 public WriteVersionInfoToBuildLog()
 {
     logger = new TaskLogger(this);
     Logger.SetLoggers(this.LogDebug, this.LogInfo, this.LogWarning, s => this.LogError(s));
 }
Beispiel #13
0
 public WriteVersionInfoToBuildLog()
 {
     logger              = new TaskLogger(this);
     Logger.WriteInfo    = this.LogInfo;
     Logger.WriteWarning = this.LogWarning;
 }