[Microsoft.Build.BuildEngine] Remove dead files
authorAndres G. Aragoneses <knocte@gmail.com>
Sat, 15 Sep 2012 16:26:09 +0000 (17:26 +0100)
committerAndres G. Aragoneses <knocte@gmail.com>
Sat, 15 Sep 2012 16:26:09 +0000 (17:26 +0100)
These 2 files (HostLogger.cs and SolutionParser.cs) were not
being included in the build anyway (defined in file
Microsoft.Build.Engine_test.dll.sources).

mcs/class/Microsoft.Build.Engine/Microsoft.Build.BuildEngine/HostLogger.cs [deleted file]
mcs/class/Microsoft.Build.Engine/Microsoft.Build.BuildEngine/SolutionParser.cs [deleted file]

diff --git a/mcs/class/Microsoft.Build.Engine/Microsoft.Build.BuildEngine/HostLogger.cs b/mcs/class/Microsoft.Build.Engine/Microsoft.Build.BuildEngine/HostLogger.cs
deleted file mode 100644 (file)
index 46b9e87..0000000
+++ /dev/null
@@ -1,83 +0,0 @@
-//
-// HostLogger.cs:
-//
-// Author:
-//   Marek Sieradzki (marek.sieradzki@gmail.com)
-// 
-// (C) 2005 Marek Sieradzki
-//
-// Permission is hereby granted, free of charge, to any person obtaining
-// a copy of this software and associated documentation files (the
-// "Software"), to deal in the Software without restriction, including
-// without limitation the rights to use, copy, modify, merge, publish,
-// distribute, sublicense, and/or sell copies of the Software, and to
-// permit persons to whom the Software is furnished to do so, subject to
-// the following conditions:
-//
-// The above copyright notice and this permission notice shall be
-// included in all copies or substantial portions of the Software.
-//
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-// 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 Microsoft.Build.Framework;
-
-namespace Microsoft.Build.BuildEngine {
-
-       [MonoTODO]
-       public class HostLogger : ILogger, IHostLogger {
-               
-               IHostFeedback   hostFeedbackObject;
-               string          parameters;
-               LoggerVerbosity verbosity;
-       
-               public HostLogger ()
-               {
-               }
-
-               public void Initialize (IEventSource eventSource)
-               {
-               }
-
-               public void Shutdown ()
-               {
-               }
-
-               public IHostFeedback HostFeedbackObject {
-                       get {
-                               return hostFeedbackObject;
-                       }
-                       set {
-                               hostFeedbackObject = value;
-                       }
-               }
-
-               public string Parameters {
-                       get {
-                               return parameters;
-                       }
-                       set {
-                               parameters = value;
-                       }
-               }
-
-               public LoggerVerbosity Verbosity {
-                       get {
-                               return verbosity;
-                       }
-                       set {
-                               verbosity = value;
-                       }
-               }
-       }
-}
-
-#endif
diff --git a/mcs/class/Microsoft.Build.Engine/Microsoft.Build.BuildEngine/SolutionParser.cs b/mcs/class/Microsoft.Build.Engine/Microsoft.Build.BuildEngine/SolutionParser.cs
deleted file mode 100644 (file)
index d065142..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-//
-// SolutionParser.cs: Class that parses the .sln files.
-//
-// Author:
-//   Marek Sieradzki (marek.sieradzki@gmail.com)
-//
-// (C) 2005 Marek Sieradzki
-//
-// Permission is hereby granted, free of charge, to any person obtaining
-// a copy of this software and associated documentation files (the
-// "Software"), to deal in the Software without restriction, including
-// without limitation the rights to use, copy, modify, merge, publish,
-// distribute, sublicense, and/or sell copies of the Software, and to
-// permit persons to whom the Software is furnished to do so, subject to
-// the following conditions:
-//
-// The above copyright notice and this permission notice shall be
-// included in all copies or substantial portions of the Software.
-//
-// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-// 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
-
-namespace Microsoft.Build.BuildEngine {
-       public class SolutionParser {
-               private string solutionFile;
-       
-               public SolutionParser ()
-               {
-               }
-
-               public string GetProjectRelativePathByGuid (string projectGuid)
-               {
-                       return null;
-               }
-
-               public string GetProjectUniqueNameByGuid (string projectGuid)
-               {
-                       return null;
-               }
-
-               public void ParseSolutionFile ()
-               {
-               }
-
-               public string SolutionFile {
-                       get {
-                               return solutionFile;
-                       }
-                       set {
-                               solutionFile = value;
-                       }
-               }
-       }
-}
-
-#endif
\ No newline at end of file