SqlBulkCopy Implementation
[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 (Environment.GetEnvironmentVariable ("TESTING_MONO") != null) {
52                                 mono_dir = new string [] {
53                                         Path.Combine (lib_mono_dir, "net_1_0"),
54                                         Path.Combine (lib_mono_dir, "net_2_0"),
55                                         Path.Combine (lib_mono_dir, "net_2_0"),
56                                         Path.Combine (lib_mono_dir, "net_3_5"),
57                                         Path.Combine (lib_mono_dir, "net_4_0"),
58                                         Path.Combine (lib_mono_dir, "net_4_5")
59                                 };      
60                         } else {
61                                 mono_dir = new string [] {
62                                         Path.Combine (lib_mono_dir, "1.0"),
63                                         Path.Combine (lib_mono_dir, "2.0"),
64                                         Path.Combine (lib_mono_dir, "2.0"),
65                                         Path.Combine (lib_mono_dir, "3.5"),
66                                         Path.Combine (lib_mono_dir, "4.0"),
67                                         Path.Combine (lib_mono_dir, "4.5")
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 }