* Makefile: Build the make-map.exe in Mono.Unix.Native; add /nowarn:0618 to
[mono.git] / mcs / class / Microsoft.Build.Tasks / Microsoft.Build.Tasks.Hosting / IVbcHostObject.cs
1 //
2 // IVbcHostObject.cs: Host object interface for VB.NET compiler.
3 //
4 // Author:
5 //   Marek Sieradzki (marek.sieradzki@gmail.com)
6 //
7 // (C) 2005 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 using Microsoft.Build.Framework;
29 using System;
30 using System.Runtime.InteropServices;
31
32 namespace Microsoft.Build.Tasks.Hosting {
33         public interface IVbcHostObject {
34                 void BeginInitialization ();
35                 
36                 bool Compile ();
37                 
38                 void EndInitialization ();
39                 
40                 bool IsDesignTime ();
41                 
42                 bool IsUpToDate ();
43                 
44                 bool SetAdditionalLibPaths (string[] additionalLibPaths);
45                 
46                 bool SetAddModules (string[] addModules);
47                 
48                 bool SetBaseAddress (string targetType, string baseAddress);
49                 
50                 bool SetCodePage (int codePage);
51                 
52                 bool SetDebugType (bool emitDebugInformation, string debugType);
53                 
54                 bool SetDefineConstants (string defineConstants);
55                 
56                 bool SetDelaySign (bool delaySign);
57                 
58                 bool SetDisabledWarnings (string disabledWarnings);
59                 
60                 bool SetDocumentationFile (string documentationFile);
61                 
62                 bool SetErrorReport (string errorReport);
63                 
64                 bool SetFileAlignment (int fileAlignment);
65                 
66                 bool SetGenerateDocumentation (bool generateDocumentation);
67                 
68                 bool SetImports (ITaskItem[] importsList);
69                 
70                 bool SetKeyContainer (string keyContainer);
71                 
72                 bool SetKeyFile (string keyFile);
73                 
74                 bool SetLinkResources (ITaskItem[] linkResources);
75                 
76                 bool SetMainEntryPoint (string mainEntryPoint);
77                 
78                 bool SetNoConfig (bool noConfig);
79                 
80                 bool SetNoStandardLib (bool noStandardLib);
81                 
82                 bool SetNoWarnings (bool noWarnings);
83                 
84                 bool SetOptimize (bool optimize);
85                 
86                 bool SetOptionCompare (string optionCompare);
87                 
88                 bool SetOptionExplicit (bool optionExplicit);
89                 
90                 bool SetOptionStrict (bool optionStrict);
91                 
92                 bool SetOutputAssembly (string outputAssembly);
93                 
94                 bool SetPlatform (string platform);
95                 
96                 bool SetReferences (ITaskItem[] references);
97                 
98                 bool SetRemoveIntegerChecks (bool removeIntegerChecks);
99                 
100                 bool SetResources (ITaskItem[] resources);
101                 
102                 bool SetResponseFiles (ITaskItem[] responseFiles);
103                 
104                 bool SetRootNamespace (string rootNamespace);
105                 
106                 bool SetSdkPath (string sdkPath);
107                 
108                 bool SetSources (ITaskItem[] sources);
109                 
110                 bool SetTargetCompactFramework (bool targetCompactFramework);
111                 
112                 bool SetTargetType (string targetType);
113                 
114                 bool SetTreatWarningsAsErrors (bool treatWarningsAsErrors);
115                 
116                 bool SetWarningsAsErrors (string warningsAsErrors);
117                 
118                 bool SetWarningsNotAsErrors (string warningsNotAsErrors);
119                 
120                 bool SetWin32Icon (string win32Icon);
121                 
122                 bool SetWin32Resource (string win32Resource);
123         }
124 }
125