For expression stuff, change namespace to MS.Build.Internal.Expressionns.
authorAtsushi Eno <atsushieno@veritas-vos-liberabit.com>
Wed, 27 Nov 2013 07:04:51 +0000 (16:04 +0900)
committerAtsushi Eno <atsushieno@veritas-vos-liberabit.com>
Tue, 3 Dec 2013 07:52:42 +0000 (16:52 +0900)
Too annoying to track build engine traces.

mcs/class/Microsoft.Build/Microsoft.Build.Evaluation/Project.cs
mcs/class/Microsoft.Build/Microsoft.Build.Exceptions/InvalidProjectFileException.cs
mcs/class/Microsoft.Build/Microsoft.Build.Execution/ProjectInstance.cs
mcs/class/Microsoft.Build/Microsoft.Build.Internal/ExpressionConstructs.cs
mcs/class/Microsoft.Build/Microsoft.Build.Internal/ExpressionEvaluator.cs
mcs/class/Microsoft.Build/Microsoft.Build.Internal/ExpressionParserManual.cs
mcs/class/Microsoft.Build/Microsoft.Build.Internal/ExpressionTokenizer.cs

index 54213b081934b8d8a81de4c0fe3bbe8062a6ab41..b1741a8e521f6e9a35064e1eef98e35774c592fb 100644 (file)
@@ -41,6 +41,7 @@ using Microsoft.Build.Exceptions;
 using Microsoft.Build.Execution;
 using Microsoft.Build.Framework;
 using Microsoft.Build.Internal;
+using Microsoft.Build.Internal.Expressions;
 using Microsoft.Build.Logging;
 using System.Collections;
 
index 806c4f33b5fef293e8ac9d09bb120e8e6739f787..756ed779914ecc9eea7d0cf03ae722fa5ab3e0d4 100644 (file)
@@ -29,6 +29,7 @@
 using System;
 using System.Runtime.Serialization;
 using Microsoft.Build.Construction;
+using Microsoft.Build.Internal.Expressions;
 
 namespace Microsoft.Build.Exceptions
 {
@@ -58,7 +59,7 @@ namespace Microsoft.Build.Exceptions
                         : base(message, innerException)
                 {
                 }
-                internal InvalidProjectFileException (Microsoft.Build.Internal.ILocation start, string message,
+                internal InvalidProjectFileException (ILocation start, string message,
                                                       string errorSubcategory = null, string errorCode = null, string helpKeyword = null)
                         : this (null, 0, start != null ? start.Column : 0, 0, 0, message, errorSubcategory, errorCode, helpKeyword)
                 {
index 1d75b0c78d932a1d9d1b82ba38ccc56852e87e14..d91d3803e84bddf1df81f3a4894f3654d7c8642d 100644 (file)
@@ -35,6 +35,7 @@ using System.Linq;
 using Microsoft.Build.Construction;
 using Microsoft.Build.Evaluation;
 using Microsoft.Build.Framework;
+using Microsoft.Build.Internal.Expressions;
 using Microsoft.Build.Logging;
 
 //
index bbb304fc43c5c1248e96dfba8a37a07b4815d8c6..e231f272781a5510f2e730645edb2e2c7e2e3479 100644 (file)
@@ -29,7 +29,7 @@ using System;
 using System.Collections;
 using System.Collections.Generic;
 
-namespace Microsoft.Build.Internal
+namespace Microsoft.Build.Internal.Expressions
 {
        
        class Locatable
index 9ffe9b74530e78d847b7d461f61088bcfe8b3ba0..e89a45f9b228e7c2e6a9c04d1bc4b38c998bc9ad 100644 (file)
@@ -35,7 +35,7 @@ using Microsoft.Build.Execution;
 using Microsoft.Build.Framework;
 using System.IO;
 
-namespace Microsoft.Build.Internal
+namespace Microsoft.Build.Internal.Expressions
 {
        class ExpressionEvaluator
        {
index 83d4e9b15655ef9d13bfa1de904a655736672342..1c99ad81421af285336061a7ad792c6642ba1627 100644 (file)
@@ -30,7 +30,7 @@ using System.Collections.Generic;
 using System.Linq;
 using Microsoft.Build.Exceptions;
 
-namespace Microsoft.Build.Internal
+namespace Microsoft.Build.Internal.Expressions
 {
        class ExpressionParserManual
        {
index 6820cc467d1c2b4b9cb65bdd5e7fb1a63c430fec..af25f75401b18ea724f4b6bcfe4625b4920666aa 100644 (file)
@@ -29,7 +29,7 @@ using System;
 using System.Collections.Generic;
 using Microsoft.Build.Evaluation;
 
-namespace Microsoft.Build.Internal
+namespace Microsoft.Build.Internal.Expressions
 {
        enum ExpressionValidationType
        {