Implemented overloaded versions of Parse and TryParse functions for BigInteger.
[mono.git] / mcs / class / Moonlight.Build.Tasks / Moonlight.Build.Tasks / GetMoonlightFrameworkPath.cs
1 //
2 // GetMoonlightFrameworkPath.cs
3 //
4 // Author:
5 //      Michael Hutchinson <mhutchinson@novell.com>
6 //      Ankit Jain <jankit@novell.com>
7 //
8 // Copyright (c) 2009 Novell, Inc. (http://www.novell.com)
9 // Copyright (c) 2010 Novell, Inc. (http://www.novell.com)
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 //
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 //
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29
30 using SI = System.IO;
31
32 using System;
33 using System.Text;
34
35 using Microsoft.Build.Framework;
36 using Microsoft.Build.Utilities;
37
38 namespace Moonlight.Build.Tasks {
39         public class GetMoonlightFrameworkPath : Task {
40
41                 public override bool Execute ()
42                 {
43                         return true;
44                 }
45
46                 [Required]
47                 public string SilverlightVersion {
48                         get; set;
49                 }
50
51                 [Output]
52                 public string FrameworkPath {
53                         get {
54                                 if (string.IsNullOrEmpty (SilverlightVersion))
55                                         return FrameworkVersion30Path;
56
57                                 return SI.Path.GetFullPath (
58                                                 PathCombine (ToolLocationHelper.GetPathToDotNetFramework (TargetDotNetFrameworkVersion.Version20),
59                                                 "..", "..", "moonlight", SilverlightVersion));
60                         }
61                 }
62
63                 [Output]
64                 public string FrameworkVersion20Path {
65                         get {
66                                 return SI.Path.GetFullPath (
67                                                 PathCombine (ToolLocationHelper.GetPathToDotNetFramework (TargetDotNetFrameworkVersion.Version20),
68                                                 "..", "..", "moonlight", "2.0"));
69                         }
70                 }
71
72                 [Output]
73                 public string FrameworkVersion30Path {
74                         get {
75                                 return SI.Path.GetFullPath (
76                                                 PathCombine (ToolLocationHelper.GetPathToDotNetFramework (TargetDotNetFrameworkVersion.Version20),
77                                                 "..", "..", "moonlight", "3.0"));
78                         }
79                 }
80
81                 static string PathCombine (string path1, params string[] parts)
82                 {
83                         StringBuilder sb = new StringBuilder ();
84                         sb.Append (path1);
85                         foreach (string part in parts)
86                                 sb.AppendFormat ("{0}{1}", SI.Path.DirectorySeparatorChar, part);
87
88                         return sb.ToString ();
89                 }
90         }
91 }