Merge pull request #819 from brendanzagaeski/patch-1
[mono.git] / mcs / class / Microsoft.Build.Engine / Microsoft.Build.BuildEngine / Toolset.cs
index d7955176a4a4c53d9bd41443413c0c06d91ab0ad..895bbeebf7a76d32e519be0b2e16bc4d82b7135c 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;
 
 namespace Microsoft.Build.BuildEngine
@@ -38,7 +37,7 @@ namespace Microsoft.Build.BuildEngine
                        ToolsPath = toolsPath;
                        BuildProperties = buildProperties;
                }
-               
+
                public Toolset (string toolsVersion, string toolsPath)
                        : this (toolsVersion, toolsPath, null)
                {
@@ -50,4 +49,3 @@ namespace Microsoft.Build.BuildEngine
                public string ToolsPath { get; private set; }
        }
 }
-#endif