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