Bug 15574. XML deserialization recursion: add array type to known_types?
[mono.git] / mcs / class / Moonlight.Build.Tasks / Moonlight.Build.Tasks / CreateTestPage.cs
1 //
2 // CreateTestPage.cs: Generates test page for moonlight app
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 System;
31 using System.IO;
32 using System.Reflection;
33 using System.Text;
34
35 using Microsoft.Build.Framework;
36 using Microsoft.Build.Utilities;
37
38 namespace Moonlight.Build.Tasks {
39         public class CreateTestPage : Task {
40
41                 public override bool Execute ()
42                 {
43                         Log.LogMessage (MessageImportance.Low, "Generating test page {0}", XapFilename);
44
45                         var sb = new StringBuilder ();
46                         using (var sr = new StreamReader (Assembly.GetExecutingAssembly ().GetManifestResourceStream ("PreviewTemplate.html")))
47                                 sb.Append (sr.ReadToEnd ());
48
49                         sb.Replace ("@TITLE@", Title);
50                         sb.Replace ("@XAP_FILE@", XapFilename);
51
52                         try{
53                                 File.WriteAllText (TestPageFilename, sb.ToString ());
54                         } catch (IOException e) {
55                                 Log.LogError (String.Format (
56                                                 "Error generating test page file {0}: {1}", TestPageFilename, e.Message));
57                                 return false;
58                         }
59
60                         return true;
61                 }
62
63                 [Required]
64                 public string XapFilename {
65                         get; set;
66                 }
67
68                 [Required]
69                 public string Title {
70                         get; set;
71                 }
72
73                 [Required]
74                 [Output]
75                 public string TestPageFilename {
76                         get; set;
77                 }
78         }
79 }