Merge pull request #2543 from ermshiperete/Xamarin-31021
[mono.git] / mcs / class / Microsoft.Build.Tasks / Microsoft.Build.Tasks / MakeDir.cs
index 5306079cb9b0a76eb9ef6e2ad9d901fa4a8a08c5..a19424e5a04f8da5572adbeff4b377f1090efb45 100644 (file)
@@ -25,7 +25,6 @@
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 
-#if NET_2_0
 
 using System;
 using System.Collections.Generic;
@@ -59,7 +58,7 @@ namespace Microsoft.Build.Tasks {
                                try {
                                        Directory.CreateDirectory (path);
                                        temporaryDirectoriesCreated.Add (directory);
-                                       Log.LogMessage (MessageImportance.High, "Created directory \"{0}\"", directory.ItemSpec);
+                                       Log.LogMessage (MessageImportance.Normal, "Created directory \"{0}\"", directory.ItemSpec);
                                }
                                catch (Exception ex) {
                                        Log.LogErrorFromException (ex);
@@ -91,4 +90,3 @@ namespace Microsoft.Build.Tasks {
        }
 }
 
-#endif