a6c807cfbdfac942da27b1ad8821f38879c14f32
[mono.git] / mcs / class / Microsoft.Build.Utilities / Microsoft.Build.Utilities / ToolLocationHelper.cs
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:
16 //
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 //
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.
27
28 #if NET_2_0
29
30 using System;
31 using System.IO;
32
33 namespace Microsoft.Build.Utilities
34 {
35         public static class ToolLocationHelper
36         {
37                 static string lib_mono_dir;
38                 static string [] mono_dir;
39
40                 static ToolLocationHelper ()
41                 {
42                         string assemblyLocation;
43                         DirectoryInfo t1, t2;
44
45                         // /usr/local/lib/mono/1.0
46                         assemblyLocation = Path.GetDirectoryName (typeof (object).Assembly.Location);
47                         t1 = new DirectoryInfo (assemblyLocation);
48
49                         // usr/local/lib/mono
50                         t2 = t1.Parent;
51
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")
68                                 };
69                         }
70
71                 }
72
73                 [MonoTODO]
74                 public static string GetDotNetFrameworkRootRegistryKey (TargetDotNetFrameworkVersion version)
75                 {
76                         throw new NotImplementedException ();
77                 }
78
79                 [MonoTODO]
80                 public static string GetDotNetFrameworkSdkInstallKeyValue (TargetDotNetFrameworkVersion version)
81                 {
82                         throw new NotImplementedException ();
83                 }
84
85                 [MonoTODO]
86                 public static string GetDotNetFrameworkVersionFolderPrefix (TargetDotNetFrameworkVersion version)
87                 {
88                         throw new NotImplementedException ();
89                 }
90
91                 public static string GetPathToDotNetFramework (TargetDotNetFrameworkVersion version)
92                 {
93                         return mono_dir [(int)version];
94                 }
95
96                 [MonoTODO]
97                 public static string GetPathToDotNetFrameworkFile (string fileName,
98                                                                   TargetDotNetFrameworkVersion version)
99                 {
100                         throw new NotImplementedException ();
101                 }
102
103                 public static string GetPathToDotNetFrameworkSdk (TargetDotNetFrameworkVersion version)
104                 {
105                         return GetPathToDotNetFramework (version);
106                 }
107
108                 [MonoTODO]
109                 public static string GetPathToDotNetFrameworkSdkFile (string fileName,
110                                                                       TargetDotNetFrameworkVersion version)
111                 {
112                         throw new NotImplementedException ();
113                 }
114
115                 [MonoTODO]
116                 public static string GetPathToSystemFile (string fileName)
117                 {
118                         throw new NotImplementedException ();
119                 }
120
121                 [MonoTODO]
122                 public static string PathToSystem {
123                         get {
124                                 throw new NotImplementedException ();
125                         }
126                 }
127         }
128 }
129
130 #endif