Merge pull request #819 from brendanzagaeski/patch-1
[mono.git] / mcs / class / Microsoft.Build.Engine / Microsoft.Build.BuildEngine / Toolset.cs
index 0957f298c500fe263bdcda07fa25cbc0e5d32bd9..895bbeebf7a76d32e519be0b2e16bc4d82b7135c 100644 (file)
@@ -31,21 +31,15 @@ namespace Microsoft.Build.BuildEngine
 {
        public class Toolset
        {
-               public Toolset (string toolsVersion, string toolsPath, string toolsFrameworkPath, BuildPropertyGroup buildProperties)
+               public Toolset (string toolsVersion, string toolsPath, BuildPropertyGroup buildProperties)
                {
                        ToolsVersion = toolsVersion;
                        ToolsPath = toolsPath;
-                       FrameworkToolsPath = toolsFrameworkPath;
                        BuildProperties = buildProperties;
                }
 
-               public Toolset (string toolsVersion, string toolsPath, string toolsFrameworkPath)
-                       : this (toolsVersion, toolsPath, toolsFrameworkPath, null)
-               {
-               }
-
-               public Toolset(string toolsVersion, string toolsPath)
-                       : this (toolsVersion, toolsPath, toolsPath)
+               public Toolset (string toolsVersion, string toolsPath)
+                       : this (toolsVersion, toolsPath, null)
                {
                }
 
@@ -53,6 +47,5 @@ namespace Microsoft.Build.BuildEngine
 
                public string ToolsVersion { get; private set; }
                public string ToolsPath { get; private set; }
-               public string FrameworkToolsPath { get; private set; }          
        }
 }