| OLD | NEW |
| 1 using System; | 1 using System; |
| 2 using System.Collections.Generic; | 2 using System.Collections.Generic; |
| 3 using System.Linq; | 3 using System.Linq; |
| 4 using System.Text; | 4 using System.Text; |
| 5 | 5 |
| 6 using Microsoft.Build.Framework; | 6 using Microsoft.Build.Framework; |
| 7 using System.Xaml; | 7 using System.Xaml; |
| 8 using Microsoft.Build.Framework.XamlTypes; | 8 using Microsoft.Build.Framework.XamlTypes; |
| 9 using Microsoft.Build.Utilities; | 9 using Microsoft.Build.Utilities; |
| 10 | 10 |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 143 } // class | 143 } // class |
| 144 | 144 |
| 145 private Rule m_parsedBuildRule; | 145 private Rule m_parsedBuildRule; |
| 146 private Dictionary<string, PropertyWrapper> ToolProperties { get; set; } | 146 private Dictionary<string, PropertyWrapper> ToolProperties { get; set; } |
| 147 | 147 |
| 148 // function mapping for easy property function calling | 148 // function mapping for easy property function calling |
| 149 private Dictionary<Type, Action<CommandLineBuilder, BaseProperty, string
>> m_typeFunctionMap; | 149 private Dictionary<Type, Action<CommandLineBuilder, BaseProperty, string
>> m_typeFunctionMap; |
| 150 } // XamlParser | 150 } // XamlParser |
| 151 } // namespace NaCl.Build.CPPTasks | 151 } // namespace NaCl.Build.CPPTasks |
| 152 | 152 |
| OLD | NEW |