2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / class / Microsoft.Build.Tasks / Microsoft.Build.Tasks.Deployment.ManifestUtilities / DeployManifest.cs
blob2d3b85ec52bc341aa3a243cdea696747508d96f6
1 //
2 // DeployManifest.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:
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
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.
28 #if NET_2_0
30 using System;
31 using System.Runtime.InteropServices;
32 using Microsoft.Build.Framework;
34 namespace Microsoft.Build.Tasks.Deployment.ManifestUtilities {
36 [ComVisible (false)]
37 public sealed class DeployManifest : Manifest {
39 string deploymentUrl;
40 bool disallowUrlActivation;
41 AssemblyReference entryPoint;
42 bool install;
43 bool mapFileExtensions;
44 string minimumRequiredVersion;
45 string product;
46 string publisher;
47 string supportUrl;
48 bool trustUrlParameters;
49 bool updateEnabled;
50 int updateInterval;
51 UpdateMode updateMode;
52 UpdateUnit updateUnit;
53 string xmlDeploymentUrl;
54 string xmlDisallowUrlActivation;
55 string xmlInstall;
56 string xmlMapFileExtensions;
57 string xmlMinimumRequiredVersion;
58 string xmlProduct;
59 string xmlPublisher;
60 string xmlSupportUrl;
61 string xmlTrustUrlParameters;
62 string xmlUpdateEnabled;
63 string xmlUpdateInterval;
64 string xmlUpdateMode;
65 string xmlUpdateUnit;
67 [MonoTODO]
68 public DeployManifest ()
70 throw new NotImplementedException ();
73 [MonoTODO]
74 public override void Validate ()
76 throw new NotImplementedException ();
79 [MonoTODO]
80 public string DeploymentUrl {
81 get { return deploymentUrl; }
82 set { deploymentUrl = value; }
85 [MonoTODO]
86 public bool DisallowUrlActivation {
87 get { return disallowUrlActivation; }
88 set { disallowUrlActivation = value; }
91 [MonoTODO]
92 public override AssemblyReference EntryPoint {
93 get { return entryPoint; }
94 set { entryPoint = value; }
97 [MonoTODO]
98 public bool Install {
99 get { return install; }
100 set { install = value; }
103 [MonoTODO]
104 public bool MapFileExtensions {
105 get { return mapFileExtensions; }
106 set { mapFileExtensions = value; }
109 [MonoTODO]
110 public string MinimumRequiredVersion {
111 get { return minimumRequiredVersion; }
112 set { minimumRequiredVersion = value; }
115 [MonoTODO]
116 public string Product {
117 get { return product; }
118 set { product = value; }
121 [MonoTODO]
122 public string Publisher {
123 get { return publisher; }
124 set { publisher = value; }
127 [MonoTODO]
128 public string SupportUrl {
129 get { return supportUrl; }
130 set { supportUrl = value; }
133 [MonoTODO]
134 public bool TrustUrlParameters {
135 get { return trustUrlParameters; }
136 set { trustUrlParameters = value; }
139 [MonoTODO]
140 public bool UpdateEnabled {
141 get { return updateEnabled; }
142 set { updateEnabled = value; }
145 [MonoTODO]
146 public int UpdateInterval {
147 get { return updateInterval; }
148 set { updateInterval = value; }
151 [MonoTODO]
152 public UpdateMode UpdateMode {
153 get { return updateMode; }
154 set { updateMode = value; }
157 [MonoTODO]
158 public UpdateUnit UpdateUnit {
159 get { return updateUnit; }
160 set { updateUnit = value; }
163 [MonoTODO]
164 public string XmlDeploymentUrl {
165 get { return xmlDeploymentUrl; }
166 set { xmlDeploymentUrl = value; }
169 [MonoTODO]
170 public string XmlDisallowUrlActivation {
171 get { return xmlDisallowUrlActivation; }
172 set { xmlDisallowUrlActivation = value; }
175 [MonoTODO]
176 public string XmlInstall {
177 get { return xmlInstall; }
178 set { xmlInstall = value; }
181 [MonoTODO]
182 public string XmlMapFileExtensions {
183 get { return xmlMapFileExtensions; }
184 set { xmlMapFileExtensions = value; }
187 [MonoTODO]
188 public string XmlMinimumRequiredVersion {
189 get { return xmlMinimumRequiredVersion; }
190 set { xmlMinimumRequiredVersion = value; }
193 [MonoTODO]
194 public string XmlProduct {
195 get { return xmlProduct; }
196 set { xmlProduct = value; }
199 [MonoTODO]
200 public string XmlPublisher {
201 get { return xmlPublisher; }
202 set { xmlPublisher = value; }
205 [MonoTODO]
206 public string XmlSupportUrl {
207 get { return xmlSupportUrl; }
208 set { xmlSupportUrl = value; }
211 [MonoTODO]
212 public string XmlTrustUrlParameters {
213 get { return xmlTrustUrlParameters; }
214 set { xmlTrustUrlParameters = value; }
217 [MonoTODO]
218 public string XmlUpdateEnabled {
219 get { return xmlUpdateEnabled; }
220 set { xmlUpdateEnabled = value; }
223 [MonoTODO]
224 public string XmlUpdateInterval {
225 get { return xmlUpdateInterval; }
226 set { xmlUpdateInterval = value; }
229 [MonoTODO]
230 public string XmlUpdateMode {
231 get { return xmlUpdateMode; }
232 set { xmlUpdateMode = value; }
235 [MonoTODO]
236 public string XmlUpdateUnit {
237 get { return xmlUpdateUnit; }
238 set { xmlUpdateUnit = value; }
243 #endif