[mono-config] use right type for result of strlen
[mono.git] / mcs / class / Microsoft.Build.Tasks / Microsoft.Build.Tasks / GenerateBootstrapper.cs
1 //
2 // GenerateBootstrapper.cs
3 //
4 // Author:
5 //   Marek Sieradzki (marek.sieradzki@gmail.com)
6 //
7 // (C) 2006 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
29 using System;
30 using Microsoft.Build.Framework;
31
32 namespace Microsoft.Build.Tasks {
33         public sealed class GenerateBootstrapper : TaskExtension {
34         
35                 string          applicationFile;
36                 string          applicationName;
37                 string          applicationUrl;
38                 string[]        bootstrapperComponentFiles;
39                 ITaskItem[]     bootstrapperItems;
40                 string          bootstrapperKeyFile;
41                 string          componentsLocation;
42                 string          componentsUrl;
43                 bool            copyComponents;
44                 string          culture;
45                 string          fallbackCulture;
46                 string          outputPath;
47                 string          path;
48                 string          supportUrl;
49                 bool            validate;
50         
51                 public GenerateBootstrapper ()
52                 {
53                 }
54
55                 public override bool Execute ()
56                 {
57                         return false;
58                 }
59                 
60                 public string ApplicationFile {
61                         get { return applicationFile; }
62                         set { applicationFile = value; }
63                 }
64                 
65                 public string ApplicationName {
66                         get { return applicationName; }
67                         set { applicationName = value; }
68                 }
69                 
70                 public string ApplicationUrl {
71                         get { return applicationUrl; }
72                         set { applicationUrl = value; }
73                 }
74                 
75                 [Output]
76                 public string[] BootstrapperComponentFiles {
77                         get { return bootstrapperComponentFiles; }
78                         set { bootstrapperComponentFiles = value; }
79                 }
80                 
81                 public ITaskItem[] BootstrapperItems {
82                         get { return bootstrapperItems; }
83                         set { bootstrapperItems = value; }
84                 }
85                 
86                 [Output]
87                 public string BootstrapperKeyFile {
88                         get { return bootstrapperKeyFile; }
89                         set { bootstrapperKeyFile = value; }
90                 }
91                 
92                 public string ComponentsLocation {
93                         get { return componentsLocation; }
94                         set { componentsLocation = value; }
95                 }
96                 
97                 public string ComponentsUrl {
98                         get { return componentsUrl; }
99                         set { componentsUrl = value; }
100                 }
101                 
102                 public bool CopyComponents {
103                         get { return copyComponents; }
104                         set { copyComponents = value; }
105                 }
106                 
107                 public string Culture {
108                         get { return culture; }
109                         set { culture = value; }
110                 }
111                 
112                 public string FallbackCulture {
113                         get { return fallbackCulture; }
114                         set { fallbackCulture = value; }
115                 }
116                 
117                 public string OutputPath {
118                         get { return outputPath; }
119                         set { outputPath = value; }
120                 }
121                 
122                 public string Path {
123                         get { return path; }
124                         set { path = value; }
125                 }
126                 
127                 public string SupportUrl {
128                         get { return supportUrl; }
129                         set { supportUrl = value; }
130                 }
131                 
132                 public bool Validate {
133                         get { return validate; }
134                         set { validate = value; }
135                 }
136         }
137 }
138