Add support for ToolsVersion and correctly build msbuild+xbuild assemblies
[mcs.git] / class / Microsoft.Build.Utilities / Microsoft.Build.Utilities / ToolLocationHelper.cs
bloba6c807cfbdfac942da27b1ad8821f38879c14f32
1 //
2 // ToolLocationHelper.cs:
3 //
4 // Author:
5 // Marek Sieradzki (marek.sieradzki@gmail.com)
6 //
7 // (C) 2005 Marek Sieradzki
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 #if NET_2_0
30 using System;
31 using System.IO;
33 namespace Microsoft.Build.Utilities
35 public static class ToolLocationHelper
37 static string lib_mono_dir;
38 static string [] mono_dir;
40 static ToolLocationHelper ()
42 string assemblyLocation;
43 DirectoryInfo t1, t2;
45 // /usr/local/lib/mono/1.0
46 assemblyLocation = Path.GetDirectoryName (typeof (object).Assembly.Location);
47 t1 = new DirectoryInfo (assemblyLocation);
49 // usr/local/lib/mono
50 t2 = t1.Parent;
52 lib_mono_dir = t2.FullName;
53 if (Environment.GetEnvironmentVariable ("TESTING_MONO") != null) {
54 mono_dir = new string [] {
55 Path.Combine (lib_mono_dir, "net_1_0"),
56 Path.Combine (lib_mono_dir, "net_2_0"),
57 Path.Combine (lib_mono_dir, "net_2_0"),
58 Path.Combine (lib_mono_dir, "net_3_5"),
59 Path.Combine (lib_mono_dir, "net_4_0")
60 };
61 } else {
62 mono_dir = new string [] {
63 Path.Combine (lib_mono_dir, "1.0"),
64 Path.Combine (lib_mono_dir, "2.0"),
65 Path.Combine (lib_mono_dir, "2.0"),
66 Path.Combine (lib_mono_dir, "3.5"),
67 Path.Combine (lib_mono_dir, "4.0")
73 [MonoTODO]
74 public static string GetDotNetFrameworkRootRegistryKey (TargetDotNetFrameworkVersion version)
76 throw new NotImplementedException ();
79 [MonoTODO]
80 public static string GetDotNetFrameworkSdkInstallKeyValue (TargetDotNetFrameworkVersion version)
82 throw new NotImplementedException ();
85 [MonoTODO]
86 public static string GetDotNetFrameworkVersionFolderPrefix (TargetDotNetFrameworkVersion version)
88 throw new NotImplementedException ();
91 public static string GetPathToDotNetFramework (TargetDotNetFrameworkVersion version)
93 return mono_dir [(int)version];
96 [MonoTODO]
97 public static string GetPathToDotNetFrameworkFile (string fileName,
98 TargetDotNetFrameworkVersion version)
100 throw new NotImplementedException ();
103 public static string GetPathToDotNetFrameworkSdk (TargetDotNetFrameworkVersion version)
105 return GetPathToDotNetFramework (version);
108 [MonoTODO]
109 public static string GetPathToDotNetFrameworkSdkFile (string fileName,
110 TargetDotNetFrameworkVersion version)
112 throw new NotImplementedException ();
115 [MonoTODO]
116 public static string GetPathToSystemFile (string fileName)
118 throw new NotImplementedException ();
121 [MonoTODO]
122 public static string PathToSystem {
123 get {
124 throw new NotImplementedException ();
130 #endif