|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Runtime.InteropServices;
using Microsoft.Build.Framework;
#nullable disable
namespace Microsoft.Build.Tasks.Hosting
{
/// <summary>
/// Defines an interface for the Vbc task to communicate with the IDE. In particular,
/// the Vbc task will delegate the actual compilation to the IDE, rather than shelling
/// out to the command-line compilers.
/// </summary>
[InterfaceType(ComInterfaceType.InterfaceIsIUnknown)]
[ComVisible(true)]
[Guid("7D7AC3BE-253A-40e8-A3FF-357D0DA7C47A")]
public interface IVbcHostObject : ITaskHost
{
void BeginInitialization();
void EndInitialization();
bool IsDesignTime();
bool Compile();
bool SetAdditionalLibPaths(string[] additionalLibPaths);
bool SetAddModules(string[] addModules);
bool SetBaseAddress(string targetType, string baseAddress);
bool SetCodePage(int codePage);
bool SetDebugType(bool emitDebugInformation, string debugType);
bool SetDefineConstants(string defineConstants);
bool SetDelaySign(bool delaySign);
bool SetDisabledWarnings(string disabledWarnings);
bool SetDocumentationFile(string documentationFile);
bool SetErrorReport(string errorReport);
bool SetFileAlignment(int fileAlignment);
bool SetGenerateDocumentation(bool generateDocumentation);
bool SetImports(ITaskItem[] importsList);
bool SetKeyContainer(string keyContainer);
bool SetKeyFile(string keyFile);
bool SetLinkResources(ITaskItem[] linkResources);
bool SetMainEntryPoint(string mainEntryPoint);
bool SetNoConfig(bool noConfig);
bool SetNoStandardLib(bool noStandardLib);
bool SetNoWarnings(bool noWarnings);
bool SetOptimize(bool optimize);
bool SetOptionCompare(string optionCompare);
bool SetOptionExplicit(bool optionExplicit);
bool SetOptionStrict(bool optionStrict);
bool SetOptionStrictType(string optionStrictType);
bool SetOutputAssembly(string outputAssembly);
bool SetPlatform(string platform);
bool SetReferences(ITaskItem[] references);
bool SetRemoveIntegerChecks(bool removeIntegerChecks);
bool SetResources(ITaskItem[] resources);
bool SetResponseFiles(ITaskItem[] responseFiles);
bool SetRootNamespace(string rootNamespace);
bool SetSdkPath(string sdkPath);
bool SetSources(ITaskItem[] sources);
bool SetTargetCompactFramework(bool targetCompactFramework);
bool SetTargetType(string targetType);
bool SetTreatWarningsAsErrors(bool treatWarningsAsErrors);
bool SetWarningsAsErrors(string warningsAsErrors);
bool SetWarningsNotAsErrors(string warningsNotAsErrors);
bool SetWin32Icon(string win32Icon);
bool SetWin32Resource(string win32Resource);
bool IsUpToDate();
}
}
|