New test.
[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 #if NET_2_0
29
30 using Microsoft.Build.Framework;
31 using System;
32 using System.Runtime.InteropServices;
33
34 namespace Microsoft.Build.Tasks.Hosting {
35
36         [InterfaceType (ComInterfaceType.InterfaceIsIUnknown)]
37         [Guid ("7D7AC3BE-253A-40e8-A3FF-357D0DA7C47A")]
38         [ComVisible (true)]
39         public interface IVbcHostObject : ITaskHost {
40                 void BeginInitialization ();
41                 
42                 bool Compile ();
43                 
44                 void EndInitialization ();
45                 
46                 bool IsDesignTime ();
47                 
48                 bool IsUpToDate ();
49                 
50                 bool SetAdditionalLibPaths (string[] additionalLibPaths);
51                 
52                 bool SetAddModules (string[] addModules);
53                 
54                 bool SetBaseAddress (string targetType, string baseAddress);
55                 
56                 bool SetCodePage (int codePage);
57                 
58                 bool SetDebugType (bool emitDebugInformation, string debugType);
59                 
60                 bool SetDefineConstants (string defineConstants);
61                 
62                 bool SetDelaySign (bool delaySign);
63                 
64                 bool SetDisabledWarnings (string disabledWarnings);
65                 
66                 bool SetDocumentationFile (string documentationFile);
67                 
68                 bool SetErrorReport (string errorReport);
69                 
70                 bool SetFileAlignment (int fileAlignment);
71                 
72                 bool SetGenerateDocumentation (bool generateDocumentation);
73                 
74                 bool SetImports (ITaskItem[] importsList);
75                 
76                 bool SetKeyContainer (string keyContainer);
77                 
78                 bool SetKeyFile (string keyFile);
79                 
80                 bool SetLinkResources (ITaskItem[] linkResources);
81                 
82                 bool SetMainEntryPoint (string mainEntryPoint);
83                 
84                 bool SetNoConfig (bool noConfig);
85                 
86                 bool SetNoStandardLib (bool noStandardLib);
87                 
88                 bool SetNoWarnings (bool noWarnings);
89                 
90                 bool SetOptimize (bool optimize);
91                 
92                 bool SetOptionCompare (string optionCompare);
93                 
94                 bool SetOptionExplicit (bool optionExplicit);
95                 
96                 bool SetOptionStrict (bool optionStrict);
97                 
98                 bool SetOptionStrictType (string optionStrictType);
99                 
100                 bool SetOutputAssembly (string outputAssembly);
101                 
102                 bool SetPlatform (string platform);
103                 
104                 bool SetReferences (ITaskItem[] references);
105                 
106                 bool SetRemoveIntegerChecks (bool removeIntegerChecks);
107                 
108                 bool SetResources (ITaskItem[] resources);
109                 
110                 bool SetResponseFiles (ITaskItem[] responseFiles);
111                 
112                 bool SetRootNamespace (string rootNamespace);
113                 
114                 bool SetSdkPath (string sdkPath);
115                 
116                 bool SetSources (ITaskItem[] sources);
117                 
118                 bool SetTargetCompactFramework (bool targetCompactFramework);
119                 
120                 bool SetTargetType (string targetType);
121                 
122                 bool SetTreatWarningsAsErrors (bool treatWarningsAsErrors);
123                 
124                 bool SetWarningsAsErrors (string warningsAsErrors);
125                 
126                 bool SetWarningsNotAsErrors (string warningsNotAsErrors);
127                 
128                 bool SetWin32Icon (string win32Icon);
129                 
130                 bool SetWin32Resource (string win32Resource);
131         }
132 }
133
134 #endif