Merge pull request #1500 from criteo-forks/criteo
[mono.git] / mcs / class / Microsoft.Build.Tasks / Microsoft.Build.Tasks / AspNetCompiler.cs
1 //
2 // AspNetCompiler.cs: Task for ASP .NET compiler
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 System.IO;
31 using Microsoft.Build.Framework;
32 using Mono.XBuild.Utilities;
33
34 namespace Microsoft.Build.Tasks {
35         public class AspNetCompiler : ToolTaskExtension {
36         
37                 bool    allowPartiallyTrustedCallers;
38                 bool    clean;
39                 bool    debug;
40                 bool    delaySign;
41                 bool    fixedNames;
42                 bool    force;
43                 string  keyContainer;
44                 string  keyFile;
45                 string  metabasePath;
46                 string  physicalPath;
47                 string  targetPath;
48                 bool    updateable;
49                 string  virtualPath;
50         
51                 public AspNetCompiler ()
52                 {
53                 }
54                 
55                 [MonoTODO]
56                 public override bool Execute ()
57                 {
58                         return false;
59                 }
60                 
61                 [MonoTODO]
62                 protected internal override void AddCommandLineCommands (CommandLineBuilderExtension commandLine)
63                 {
64                         throw new NotImplementedException ();
65                 }
66                 
67                 [MonoTODO]
68                 protected override string GenerateFullPathToTool ()
69                 {
70                         throw new NotImplementedException ();
71                 }
72                 
73                 [MonoTODO]
74                 protected override bool ValidateParameters ()
75                 {
76                         throw new NotImplementedException ();
77                 }
78                 
79                 public bool AllowPartiallyTrustedCallers {
80                         get { return allowPartiallyTrustedCallers; }
81                         set { allowPartiallyTrustedCallers = value; }
82                 }
83                 
84                 public bool Clean {
85                         get { return clean; }
86                         set { clean = value; }
87                 }
88                 
89                 public bool Debug {
90                         get { return debug; }
91                         set { debug = value; }
92                 }
93                 
94                 public bool DelaySign {
95                         get { return delaySign; }
96                         set { delaySign = value; }
97                 }
98                 
99                 public bool FixedNames {
100                         get { return fixedNames; }
101                         set { fixedNames = value; }
102                 }
103                 
104                 public bool Force {
105                         get { return force; }
106                         set { force = value; }
107                 }
108                 
109                 public string KeyContainer {
110                         get { return keyContainer; }
111                         set { keyContainer = value; }
112                 }
113                 
114                 public string KeyFile {
115                         get { return keyFile; }
116                         set { keyFile = value; }
117                 }
118                 
119                 public string MetabasePath {
120                         get { return metabasePath; }
121                         set { metabasePath = value; }
122                 }
123                 
124                 public string PhysicalPath {
125                         get { return physicalPath; }
126                         set { physicalPath = value; }
127                 }
128                 
129                 public string TargetPath {
130                         get { return targetPath; }
131                         set { targetPath = value; }
132                 }
133                 
134                 public bool Updateable {
135                         get { return updateable; }
136                         set { updateable = value; }
137                 }
138                 
139                 public string VirtualPath {
140                         get { return virtualPath; }
141                         set { virtualPath = value; }
142                 }
143                 
144                 protected override string ToolName {
145                         get { return MSBuildUtils.RunningOnWindows ? "aspnet_compiler.bat" : "aspnet_compiler"; }
146                 }
147         }
148 }
149