Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(239)

Side by Side Diff: visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/NaClLink.cs

Issue 10830151: VS Add-in more properties and improvements (Closed) Base URL: https://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698