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;
 }
示例#3
0
 public GetVersion()
 {
     logger = new TaskLogger(this);
     fileSystem = new FileSystem();
     Logger.WriteInfo = this.LogInfo;
     Logger.WriteWarning = this.LogWarning;
 }
示例#4
0
 public UpdateAssemblyInfo()
 {
     CompileFiles = new ITaskItem[]
     {
     };
     logger = new TaskLogger(this);
     Logger.SetLoggers(this.LogInfo, this.LogWarning, s => this.LogError(s));
 }
示例#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));
 }
示例#8
0
 public GetVersion()
 {
     logger = new TaskLogger(this);
     Logger.SetLoggers(this.LogDebug, this.LogInfo, this.LogWarning, s => this.LogError(s));
 }
示例#9
0
 public GetVersion()
 {
     logger = new TaskLogger(this);
     Logger.SetLoggers(this.LogDebug, this.LogInfo, this.LogWarning, s => this.LogError(s));
 }
示例#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));
 }
示例#13
0
 public WriteVersionInfoToBuildLog()
 {
     logger              = new TaskLogger(this);
     Logger.WriteInfo    = this.LogInfo;
     Logger.WriteWarning = this.LogWarning;
 }