| OLD | NEW |
| 1 | 1 |
| 2 using System; | 2 using System; |
| 3 using System.IO; | 3 using System.IO; |
| 4 using System.Resources; | 4 using System.Resources; |
| 5 using System.Reflection; | 5 using System.Reflection; |
| 6 using System.Text; | 6 using System.Text; |
| 7 using Microsoft.Build.Framework; | 7 using Microsoft.Build.Framework; |
| 8 using Microsoft.Build.CPPTasks; | 8 using Microsoft.Build.CPPTasks; |
| 9 | 9 |
| 10 | 10 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 [Required] | 31 [Required] |
| 32 public virtual ITaskItem[] Sources { get; set; } | 32 public virtual ITaskItem[] Sources { get; set; } |
| 33 | 33 |
| 34 [Required] | 34 [Required] |
| 35 public string ConfigurationType { get; set; } | 35 public string ConfigurationType { get; set; } |
| 36 | 36 |
| 37 public NaClLink() | 37 public NaClLink() |
| 38 : base(new ResourceManager("NaCl.Build.CPPTasks.Properties.Resources
", Assembly.GetExecutingAssembly())) | 38 : base(new ResourceManager("NaCl.Build.CPPTasks.Properties.Resources
", Assembly.GetExecutingAssembly())) |
| 39 { | 39 { |
| 40 | 40 this.EnvironmentVariables = new string[] { "CYGWIN=nodosfilewarning",
"LC_CTYPE=C" }; |
| 41 } | 41 } |
| 42 | 42 |
| 43 protected override string CommandTLogName | 43 protected override string CommandTLogName |
| 44 { | 44 { |
| 45 get | 45 get |
| 46 { | 46 { |
| 47 return "default.link.command.tlog"; | 47 return "default.link.command.tlog"; |
| 48 } | 48 } |
| 49 } | 49 } |
| 50 | 50 |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 { | 186 { |
| 187 return "GCC"; | 187 return "GCC"; |
| 188 } | 188 } |
| 189 set | 189 set |
| 190 {} | 190 {} |
| 191 } | 191 } |
| 192 | 192 |
| 193 public string TrackerLogDirectory { get; set; } | 193 public string TrackerLogDirectory { get; set; } |
| 194 } | 194 } |
| 195 } | 195 } |
| OLD | NEW |