Merge pull request #799 from kebby/master
[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 using System;
29 using System.IO;
30
31 namespace Microsoft.Build.Utilities
32 {
33         public static class ToolLocationHelper
34         {
35                 static string lib_mono_dir;
36                 static string [] mono_dir;
37
38                 static ToolLocationHelper ()
39                 {
40                         string assemblyLocation;
41                         DirectoryInfo t1, t2;
42
43                         // /usr/local/lib/mono/1.0
44                         assemblyLocation = Path.GetDirectoryName (typeof (object).Assembly.Location);
45                         t1 = new DirectoryInfo (assemblyLocation);
46
47                         // usr/local/lib/mono
48                         t2 = t1.Parent;
49
50                         lib_mono_dir = t2.FullName;
51 #if NET_4_0
52                         var windowsPath = Environment.GetFolderPath (Environment.SpecialFolder.Windows);
53 #endif
54                         if (Environment.GetEnvironmentVariable ("TESTING_MONO") != null) {
55                                 mono_dir = new string [] {
56                                         Path.Combine (lib_mono_dir, "net_1_0"),
57                                         Path.Combine (lib_mono_dir, "net_2_0"),
58                                         Path.Combine (lib_mono_dir, "net_2_0"),
59                                         Path.Combine (lib_mono_dir, "net_3_5"),
60                                         Path.Combine (lib_mono_dir, "net_4_0"),
61                                         Path.Combine (lib_mono_dir, "net_4_5")
62                                 };      
63 #if NET_4_0
64                         } else if (!string.IsNullOrEmpty (windowsPath) && lib_mono_dir.StartsWith (windowsPath)) {
65                                 //running in .NET, not Mono
66                                 mono_dir = new string [] {
67                                         Path.Combine (lib_mono_dir, "v1.0.3705"),
68                                         Path.Combine (lib_mono_dir, "v2.0.50727"),
69                                         Path.Combine (lib_mono_dir, "v2.0.50727"),
70                                         Path.Combine (lib_mono_dir, "v3.5"),
71                                         Path.Combine (lib_mono_dir, "v4.0.30319"),
72                                         Path.Combine (lib_mono_dir, "v4.0.30319")
73                                 };
74 #endif
75                         } else {
76                                 mono_dir = new string [] {
77                                         Path.Combine (lib_mono_dir, "1.0"),
78                                         Path.Combine (lib_mono_dir, "2.0"),
79                                         Path.Combine (lib_mono_dir, "2.0"),
80                                         Path.Combine (lib_mono_dir, "3.5"),
81                                         Path.Combine (lib_mono_dir, "4.0"),
82                                         Path.Combine (lib_mono_dir, "4.5")
83                                 };
84                         }
85
86                 }
87
88                 [MonoTODO]
89                 public static string GetDotNetFrameworkRootRegistryKey (TargetDotNetFrameworkVersion version)
90                 {
91                         throw new NotImplementedException ();
92                 }
93
94                 [MonoTODO]
95                 public static string GetDotNetFrameworkSdkInstallKeyValue (TargetDotNetFrameworkVersion version)
96                 {
97                         throw new NotImplementedException ();
98                 }
99
100                 [MonoTODO]
101                 public static string GetDotNetFrameworkVersionFolderPrefix (TargetDotNetFrameworkVersion version)
102                 {
103                         throw new NotImplementedException ();
104                 }
105
106                 public static string GetPathToDotNetFramework (TargetDotNetFrameworkVersion version)
107                 {
108                         return mono_dir [(int)version];
109                 }
110
111 #if NET_4_0
112                 public static string GetMSBuildInstallPath (string version)
113                 {
114                         //see http://msdn.microsoft.com/en-us/library/vstudio/bb397428(v=vs.120).aspx
115                         var programFiles = Environment.GetFolderPath (Environment.SpecialFolder.ProgramFilesX86);
116                         return Path.Combine (programFiles, "MSBuild", version, "bin");
117                 }
118 #endif
119
120                 [MonoTODO]
121                 public static string GetPathToDotNetFrameworkFile (string fileName,
122                                                                   TargetDotNetFrameworkVersion version)
123                 {
124                         throw new NotImplementedException ();
125                 }
126
127                 public static string GetPathToDotNetFrameworkSdk (TargetDotNetFrameworkVersion version)
128                 {
129                         return GetPathToDotNetFramework (version);
130                 }
131
132                 [MonoTODO]
133                 public static string GetPathToDotNetFrameworkSdkFile (string fileName,
134                                                                       TargetDotNetFrameworkVersion version)
135                 {
136                         throw new NotImplementedException ();
137                 }
138
139                 [MonoTODO]
140                 public static string GetPathToSystemFile (string fileName)
141                 {
142                         throw new NotImplementedException ();
143                 }
144
145                 [MonoTODO]
146                 public static string PathToSystem {
147                         get {
148                                 throw new NotImplementedException ();
149                         }
150                 }
151         }
152 }