Merge pull request #2256 from joelmartinez/docs-morenetdocs
[mono.git] / mcs / class / Microsoft.Build.Tasks / Microsoft.Build.Tasks / GenerateDeploymentManifest.cs
1 //
2 //// GenerateDeploymentManifest.cs
3 /////
4 ///// Author:
5 /////      Leszek Ciesielski  <skolima@gmail.com>
6 /////
7 ///// Copyright (C) 2006 Forcom (http://www.forcom.com.pl/)
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
30
31 using System;
32 using Microsoft.Build.Framework;
33 using Microsoft.Build.Tasks.Deployment.ManifestUtilities;
34 using Microsoft.Build.Utilities;
35
36 namespace Microsoft.Build.Tasks
37 {
38         public sealed class GenerateDeploymentManifest : GenerateManifestBase
39         {
40                 [MonoTODO]
41                 public GenerateDeploymentManifest ()
42                 {
43                         throw new NotImplementedException ();
44                 }
45                 
46                 [MonoTODO]
47                 public string DeploymentUrl {
48                         get {
49                                 throw new NotImplementedException ();
50                         }
51                         set {
52                                 throw new NotImplementedException ();
53                         }
54                 }
55                 
56                 [MonoTODO]
57                 public bool DisallowUrlActivation {
58                         get {
59                                 throw new NotImplementedException ();
60                         }
61                         set {
62                                 throw new NotImplementedException ();
63                         }
64                 }
65                 
66                 [MonoTODO]
67                 public bool Install {
68                         get {
69                                 throw new NotImplementedException ();
70                         }
71                         set {
72                                 throw new NotImplementedException ();
73                         }
74                 }
75                 
76                 [MonoTODO]
77                 public bool MapFileExtensions {
78                         get {
79                                 throw new NotImplementedException ();
80                         }
81                         set {
82                                 throw new NotImplementedException ();
83                         }
84                 }
85                 
86                 [MonoTODO]
87                 public string MinimumRequiredVersion {
88                         get {
89                                 throw new NotImplementedException ();
90                         }
91                         set {
92                                 throw new NotImplementedException ();
93                         }
94                 }
95                 
96                 [MonoTODO]
97                 public string Product {
98                         get {
99                                 throw new NotImplementedException ();
100                         }
101                         set {
102                                 throw new NotImplementedException ();
103                         }
104                 }
105                 
106                 [MonoTODO]
107                 public string Publisher {
108                         get {
109                                 throw new NotImplementedException ();
110                         }
111                         set {
112                                 throw new NotImplementedException ();
113                         }
114                 }
115                 
116                 [MonoTODO]
117                 public string SupportUrl {
118                         get {
119                                 throw new NotImplementedException ();
120                         }
121                         set {
122                                 throw new NotImplementedException ();
123                         }
124                 }
125                 
126                 [MonoTODO]
127                 public bool TrustUrlParameters {
128                         get {
129                                 throw new NotImplementedException ();
130                         }
131                         set {
132                                 throw new NotImplementedException ();
133                         }
134                 }
135                 
136                 [MonoTODO]
137                 public bool UpdateEnabled {
138                         get {
139                                 throw new NotImplementedException ();
140                         }
141                         set {
142                                 throw new NotImplementedException ();
143                         }
144                 }
145                 
146                 [MonoTODO]
147                 public int UpdateInterval {
148                         get {
149                                 throw new NotImplementedException ();
150                         }
151                         set {
152                                 throw new NotImplementedException ();
153                         }
154                 }
155                 
156                 [MonoTODO]
157                 public string UpdateMode {
158                         get {
159                                 throw new NotImplementedException ();
160                         }
161                         set {
162                                 throw new NotImplementedException ();
163                         }
164                 }
165                 
166                 [MonoTODO]
167                 public string UpdateUnit {
168                         get {
169                                 throw new NotImplementedException ();
170                         }
171                         set {
172                                 throw new NotImplementedException ();
173                         }
174                 }
175                 
176                 protected internal override bool ValidateInputs ()
177                 {
178                         throw new NotImplementedException ();
179                 }
180                 
181                 protected override Type GetObjectType ()
182                 {
183                         throw new NotImplementedException ();
184                 }
185                 
186                 protected override bool OnManifestLoaded (Manifest manifest)
187                 {
188                         throw new NotImplementedException ();
189                 }
190                 
191                 protected override bool OnManifestResolved (Manifest manifest)
192                 {
193                         throw new NotImplementedException ();
194                 }
195         }
196 }
197